From a881cb467332f5130993e753c18a51e94adf66de Mon Sep 17 00:00:00 2001 From: Kilian Weishaupt Date: Tue, 30 Aug 2016 17:56:43 +0200 Subject: [PATCH 01/10] [2pLiquidVapor] Add new model and test * 2p1cni model to simulate steam injection --- dumux/material/fluidsystems/2pliquidvapor.hh | 578 + .../2pliquidvapor/CMakeLists.txt | 1 + .../2pliquidvapor/implicit/CMakeLists.txt | 11 + .../2pliquidvapor/implicit/indices.hh | 67 + .../2pliquidvapor/implicit/localresidual.hh | 304 + .../2pliquidvapor/implicit/model.hh | 662 + .../implicit/newtoncontroller.hh | 86 + .../2pliquidvapor/implicit/properties.hh | 71 + .../implicit/propertydefaults.hh | 178 + .../2pliquidvapor/implicit/volumevariables.hh | 304 + .../2pliquidvapor/CMakeLists.txt | 13 + .../2pliquidvapor/concept_superheated.input | 56 + .../2pliquidvapor/conceptspatialparams.hh | 371 + .../2pliquidvapor/conceptsuperheated.cc | 66 + .../conceptsuperheatedproblem.hh | 669 + .../2pliquidvapor/grids/pieceofcake.dgf | 5293 + .../2pliquidvapor/grids/pieceofcake.m | 47 + .../grids/pieceofcake_preheat.dgf | 17871 ++ .../grids/pieceofcake_preheat_0025.dgf | 168973 +++++++++++++++ .../grids/pieceofcake_preheat_10.dgf | 10750 + .../grids/pieceofcake_preheat_100.dgf | 139 + .../grids/pieceofcake_preheat_20.dgf | 2755 + .../grids/pieceofcake_preheat_25.dgf | 1786 + .../grids/pieceofcake_preheat_50.dgf | 478 + .../grids/pieceofcake_preheat_deep.dgf | 42490 ++++ .../grids/pieceofcake_preheat_fine.dgf | 42490 ++++ .../2pliquidvapor/validation_ochs.input | 52 + .../2pliquidvapor/validationochs.cc | 66 + .../2pliquidvapor/validationochsproblem.hh | 421 + test/porousmediumflow/CMakeLists.txt | 1 + 30 files changed, 297049 insertions(+) create mode 100644 dumux/material/fluidsystems/2pliquidvapor.hh create mode 100644 dumux/porousmediumflow/2pliquidvapor/CMakeLists.txt create mode 100644 dumux/porousmediumflow/2pliquidvapor/implicit/CMakeLists.txt create mode 100644 dumux/porousmediumflow/2pliquidvapor/implicit/indices.hh create mode 100644 dumux/porousmediumflow/2pliquidvapor/implicit/localresidual.hh create mode 100644 dumux/porousmediumflow/2pliquidvapor/implicit/model.hh create mode 100644 dumux/porousmediumflow/2pliquidvapor/implicit/newtoncontroller.hh create mode 100644 dumux/porousmediumflow/2pliquidvapor/implicit/properties.hh create mode 100644 dumux/porousmediumflow/2pliquidvapor/implicit/propertydefaults.hh create mode 100644 dumux/porousmediumflow/2pliquidvapor/implicit/volumevariables.hh create mode 100644 test/porousmediumflow/2pliquidvapor/CMakeLists.txt create mode 100644 test/porousmediumflow/2pliquidvapor/concept_superheated.input create mode 100644 test/porousmediumflow/2pliquidvapor/conceptspatialparams.hh create mode 100644 test/porousmediumflow/2pliquidvapor/conceptsuperheated.cc create mode 100644 test/porousmediumflow/2pliquidvapor/conceptsuperheatedproblem.hh create mode 100644 test/porousmediumflow/2pliquidvapor/grids/pieceofcake.dgf create mode 100644 test/porousmediumflow/2pliquidvapor/grids/pieceofcake.m create mode 100644 test/porousmediumflow/2pliquidvapor/grids/pieceofcake_preheat.dgf create mode 100644 test/porousmediumflow/2pliquidvapor/grids/pieceofcake_preheat_0025.dgf create mode 100644 test/porousmediumflow/2pliquidvapor/grids/pieceofcake_preheat_10.dgf create mode 100644 test/porousmediumflow/2pliquidvapor/grids/pieceofcake_preheat_100.dgf create mode 100644 test/porousmediumflow/2pliquidvapor/grids/pieceofcake_preheat_20.dgf create mode 100644 test/porousmediumflow/2pliquidvapor/grids/pieceofcake_preheat_25.dgf create mode 100644 test/porousmediumflow/2pliquidvapor/grids/pieceofcake_preheat_50.dgf create mode 100644 test/porousmediumflow/2pliquidvapor/grids/pieceofcake_preheat_deep.dgf create mode 100644 test/porousmediumflow/2pliquidvapor/grids/pieceofcake_preheat_fine.dgf create mode 100644 test/porousmediumflow/2pliquidvapor/validation_ochs.input create mode 100644 test/porousmediumflow/2pliquidvapor/validationochs.cc create mode 100644 test/porousmediumflow/2pliquidvapor/validationochsproblem.hh diff --git a/dumux/material/fluidsystems/2pliquidvapor.hh b/dumux/material/fluidsystems/2pliquidvapor.hh new file mode 100644 index 0000000000..d8ab5d3e30 --- /dev/null +++ b/dumux/material/fluidsystems/2pliquidvapor.hh @@ -0,0 +1,578 @@ +// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- +// vi: set et ts=4 sw=4 sts=4: +/***************************************************************************** + * See the file COPYING for full copying permissions. * + * * + * This program is free software: you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation, either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see . * + *****************************************************************************/ +/*! + * \file + * + * \brief A two-phase fluid system with only one component. + */ +#ifndef DUMUX_2P_LIQUID_VAPOR_FLUID_SYSTEM_HH +#define DUMUX_2P_LIQUID_VAPOR_FLUID_SYSTEM_HHH + +#include +#include + +#include +#include +#include + +#include + +#include "base.hh" + +namespace Dumux +{ +namespace FluidSystems +{ + +/*! + * \ingroup Fluidsystems + * + * \brief A two-phase fluid system with only one component. + * + * + * This FluidSystem can be used without the PropertySystem that is applied in Dumux, + * as all Parameters are defined via template parameters. Hence it is in an + * additional namespace Dumux::FluidSystem::. + * An adapter class using Dumux::FluidSystem is also provided + * at the end of this file. + */ +template +class TwoPLiquidVaporFluidsystem + : public BaseFluidSystem > +{ + // do not try to instantiate this class, it has only static members! + TwoPLiquidVaporFluidsystem() + {} + + typedef TwoPLiquidVaporFluidsystem ThisType; + typedef BaseFluidSystem Base; + typedef ComponentType Component; + +public: + /**************************************** + * Fluid phase related static parameters + ****************************************/ + + //! Number of phases in the fluid system + static constexpr int numPhases = 2; + + static constexpr int wPhaseIdx = 0; // index of the wetting phase + static constexpr int nPhaseIdx = 1; // index of the non-wetting phase + + + /*! + * \brief Return the human readable name of a fluid phase + * + * \param phaseIdx The index of the fluid phase to consider + */ + static const char *phaseName(int phaseIdx) + { + static const char *name[] = { + "liquid", + "vapor", + }; + + assert(0 <= phaseIdx && phaseIdx < numPhases); + return name[phaseIdx]; + } + + /*! + * \brief Return whether a phase is liquid + * + * \param phaseIdx The index of the fluid phase to consider + */ + static bool isLiquid(int phaseIdx) + { + assert(0 <= phaseIdx && phaseIdx < numPhases); + return phaseIdx != nPhaseIdx; + } + + /*! + * \brief Returns true if and only if a fluid phase is assumed to + * be an ideal mixture. + * + * We define an ideal mixture as a fluid phase where the fugacity + * coefficients of all components times the pressure of the phase + * are indepent on the fluid composition. This assumtion is true + * if Henry's law and Rault's law apply. If you are unsure what + * this function should return, it is safe to return false. The + * only damage done will be (slightly) increased computation times + * in some cases. + * + * \param phaseIdx The index of the fluid phase to consider + */ + static bool isIdealMixture(int phaseIdx) + { + assert(0 <= phaseIdx && phaseIdx < numPhases); + // we assume Henry's and Rault's laws for the water phase and + // and no interaction between gas molecules of different + // components, so all phases are ideal mixtures! + return true; + } + + /*! + * \brief Returns true if and only if a fluid phase is assumed to + * be compressible. + * + * Compressible means that the partial derivative of the density + * to the fluid pressure is always larger than zero. + * + * \param phaseIdx The index of the fluid phase to consider + */ + static bool isCompressible(int phaseIdx) + { + assert(0 <= phaseIdx && phaseIdx < numPhases); + // gases are always compressible + if (phaseIdx == nPhaseIdx) + return true; + // the component decides for the liquid phase... + return Component::liquidIsCompressible(); + } + + /*! + * \brief Returns true if and only if a fluid phase is assumed to + * be an ideal gas. + * + * \param phaseIdx The index of the fluid phase to consider + */ + static bool isIdealGas(int phaseIdx) + { + assert(0 <= phaseIdx && phaseIdx < numPhases); + + if (phaseIdx == nPhaseIdx) + // let the components decide + return Component::gasIsIdeal(); + return false; // not a gas + } + + /**************************************** + * Component related static parameters + ****************************************/ + + //! Number of components in the fluid system + static constexpr int numComponents = 1; + + static constexpr int ComponentIdx = 0; + + + + /*! + * \brief Return the human readable name of a component + * + * \param compIdx The index of the component to consider + */ + static const char *componentName(int compIdx) + { + static const char *name[] = { + Component::name() + }; + + assert(0 <= compIdx && compIdx < numComponents); + return name[compIdx]; + } + + /*! + * \brief Return the molar mass of a component in [kg/mol]. + * + * \param compIdx The index of the component to consider + */ + static Scalar molarMass(int compIdx) + { + static const Scalar M[] = { + Component::molarMass() + }; + + assert(0 <= compIdx && compIdx < numComponents); + return M[compIdx]; + } + + /*! + * \brief Critical temperature of a component [K]. + * + * \param compIdx The index of the component to consider + */ + static Scalar criticalTemperature(int compIdx) + { + static const Scalar Tcrit[] = { + Component::criticalTemperature() + }; + + assert(0 <= compIdx && compIdx < numComponents); + return Tcrit[compIdx]; + } + + /*! + * \brief Critical pressure of a component [Pa]. + * + * \param compIdx The index of the component to consider + */ + static Scalar criticalPressure(int compIdx) + { + static const Scalar pcrit[] = { + Component::criticalPressure() + }; + + assert(0 <= compIdx && compIdx < numComponents); + return pcrit[compIdx]; + } + + /*! + * \brief Molar volume of a component at the critical point [m^3/mol]. + * + * \param compIdx The index of the component to consider + */ + static Scalar criticalMolarVolume(int compIdx) + { + DUNE_THROW(Dune::NotImplemented, + "TwoPLiquidVaporFluidsystem::criticalMolarVolume()"); + return 0; + } + + /*! + * \brief The acentric factor of a component []. + * + * \param compIdx The index of the component to consider + */ + static Scalar acentricFactor(int compIdx) + { + static const Scalar accFac[] = { + Component::acentricFactor(), // H2O (from Reid, et al.) + }; + + assert(0 <= compIdx && compIdx < numComponents); + return accFac[compIdx]; + } + + /**************************************** + * thermodynamic relations + ****************************************/ + + /*! + * \brief Initialize the fluid system's static parameters generically + * + * If a tabulated H2O component is used, we do our best to create + * tables that always work. + */ + static void init() + { + init(/*tempMin=*/273.15, + /*tempMax=*/623.15, + /*numTemp=*/100, + /*pMin=*/0.0, + /*pMax=*/20e6, + /*numP=*/200); + } + + /*! + * \brief Initialize the fluid system's static parameters using + * problem specific temperature and pressure ranges + * + * \param tempMin The minimum temperature used for tabulation of water [K] + * \param tempMax The maximum temperature used for tabulation of water [K] + * \param nTemp The number of ticks on the temperature axis of the table of water + * \param pressMin The minimum pressure used for tabulation of water [Pa] + * \param pressMax The maximum pressure used for tabulation of water [Pa] + * \param nPress The number of ticks on the pressure axis of the table of water + */ + static void init(Scalar tempMin, Scalar tempMax, unsigned nTemp, + Scalar pressMin, Scalar pressMax, unsigned nPress) + { + if (Component::isTabulated) { + std::cout << "Initializing tables for the fluid properties (" + << nTemp*nPress + << " entries).\n"; + + Component::init(tempMin, tempMax, nTemp, + pressMin, pressMax, nPress); + } + } + + /*! + * \brief Calculate the density [kg/m^3] of a fluid phase + * + * \param fluidState An arbitrary fluid state + * \param phaseIdx The index of the fluid phase to consider + */ + using Base::density; + template + static Scalar density(const FluidState &fluidState, + int phaseIdx) + { + assert(0 <= phaseIdx && phaseIdx < numPhases); + + Scalar T = fluidState.temperature(phaseIdx); + Scalar p = fluidState.pressure(phaseIdx); + + // liquid phase + if (phaseIdx == wPhaseIdx) { + return Component::liquidDensity(T, p); + } + else if (phaseIdx == nPhaseIdx)// gas phase + { + return Component::gasDensity(T, p); + } + else DUNE_THROW(Dune::NotImplemented, + "wrong index"); + } + + /*! + * \brief Calculate the dynamic viscosity of a fluid phase [Pa*s] + * + * \param fluidState An arbitrary fluid state + * \param phaseIdx The index of the fluid phase to consider + */ + using Base::viscosity; + template + static Scalar viscosity(const FluidState &fluidState, + int phaseIdx) + { + assert(0 <= phaseIdx && phaseIdx < numPhases); + + Scalar T = fluidState.temperature(phaseIdx); + Scalar p = fluidState.pressure(phaseIdx); + + // liquid phase + if (phaseIdx == wPhaseIdx) { + return Component::liquidViscosity(T, p); + } + else if (phaseIdx == nPhaseIdx) // gas phase + { + return Component::gasViscosity(T, p) ; + } + else DUNE_THROW(Dune::NotImplemented, + "wrong index"); + } + + /*! + * \brief calculate the temperature of vapor at a given pressure on the vapor pressure curve. + * + * \param fluidState An arbitrary fluid state + * \param phaseIdx The index of the fluid phase to consider + */ + template + static Scalar vaporTemperature(const FluidState &fluidState, + const unsigned int phaseIdx) + { + assert(0 <= phaseIdx && phaseIdx < numPhases); + Scalar pressure = fluidState.pressure(nPhaseIdx) ; + + return Component::vaporTemperature( pressure ) ; + } + + /*! + * \brief Calculate the fugacity coefficient [Pa] of an individual + * component in a fluid phase + * + * The fugacity coefficient \f$\phi^\kappa_\alpha\f$ of + * component \f$\kappa\f$ in phase \f$\alpha\f$ is connected to + * the fugacity \f$f^\kappa_\alpha\f$ and the component's mole + * fraction \f$x^\kappa_\alpha\f$ by means of the relation + * + * \f[ + f^\kappa_\alpha = \phi^\kappa_\alpha\;x^\kappa_\alpha\;p_\alpha + \f] + * where \f$p_\alpha\f$ is the pressure of the fluid phase. + * + * The quantity "fugacity" itself is just an other way to express + * the chemical potential \f$\zeta^\kappa_\alpha\f$ of the + * component. It is defined via + * + * \f[ + f^\kappa_\alpha := \exp\left\{\frac{\zeta^\kappa_\alpha}{k_B T_\alpha} \right\} + \f] + * where \f$k_B = 1.380\cdot10^{-23}\;J/K\f$ is the Boltzmann constant. + * + * \param fluidState An arbitrary fluid state + * \param phaseIdx The index of the fluid phase to consider + * \param compIdx The index of the component to consider + */ + using Base::fugacityCoefficient; + template + static Scalar fugacityCoefficient(const FluidState &fluidState, + int phaseIdx, + int compIdx) + { + assert(0 <= phaseIdx && phaseIdx < numPhases); + assert(0 <= compIdx && compIdx < numComponents); + + Scalar T = fluidState.temperature(phaseIdx); + Scalar p = fluidState.pressure(phaseIdx); + + // liquid phase + if (phaseIdx == wPhaseIdx) + { + return Component::vaporPressure(T)/p; + } + + // for the gas phase, assume an ideal gas when it comes to + // fugacity (-> fugacity == partial pressure) + else + { + return 1.0; + + } + } + + + /*! + * \brief Calculate the molecular diffusion coefficient for a + * component in a fluid phase [mol^2 * s / (kg*m^3)] + * + * \param fluidState An arbitrary fluid state + * \param phaseIdx The index of the fluid phase to consider + * \param compIdx The index of the component to consider + */ + using Base::diffusionCoefficient; + template + static Scalar diffusionCoefficient(const FluidState &fluidState, + int phaseIdx, + int compIdx) + { + // TODO! + DUNE_THROW(Dune::NotImplemented, "Diffusion coefficients"); + } + + /*! + * \brief Given a phase's composition, temperature and pressure, + * return the binary diffusion coefficient for components + * \f$i\f$ and \f$j\f$ in this phase. + * + * \param fluidState An arbitrary fluid state + * \param phaseIdx The index of the fluid phase to consider + * \param compIIdx The index of the first component to consider + * \param compJIdx The index of the second component to consider + */ + using Base::binaryDiffusionCoefficient; + template + static Scalar binaryDiffusionCoefficient(const FluidState &fluidState, + int phaseIdx, + int compIIdx, + int compJIdx) + + { + DUNE_THROW(Dune::NotImplemented, "Binary Diffusion coefficients"); + } + + /*! + * \brief Calculate specific enthalpy [J/kg]. + * + * \param fluidState An arbitrary fluid state + * \param phaseIdx The index of the fluid phase to consider + */ + using Base::enthalpy; + template + static Scalar enthalpy(const FluidState &fluidState, + int phaseIdx) + { + assert(0 <= phaseIdx && phaseIdx < numPhases); + + // liquid phase + if (phaseIdx == wPhaseIdx) { + return Component::liquidEnthalpy(fluidState.temperature(phaseIdx), + fluidState.pressure(phaseIdx)); + } + else if (phaseIdx == nPhaseIdx) // gas phase + { + return Component::gasEnthalpy(fluidState.temperature(phaseIdx), + fluidState.pressure(phaseIdx)); + } + else DUNE_THROW(Dune::NotImplemented, + "wrong index"); + } + + /*! + * \brief Thermal conductivity of a fluid phase [W/(m K)]. + * + * Use the conductivity of vapor and liquid water at 100°C + * + * \param fluidState An arbitrary fluid state + * \param phaseIdx The index of the fluid phase to consider + */ + using Base::thermalConductivity; + template + static Scalar thermalConductivity(const FluidState &fluidState, + const int phaseIdx) + { + assert(0 <= phaseIdx && phaseIdx < numPhases); + // liquid phase + if (phaseIdx == wPhaseIdx) { + return Component::liquidThermalConductivity(fluidState.temperature(phaseIdx), + fluidState.pressure(phaseIdx)); //0.68 ; + } + else if (phaseIdx == nPhaseIdx) // gas phase + { + return Component::gasThermalConductivity(fluidState.temperature(phaseIdx), + fluidState.pressure(phaseIdx)); //0.0248; + } + else DUNE_THROW(Dune::NotImplemented, + "wrong index"); + } + + /*! + * \brief Specific isobaric heat capacity of a fluid phase. + * \f$\mathrm{[J/kg / K]}\f$. + * + * \param fluidState An arbitrary fluid state + * \param phaseIdx The index of the fluid phase to consider + */ + using Base::heatCapacity; + template + static Scalar heatCapacity(const FluidState &fluidState, + int phaseIdx) + { + assert(0 <= phaseIdx && phaseIdx < numPhases); + // liquid phase + if (phaseIdx == wPhaseIdx) { + return Component::liquidHeatCapacity(fluidState.temperature(phaseIdx), + fluidState.pressure(phaseIdx));//4.217e3 ; + } + else if (phaseIdx == nPhaseIdx) // gas phase + { + return Component::gasHeatCapacity(fluidState.temperature(phaseIdx), + fluidState.pressure(phaseIdx));//2.029e3; + } + else DUNE_THROW(Dune::NotImplemented, + "wrong index"); + } +}; + +} // end namespace FluidSystems + +#ifdef DUMUX_PROPERTIES_HH +// forward defintions of the property tags +namespace Properties { +NEW_PROP_TAG(Scalar); +NEW_PROP_TAG(Components); +} +/*! + * \brief A two-phase fluid system with water as the only component. + * + * This is an adapter to use Dumux::H2ON2FluidSystem, as is + * done with most other classes in Dumux. + */ +template +class TwoPLiquidVaporFluidsystem +: public FluidSystems::TwoPLiquidVaporFluidsystem +{}; +#endif + +} // end namespace + +#endif diff --git a/dumux/porousmediumflow/2pliquidvapor/CMakeLists.txt b/dumux/porousmediumflow/2pliquidvapor/CMakeLists.txt new file mode 100644 index 0000000000..ba8341c614 --- /dev/null +++ b/dumux/porousmediumflow/2pliquidvapor/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory("implicit") diff --git a/dumux/porousmediumflow/2pliquidvapor/implicit/CMakeLists.txt b/dumux/porousmediumflow/2pliquidvapor/implicit/CMakeLists.txt new file mode 100644 index 0000000000..dc39afe79e --- /dev/null +++ b/dumux/porousmediumflow/2pliquidvapor/implicit/CMakeLists.txt @@ -0,0 +1,11 @@ + +#install headers +install(FILES +fluxvariables.hh +indices.hh +localresidual.hh +model.hh +properties.hh +propertydefaults.hh +volumevariables.hh +DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/porousmediumflow/2pliquidvapour/implicit) diff --git a/dumux/porousmediumflow/2pliquidvapor/implicit/indices.hh b/dumux/porousmediumflow/2pliquidvapor/implicit/indices.hh new file mode 100644 index 0000000000..6a7192e8b2 --- /dev/null +++ b/dumux/porousmediumflow/2pliquidvapor/implicit/indices.hh @@ -0,0 +1,67 @@ +// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- +// vi: set et ts=4 sw=4 sts=4: +/***************************************************************************** + * See the file COPYING for full copying permissions. * + * * + * This program is free software: you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation, either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see . * + *****************************************************************************/ +/*! + * \file + * \brief Defines the indices required for the 2p1cni model. + * + *Important note: The 2p1c model requires the use of the non-isothermal extension found in dumux/implicit/nonisothermal + */ +#ifndef DUMUX_2P1C_INDICES_HH +#define DUMUX_2P1C_INDICES_HH + +#include "properties.hh" + +namespace Dumux +{ + +/*! + * \ingroup TwoPOneCNIModel + * \ingroup ImplicitIndices + * \brief The indices for the isothermal 2p1cni model. + * + * \tparam formulation The formulation, only pgSwSn + * \tparam PVOffset The first index in a primary variable vector. + */ +template +class TwoPOneCIndices +{ + typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem; + +public: + // Phase indices + static const int wPhaseIdx = FluidSystem::wPhaseIdx; //!< index of the wetting liquid phase + static const int gPhaseIdx = FluidSystem::nPhaseIdx; //!< index of the gas phase + + // present phases (-> 'pseudo' primary variable) + static const int twoPhases = 1; //!< All three phases are present + static const int wPhaseOnly = 2; //!< Only the water phase is present + static const int gPhaseOnly = 3; //!< Only gas phase is present + + // Primary variable indices + static const int pressureIdx = PVOffset + 0; //!< Index for phase pressure in a solution vector + static const int switch1Idx = PVOffset + 1; //!< Index of saturation or temperature + + // equation indices + static const int conti0EqIdx = PVOffset + 0; //wCompIdx; //!< Index of the mass conservation equation for the water component + static const int energyEqIdx = PVOffset + 1;//! The index for energy in equation vectors. +}; + +} + +#endif diff --git a/dumux/porousmediumflow/2pliquidvapor/implicit/localresidual.hh b/dumux/porousmediumflow/2pliquidvapor/implicit/localresidual.hh new file mode 100644 index 0000000000..4b74ec1d40 --- /dev/null +++ b/dumux/porousmediumflow/2pliquidvapor/implicit/localresidual.hh @@ -0,0 +1,304 @@ +// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- +// vi: set et ts=4 sw=4 sts=4: +/***************************************************************************** + * See the file COPYING for full copying permissions. * + * * + * This program is free software: you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation, either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see . * + *****************************************************************************/ +/*! + * \file + * + * \brief Element-wise calculation of the Jacobian matrix for problems + * using the two-phase one-component fully implicit model. + * + *Important note: The 2p1c model requires the use of the non-isothermal extension found in dumux/implicit/nonisothermal + */ +#ifndef DUMUX_2P1C_LOCAL_RESIDUAL_HH +#define DUMUX_2P1C_LOCAL_RESIDUAL_HH + +#include "properties.hh" + +namespace Dumux +{ +/*! + * \ingroup TwoPOneCNIModel + * \ingroup ImplicitLocalResidual + * \brief Element-wise calculation of the Jacobian matrix for problems + * using the two-phase one-component fully implicit model. + * + * This class is used to fill the gaps in BoxLocalResidual for the 2P1C flow. + */ +template +class TwoPOneCLocalResidual: public GET_PROP_TYPE(TypeTag, BaseLocalResidual) +{ +protected: + typedef typename GET_PROP_TYPE(TypeTag, LocalResidual) Implementation; + + typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; + typedef typename GET_PROP_TYPE(TypeTag, PrimaryVariables) PrimaryVariables; + typedef typename GET_PROP_TYPE(TypeTag, Indices) Indices; + + typedef typename GET_PROP_TYPE(TypeTag, FVElementGeometry) FVElementGeometry; + typedef typename GET_PROP_TYPE(TypeTag, ElementBoundaryTypes) ElementBoundaryTypes; + + + enum { + numPhases = GET_PROP_VALUE(TypeTag, NumPhases), + numComponents = GET_PROP_VALUE(TypeTag, NumComponents), + + conti0EqIdx = Indices::conti0EqIdx,//!< Index of the mass conservation equation for the water component + energyEqIdx = Indices::energyEqIdx, + + wPhaseIdx = Indices::wPhaseIdx, + gPhaseIdx = Indices::gPhaseIdx, + }; + + typedef typename GET_PROP_TYPE(TypeTag, VolumeVariables) VolumeVariables; + typedef typename GET_PROP_TYPE(TypeTag, ElementVolumeVariables) ElementVolumeVariables; + typedef typename GET_PROP_TYPE(TypeTag, FluxVariables) FluxVariables; + + typedef typename GET_PROP_TYPE(TypeTag, GridView) GridView; + typedef typename GridView::template Codim<0>::Entity Element; + + static const bool useBlockingOfSpuriousFlow = GET_PROP_VALUE(TypeTag, UseBlockingOfSpuriousFlow); + +public: + + /*! + * \brief Evaluate the amount all conservation quantities + * (e.g. phase mass) within a sub-control volume. + * + * The result should be averaged over the volume (e.g. phase mass + * inside a sub control volume divided by the volume) + * + * \param storage The mass of the component within the sub-control volume + * \param scvIdx The SCV (sub-control-volume) index + * \param usePrevSol Evaluate function with solution of current or previous time step + */ + void computeStorage(PrimaryVariables &storage, const int scvIdx, bool usePrevSol) const + { + // if flag usePrevSol is set, the solution from the previous + // time step is used, otherwise the current solution is + // used. The secondary variables are used accordingly. This + // is required to compute the derivative of the storage term + // using the implicit euler method. + const ElementVolumeVariables &elemVolVars = usePrevSol ? this->prevVolVars_() : this->curVolVars_(); + const VolumeVariables &volVars = elemVolVars[scvIdx]; + + // compute storage term of all components within all phases + storage = 0; + for (int phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx) + { + storage[conti0EqIdx] += + volVars.porosity() + * volVars.saturation(phaseIdx) * volVars.density(phaseIdx); + } + } + + /*! + * \brief Evaluates the total flux of all conservation quantities + * over a face of a sub-control volume. + * + * \param flux The flux over the SCV (sub-control-volume) face for each component + * \param faceIdx The index of the SCV face + * \param onBoundary A boolean variable to specify whether the flux variables + * are calculated for interior SCV faces or boundary faces, default=false + */ + void computeFlux(PrimaryVariables &flux, const int faceIdx, const bool onBoundary=false) const + { + FluxVariables fluxVars; + fluxVars.update(this->problem_(), + this->element_(), + this->fvGeometry_(), + faceIdx, + this->curVolVars_(), + onBoundary); + + flux = 0; + asImp_()->computeMyAdvectiveFlux(flux, fluxVars); //Method is called "computeMyAdvectiveFlux" + // to prevent overwrite by nilocalresidual.hh + asImp_()->computeDiffusiveFlux(flux, fluxVars); + } + + /*! + * \brief Evaluates the advective mass flux of all components over + * a face of a subcontrol volume. + * + * \param flux The advective flux over the sub-control-volume face for each component + * \param fluxVars The flux variables at the current SCV + */ + + void computeMyAdvectiveFlux(PrimaryVariables &flux, const FluxVariables &fluxVars) const + { + Scalar massUpwindWeight = GET_PARAM_FROM_GROUP(TypeTag, Scalar, Implicit, MassUpwindWeight); + + //////// + // advective fluxes of all components in all phases + //////// + for (int phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx) + { + // data attached to upstream and the downstream vertices + // of the current phase + const VolumeVariables &up = this->curVolVars_(fluxVars.upstreamIdx(phaseIdx)); + const VolumeVariables &dn = this->curVolVars_(fluxVars.downstreamIdx(phaseIdx)); + + Scalar factor = 1.0; + + // factor for the blocking of spurious cold water fluxes into the steam zone (Gudbjerg, 2004) + if(useBlockingOfSpuriousFlow) + { factor = factor_(up, dn, phaseIdx); } + + + // add advective flux of current component in current + // phase + // if alpha > 0 und alpha < 1 then both upstream and downstream + // nodes need their contribution + // if alpha == 1 (which is mostly the case) then, the downstream + // node is not evaluated + int eqIdx = conti0EqIdx; + flux[eqIdx] += fluxVars.volumeFlux(phaseIdx) + * (massUpwindWeight * up.fluidState().density(phaseIdx) + + (1.0 - massUpwindWeight) * dn.fluidState().density(phaseIdx) ) + * factor ; + } + + // advective heat flux in all phases + flux[energyEqIdx] = 0; + for (int phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx) { + // vertex data of the upstream and the downstream vertices + const VolumeVariables &up = this->curVolVars_(fluxVars.upstreamIdx(phaseIdx)); + const VolumeVariables &dn = this->curVolVars_(fluxVars.downstreamIdx(phaseIdx)); + + Scalar factor = 1.0; + + if(useBlockingOfSpuriousFlow) + { factor = factor_(up, dn, phaseIdx); } + + flux[energyEqIdx] += + fluxVars.volumeFlux(phaseIdx) * ( + massUpwindWeight * // upstream vertex + up.density(phaseIdx) * + up.enthalpy(phaseIdx) + + + (1-massUpwindWeight) * // downstream vertex + dn.density(phaseIdx) * + dn.enthalpy(phaseIdx) ) + * factor ; + } + } + + /*! + * \brief Adds the diffusive mass flux of all components over + * a face of a subcontrol volume. + * + * \param flux The diffusive flux over the sub-control-volume face for each component + * \param fluxVars The flux variables at the current SCV + */ + void computeDiffusiveFlux(PrimaryVariables &flux, const FluxVariables &fluxVars) const + {} + + const bool spuriousFlowDetected() const + { + return spuriousFlowDetected_; + } + + void resetSpuriousFlowDetected() + { + spuriousFlowDetected_ = false; + } + +protected: + + void evalPhaseStorage_(const int phaseIdx) + { + // evaluate the storage terms of a single phase + for (int i=0; i < this->fvGeometry_().numScv; i++) { + PrimaryVariables &storage = this->storageTerm_[i]; + const ElementVolumeVariables &elemVolVars = this->curVolVars_(); + const VolumeVariables &volVars = elemVolVars[i]; + + // compute storage term of all components within all phases + storage = 0; + storage[conti0EqIdx] += volVars.density(phaseIdx) + * volVars.saturation(phaseIdx); + + storage *= volVars.porosity(); + storage *= this->fvGeometry_().subContVol[i].volume; + } + } + + /*! + * \brief Calculate the blocking factor which prevents spurious cold water fluxes into the steam zone (Gudbjerg, 2005) + * + * \param up The upstream volume variables + * \param dn The downstream volume variables + * \param phaseIdx The index of the fluid phase + */ + Scalar factor_(const VolumeVariables &up, const VolumeVariables &dn,const int phaseIdx) const { + + Scalar factor = 1.0; + + Scalar tDn = dn.temperature(); //temperature of the downstream SCV (where the cold water is potentially intruding into a steam zone) + Scalar tUp = up.temperature(); //temperature of the upstream SCV + + Scalar sgDn = dn.saturation(gPhaseIdx); //gas phase saturation of the downstream SCV + Scalar sgUp = up.saturation(gPhaseIdx); //gas phase saturation of the upstream SCV + + bool upIsNotSteam = false; + bool downIsSteam = false; + bool spuriousFlow = false; + + if(sgUp <= 1e-5) + {upIsNotSteam = true;} + + if(sgDn > 1e-5) + {downIsSteam = true;} + + if(upIsNotSteam && downIsSteam && tDn > tUp && phaseIdx == wPhaseIdx) + { + spuriousFlow = true; + spuriousFlowDetected_ = true; + } + + if(spuriousFlow) + { + Scalar deltaT = tDn - tUp; + + if((deltaT) > 15 ) + {factor = 0.0 ;} + + else + { factor = 1-(deltaT/15); } + + } + return factor; + } + + Implementation *asImp_() + { + return static_cast (this); + } + + const Implementation *asImp_() const + { + return static_cast (this); + } + +private: + mutable bool spuriousFlowDetected_;// true if spurious cold-water flow into a steam zone is happening +}; + +} // end namespace + +#endif diff --git a/dumux/porousmediumflow/2pliquidvapor/implicit/model.hh b/dumux/porousmediumflow/2pliquidvapor/implicit/model.hh new file mode 100644 index 0000000000..e915a7d68e --- /dev/null +++ b/dumux/porousmediumflow/2pliquidvapor/implicit/model.hh @@ -0,0 +1,662 @@ +// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- +// vi: set et ts=4 sw=4 sts=4: +/***************************************************************************** + * See the file COPYING for full copying permissions. * + * * + * This program is free software: you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation, either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see . * + *****************************************************************************/ +/*! + * \file + * + * \brief Adaption of the fully implicit scheme to the two-phase one-component flow model. + * + * Important note: The 2p1c model requires the use of the non-isothermal extension found in dumux/implicit/nonisothermal + * + * The model is designed for simulating two fluid phases with water as the only component. + * This model is particularly suitable for the simulation of steam injection in saturated conditions. + */ +#ifndef DUMUX_2P1C_MODEL_HH +#define DUMUX_2P1C_MODEL_HH + +#include +#include "properties.hh" + +namespace Dumux +{ +/*! + * \ingroup TwoPOneCNIModel + * \brief Adaption of the fully implicit scheme to the two-phase one-component flow model. + * + * This model implements two-phase one-component flow of three fluid phases + * \f$\alpha \in \{ water, gas, NAPL \}\f$ each composed of up to two components + * \f$\kappa \in \{ water, contaminant \}\f$. The standard multiphase Darcy + * approach is used as the equation for the conservation of momentum: + * \f[ + v_\alpha = - \frac{k_{r\alpha}}{\mu_\alpha} \mbox{\bf K} + \left(\textbf{grad}\, p_\alpha - \varrho_{\alpha} \mbox{\bf g} \right) + * \f] + * + * By inserting this into the equations for the conservation of the + * components, one transport equation for each component is obtained as + * \f{eqnarray*} + && \phi \frac{\partial (\sum_\alpha \varrho_\alpha X_\alpha^\kappa + S_\alpha )}{\partial t} + - \sum\limits_\alpha \text{div} \left\{ \frac{k_{r\alpha}}{\mu_\alpha} + \varrho_\alpha x_\alpha^\kappa \mbox{\bf K} + (\textbf{grad}\, p_\alpha - \varrho_\alpha \mbox{\bf g}) \right\} + \nonumber \\ + \nonumber \\ + && - \sum\limits_\alpha \text{div} \left\{ D_\text{pm}^\kappa \varrho_\alpha \frac{M^\kappa}{M_\alpha} + \textbf{grad} x^\kappa_{\alpha} \right\} + - q^\kappa = 0 \qquad \forall \kappa , \; \forall \alpha + \f} + * + * Note that these balance equations are molar. + * + * All equations are discretized using a vertex-centered finite volume (box) + * or cell-centered finite volume scheme as spatial + * and the implicit Euler method as time discretization. + * + * The model uses commonly applied auxiliary conditions like + * \f$S_w + S_n + S_g = 1\f$ for the saturations and + * \f$x^w_\alpha + x^c_\alpha = 1\f$ for the mole fractions. + * Furthermore, the phase pressures are related to each other via + * capillary pressures between the fluid phases, which are functions of + * the saturation, e.g. according to the approach of Parker et al. + * + * The used primary variables are dependent on the locally present fluid phases + * An adaptive primary variable switch is included. The phase state is stored for all nodes + * of the system. Different cases can be distinguished: + *
    + *
  • ... to be completed ...
  • + *
+ */ +template +class TwoPOneCModel: public GET_PROP_TYPE(TypeTag, BaseModel) +{ + typedef typename GET_PROP_TYPE(TypeTag, BaseModel) ParentType; + + typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; + typedef typename GET_PROP_TYPE(TypeTag, Problem) Problem; + typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem; + typedef typename GET_PROP_TYPE(TypeTag, GridView) GridView; + + typedef typename GET_PROP_TYPE(TypeTag, FVElementGeometry) FVElementGeometry; + typedef typename GET_PROP_TYPE(TypeTag, PrimaryVariables) PrimaryVariables; + typedef typename GET_PROP_TYPE(TypeTag, VolumeVariables) VolumeVariables; + typedef typename GET_PROP_TYPE(TypeTag, ElementVolumeVariables) ElementVolumeVariables; + typedef typename GET_PROP_TYPE(TypeTag, SolutionVector) SolutionVector; + typedef typename GET_PROP_TYPE(TypeTag, Indices) Indices; + + enum { + dim = GridView::dimension, + dimWorld = GridView::dimensionworld, + + numPhases = GET_PROP_VALUE(TypeTag, NumPhases), + numComponents = GET_PROP_VALUE(TypeTag, NumComponents), + + pressureIdx = Indices::pressureIdx, + switch1Idx = Indices::switch1Idx, + + wPhaseIdx = Indices::wPhaseIdx, + gPhaseIdx = Indices::gPhaseIdx, + + twoPhases = Indices::twoPhases, + wPhaseOnly = Indices::wPhaseOnly, + gPhaseOnly = Indices::gPhaseOnly, + }; + + typedef typename GridView::template Codim::Entity Vertex; + typedef typename GridView::template Codim<0>::Entity Element; + typedef typename GridView::template Codim<0>::Iterator ElementIterator; + typedef typename GridView::template Codim::Iterator VertexIterator; + typedef Dune::FieldMatrix FieldMatrix; + + typedef Dune::FieldVector GlobalPosition; + + + enum { isBox = GET_PROP_VALUE(TypeTag, ImplicitIsBox) }; + enum { dofCodim = isBox ? dim : 0 }; + +public: + /*! + * \brief Initialize the static data with the initial solution. + * + * \param problem The problem to be solved + */ + void init(Problem &problem) + { + ParentType::init(problem); + + staticDat_.resize(this->numDofs()); + + setSwitched_(false); + + if (isBox) + { + for(const auto& vertex: vertices(this->gridView_())) + { + int globalIdx = this->dofMapper().index(vertex); + const GlobalPosition &globalPos = vertex.geometry().corner(0); + + // initialize phase presence + staticDat_[globalIdx].phasePresence + = this->problem_().initialPhasePresence(vertex, globalIdx, + globalPos); + staticDat_[globalIdx].wasSwitched = false; + + staticDat_[globalIdx].oldPhasePresence + = staticDat_[globalIdx].phasePresence; + } + } + else + { + for (const auto& element : elements(this->gridView_())) + { + int globalIdx = this->dofMapper().index(element); + const GlobalPosition &globalPos = element.geometry().center(); + + // initialize phase presence + staticDat_[globalIdx].phasePresence + = this->problem_().initialPhasePresence(*this->gridView_().template begin (), + globalIdx, globalPos); + staticDat_[globalIdx].wasSwitched = false; + + staticDat_[globalIdx].oldPhasePresence + = staticDat_[globalIdx].phasePresence; + } + } + } + + /*! + * \brief Compute the total storage inside one phase of all + * conservation quantities. + * + * \param storage Contains the storage of each component for one phase + * \param phaseIdx The phase index + */ + void globalPhaseStorage(PrimaryVariables &storage, const int phaseIdx) + { + storage = 0; + + for (const auto& element : elements(this->gridView_())) { + if(element.partitionType() == Dune::InteriorEntity) + { + this->localResidual().evalPhaseStorage(element, phaseIdx); + + for (unsigned int i = 0; i < this->localResidual().storageTerm().size(); ++i) + storage += this->localResidual().storageTerm()[i]; + } + } + if (this->gridView_().comm().size() > 1) + storage = this->gridView_().comm().sum(storage); + } + + + /*! + * \brief Called by the update() method if applying the newton + * method was unsuccessful. + */ + void updateFailed() + { + ParentType::updateFailed(); + + setSwitched_(false); + resetPhasePresence_(); + }; + + /*! + * \brief Called by the problem if a time integration was + * successful, post processing of the solution is done and the + * result has been written to disk. + * + * This should prepare the model for the next time integration. + */ + void advanceTimeLevel() + { + ParentType::advanceTimeLevel(); + + // update the phase state + updateOldPhasePresence_(); + setSwitched_(false); + } + + /*! + * \brief Return true if the primary variables were switched for + * at least one vertex after the last timestep. + */ + bool switched() const + { + return switchFlag_; + } + + /*! + * \brief Returns the phase presence of the current or the old solution of a degree of freedom. + * + * \param globalIdx The global index of the degree of freedom + * \param oldSol Evaluate function with solution of current or previous time step + */ + int phasePresence(int globalIdx, bool oldSol) const + { + return + oldSol + ? staticDat_[globalIdx].oldPhasePresence + : staticDat_[globalIdx].phasePresence; + } + + /*! + * \brief Append all quantities of interest which can be derived + * from the solution of the current time step to the VTK + * writer. + * + * \param sol The solution vector + * \param writer The writer for multi-file VTK datasets + */ + template + void addOutputVtkFields(const SolutionVector &sol, + MultiWriter &writer) + { + typedef Dune::BlockVector > ScalarField; + typedef Dune::BlockVector > VectorField; + + // get the number of degrees of freedom + unsigned numDofs = this->numDofs(); + + // create the required scalar fields + ScalarField *saturation[numPhases]; + ScalarField *pressure[numPhases]; + ScalarField *density[numPhases]; + + ScalarField *mobility[numPhases]; + ScalarField *viscosity[numPhases]; + + + for (int phaseIdx = 0; phaseIdx < numPhases; ++ phaseIdx) { + saturation[phaseIdx] = writer.allocateManagedBuffer(numDofs); + pressure[phaseIdx] = writer.allocateManagedBuffer(numDofs); + density[phaseIdx] = writer.allocateManagedBuffer(numDofs); + + mobility[phaseIdx] = writer.allocateManagedBuffer(numDofs); + viscosity[phaseIdx] = writer.allocateManagedBuffer(numDofs); + } + + ScalarField *phasePresence = writer.allocateManagedBuffer (numDofs); + ScalarField *poro = writer.allocateManagedBuffer(numDofs); + ScalarField *permXX = writer.allocateManagedBuffer(numDofs); + ScalarField *permYY = writer.allocateManagedBuffer(numDofs); + ScalarField *permZZ = writer.allocateManagedBuffer(numDofs); + VectorField *velocityW = writer.template allocateManagedBuffer(numDofs); + VectorField *velocityG = writer.template allocateManagedBuffer(numDofs); + ImplicitVelocityOutput velocityOutput(this->problem_()); + + if (velocityOutput.enableOutput()) // check if velocity output is demanded + { + // initialize velocity fields + for (unsigned int i = 0; i < numDofs; ++i) + { + (*velocityW)[i] = Scalar(0); + (*velocityG)[i] = Scalar(0); + } + } + + unsigned numElements = this->gridView_().size(0); + ScalarField *rank = writer.allocateManagedBuffer (numElements); + + for (const auto& element : elements(this->gridView_())) + { + int idx = this->dofMapper().index(element); + (*rank)[idx] = this->gridView_().comm().rank(); + + FVElementGeometry fvGeometry; + fvGeometry.update(this->gridView_(), element); + + + ElementVolumeVariables elemVolVars; + elemVolVars.update(this->problem_(), + element, + fvGeometry, + false /* oldSol? */); + + for (int scvIdx = 0; scvIdx < fvGeometry.numScv; ++scvIdx) + { + int globalIdx = this->dofMapper().subIndex(element, scvIdx, dofCodim); + + for (int phaseIdx = 0; phaseIdx < numPhases; ++ phaseIdx) { + (*saturation[phaseIdx])[globalIdx] = elemVolVars[scvIdx].fluidState().saturation(phaseIdx); + (*pressure[phaseIdx])[globalIdx] = elemVolVars[scvIdx].fluidState().pressure(phaseIdx); + (*density[phaseIdx])[globalIdx] = elemVolVars[scvIdx].fluidState().density(phaseIdx); + + (*mobility[phaseIdx])[globalIdx] = elemVolVars[scvIdx].mobility(phaseIdx); + (*viscosity[phaseIdx])[globalIdx] = elemVolVars[scvIdx].fluidState().viscosity(phaseIdx); + } + + (*poro)[globalIdx] = elemVolVars[scvIdx].porosity(); + (*phasePresence)[globalIdx] = staticDat_[globalIdx].phasePresence; + + FieldMatrix K = this->problem_().spatialParams().intrinsicPermeability(element, + fvGeometry, + scvIdx); + (*permXX)[globalIdx] = K[0][0]; + (*permYY)[globalIdx] = K[1][1]; + (*permZZ)[globalIdx] = K[2][2]; + } + + // velocity output + velocityOutput.calculateVelocity(*velocityW, elemVolVars, fvGeometry, element, wPhaseIdx); + velocityOutput.calculateVelocity(*velocityG, elemVolVars, fvGeometry, element, gPhaseIdx); + + } + + writer.attachDofData(*saturation[wPhaseIdx], "sw", isBox); + writer.attachDofData(*saturation[gPhaseIdx], "sg", isBox); + writer.attachDofData(*pressure[wPhaseIdx], "pw", isBox); + writer.attachDofData(*pressure[gPhaseIdx], "pg", isBox); + writer.attachDofData(*density[wPhaseIdx], "rhow", isBox); + writer.attachDofData(*density[gPhaseIdx], "rhog", isBox); + + writer.attachDofData(*mobility[wPhaseIdx], "MobW", isBox); + writer.attachDofData(*mobility[gPhaseIdx], "MobG", isBox); + + writer.attachDofData(*viscosity[wPhaseIdx], "ViscosW", isBox); + writer.attachDofData(*viscosity[gPhaseIdx], "ViscosG", isBox); + + writer.attachDofData(*poro, "porosity", isBox); + writer.attachDofData(*permXX, "permeabilityXX", isBox); + writer.attachDofData(*permYY, "permeabilityYY", isBox); + writer.attachDofData(*permZZ, "permeabilityZZ", isBox); + writer.attachDofData(*phasePresence, "phase presence", isBox); + + if (velocityOutput.enableOutput()) // check if velocity output is demanded + { + writer.attachDofData(*velocityW, "velocityW", isBox, dim); + writer.attachDofData(*velocityG, "velocityG", isBox, dim); + } + + writer.attachCellData(*rank, "process rank"); + } + + /*! + * \brief Write the current solution to a restart file. + * + * \param outStream The output stream of one entity for the restart file + * \param entity The entity, either a vertex or an element + */ + template + void serializeEntity(std::ostream &outStream, const Entity &entity) + { + // write primary variables + ParentType::serializeEntity(outStream, entity); + + int globalIdx = this->dofMapper().index(entity); + if (!outStream.good()) + DUNE_THROW(Dune::IOError, "Could not serialize entity " << globalIdx); + + outStream << staticDat_[globalIdx].phasePresence << " "; + } + + /*! + * \brief Reads the current solution from a restart file. + * + * \param inStream The input stream of one entity from the restart file + * \param entity The entity, either a vertex or an element + */ + template + void deserializeEntity(std::istream &inStream, const Entity &entity) + { + // read primary variables + ParentType::deserializeEntity(inStream, entity); + + // read phase presence + int globalIdx = this->dofMapper().index(entity); + if (!inStream.good()) + DUNE_THROW(Dune::IOError, + "Could not deserialize entity " << globalIdx); + + inStream >> staticDat_[globalIdx].phasePresence; + staticDat_[globalIdx].oldPhasePresence + = staticDat_[globalIdx].phasePresence; + + } + + /*! + * \brief Update the static data of all vertices in the grid. + * + * \param curGlobalSol The current global solution + * \param oldGlobalSol The previous global solution + */ + void updateStaticData(SolutionVector &curGlobalSol, + const SolutionVector &oldGlobalSol) + { + bool wasSwitched = false; + int succeeded; + try { + for (unsigned i = 0; i < staticDat_.size(); ++i) + staticDat_[i].visited = false; + + FVElementGeometry fvGeometry; + static VolumeVariables volVars; + for (const auto& element : elements(this->gridView_())) + { + fvGeometry.update(this->gridView_(), element); + for (int scvIdx = 0; scvIdx < fvGeometry.numScv; ++scvIdx) + { + int globalIdx = this->dofMapper().subIndex(element, scvIdx, dofCodim); + + if (staticDat_[globalIdx].visited) + continue; + + staticDat_[globalIdx].visited = true; + volVars.update(curGlobalSol[globalIdx], + this->problem_(), + element, + fvGeometry, + scvIdx, + false); + const GlobalPosition &globalPos = fvGeometry.subContVol[scvIdx].global; + + if (primaryVarSwitch_(curGlobalSol, + volVars, + globalIdx, + globalPos)) + { + this->jacobianAssembler().markDofRed(globalIdx); + wasSwitched = true; + } + } + } + succeeded = 1; + } + + catch (Dumux::NumericalProblem &e) + { + std::cout << "\n" + << "Rank " << this->problem_().gridView().comm().rank() + << " caught an exception while updating the static data." << e.what() + << "\n"; + succeeded = 0; + } + + //make sure that all processes succeeded. If not throw a NumericalProblem to decrease the time step size. + if (this->gridView_().comm().size() > 1) + succeeded = this->gridView_().comm().min(succeeded); + + if (!succeeded) { + updateFailed(); + + DUNE_THROW(NumericalProblem, + "A process did not succeed in updating the static data."); + + return; + } + + // make sure that if there was a variable switch in an + // other partition we will also set the switch flag + // for our partition. + if (this->gridView_().comm().size() > 1) + wasSwitched = this->gridView_().comm().max(wasSwitched); + + setSwitched_(wasSwitched); + } + +protected: + /*! + * \brief Data which is attached to each vertex and is not only + * stored locally. + */ + struct StaticVars + { + int phasePresence; + bool wasSwitched; + + int oldPhasePresence; + bool visited; + }; + + /*! + * \brief Reset the current phase presence of all vertices to the old one. + * + * This is done after an update failed. + */ + void resetPhasePresence_() + { + for (unsigned int i = 0; i < this->numDofs(); ++i) + { + staticDat_[i].phasePresence + = staticDat_[i].oldPhasePresence; + staticDat_[i].wasSwitched = false; + } + } + + /*! + * \brief Set the old phase of all verts state to the current one. + */ + void updateOldPhasePresence_() + { + for (unsigned int i = 0; i < this->numDofs(); ++i) + { + staticDat_[i].oldPhasePresence + = staticDat_[i].phasePresence; + staticDat_[i].wasSwitched = false; + } + } + + /*! + * \brief Set whether there was a primary variable switch after in + * the last timestep. + */ + void setSwitched_(bool yesno) + { + switchFlag_ = yesno; + } + + // perform variable switch at a vertex; Returns true if a + // variable switch was performed. + bool primaryVarSwitch_(SolutionVector &globalSol, + const VolumeVariables &volVars, + int globalIdx, + const GlobalPosition &globalPos) + { + // evaluate primary variable switch + bool wouldSwitch = false; + int phasePresence = staticDat_[globalIdx].phasePresence; + int newPhasePresence = phasePresence; + + globalSol[globalIdx][pressureIdx] = volVars.fluidState().pressure(gPhaseIdx); + + // check if a primary var switch is necessary + if (phasePresence == twoPhases) + { + Scalar Smin = 0; + if (staticDat_[globalIdx].wasSwitched) + Smin = -0.01; + + if (volVars.saturation(gPhaseIdx) <= Smin) + { + wouldSwitch = true; + // gas phase disappears + std::cout << "Gas phase disappears at vertex " << globalIdx + << ", coordinates: " << globalPos << ", sg: " + << volVars.saturation(gPhaseIdx) << std::endl; + newPhasePresence = wPhaseOnly; + + globalSol[globalIdx][switch1Idx] = volVars.fluidState().temperature(); + } + else if (volVars.saturation(wPhaseIdx) <= Smin) + { + wouldSwitch = true; + // water phase disappears + std::cout << "Wetting phase disappears at vertex " << globalIdx + << ", coordinates: " << globalPos << ", sw: " + << volVars.saturation(wPhaseIdx) << std::endl; + newPhasePresence = gPhaseOnly; + + globalSol[globalIdx][switch1Idx] = volVars.fluidState().temperature(); + } + + } + else if (phasePresence == wPhaseOnly) + { + Scalar temp = volVars.fluidState().temperature(); + Scalar pg = volVars.fluidState().pressure(gPhaseIdx); //TODO: wPhaseIndex für Brooks Corey? + Scalar tempVap = volVars.vaporTemperature(); + + // if the the temperature would be larger than + // the vapor temperature at the given pressure, gas phase appears + if (temp >= tempVap) + { + wouldSwitch = true; + // gas phase appears + std::cout << "gas phase appears at vertex " << globalIdx + << ", coordinates: " << globalPos << std::endl; + + newPhasePresence = twoPhases; + globalSol[globalIdx][switch1Idx] = 0.9999; //wetting phase saturation + } + } + + + else if (phasePresence == gPhaseOnly) + { + + Scalar temp = volVars.fluidState().temperature(); + Scalar pg = volVars.fluidState().pressure(gPhaseIdx); //TODO: wPhaseIndex für Brooks Corey? + Scalar tempVap = volVars.vaporTemperature(); + + if (temp < tempVap) + { + wouldSwitch = true; + // wetting phase appears + std::cout << "wetting phase appears at vertex " << globalIdx + << ", coordinates: " << globalPos << std::endl; + + + newPhasePresence = twoPhases; + globalSol[globalIdx][switch1Idx] = 0.0001; //arbitrary small value + } + } + staticDat_[globalIdx].phasePresence = newPhasePresence; + staticDat_[globalIdx].wasSwitched = wouldSwitch; + return phasePresence != newPhasePresence; + } + + // parameters given in constructor + std::vector staticDat_; + bool switchFlag_; +}; + +} + +#include "propertydefaults.hh" + +#endif diff --git a/dumux/porousmediumflow/2pliquidvapor/implicit/newtoncontroller.hh b/dumux/porousmediumflow/2pliquidvapor/implicit/newtoncontroller.hh new file mode 100644 index 0000000000..357988df09 --- /dev/null +++ b/dumux/porousmediumflow/2pliquidvapor/implicit/newtoncontroller.hh @@ -0,0 +1,86 @@ +// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- +// vi: set et ts=4 sw=4 sts=4: +/***************************************************************************** + * See the file COPYING for full copying permissions. * + * * + * This program is free software: you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation, either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see . * + *****************************************************************************/ +/*! + * \file + * \brief A 2p1cni specific controller for the newton solver. + * + * This controller 'knows' what a 'physically meaningful' solution is + * which allows the newton method to abort quicker if the solution is + * way out of bounds. + */ +#ifndef DUMUX_2P1CNI_NEWTON_CONTROLLER_HH +#define DUMUX_2P1CNI_NEWTON_CONTROLLER_HH + +#include "properties.hh" + +#include +#include + +namespace Dumux { +/*! + * \ingroup TwoPOneCNIModel + * \brief A 2p1cni specific controller for the newton solver. + * + * This controller 'knows' what a 'physically meaningful' solution is + * which allows the newton method to abort quicker if the solution is + * way out of bounds. + */ +template +class TwoPOneCNINewtonController : public TwoPTwoCNewtonController +{ + typedef TwoPTwoCNewtonController ParentType; + typedef typename GET_PROP_TYPE(TypeTag, Problem) Problem; + typedef typename GET_PROP_TYPE(TypeTag, SolutionVector) SolutionVector; + +public: + TwoPOneCNINewtonController(const Problem &problem) + : ParentType(problem) + {} + + void newtonBeginStep() + { + // call the method of the base class + ParentType::newtonBeginStep(); + + //reset the indicator of spurious cold water fluxes into the steam zone + this->model_().localJacobian().localResidual().resetSpuriousFlowDetected(); + } + + + /*! + * \brief Called after each Newton update + * + * \param uCurrentIter The current global solution vector + * \param uLastIter The previous global solution vector + */ + void newtonEndStep(SolutionVector &uCurrentIter, + const SolutionVector &uLastIter) + { + // call the method of the base class + ParentType::newtonEndStep(uCurrentIter, uLastIter); + + //Output message after each Newton Step if spurious fluxes have been blocked + if (this->model_().localJacobian().localResidual().spuriousFlowDetected()) + std::cout <<"Spurious fluxes blocked!" <. * + *****************************************************************************/ +/*! + * \ingroup TwoPOneCNIModel + */ +/*! + * \file + * + * \brief Defines the properties required for the 2p1cn fully implicit model. + * + *Important note: The 2p1c model requires the use of the non-isothermal extension found in dumux/implicit/nonisothermal + */ +#ifndef DUMUX_2P1C_PROPERTIES_HH +#define DUMUX_2P1C_PROPERTIES_HH + +#include +#include +#include + +namespace Dumux +{ + +namespace Properties +{ +////////////////////////////////////////////////////////////////// +// Type tags +////////////////////////////////////////////////////////////////// +NEW_TYPE_TAG(TwoPOneCNI, INHERITS_FROM(NonIsothermal)); +NEW_TYPE_TAG(BoxTwoPOneCNI, INHERITS_FROM(BoxModel, TwoPOneCNI)); +NEW_TYPE_TAG(CCTwoPOneCNI, INHERITS_FROM(CCModel, TwoPOneCNI)); + +////////////////////////////////////////////////////////////////// +// Property tags +////////////////////////////////////////////////////////////////// + +NEW_PROP_TAG(NumPhases); //!< Number of fluid phases in the system +NEW_PROP_TAG(NumComponents); //!< Number of fluid components in the system +NEW_PROP_TAG(SpatialParams); //!< The type of the spatial parameters +NEW_PROP_TAG(FluidSystem); //!< Type of the multi-component relations + +NEW_PROP_TAG(MaterialLaw); //!< The material law which ought to be used (extracted from the spatial parameters) +NEW_PROP_TAG(MaterialLawParams); //!< The parameters of the material law (extracted from the spatial parameters) + +NEW_PROP_TAG(ProblemEnableGravity); //!< Returns whether gravity is considered in the problem + +NEW_PROP_TAG(ImplicitMassUpwindWeight); //!< The value of the upwind parameter for the mobility +NEW_PROP_TAG(ImplicitMobilityUpwindWeight); //!< Weight for the upwind mobility in the velocity calculation +NEW_PROP_TAG(UseBlockingOfSpuriousFlow); //!< Determines whether Blocking ofspurious flow is used +NEW_PROP_TAG(BaseFluxVariables); //! The base flux variables +NEW_PROP_TAG(SpatialParamsForchCoeff); //!< Property for the forchheimer coefficient +NEW_PROP_TAG(VtkAddVelocity); //!< Returns whether velocity vectors are written into the vtk output +} +} + +#endif diff --git a/dumux/porousmediumflow/2pliquidvapor/implicit/propertydefaults.hh b/dumux/porousmediumflow/2pliquidvapor/implicit/propertydefaults.hh new file mode 100644 index 0000000000..fdfd25d8b9 --- /dev/null +++ b/dumux/porousmediumflow/2pliquidvapor/implicit/propertydefaults.hh @@ -0,0 +1,178 @@ +// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- +// vi: set et ts=4 sw=4 sts=4: +/***************************************************************************** + * See the file COPYING for full copying permissions. * + * * + * This program is free software: you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation, either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see . * + *****************************************************************************/ +/*! + * \ingroup TwoPOneCNIModel + */ +/*! + * \file + * + * \brief Defines default values for most properties required by the + * 2p1cni fully implicit model. + * + *Important note: The 2p1c model requires the use of the non-isothermal extension found in dumux/implicit/nonisothermal + */ +#ifndef DUMUX_2P1C_PROPERTY_DEFAULTS_HH +#define DUMUX_2P1C_PROPERTY_DEFAULTS_HH + +#include "model.hh" +#include "indices.hh" +#include "volumevariables.hh" +#include "properties.hh" +#include "newtoncontroller.hh" +#include "localresidual.hh" + +#include +#include +#include +#include +#include +#include + +namespace Dumux +{ + +namespace Properties { +////////////////////////////////////////////////////////////////// +// Property values +////////////////////////////////////////////////////////////////// + +/*! + * \brief Set the property for the number of components. + * + * We just forward the number from the fluid system and use an static + * assert to make sure it is 1. + */ +SET_PROP(TwoPOneCNI, NumComponents) +{ + private: + typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem; + + public: + static const int value = FluidSystem::numComponents; + + static_assert(value == 1, + "Only fluid systems with 1 component are supported by the 2p1cni model!"); +}; + +/*! + * \brief Set the property for the number of fluid phases. + * + * We just forward the number from the fluid system and use an static + * assert to make sure it is 2. + */ +SET_PROP(TwoPOneCNI, NumPhases) +{ + private: + typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem; + + public: + static const int value = FluidSystem::numPhases; + static_assert(value == 2, + "Only fluid systems with 2 phases are supported by the 2p1cni model!"); +}; + +/*! + * \brief Set the property for the material parameters by extracting + * it from the material law. + */ +SET_TYPE_PROP(TwoPOneCNI, MaterialLawParams, typename GET_PROP_TYPE(TypeTag, MaterialLaw)::Params); + +//! Use the 2p2c specific newton controller for dealing with phase switches +SET_TYPE_PROP(TwoPOneCNI, NewtonController, TwoPOneCNINewtonController); + +//! the FluxVariables property +// SET_TYPE_PROP(TwoPOneCNI, FluxVariables, ImplicitDarcyFluxVariables); + +//! the upwind factor for the mobility. +SET_SCALAR_PROP(TwoPOneCNI, ImplicitMassUpwindWeight, 1.0); + +//! set default mobility upwind weight to 1.0, i.e. fully upwind +SET_SCALAR_PROP(TwoPOneCNI, ImplicitMobilityUpwindWeight, 1.0); + +//! The fluid system to use by default +SET_PROP(TwoPOneCNI, FluidSystem) +{ private: + typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; +public: + typedef FluidSystems::TwoPLiquidVaporFluidsystem > type; +}; + +//! Determines whether Blocking ofspurious flow is used +SET_BOOL_PROP(TwoPOneCNI, UseBlockingOfSpuriousFlow, false); + +//! The spatial parameters to be employed. +//! Use ImplicitSpatialParams by default. +SET_TYPE_PROP(TwoPOneCNI, SpatialParams, ImplicitSpatialParams); + +// disable velocity output by default +SET_BOOL_PROP(TwoPOneCNI, VtkAddVelocity, false); + +// enable gravity by default +SET_BOOL_PROP(TwoPOneCNI, ProblemEnableGravity, true); + +//! default value for the forchheimer coefficient +// Source: Ward, J.C. 1964 Turbulent flow in porous media. ASCE J. Hydraul. Div 90. +// Actually the Forchheimer coefficient is also a function of the dimensions of the +// porous medium. Taking it as a constant is only a first approximation +// (Nield, Bejan, Convection in porous media, 2006, p. 10) +SET_SCALAR_PROP(BoxModel, SpatialParamsForchCoeff, 0.55); + + +//! Somerton is used as default model to compute the effective thermal heat conductivity +SET_PROP(NonIsothermal, ThermalConductivityModel) +{ +private: + typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; + typedef typename GET_PROP_TYPE(TypeTag, Indices) Indices; +public: + typedef ThermalConductivitySomerton type; +}; + +////////////////////////////////////////////////////////////////// +// Property values for isothermal model required for the general non-isothermal model +////////////////////////////////////////////////////////////////// + +// set isothermal Model +SET_TYPE_PROP(TwoPOneCNI, IsothermalModel, TwoPOneCModel); + +// set isothermal FluxVariables +SET_TYPE_PROP(TwoPOneCNI, IsothermalFluxVariables, ImplicitDarcyFluxVariables); + +//set isothermal VolumeVariables +SET_TYPE_PROP(TwoPOneCNI, IsothermalVolumeVariables, TwoPOneCVolumeVariables); + +//set isothermal LocalResidual +SET_TYPE_PROP(TwoPOneCNI, IsothermalLocalResidual, TwoPOneCLocalResidual); + +//set isothermal Indices +SET_PROP(TwoPOneCNI, IsothermalIndices) +{ + +public: + typedef TwoPOneCIndices type; +}; + +//set isothermal NumEq +SET_INT_PROP(TwoPOneCNI, IsothermalNumEq, 1); + +} + +} + +#endif diff --git a/dumux/porousmediumflow/2pliquidvapor/implicit/volumevariables.hh b/dumux/porousmediumflow/2pliquidvapor/implicit/volumevariables.hh new file mode 100644 index 0000000000..0349852803 --- /dev/null +++ b/dumux/porousmediumflow/2pliquidvapor/implicit/volumevariables.hh @@ -0,0 +1,304 @@ +// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- +// vi: set et ts=4 sw=4 sts=4: +/***************************************************************************** + * See the file COPYING for full copying permissions. * + * * + * This program is free software: you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation, either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see . * + *****************************************************************************/ +/*! + * \file + * + * \brief Contains the quantities which are constant within a + * finite volume in the two-phase, one-component model. + * + *Important note: The 2p1c model requires the use of the non-isothermal extension found in dumux/implicit/nonisothermal + */ +#ifndef DUMUX_2P1C_VOLUME_VARIABLES_HH +#define DUMUX_2P1C_VOLUME_VARIABLES_HH + +#include +#include +#include "properties.hh" + +namespace Dumux +{ + +/*! + * \ingroup TwoPOneCNIModel + * \brief Contains the quantities which are are constant within a + * finite volume in the two-phase, two-component model. + */ +template +class TwoPOneCVolumeVariables : public ImplicitVolumeVariables +{ + typedef ImplicitVolumeVariables ParentType; + typedef typename GET_PROP_TYPE(TypeTag, VolumeVariables) Implementation; + + typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; + typedef typename GET_PROP_TYPE(TypeTag, GridView) GridView; + typedef typename GET_PROP_TYPE(TypeTag, Problem) Problem; + typedef typename GET_PROP_TYPE(TypeTag, FVElementGeometry) FVElementGeometry; + typedef typename GET_PROP_TYPE(TypeTag, PrimaryVariables) PrimaryVariables; + typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem; + typedef typename GET_PROP_TYPE(TypeTag, MaterialLaw) MaterialLaw; + typedef typename GET_PROP_TYPE(TypeTag, MaterialLawParams) MaterialLawParams; + + typedef typename GET_PROP_TYPE(TypeTag, Indices) Indices; + enum { + dim = GridView::dimension, + + numPhases = GET_PROP_VALUE(TypeTag, NumPhases), + numComponents = GET_PROP_VALUE(TypeTag, NumComponents), + + wPhaseIdx = Indices::wPhaseIdx, + gPhaseIdx = Indices::gPhaseIdx, + + switch1Idx = Indices::switch1Idx, + pressureIdx = Indices::pressureIdx + }; + + // present phases + enum { + twoPhases = Indices::twoPhases, + wPhaseOnly = Indices::wPhaseOnly, + gPhaseOnly = Indices::gPhaseOnly, + }; + + typedef typename GridView::template Codim<0>::Entity Element; + typedef Dune::FieldMatrix FieldMatrix; + + enum { isBox = GET_PROP_VALUE(TypeTag, ImplicitIsBox) }; + enum { dofCodim = isBox ? dim : 0 }; + +public: + //! The type of the object returned by the fluidState() method + typedef Dumux::CompositionalFluidState FluidState; + + /*! + * \copydoc ImplicitVolumeVariables::update + */ + void update(const PrimaryVariables &priVars, + const Problem &problem, + const Element &element, + const FVElementGeometry &fvGeometry, + const int scvIdx, + bool isOldSol) + { + ParentType::update(priVars, + problem, + element, + fvGeometry, + scvIdx, + isOldSol); + + // capillary pressure parameters + const MaterialLawParams &materialParams = + problem.spatialParams().materialLawParams(element, fvGeometry, scvIdx); + + int globalIdx = problem.model().dofMapper().subIndex(element, scvIdx, dofCodim); + int phasePresence = problem.model().phasePresence(globalIdx, isOldSol); + + // get saturations + Scalar sw(0.0); + Scalar sg(0.0); + if (phasePresence == twoPhases) + { + sw = priVars[switch1Idx]; + sg = 1.0 - sw; + } + else if (phasePresence == wPhaseOnly) + { + sw = 1.0; + sg = 0.0; + } + else if (phasePresence == gPhaseOnly) + { + sw = 0.0; + sg = 1.0; + } + else DUNE_THROW(Dune::InvalidStateException, "phasePresence: " << phasePresence << " is invalid."); + Valgrind::CheckDefined(sg); + + fluidState_.setSaturation(wPhaseIdx, sw); + fluidState_.setSaturation(gPhaseIdx, sg); + + // get gas phase pressure + const Scalar pg = priVars[pressureIdx]; + + // calculate capillary pressure + const Scalar pc = MaterialLaw::pc(materialParams, sw); + + // set wetting phase pressure + const Scalar pw = pg - pc; + + //set pressures + fluidState_.setPressure(wPhaseIdx, pw); + fluidState_.setPressure(gPhaseIdx, pg); + + // get temperature + Scalar temperature; + if (phasePresence == wPhaseOnly || phasePresence == gPhaseOnly) + temperature = priVars[switch1Idx]; + else if (phasePresence == twoPhases) + temperature = FluidSystem::vaporTemperature(fluidState_, wPhaseIdx); + else + DUNE_THROW(Dune::InvalidStateException, "phasePresence: " << phasePresence << " is invalid."); + + Valgrind::CheckDefined(temperature); + + fluidState_.setTemperature(temperature); + + // set the densities + const Scalar rhoW = FluidSystem::density(fluidState_, wPhaseIdx); + const Scalar rhoG = FluidSystem::density(fluidState_, gPhaseIdx); + + fluidState_.setDensity(wPhaseIdx, rhoW); + fluidState_.setDensity(gPhaseIdx, rhoG); + + //get the viscosity and mobility + for (int phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx) + { + // Mobilities + const Scalar mu = + FluidSystem::viscosity(fluidState_, + phaseIdx); + fluidState_.setViscosity(phaseIdx,mu); + + Scalar kr; + if (phaseIdx == wPhaseIdx) + kr = MaterialLaw::krw(materialParams, saturation(wPhaseIdx)); + else // ATTENTION: krn requires the wetting phase saturation + // as parameter! + kr = MaterialLaw::krn(materialParams, saturation(wPhaseIdx)); + + mobility_[phaseIdx] = kr / mu; + Valgrind::CheckDefined(mobility_[phaseIdx]); + } + + // porosity + porosity_ = problem.spatialParams().porosity(element, + fvGeometry, + scvIdx); + Valgrind::CheckDefined(porosity_); + + // the enthalpies (internal energies are directly calculated in the fluidstate + for (int phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx) + { + Scalar h = FluidSystem::enthalpy(fluidState_, phaseIdx); + fluidState_.setEnthalpy(phaseIdx, h); + } + + // energy related quantities not contained in the fluid state + asImp_().updateEnergy_(priVars, problem, element, fvGeometry, scvIdx, isOldSol); + } + + /*! + * \brief Returns the phase state for the control-volume. + */ + const FluidState &fluidState() const + { return fluidState_; } + + /*! + * \brief Returns the effective saturation of a given phase within + * the control volume. + * + * \param phaseIdx The phase index + */ + Scalar saturation(const int phaseIdx) const + { return fluidState_.saturation(phaseIdx); } + + /*! + * \brief Returns the mass density of a given phase within the + * control volume. + * + * \param phaseIdx The phase index + */ + Scalar density(const int phaseIdx) const + { return fluidState_.density(phaseIdx); } + + /*! + * \brief Returns the molar density of a given phase within the + * control volume. + * + * \param phaseIdx The phase index + */ + Scalar molarDensity(const int phaseIdx) const + { return fluidState_.density(phaseIdx) / fluidState_.averageMolarMass(phaseIdx); } + + /*! + * \brief Returns the effective pressure of a given phase within + * the control volume. + * + * \param phaseIdx The phase index + */ + Scalar pressure(const int phaseIdx) const + { return fluidState_.pressure(phaseIdx); } + + /*! + * \brief Returns temperature inside the sub-control volume. + * + * Note that we assume thermodynamic equilibrium, i.e. the + * temperatures of the rock matrix and of all fluid phases are + * identical. + */ + Scalar temperature() const + { return fluidState_.temperature(/*phaseIdx=*/0); } + + /*! + * \brief Returns the effective mobility of a given phase within + * the control volume. + * + * \param phaseIdx The phase index + */ + Scalar mobility(const int phaseIdx) const + { + return mobility_[phaseIdx]; + } + + /*! + * \brief Returns the effective capillary pressure within the control volume. + */ + Scalar capillaryPressure() const + { return fluidState_.capillaryPressure(); } + + /*! + * \brief Returns the average porosity within the control volume. + */ + Scalar porosity() const + { return porosity_; } + + /*! + * \brief Returns the vapor temperature (T_{vap}(p_g) of the fluid within the control volume. + */ + Scalar vaporTemperature() const + { return FluidSystem::vaporTemperature(fluidState_, wPhaseIdx);} + +protected: + FluidState fluidState_; + +private: + + Scalar porosity_; + Scalar mobility_[numPhases]; + + Implementation &asImp_() + { return *static_cast(this); } + + const Implementation &asImp_() const + { return *static_cast(this); } +}; + +} // end namespace + +#endif diff --git a/test/porousmediumflow/2pliquidvapor/CMakeLists.txt b/test/porousmediumflow/2pliquidvapor/CMakeLists.txt new file mode 100644 index 0000000000..f66188c172 --- /dev/null +++ b/test/porousmediumflow/2pliquidvapor/CMakeLists.txt @@ -0,0 +1,13 @@ +#add links to input files +add_input_file_links() + +add_dumux_test(validation_ochs validation_ochs validationochs.cc + python ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py + --script fuzzy + --files ${CMAKE_SOURCE_DIR}/test/references/1ptestbox-reference.vtu + ${CMAKE_CURRENT_BINARY_DIR}/1ptestbox-00001.vtu + --command "${CMAKE_CURRENT_BINARY_DIR}/test_box1p") + +#add executables concept_preheat validation_ochs field_preheat +# add_executable_all(concept_superheated conceptsuperheated.cc) +# add_executable_all(validation_ochs validationochs.cc) diff --git a/test/porousmediumflow/2pliquidvapor/concept_superheated.input b/test/porousmediumflow/2pliquidvapor/concept_superheated.input new file mode 100644 index 0000000000..507ed3b03d --- /dev/null +++ b/test/porousmediumflow/2pliquidvapor/concept_superheated.input @@ -0,0 +1,56 @@ +############################################################### +# Parameter file for 2pni_hot_well. +# Everything behind a '#' is a comment. +# Type "./test_2pni --help" for more information. +############################################################### + +############################################################### +# Mandatory arguments +############################################################### + +[TimeManager] +DtInitial = 10 # 250[s] +TEnd = 1036800 # [s] equals 12 days +MaxTimeStepSize = 500 # + +[Grid] + +File = ./grids/pieceofcake_preheat_fine.dgf + + + +[Problem] +Name = field +WriteAllTimeSteps = 1 +PreheatZone = none #choose preheat zone: full, half, stripe or none +MassRate = 0.05 + + + +[Newton] +MaxSteps = 10 + + + + +[SpatialParams] +temp=10 # groundwater temperature [°C] + +Porosity = 0.4 +Permeability = 1e-11 #intrinsic permeabilty [m^2] + +KHorToKVert = 1 +Well = default # choose the well to simulate: Br38 / I6 / EK2 + + +############################################################### +# Simulation restart +# +# DuMux simulations can be restarted from *.drs files +# Set Restart to the value of a specific file, +# e.g.: 'Restart = 27184.1' for the restart file +# name_time=27184.1_rank=0.drs +# Please comment in the two lines below, if restart is desired. +############################################################### +# [TimeManager] +# Restart = ... diff --git a/test/porousmediumflow/2pliquidvapor/conceptspatialparams.hh b/test/porousmediumflow/2pliquidvapor/conceptspatialparams.hh new file mode 100644 index 0000000000..05af81d5aa --- /dev/null +++ b/test/porousmediumflow/2pliquidvapor/conceptspatialparams.hh @@ -0,0 +1,371 @@ +// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- +// vi: set et ts=4 sw=4 sts=4: +/***************************************************************************** + * See the file COPYING for full copying permissions. * + * * + * This program is free software: you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation, either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see . * + *****************************************************************************/ +/*! + * \file + * + * \brief Definition of the spatial parameters for various steam injection problems + */ + + + +#ifndef DUMUX_INJECTION_SPATIAL_PARAMS_HH +#define DUMUX_INJECTION_SPATIAL_PARAMS_HH + +#include +#include +#include + +namespace Dumux +{ + +//forward declaration +template +class InjectionProblemSpatialParams; + +namespace Properties +{ +// The spatial parameters TypeTag +NEW_TYPE_TAG(InjectionProblemSpatialParams); + +// Set the spatial parameters +SET_TYPE_PROP(InjectionProblemSpatialParams, SpatialParams, Dumux::InjectionProblemSpatialParams); + +// Set the material Law +SET_PROP(InjectionProblemSpatialParams, MaterialLaw) +{ + private: + typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; + typedef RegularizedVanGenuchten EffMaterialLaw; + public: + // define the material law parameterized by absolute saturations + typedef EffToAbsLaw type; +}; + +// This file is used for multiple problem setups which might require different input parameters. +// Therefore, default values are set here to assure functionality: + +NEW_PROP_TAG(SpatialParamsWell); +NEW_PROP_TAG(SpatialParamsPermeability); + +SET_STRING_PROP(InjectionProblemSpatialParams, SpatialParamsWell, "default"); +SET_SCALAR_PROP(InjectionProblemSpatialParams, SpatialParamsPermeability, 1e-11); + +} + +/*! + * \ingroup TwoPOneCNIModel + * + * \brief Definition of the spatial parameters for various steam injection problems + */ +template +class InjectionProblemSpatialParams : public ImplicitSpatialParams +{ + typedef ImplicitSpatialParams ParentType; + + typedef typename GET_PROP_TYPE(TypeTag, Grid) Grid; + typedef typename GET_PROP_TYPE(TypeTag, GridView) GridView; + typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; + typedef typename Grid::ctype CoordScalar; + enum { + dim=GridView::dimension, + dimWorld=GridView::dimensionworld + }; + +// typedef typename GET_PROP_TYPE(TypeTag, Indices) Indices; +// enum { +// wPhaseIdx = Indices::wPhaseIdx, +// gPhaseIdx = Indices::gPhaseIdx +// }; + + typedef Dune::FieldVector GlobalPosition; + typedef Dune::FieldVector DimVector; + + + typedef typename GET_PROP_TYPE(TypeTag, SolutionVector) SolutionVector; + + typedef typename GET_PROP_TYPE(TypeTag, FluxVariables) FluxVariables; + typedef typename GET_PROP_TYPE(TypeTag, ElementVolumeVariables) ElementVolumeVariables; + + typedef typename GET_PROP_TYPE(TypeTag, FVElementGeometry) FVElementGeometry; + typedef typename GridView::template Codim<0>::Entity Element; + + typedef Dune::FieldMatrix FieldMatrix; + + +public: + typedef typename GET_PROP_TYPE(TypeTag, MaterialLaw) MaterialLaw; + typedef typename MaterialLaw::Params MaterialLawParams; + + /*! + * \brief The constructor + * + * \param gridView The grid view + */ + InjectionProblemSpatialParams(const GridView &gridView) + : ParentType(gridView) + { + + eps_ = 1e-6; + + // intrinsic permeability + permeability_ = GET_PARAM_FROM_GROUP(TypeTag, Scalar, SpatialParams, Permeability); //1e-11;//1e-16; + + // porosity + porosity_ = GET_RUNTIME_PARAM(TypeTag, Scalar, SpatialParams.Porosity); + + // heat conductivity of granite + lambdaSolid_ = 2.8; + + // specific heat capacities + heatCap_ = 850.; + + // set Van Genuchten Parameters + materialParams_.setSwr(0.1); + materialParams_.setSnr(0.0); + materialParams_.setVgAlpha(0.0028); + materialParams_.setVgn(2.0); + + // Anisotropy factor for K + anisotropyFactor_ = GET_RUNTIME_PARAM(TypeTag, Scalar, SpatialParams.KHorToKVert); + + // the vertical permeability distribution is specified by the name of a certain well (Durlach - Ochs, 2006) + well_ = GET_PARAM_FROM_GROUP(TypeTag, + std::string, + SpatialParams, + Well); + } + + ~InjectionProblemSpatialParams() + {} + + + + /*! + * \brief Update the spatial parameters with the flow solution + * after a timestep. + * + * \param globalSolution The global solution vector + */ + void update(const SolutionVector &globalSolution) + { + }; + + /*! + * \brief Apply the intrinsic permeability tensor to a pressure + * potential gradient. + * + * \param element The current finite element + * \param fvElemGeom The current finite volume geometry of the element + * \param scvIdx The index of the sub-control volume + */ + const FieldMatrix intrinsicPermeability(const Element &element, + const FVElementGeometry &fvElemGeom, + int scvIdx) const + { + const GlobalPosition &pos = fvElemGeom.subContVol[scvIdx].global; + + + FieldMatrix permMatrix; + permMatrix = 0.0; + Scalar ratio = anisotropyFactor_ ; + + permMatrix[0][0] =1; + permMatrix[1][1] =1; + permMatrix[2][2] = 1/ratio ; + + //distribution of K for well Br38 + if(well_ == "Br38"){ + if(pos[2] < 0.5 + eps_){ + permMatrix *= 1e-9; + return permMatrix; + } + + else if(pos[2] > 0.5 && pos[2] < 6 +eps_ ){ + permMatrix *= 5.5e-11; + return permMatrix; + } + + + else { + permMatrix *= 6.5e-12; + return permMatrix; + } + } + + //distribution of K for well I6 + else if(well_ == "I6"){ + if(pos[2] <= 1.5 /*+ eps_*/) { + permMatrix *= 8e-10; + return permMatrix; + } + + else if(pos[2] > 1.5 && pos[2] <=2.5 /*+eps_*/ ) { + permMatrix *= 9.3e-11; + return permMatrix; + } + + else if(pos[2] > 2.5 && pos[2] <= 3 && sqrt(pos[0]*pos[0] + pos[1]*pos[1]) > 1.5/*+eps_*/ ) { + permMatrix *= 9.3e-11; + return permMatrix; + } + + else if(pos[2] > 2.5 && pos[2] <= 3 && sqrt(pos[0]*pos[0] + pos[1]*pos[1]) <= 1.5/*+eps_*/ ) { + permMatrix *= 8e-11; + return permMatrix; + } + + else if(pos[2] > 3 && pos[2] < 5 /*+eps_ */) { + permMatrix *= 2.7e-11; + return permMatrix; + } + + else if(pos[2] >= 5 && pos[2] <= 6 /*+eps_*/ ) { + permMatrix *= 8e-12; + return permMatrix; + } + + else { + permMatrix *= 5.3e-12; + return permMatrix; + } + } + + + //distribution of K for well EK2 + else if(well_ == "EK2"){ + if(pos[2] < 2 + eps_) { + permMatrix *= 3e-10; + return permMatrix; + } + + else if(pos[2] > 2 && pos[2] < 3 +eps_ ) { + permMatrix *= 4e-11; + return permMatrix; + } + + else if(pos[2] > 3 && pos[2] < 4 +eps_ ) { + permMatrix *= 1e-11; + return permMatrix; + } + + else if(pos[2] > 4 && pos[2] < 6 +eps_ ) { + permMatrix *= 8.5e-12; + return permMatrix; + } + + else { + permMatrix *= 5e-12; + return permMatrix; + } + } + else { + permMatrix *= permeability_; + return permMatrix; //default value + } + + } + + /*! + * \brief Define the porosity \f$[-]\f$ of the spatial parameters + * + * \param element The finite element + * \param fvGeometry The finite volume geometry + * \param scvIdx The local index of the sub-control volume where + * the porosity needs to be defined + */ + double porosity(const Element &element, + const FVElementGeometry &fvGeometry, + const int scvIdx) const + { + return porosity_; + } + + + /*! + * \brief return the parameter object for the Brooks-Corey material law which depends on the position + * + * \param element The current finite element + * \param fvGeometry The current finite volume geometry of the element + * \param scvIdx The index of the sub-control volume + */ + const MaterialLawParams& materialLawParams(const Element &element, + const FVElementGeometry &fvGeometry, + const int scvIdx) const + { + return materialParams_; + } + + /*! + * \brief Returns the heat capacity \f$[J/m^3 K]\f$ of the rock matrix. + * + * This is only required for non-isothermal models. + * + * \param element The finite element + * \param fvGeometry The finite volume geometry + * \param scvIdx The local index of the sub-control volume where + * the heat capacity needs to be defined + */ + double heatCapacity(const Element &element, + const FVElementGeometry &fvGeometry, + const int scvIdx) const + { + return heatCap_ * 2650 // density of sand [kg/m^3] + * (1 - porosity(element, fvGeometry, scvIdx)); + } + + + + Scalar solidHeatCapacity(const Element &element, + const FVElementGeometry &fvGeometry, + const int scvIdx) const + { + return heatCap_; // specific heat capacity of granite [J / (kg K)] + } + + + Scalar solidDensity(const Element &element, + const FVElementGeometry &fvGeometry, + const int scvIdx) const + { + return 2650; // density of granite [kg/m^3] + } + + + Scalar solidThermalConductivity(const Element &element, + const FVElementGeometry &fvGeometry, + const int scvIdx) const + { + return lambdaSolid_; + } + +private: + + Scalar lambdaSolid_; + Scalar eps_; + std::string well_; + Scalar permeability_; + Scalar porosity_; + Scalar heatCap_; + Scalar anisotropyFactor_ ; + MaterialLawParams materialParams_; +}; + +} + +#endif diff --git a/test/porousmediumflow/2pliquidvapor/conceptsuperheated.cc b/test/porousmediumflow/2pliquidvapor/conceptsuperheated.cc new file mode 100644 index 0000000000..7ff724cd6c --- /dev/null +++ b/test/porousmediumflow/2pliquidvapor/conceptsuperheated.cc @@ -0,0 +1,66 @@ +// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- +// vi: set et ts=4 sw=4 sts=4: +/***************************************************************************** + * See the file COPYING for full copying permissions. * + * * + * This program is free software: you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation, either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see . * + *****************************************************************************/ +/*! + * \file + * + * \brief Injection of superheated water + */ +#include "config.h" +#include "conceptsuperheatedproblem.hh" +#include + +/*! + * \brief Provides an interface for customizing error messages associated with + * reading in parameters. + * + * \param progName The name of the program, that was tried to be started. + * \param errorMsg The error message that was issued by the start function. + * Comprises the thing that went wrong and a general help message. + */ +void usage(const char *progName, const std::string &errorMsg) +{ + if (errorMsg.size() > 0) { + std::string errorMessageOut = "\nUsage: "; + errorMessageOut += progName; + errorMessageOut += " [options]\n"; + errorMessageOut += errorMsg; + errorMessageOut += "\n\nThe list of mandatory options for this program is:\n" + "\t-TimeManager.TEnd End of the simulation [s] \n" + "\t-TimeManager.DtInitial Initial timestep size [s] \n" + "\t-Grid.File Name of the file containing the grid \n" + "\t definition in DGF format\n" + "\t-SpatialParams.LensLowerLeftX x-coordinate of the lower left corner of the lens [m] \n" + "\t-SpatialParams.LensLowerLeftY y-coordinate of the lower left corner of the lens [m] \n" + "\t-SpatialParams.LensUpperRightX x-coordinate of the upper right corner of the lens [m] \n" + "\t-SpatialParams.LensUpperRightY y-coordinate of the upper right corner of the lens [m] \n" + "\t-Problem.Name String for naming of the output files \n" + "\n"; + + std::cout << errorMessageOut << std::endl; + } +} + +//////////////////////// +// the main function +//////////////////////// +int main(int argc, char** argv) +{ + typedef TTAG(InjectionBoxProblem) TypeTag; + return Dumux::start(argc, argv, usage); +} diff --git a/test/porousmediumflow/2pliquidvapor/conceptsuperheatedproblem.hh b/test/porousmediumflow/2pliquidvapor/conceptsuperheatedproblem.hh new file mode 100644 index 0000000000..b05fdc651c --- /dev/null +++ b/test/porousmediumflow/2pliquidvapor/conceptsuperheatedproblem.hh @@ -0,0 +1,669 @@ +// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- +// vi: set et ts=4 sw=4 sts=4: +/***************************************************************************** + * See the file COPYING for full copying permissions. * + * * + * This program is free software: you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation, either version 2 of the License, or * + * (at your option) any later vesion. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see . * + *****************************************************************************/ +/*! + * \file + * + * \brief Non-isothermal steam injection problem where superheated water is injected under high pressure and vaporizes after some distance from the injection well + * + */ +#ifndef DUMUX_SUPERHEATEDPROBLEM_HH +#define DUMUX_SUPERHEATEDPROBLEM_HH + +#include +#include + +#include + +#include "conceptspatialparams.hh" +#include + + +#include + +#define ISOTHERMAL 0 + + +namespace Dumux +{ +template +class InjectionProblem; + +namespace Properties +{ +NEW_TYPE_TAG(InjectionProblem, INHERITS_FROM(TwoPOneCNI, InjectionProblemSpatialParams)); +NEW_TYPE_TAG(InjectionBoxProblem, INHERITS_FROM(BoxModel, InjectionProblem)); + + SET_PROP(InjectionProblem, Grid) +{ + typedef Dune::UGGrid<3> type; +}; + + + +// Set the problem property +SET_PROP(InjectionProblem, Problem) +{ + typedef Dumux::InjectionProblem type; +}; + +// Set the fluid system +SET_TYPE_PROP(InjectionProblem, + FluidSystem, + Dumux::FluidSystems::PureWaterSimpleFluidSystem); + + +// Enable gravity +SET_BOOL_PROP(InjectionProblem, ProblemEnableGravity, true); + +// Use forward differences instead of central differences +SET_INT_PROP(InjectionProblem, ImplicitNumericDifferenceMethod, +1); + +// Write newton convergence +SET_BOOL_PROP(InjectionProblem, NewtonWriteConvergence, false); + +//Define whether spurious cold-water flow into the steam is blocked +SET_BOOL_PROP(InjectionProblem, UseBlockingOfSpuriousFlow, true); + +// Linear solver settings +SET_TYPE_PROP(InjectionProblem, LinearSolver, Dumux::AMGBackend ); + +} + + +/*! + * \ingroup TwoPOneCNIBoxModel + * \ingroup ImplicitTestProblems + * \brief Non-isothermal problem where superheated water is injected under high pressure and vaporizes after some distance from the injection well. + * + * This problem uses the \ref TwoPOneCNIModel. + * + * */ +template +class InjectionProblem : public ImplicitPorousMediaProblem +{ + typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; + typedef typename GET_PROP_TYPE(TypeTag, GridView) GridView; + typedef typename GridView::Grid Grid; + typedef Dumux::H2O IapwsH2O; + + typedef ImplicitPorousMediaProblem ParentType; + + // copy some indices for convenience + typedef typename GET_PROP_TYPE(TypeTag, Indices) Indices; + enum { + pressureIdx = Indices::pressureIdx, + switch1Idx = Indices::switch1Idx, + + energyEqIdx = Indices::energyEqIdx, + + // phase and component indices + wPhaseIdx = Indices::wPhaseIdx, + gPhaseIdx = Indices::gPhaseIdx, + + + // Phase State + wPhaseOnly = Indices::wPhaseOnly, + gPhaseOnly = Indices::gPhaseOnly, + twoPhases = Indices::twoPhases, + + // Grid and world dimension + dim = GridView::dimension, + dimWorld = GridView::dimensionworld, + numPhases = GET_PROP_VALUE(TypeTag, NumPhases) + }; + + + typedef typename GET_PROP_TYPE(TypeTag, PrimaryVariables) PrimaryVariables; + typedef typename GET_PROP_TYPE(TypeTag, BoundaryTypes) BoundaryTypes; + typedef typename GET_PROP_TYPE(TypeTag, TimeManager) TimeManager; + typedef typename GET_PROP_TYPE(TypeTag, FluxVariables) FluxVariables; + typedef typename GET_PROP_TYPE(TypeTag, VolumeVariables) VolumeVariables; + typedef typename GET_PROP_TYPE(TypeTag, LocalResidual) LocalResidual; + + typedef typename GridView::template Codim<0>::Entity Element; + typedef typename GridView::template Codim::Entity Vertex; + typedef typename GridView::Intersection Intersection; + typedef Dune::FieldVector Vector; + + typedef typename GET_PROP_TYPE(TypeTag, FVElementGeometry) FVElementGeometry; + typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem; + typedef typename GET_PROP_TYPE(TypeTag, ElementVolumeVariables) ElementVolumeVariables; + + typedef typename GridView::template Codim<0>::Iterator ElementIterator; + typedef Dune::array EpisodeArray; + + typedef Dune::FieldVector GlobalPosition; + typedef Dune::FieldVector Flux; + + enum { isBox = GET_PROP_VALUE(TypeTag, ImplicitIsBox) }; + +public: + + /*! + * \brief The constructor + * + * \param timeManager The time manager + * \param gridView The grid view + */ + + InjectionProblem(TimeManager &timeManager, const GridView &gridView) + : ParentType(timeManager, gridView), eps_(1e-6)/*, pOut_(4e6)*/ + { + + name_ = GET_RUNTIME_PARAM_FROM_GROUP(TypeTag, + std::string, + Problem, + Name); + + + episodes_[0] = 1.0; //hours 6 + episodes_[1] = 2.0; //10 + episodes_[2] = 3.0; // 12 + episodes_[3] = 6.0;// 22 + episodes_[4] = 12.0; // 24 + episodes_[5] = 24.0; // 32 + episodes_[6] = 480.0; // 36 + + + writeAllSteps_ = GET_RUNTIME_PARAM(TypeTag, bool, Problem.WriteAllTimeSteps); + + preheatZone_ = GET_RUNTIME_PARAM(TypeTag, std::string, Problem.PreheatZone); + + massRate_ = GET_RUNTIME_PARAM(TypeTag, Scalar, Problem.MassRate); + + myMassrate_ = 0; + myP_ = 0; + myEnth_ = 0; + + FluidSystem::init( + /*tempMin=*/273.15, + /*tempMax=*/623.15, + /*numTemp=*/300, + /*pMin=*/0.0, + /*pMax=*/20e6, + /*numP=*/300); + + logfile_.open("protokoll.txt"); //for the logfile + logfile_<<"Logfile: " << std::endl; + logfile_<<"Time [s]: Enthalpy Mass Rate Pressure massCalc " << std::endl; + + this->timeManager().startNextEpisode(episodes_[0]*3600); //set the first episode lenght + + } //end of constructor + + + ~InjectionProblem() //The deconstructor + { + logfile_.close(); + } + + + bool shouldWriteOutput() const //define output + { + if(this->timeManager().episodeWillBeOver()) + { + return true; + } + + else if(writeAllSteps_) + { + return true; + } + + else + { + return (this->timeManager().timeStepIndex() == 0) || + this->timeManager().time() == episodes_[5] || + this->timeManager().willBeFinished(); + } + + } + + + void episodeEnd() //Episode Management + { + std::cout<<"Episode index before end of current episode is set to: "<timeManager().episodeIndex()<timeManager().episodeIndex()]*3600 - this->timeManager().time(); + this->timeManager().startNextEpisode(episodeLenght); + std::cout<<"Episode index of new episode is set to: "<timeManager().episodeIndex()<model().globalStorage(storage); + + //calculating flux across the layer of the coordinate 2 (Z axis) + //intercepted at coordinate value = 999m (just below the top of the cap rock) + calculateFluxAcrossLayer(flux, 0, /*depthFluxMeasurement_*/0.135); + + // Write mass balance information for rank 0 + if (this->gridView().comm().rank() == 0) { + std::cout<<"Storage: mass=[" << storage[0] << "]" + << " energy=[" << storage[1] << "]"<< "flux=[" < 2.0 - eps_) + { + values[switch1Idx] = 273.15 + 90.0; + } + + else {} + } + + else {} + } + + GlobalPosition convertToPolarCoordinates_(const GlobalPosition &globalPos) const + { + GlobalPosition polarPos; + polarPos[0] = sqrt(pow(globalPos[0],2) + pow(globalPos[1],2)); //radius + polarPos[1] = acos(globalPos[0]/polarPos[0]); //angle + polarPos[2] = globalPos[2]; //z-coordinate + return polarPos; + } + + bool onSideBoundary_(const GlobalPosition &globalPos) const + { + Scalar angle = convertToPolarCoordinates_(globalPos)[1]; + return angle < eps_ || angle > 30 - eps_; + } + + bool onTopBoundary_(const GlobalPosition &globalPos) const + { + return globalPos[dim-1] > this->bBoxMax()[dim-1] - eps_ ; + } + + bool onInjectionBoundary_(const GlobalPosition &globalPos) const + { + Scalar radius = convertToPolarCoordinates_(globalPos)[0]; + return radius < 0.135 + eps_ && globalPos[dim-1] > 2.0 -eps_ && globalPos[dim-1] < 3.0 + eps_ ; + } + + bool onBackBoundary_(const GlobalPosition &globalPos) const + { + Scalar radius = convertToPolarCoordinates_(globalPos)[0]; + return radius > 5.0 - eps_; + } + + /*! + * \brief Calculate the fluxes across a certain layer in the domain. + * The layer is situated perpendicular to the coordinate axis "coord" and cuts + * the axis at the value "coordVal". + * + * \param globalSol The global solution vector + * \param flux A vector to store the flux + * \param axis The dimension, perpendicular to which the layer is situated + * \param coordVal The (Scalar) coordinate on the axis, at which the layer is situated + */ + void calculateFluxAcrossLayer(Flux &flux, int coord, + Scalar coordVal) + { + //Scalar massUpwindWeight = GET_PARAM_FROM_GROUP(TypeTag, Scalar, Implicit, MassUpwindWeight); + Scalar massUpwindWeight_ = GET_PARAM_FROM_GROUP(TypeTag, Scalar, Implicit, MassUpwindWeight); + ElementVolumeVariables elemVolVars; + FVElementGeometry fvGeometry; + + ElementIterator elemIt = this->gridView().template begin<0>(); + const ElementIterator &endit = this->gridView().template end<0> (); + + GlobalPosition globalI, globalJ; + Flux tmpFlux(0.0); + int sign; + + + // Loop over elements + for (; elemIt != endit; ++elemIt) + { + if(elemIt->partitionType() == Dune::InteriorEntity){ + fvGeometry.update(this->gridView(), *elemIt); + elemVolVars.update(*this, + *elemIt, + fvGeometry, + false /* oldSol? */); + if (elemIt->partitionType() != Dune::InteriorEntity) + continue; + + for (int faceId = 0; faceId< fvGeometry.numScvf; faceId++) + { + int idxI = fvGeometry.subContVolFace[faceId].i; + int idxJ = fvGeometry.subContVolFace[faceId].j; + int flagI, flagJ; + + globalI = fvGeometry.subContVol[idxI].global; + globalJ = fvGeometry.subContVol[idxJ].global; + + // 2D case: give y or x value of the line over which flux is to be + // calculated. + // up to now only flux calculation to lines or planes (3D) parallel to + // x, y and z axis possible + + // Flux across plane with z = 80 numEq + if (globalI[coord] < coordVal + 0.5e-2 ) + flagI = 1; + else + flagI = -1; + + if (globalJ[coord] < coordVal) + flagJ = 1; + else + flagJ = -1; + + if (flagI == flagJ) + { + sign = 0; + } + else + { + if (flagI > 0) + sign = -1; + else + sign = 1; + } + // get variables + if (flagI != flagJ) + { + FluxVariables fluxVars(*this, + *elemIt, + fvGeometry, + faceId, + elemVolVars); + tmpFlux = 0; + + + //////// + // advective fluxes of all components in all phases + //////// + + // loop over all phases + for (int phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx) + { + + // data attached to upstream and the downstream vertices + // of the current phase + const VolumeVariables &up = elemVolVars[fluxVars.upstreamIdx(phaseIdx)]; + const VolumeVariables &dn = elemVolVars[fluxVars.downstreamIdx(phaseIdx)]; + + // add advective flux of current phase (mass) + tmpFlux[phaseIdx] += + fluxVars.volumeFlux(phaseIdx) + * + (( massUpwindWeight_)*up.density(phaseIdx) + + + (1 - massUpwindWeight_)*dn.density(phaseIdx)); + + //energy + tmpFlux[phaseIdx+numPhases] += + fluxVars.volumeFlux(phaseIdx) + * + (( massUpwindWeight_)*up.density(phaseIdx)*up.enthalpy(phaseIdx) + + + (1 - massUpwindWeight_)*dn.density(phaseIdx)*dn.enthalpy(phaseIdx)); + + } + + + // the face normal points into the outward direction, so we + // have to multiply all fluxes with -1 + tmpFlux *= -1; + tmpFlux *= sign; + flux += tmpFlux; + + } + } + } + } + //If parallel sum of fluxes over all processors + if (this->gridView().comm().size() > 1) +// flux = this->problem_().gridView().comm().sum(flux); + flux = this->gridView().comm().sum(flux); + } + + + Scalar eps_; + std::string name_; + mutable Scalar myMassrate_; + mutable Scalar myP_; + mutable Scalar myEnth_; + + + EpisodeArray episodes_; //Array storing the episode lengths for vtu output + bool writeAllSteps_; + + std::ofstream logfile_; + std::string preheatZone_; + Scalar massRate_; + + +}; +} //end namespace + +#endif diff --git a/test/porousmediumflow/2pliquidvapor/grids/pieceofcake.dgf b/test/porousmediumflow/2pliquidvapor/grids/pieceofcake.dgf new file mode 100644 index 0000000000..243917f74d --- /dev/null +++ b/test/porousmediumflow/2pliquidvapor/grids/pieceofcake.dgf @@ -0,0 +1,5293 @@ +DGF +Vertex +0.135000000000000 0.000000000000000 0.000000000000000 + 0.161720688009245 0.000000000000000 0.000000000000000 + 0.193730229112470 0.000000000000000 0.000000000000000 + 0.232075451409314 0.000000000000000 0.000000000000000 + 0.278010382755335 0.000000000000000 0.000000000000000 + 0.333037262021528 0.000000000000000 0.000000000000000 + 0.398955667754346 0.000000000000000 0.000000000000000 + 0.477921370921634 0.000000000000000 0.000000000000000 + 0.572516836442726 0.000000000000000 0.000000000000000 + 0.685835679158474 0.000000000000000 0.000000000000000 + 0.821583836257749 0.000000000000000 0.000000000000000 + 0.984200764865763 0.000000000000000 0.000000000000000 + 1.179004628394934 0.000000000000000 0.000000000000000 + 1.412366219778614 0.000000000000000 0.000000000000000 + 1.691917309508250 0.000000000000000 0.000000000000000 + 2.026800232210552 0.000000000000000 0.000000000000000 + 2.427966874151020 0.000000000000000 0.000000000000000 + 2.908536839639692 0.000000000000000 0.000000000000000 + 3.484226509679746 0.000000000000000 0.000000000000000 + 4.173863024633023 0.000000000000000 0.000000000000000 + 5.000000000000000 0.000000000000000 0.000000000000000 + 0.133845056285464 0.017621035949707 0.000000000000000 + 0.160337145104603 0.021108785609054 0.000000000000000 + 0.192072840146330 0.025286869123969 0.000000000000000 + 0.230090013750771 0.030291924980207 0.000000000000000 + 0.275631965391343 0.036287636658693 0.000000000000000 + 0.330188082077248 0.043470085679062 0.000000000000000 + 0.395542546711004 0.052074164176583 0.000000000000000 + 0.473832687340980 0.062381256726988 0.000000000000000 + 0.567618875541131 0.074728442642739 0.000000000000000 + 0.679968259848487 0.089519519689209 0.000000000000000 + 0.814555072645528 0.107238209736266 0.000000000000000 + 0.975780790886334 0.128463978217990 0.000000000000000 + 1.168918080358097 0.153890984754208 0.000000000000000 + 1.400283230977460 0.184350784687931 0.000000000000000 + 1.677442722381357 0.220839523961306 0.000000000000000 + 2.009460675256398 0.264550516701160 0.000000000000000 + 2.407195280962862 0.316913270919354 0.000000000000000 + 2.883653903777195 0.379640238609912 0.000000000000000 + 3.454418468884391 0.454782819140658 0.000000000000000 + 4.138155047850561 0.544798447453416 0.000000000000000 + 4.957224306869052 0.652630961100258 0.000000000000000 + 0.130399986549024 0.034940571088840 0.000000000000000 + 0.156210189193366 0.041856394043875 0.000000000000000 + 0.187129031632634 0.050141072906382 0.000000000000000 + 0.224167672163950 0.060065546725495 0.000000000000000 + 0.268537408679887 0.071954381793322 0.000000000000000 + 0.321689292503194 0.086196386139970 0.000000000000000 + 0.385361583028324 0.103257324966418 0.000000000000000 + 0.461636595108683 0.123695152856025 0.000000000000000 + 0.553008798305344 0.148178260913223 0.000000000000000 + 0.662466395089674 0.177507335577035 0.000000000000000 + 0.793589045903009 0.212641543971896 0.000000000000000 + 0.950664937037295 0.254729902151727 0.000000000000000 + 1.138831019881013 0.305148852092629 0.000000000000000 + 1.364241007862425 0.365547276338158 0.000000000000000 + 1.634266625199533 0.437900422439351 0.000000000000000 + 1.957738689020853 0.524574500714302 0.000000000000000 + 2.345235909116810 0.628404067908319 0.000000000000000 + 2.809430850121165 0.752784727481049 0.000000000000000 + 3.365504370340686 0.901784178156201 0.000000000000000 + 4.031642090886043 1.080275242424238 0.000000000000000 + 4.829629131445342 1.294095225512604 0.000000000000000 + 0.124723736889024 0.051662263369287 0.000000000000000 + 0.149410433635385 0.061887827971822 0.000000000000000 + 0.178983393505734 0.074137349029635 0.000000000000000 + 0.214409759555383 0.088811430312994 0.000000000000000 + 0.256848102453283 0.106389967505944 0.000000000000000 + 0.307686309945289 0.127447842535870 0.000000000000000 + 0.368586975817614 0.152673724297740 0.000000000000000 + 0.441541772744232 0.182892590624920 0.000000000000000 + 0.528936587207547 0.219092708056705 0.000000000000000 + 0.633629546640492 0.262457951738807 0.000000000000000 + 0.759044490560639 0.314406522434794 0.000000000000000 + 0.909282942541432 0.376637326835177 0.000000000000000 + 1.089258244910155 0.451185537968501 0.000000000000000 + 1.304856242863799 0.540489152741387 0.000000000000000 + 1.563127772956236 0.647468723280525 0.000000000000000 + 1.872519251028453 0.775622869580695 0.000000000000000 + 2.243148900643535 0.929142697068850 0.000000000000000 + 2.687137655698174 1.113048860953628 0.000000000000000 + 3.219005558926356 1.333355759861682 0.000000000000000 + 3.856146619964103 1.597268228488301 0.000000000000000 + 4.619397662556434 1.913417161825449 0.000000000000000 + 0.116913429510899 0.067500000000000 0.000000000000000 + 0.140054224133504 0.080860344004622 0.000000000000000 + 0.167775299892379 0.096865114556235 0.000000000000000 + 0.200983236515207 0.116037725704657 0.000000000000000 + 0.240764053981956 0.139005191377668 0.000000000000000 + 0.288418729317458 0.166518631010764 0.000000000000000 + 0.345505743259048 0.199477833877173 0.000000000000000 + 0.413892048229620 0.238960685460817 0.000000000000000 + 0.495814124453702 0.286258418221363 0.000000000000000 + 0.593951120972993 0.342917839579237 0.000000000000000 + 0.711512473537886 0.410791918128875 0.000000000000000 + 0.852342864797825 0.492100382432881 0.000000000000000 + 1.021047959369445 0.589502314197467 0.000000000000000 + 1.223145025775275 0.706183109889307 0.000000000000000 + 1.465243371136763 0.845958654754125 0.000000000000000 + 1.755260489490538 1.013400116105276 0.000000000000000 + 2.102680992561878 1.213983437075510 0.000000000000000 + 2.518866790970880 1.454268419819846 0.000000000000000 + 3.017428669921848 1.742113254839873 0.000000000000000 + 3.614671411248753 2.086931512316511 0.000000000000000 + 4.330127018922194 2.500000000000000 0.000000000000000 + 0.135000000000000 0.000000000000000 0.250000000000000 + 0.161720688009245 0.000000000000000 0.250000000000000 + 0.193730229112470 0.000000000000000 0.250000000000000 + 0.232075451409314 0.000000000000000 0.250000000000000 + 0.278010382755335 0.000000000000000 0.250000000000000 + 0.333037262021528 0.000000000000000 0.250000000000000 + 0.398955667754346 0.000000000000000 0.250000000000000 + 0.477921370921634 0.000000000000000 0.250000000000000 + 0.572516836442726 0.000000000000000 0.250000000000000 + 0.685835679158474 0.000000000000000 0.250000000000000 + 0.821583836257749 0.000000000000000 0.250000000000000 + 0.984200764865763 0.000000000000000 0.250000000000000 + 1.179004628394934 0.000000000000000 0.250000000000000 + 1.412366219778614 0.000000000000000 0.250000000000000 + 1.691917309508250 0.000000000000000 0.250000000000000 + 2.026800232210552 0.000000000000000 0.250000000000000 + 2.427966874151020 0.000000000000000 0.250000000000000 + 2.908536839639692 0.000000000000000 0.250000000000000 + 3.484226509679746 0.000000000000000 0.250000000000000 + 4.173863024633023 0.000000000000000 0.250000000000000 + 5.000000000000000 0.000000000000000 0.250000000000000 + 0.133845056285464 0.017621035949707 0.250000000000000 + 0.160337145104603 0.021108785609054 0.250000000000000 + 0.192072840146330 0.025286869123969 0.250000000000000 + 0.230090013750771 0.030291924980207 0.250000000000000 + 0.275631965391343 0.036287636658693 0.250000000000000 + 0.330188082077248 0.043470085679062 0.250000000000000 + 0.395542546711004 0.052074164176583 0.250000000000000 + 0.473832687340980 0.062381256726988 0.250000000000000 + 0.567618875541131 0.074728442642739 0.250000000000000 + 0.679968259848487 0.089519519689209 0.250000000000000 + 0.814555072645528 0.107238209736266 0.250000000000000 + 0.975780790886334 0.128463978217990 0.250000000000000 + 1.168918080358097 0.153890984754208 0.250000000000000 + 1.400283230977460 0.184350784687931 0.250000000000000 + 1.677442722381357 0.220839523961306 0.250000000000000 + 2.009460675256398 0.264550516701160 0.250000000000000 + 2.407195280962862 0.316913270919354 0.250000000000000 + 2.883653903777195 0.379640238609912 0.250000000000000 + 3.454418468884391 0.454782819140658 0.250000000000000 + 4.138155047850561 0.544798447453416 0.250000000000000 + 4.957224306869052 0.652630961100258 0.250000000000000 + 0.130399986549024 0.034940571088840 0.250000000000000 + 0.156210189193366 0.041856394043875 0.250000000000000 + 0.187129031632634 0.050141072906382 0.250000000000000 + 0.224167672163950 0.060065546725495 0.250000000000000 + 0.268537408679887 0.071954381793322 0.250000000000000 + 0.321689292503194 0.086196386139970 0.250000000000000 + 0.385361583028324 0.103257324966418 0.250000000000000 + 0.461636595108683 0.123695152856025 0.250000000000000 + 0.553008798305344 0.148178260913223 0.250000000000000 + 0.662466395089674 0.177507335577035 0.250000000000000 + 0.793589045903009 0.212641543971896 0.250000000000000 + 0.950664937037295 0.254729902151727 0.250000000000000 + 1.138831019881013 0.305148852092629 0.250000000000000 + 1.364241007862425 0.365547276338158 0.250000000000000 + 1.634266625199533 0.437900422439351 0.250000000000000 + 1.957738689020853 0.524574500714302 0.250000000000000 + 2.345235909116810 0.628404067908319 0.250000000000000 + 2.809430850121165 0.752784727481049 0.250000000000000 + 3.365504370340686 0.901784178156201 0.250000000000000 + 4.031642090886043 1.080275242424238 0.250000000000000 + 4.829629131445342 1.294095225512604 0.250000000000000 + 0.124723736889024 0.051662263369287 0.250000000000000 + 0.149410433635385 0.061887827971822 0.250000000000000 + 0.178983393505734 0.074137349029635 0.250000000000000 + 0.214409759555383 0.088811430312994 0.250000000000000 + 0.256848102453283 0.106389967505944 0.250000000000000 + 0.307686309945289 0.127447842535870 0.250000000000000 + 0.368586975817614 0.152673724297740 0.250000000000000 + 0.441541772744232 0.182892590624920 0.250000000000000 + 0.528936587207547 0.219092708056705 0.250000000000000 + 0.633629546640492 0.262457951738807 0.250000000000000 + 0.759044490560639 0.314406522434794 0.250000000000000 + 0.909282942541432 0.376637326835177 0.250000000000000 + 1.089258244910155 0.451185537968501 0.250000000000000 + 1.304856242863799 0.540489152741387 0.250000000000000 + 1.563127772956236 0.647468723280525 0.250000000000000 + 1.872519251028453 0.775622869580695 0.250000000000000 + 2.243148900643535 0.929142697068850 0.250000000000000 + 2.687137655698174 1.113048860953628 0.250000000000000 + 3.219005558926356 1.333355759861682 0.250000000000000 + 3.856146619964103 1.597268228488301 0.250000000000000 + 4.619397662556434 1.913417161825449 0.250000000000000 + 0.116913429510899 0.067500000000000 0.250000000000000 + 0.140054224133504 0.080860344004622 0.250000000000000 + 0.167775299892379 0.096865114556235 0.250000000000000 + 0.200983236515207 0.116037725704657 0.250000000000000 + 0.240764053981956 0.139005191377668 0.250000000000000 + 0.288418729317458 0.166518631010764 0.250000000000000 + 0.345505743259048 0.199477833877173 0.250000000000000 + 0.413892048229620 0.238960685460817 0.250000000000000 + 0.495814124453702 0.286258418221363 0.250000000000000 + 0.593951120972993 0.342917839579237 0.250000000000000 + 0.711512473537886 0.410791918128875 0.250000000000000 + 0.852342864797825 0.492100382432881 0.250000000000000 + 1.021047959369445 0.589502314197467 0.250000000000000 + 1.223145025775275 0.706183109889307 0.250000000000000 + 1.465243371136763 0.845958654754125 0.250000000000000 + 1.755260489490538 1.013400116105276 0.250000000000000 + 2.102680992561878 1.213983437075510 0.250000000000000 + 2.518866790970880 1.454268419819846 0.250000000000000 + 3.017428669921848 1.742113254839873 0.250000000000000 + 3.614671411248753 2.086931512316511 0.250000000000000 + 4.330127018922194 2.500000000000000 0.250000000000000 + 0.135000000000000 0.000000000000000 0.500000000000000 + 0.161720688009245 0.000000000000000 0.500000000000000 + 0.193730229112470 0.000000000000000 0.500000000000000 + 0.232075451409314 0.000000000000000 0.500000000000000 + 0.278010382755335 0.000000000000000 0.500000000000000 + 0.333037262021528 0.000000000000000 0.500000000000000 + 0.398955667754346 0.000000000000000 0.500000000000000 + 0.477921370921634 0.000000000000000 0.500000000000000 + 0.572516836442726 0.000000000000000 0.500000000000000 + 0.685835679158474 0.000000000000000 0.500000000000000 + 0.821583836257749 0.000000000000000 0.500000000000000 + 0.984200764865763 0.000000000000000 0.500000000000000 + 1.179004628394934 0.000000000000000 0.500000000000000 + 1.412366219778614 0.000000000000000 0.500000000000000 + 1.691917309508250 0.000000000000000 0.500000000000000 + 2.026800232210552 0.000000000000000 0.500000000000000 + 2.427966874151020 0.000000000000000 0.500000000000000 + 2.908536839639692 0.000000000000000 0.500000000000000 + 3.484226509679746 0.000000000000000 0.500000000000000 + 4.173863024633023 0.000000000000000 0.500000000000000 + 5.000000000000000 0.000000000000000 0.500000000000000 + 0.133845056285464 0.017621035949707 0.500000000000000 + 0.160337145104603 0.021108785609054 0.500000000000000 + 0.192072840146330 0.025286869123969 0.500000000000000 + 0.230090013750771 0.030291924980207 0.500000000000000 + 0.275631965391343 0.036287636658693 0.500000000000000 + 0.330188082077248 0.043470085679062 0.500000000000000 + 0.395542546711004 0.052074164176583 0.500000000000000 + 0.473832687340980 0.062381256726988 0.500000000000000 + 0.567618875541131 0.074728442642739 0.500000000000000 + 0.679968259848487 0.089519519689209 0.500000000000000 + 0.814555072645528 0.107238209736266 0.500000000000000 + 0.975780790886334 0.128463978217990 0.500000000000000 + 1.168918080358097 0.153890984754208 0.500000000000000 + 1.400283230977460 0.184350784687931 0.500000000000000 + 1.677442722381357 0.220839523961306 0.500000000000000 + 2.009460675256398 0.264550516701160 0.500000000000000 + 2.407195280962862 0.316913270919354 0.500000000000000 + 2.883653903777195 0.379640238609912 0.500000000000000 + 3.454418468884391 0.454782819140658 0.500000000000000 + 4.138155047850561 0.544798447453416 0.500000000000000 + 4.957224306869052 0.652630961100258 0.500000000000000 + 0.130399986549024 0.034940571088840 0.500000000000000 + 0.156210189193366 0.041856394043875 0.500000000000000 + 0.187129031632634 0.050141072906382 0.500000000000000 + 0.224167672163950 0.060065546725495 0.500000000000000 + 0.268537408679887 0.071954381793322 0.500000000000000 + 0.321689292503194 0.086196386139970 0.500000000000000 + 0.385361583028324 0.103257324966418 0.500000000000000 + 0.461636595108683 0.123695152856025 0.500000000000000 + 0.553008798305344 0.148178260913223 0.500000000000000 + 0.662466395089674 0.177507335577035 0.500000000000000 + 0.793589045903009 0.212641543971896 0.500000000000000 + 0.950664937037295 0.254729902151727 0.500000000000000 + 1.138831019881013 0.305148852092629 0.500000000000000 + 1.364241007862425 0.365547276338158 0.500000000000000 + 1.634266625199533 0.437900422439351 0.500000000000000 + 1.957738689020853 0.524574500714302 0.500000000000000 + 2.345235909116810 0.628404067908319 0.500000000000000 + 2.809430850121165 0.752784727481049 0.500000000000000 + 3.365504370340686 0.901784178156201 0.500000000000000 + 4.031642090886043 1.080275242424238 0.500000000000000 + 4.829629131445342 1.294095225512604 0.500000000000000 + 0.124723736889024 0.051662263369287 0.500000000000000 + 0.149410433635385 0.061887827971822 0.500000000000000 + 0.178983393505734 0.074137349029635 0.500000000000000 + 0.214409759555383 0.088811430312994 0.500000000000000 + 0.256848102453283 0.106389967505944 0.500000000000000 + 0.307686309945289 0.127447842535870 0.500000000000000 + 0.368586975817614 0.152673724297740 0.500000000000000 + 0.441541772744232 0.182892590624920 0.500000000000000 + 0.528936587207547 0.219092708056705 0.500000000000000 + 0.633629546640492 0.262457951738807 0.500000000000000 + 0.759044490560639 0.314406522434794 0.500000000000000 + 0.909282942541432 0.376637326835177 0.500000000000000 + 1.089258244910155 0.451185537968501 0.500000000000000 + 1.304856242863799 0.540489152741387 0.500000000000000 + 1.563127772956236 0.647468723280525 0.500000000000000 + 1.872519251028453 0.775622869580695 0.500000000000000 + 2.243148900643535 0.929142697068850 0.500000000000000 + 2.687137655698174 1.113048860953628 0.500000000000000 + 3.219005558926356 1.333355759861682 0.500000000000000 + 3.856146619964103 1.597268228488301 0.500000000000000 + 4.619397662556434 1.913417161825449 0.500000000000000 + 0.116913429510899 0.067500000000000 0.500000000000000 + 0.140054224133504 0.080860344004622 0.500000000000000 + 0.167775299892379 0.096865114556235 0.500000000000000 + 0.200983236515207 0.116037725704657 0.500000000000000 + 0.240764053981956 0.139005191377668 0.500000000000000 + 0.288418729317458 0.166518631010764 0.500000000000000 + 0.345505743259048 0.199477833877173 0.500000000000000 + 0.413892048229620 0.238960685460817 0.500000000000000 + 0.495814124453702 0.286258418221363 0.500000000000000 + 0.593951120972993 0.342917839579237 0.500000000000000 + 0.711512473537886 0.410791918128875 0.500000000000000 + 0.852342864797825 0.492100382432881 0.500000000000000 + 1.021047959369445 0.589502314197467 0.500000000000000 + 1.223145025775275 0.706183109889307 0.500000000000000 + 1.465243371136763 0.845958654754125 0.500000000000000 + 1.755260489490538 1.013400116105276 0.500000000000000 + 2.102680992561878 1.213983437075510 0.500000000000000 + 2.518866790970880 1.454268419819846 0.500000000000000 + 3.017428669921848 1.742113254839873 0.500000000000000 + 3.614671411248753 2.086931512316511 0.500000000000000 + 4.330127018922194 2.500000000000000 0.500000000000000 + 0.135000000000000 0.000000000000000 0.750000000000000 + 0.161720688009245 0.000000000000000 0.750000000000000 + 0.193730229112470 0.000000000000000 0.750000000000000 + 0.232075451409314 0.000000000000000 0.750000000000000 + 0.278010382755335 0.000000000000000 0.750000000000000 + 0.333037262021528 0.000000000000000 0.750000000000000 + 0.398955667754346 0.000000000000000 0.750000000000000 + 0.477921370921634 0.000000000000000 0.750000000000000 + 0.572516836442726 0.000000000000000 0.750000000000000 + 0.685835679158474 0.000000000000000 0.750000000000000 + 0.821583836257749 0.000000000000000 0.750000000000000 + 0.984200764865763 0.000000000000000 0.750000000000000 + 1.179004628394934 0.000000000000000 0.750000000000000 + 1.412366219778614 0.000000000000000 0.750000000000000 + 1.691917309508250 0.000000000000000 0.750000000000000 + 2.026800232210552 0.000000000000000 0.750000000000000 + 2.427966874151020 0.000000000000000 0.750000000000000 + 2.908536839639692 0.000000000000000 0.750000000000000 + 3.484226509679746 0.000000000000000 0.750000000000000 + 4.173863024633023 0.000000000000000 0.750000000000000 + 5.000000000000000 0.000000000000000 0.750000000000000 + 0.133845056285464 0.017621035949707 0.750000000000000 + 0.160337145104603 0.021108785609054 0.750000000000000 + 0.192072840146330 0.025286869123969 0.750000000000000 + 0.230090013750771 0.030291924980207 0.750000000000000 + 0.275631965391343 0.036287636658693 0.750000000000000 + 0.330188082077248 0.043470085679062 0.750000000000000 + 0.395542546711004 0.052074164176583 0.750000000000000 + 0.473832687340980 0.062381256726988 0.750000000000000 + 0.567618875541131 0.074728442642739 0.750000000000000 + 0.679968259848487 0.089519519689209 0.750000000000000 + 0.814555072645528 0.107238209736266 0.750000000000000 + 0.975780790886334 0.128463978217990 0.750000000000000 + 1.168918080358097 0.153890984754208 0.750000000000000 + 1.400283230977460 0.184350784687931 0.750000000000000 + 1.677442722381357 0.220839523961306 0.750000000000000 + 2.009460675256398 0.264550516701160 0.750000000000000 + 2.407195280962862 0.316913270919354 0.750000000000000 + 2.883653903777195 0.379640238609912 0.750000000000000 + 3.454418468884391 0.454782819140658 0.750000000000000 + 4.138155047850561 0.544798447453416 0.750000000000000 + 4.957224306869052 0.652630961100258 0.750000000000000 + 0.130399986549024 0.034940571088840 0.750000000000000 + 0.156210189193366 0.041856394043875 0.750000000000000 + 0.187129031632634 0.050141072906382 0.750000000000000 + 0.224167672163950 0.060065546725495 0.750000000000000 + 0.268537408679887 0.071954381793322 0.750000000000000 + 0.321689292503194 0.086196386139970 0.750000000000000 + 0.385361583028324 0.103257324966418 0.750000000000000 + 0.461636595108683 0.123695152856025 0.750000000000000 + 0.553008798305344 0.148178260913223 0.750000000000000 + 0.662466395089674 0.177507335577035 0.750000000000000 + 0.793589045903009 0.212641543971896 0.750000000000000 + 0.950664937037295 0.254729902151727 0.750000000000000 + 1.138831019881013 0.305148852092629 0.750000000000000 + 1.364241007862425 0.365547276338158 0.750000000000000 + 1.634266625199533 0.437900422439351 0.750000000000000 + 1.957738689020853 0.524574500714302 0.750000000000000 + 2.345235909116810 0.628404067908319 0.750000000000000 + 2.809430850121165 0.752784727481049 0.750000000000000 + 3.365504370340686 0.901784178156201 0.750000000000000 + 4.031642090886043 1.080275242424238 0.750000000000000 + 4.829629131445342 1.294095225512604 0.750000000000000 + 0.124723736889024 0.051662263369287 0.750000000000000 + 0.149410433635385 0.061887827971822 0.750000000000000 + 0.178983393505734 0.074137349029635 0.750000000000000 + 0.214409759555383 0.088811430312994 0.750000000000000 + 0.256848102453283 0.106389967505944 0.750000000000000 + 0.307686309945289 0.127447842535870 0.750000000000000 + 0.368586975817614 0.152673724297740 0.750000000000000 + 0.441541772744232 0.182892590624920 0.750000000000000 + 0.528936587207547 0.219092708056705 0.750000000000000 + 0.633629546640492 0.262457951738807 0.750000000000000 + 0.759044490560639 0.314406522434794 0.750000000000000 + 0.909282942541432 0.376637326835177 0.750000000000000 + 1.089258244910155 0.451185537968501 0.750000000000000 + 1.304856242863799 0.540489152741387 0.750000000000000 + 1.563127772956236 0.647468723280525 0.750000000000000 + 1.872519251028453 0.775622869580695 0.750000000000000 + 2.243148900643535 0.929142697068850 0.750000000000000 + 2.687137655698174 1.113048860953628 0.750000000000000 + 3.219005558926356 1.333355759861682 0.750000000000000 + 3.856146619964103 1.597268228488301 0.750000000000000 + 4.619397662556434 1.913417161825449 0.750000000000000 + 0.116913429510899 0.067500000000000 0.750000000000000 + 0.140054224133504 0.080860344004622 0.750000000000000 + 0.167775299892379 0.096865114556235 0.750000000000000 + 0.200983236515207 0.116037725704657 0.750000000000000 + 0.240764053981956 0.139005191377668 0.750000000000000 + 0.288418729317458 0.166518631010764 0.750000000000000 + 0.345505743259048 0.199477833877173 0.750000000000000 + 0.413892048229620 0.238960685460817 0.750000000000000 + 0.495814124453702 0.286258418221363 0.750000000000000 + 0.593951120972993 0.342917839579237 0.750000000000000 + 0.711512473537886 0.410791918128875 0.750000000000000 + 0.852342864797825 0.492100382432881 0.750000000000000 + 1.021047959369445 0.589502314197467 0.750000000000000 + 1.223145025775275 0.706183109889307 0.750000000000000 + 1.465243371136763 0.845958654754125 0.750000000000000 + 1.755260489490538 1.013400116105276 0.750000000000000 + 2.102680992561878 1.213983437075510 0.750000000000000 + 2.518866790970880 1.454268419819846 0.750000000000000 + 3.017428669921848 1.742113254839873 0.750000000000000 + 3.614671411248753 2.086931512316511 0.750000000000000 + 4.330127018922194 2.500000000000000 0.750000000000000 + 0.135000000000000 0.000000000000000 1.000000000000000 + 0.161720688009245 0.000000000000000 1.000000000000000 + 0.193730229112470 0.000000000000000 1.000000000000000 + 0.232075451409314 0.000000000000000 1.000000000000000 + 0.278010382755335 0.000000000000000 1.000000000000000 + 0.333037262021528 0.000000000000000 1.000000000000000 + 0.398955667754346 0.000000000000000 1.000000000000000 + 0.477921370921634 0.000000000000000 1.000000000000000 + 0.572516836442726 0.000000000000000 1.000000000000000 + 0.685835679158474 0.000000000000000 1.000000000000000 + 0.821583836257749 0.000000000000000 1.000000000000000 + 0.984200764865763 0.000000000000000 1.000000000000000 + 1.179004628394934 0.000000000000000 1.000000000000000 + 1.412366219778614 0.000000000000000 1.000000000000000 + 1.691917309508250 0.000000000000000 1.000000000000000 + 2.026800232210552 0.000000000000000 1.000000000000000 + 2.427966874151020 0.000000000000000 1.000000000000000 + 2.908536839639692 0.000000000000000 1.000000000000000 + 3.484226509679746 0.000000000000000 1.000000000000000 + 4.173863024633023 0.000000000000000 1.000000000000000 + 5.000000000000000 0.000000000000000 1.000000000000000 + 0.133845056285464 0.017621035949707 1.000000000000000 + 0.160337145104603 0.021108785609054 1.000000000000000 + 0.192072840146330 0.025286869123969 1.000000000000000 + 0.230090013750771 0.030291924980207 1.000000000000000 + 0.275631965391343 0.036287636658693 1.000000000000000 + 0.330188082077248 0.043470085679062 1.000000000000000 + 0.395542546711004 0.052074164176583 1.000000000000000 + 0.473832687340980 0.062381256726988 1.000000000000000 + 0.567618875541131 0.074728442642739 1.000000000000000 + 0.679968259848487 0.089519519689209 1.000000000000000 + 0.814555072645528 0.107238209736266 1.000000000000000 + 0.975780790886334 0.128463978217990 1.000000000000000 + 1.168918080358097 0.153890984754208 1.000000000000000 + 1.400283230977460 0.184350784687931 1.000000000000000 + 1.677442722381357 0.220839523961306 1.000000000000000 + 2.009460675256398 0.264550516701160 1.000000000000000 + 2.407195280962862 0.316913270919354 1.000000000000000 + 2.883653903777195 0.379640238609912 1.000000000000000 + 3.454418468884391 0.454782819140658 1.000000000000000 + 4.138155047850561 0.544798447453416 1.000000000000000 + 4.957224306869052 0.652630961100258 1.000000000000000 + 0.130399986549024 0.034940571088840 1.000000000000000 + 0.156210189193366 0.041856394043875 1.000000000000000 + 0.187129031632634 0.050141072906382 1.000000000000000 + 0.224167672163950 0.060065546725495 1.000000000000000 + 0.268537408679887 0.071954381793322 1.000000000000000 + 0.321689292503194 0.086196386139970 1.000000000000000 + 0.385361583028324 0.103257324966418 1.000000000000000 + 0.461636595108683 0.123695152856025 1.000000000000000 + 0.553008798305344 0.148178260913223 1.000000000000000 + 0.662466395089674 0.177507335577035 1.000000000000000 + 0.793589045903009 0.212641543971896 1.000000000000000 + 0.950664937037295 0.254729902151727 1.000000000000000 + 1.138831019881013 0.305148852092629 1.000000000000000 + 1.364241007862425 0.365547276338158 1.000000000000000 + 1.634266625199533 0.437900422439351 1.000000000000000 + 1.957738689020853 0.524574500714302 1.000000000000000 + 2.345235909116810 0.628404067908319 1.000000000000000 + 2.809430850121165 0.752784727481049 1.000000000000000 + 3.365504370340686 0.901784178156201 1.000000000000000 + 4.031642090886043 1.080275242424238 1.000000000000000 + 4.829629131445342 1.294095225512604 1.000000000000000 + 0.124723736889024 0.051662263369287 1.000000000000000 + 0.149410433635385 0.061887827971822 1.000000000000000 + 0.178983393505734 0.074137349029635 1.000000000000000 + 0.214409759555383 0.088811430312994 1.000000000000000 + 0.256848102453283 0.106389967505944 1.000000000000000 + 0.307686309945289 0.127447842535870 1.000000000000000 + 0.368586975817614 0.152673724297740 1.000000000000000 + 0.441541772744232 0.182892590624920 1.000000000000000 + 0.528936587207547 0.219092708056705 1.000000000000000 + 0.633629546640492 0.262457951738807 1.000000000000000 + 0.759044490560639 0.314406522434794 1.000000000000000 + 0.909282942541432 0.376637326835177 1.000000000000000 + 1.089258244910155 0.451185537968501 1.000000000000000 + 1.304856242863799 0.540489152741387 1.000000000000000 + 1.563127772956236 0.647468723280525 1.000000000000000 + 1.872519251028453 0.775622869580695 1.000000000000000 + 2.243148900643535 0.929142697068850 1.000000000000000 + 2.687137655698174 1.113048860953628 1.000000000000000 + 3.219005558926356 1.333355759861682 1.000000000000000 + 3.856146619964103 1.597268228488301 1.000000000000000 + 4.619397662556434 1.913417161825449 1.000000000000000 + 0.116913429510899 0.067500000000000 1.000000000000000 + 0.140054224133504 0.080860344004622 1.000000000000000 + 0.167775299892379 0.096865114556235 1.000000000000000 + 0.200983236515207 0.116037725704657 1.000000000000000 + 0.240764053981956 0.139005191377668 1.000000000000000 + 0.288418729317458 0.166518631010764 1.000000000000000 + 0.345505743259048 0.199477833877173 1.000000000000000 + 0.413892048229620 0.238960685460817 1.000000000000000 + 0.495814124453702 0.286258418221363 1.000000000000000 + 0.593951120972993 0.342917839579237 1.000000000000000 + 0.711512473537886 0.410791918128875 1.000000000000000 + 0.852342864797825 0.492100382432881 1.000000000000000 + 1.021047959369445 0.589502314197467 1.000000000000000 + 1.223145025775275 0.706183109889307 1.000000000000000 + 1.465243371136763 0.845958654754125 1.000000000000000 + 1.755260489490538 1.013400116105276 1.000000000000000 + 2.102680992561878 1.213983437075510 1.000000000000000 + 2.518866790970880 1.454268419819846 1.000000000000000 + 3.017428669921848 1.742113254839873 1.000000000000000 + 3.614671411248753 2.086931512316511 1.000000000000000 + 4.330127018922194 2.500000000000000 1.000000000000000 + 0.135000000000000 0.000000000000000 1.250000000000000 + 0.161720688009245 0.000000000000000 1.250000000000000 + 0.193730229112470 0.000000000000000 1.250000000000000 + 0.232075451409314 0.000000000000000 1.250000000000000 + 0.278010382755335 0.000000000000000 1.250000000000000 + 0.333037262021528 0.000000000000000 1.250000000000000 + 0.398955667754346 0.000000000000000 1.250000000000000 + 0.477921370921634 0.000000000000000 1.250000000000000 + 0.572516836442726 0.000000000000000 1.250000000000000 + 0.685835679158474 0.000000000000000 1.250000000000000 + 0.821583836257749 0.000000000000000 1.250000000000000 + 0.984200764865763 0.000000000000000 1.250000000000000 + 1.179004628394934 0.000000000000000 1.250000000000000 + 1.412366219778614 0.000000000000000 1.250000000000000 + 1.691917309508250 0.000000000000000 1.250000000000000 + 2.026800232210552 0.000000000000000 1.250000000000000 + 2.427966874151020 0.000000000000000 1.250000000000000 + 2.908536839639692 0.000000000000000 1.250000000000000 + 3.484226509679746 0.000000000000000 1.250000000000000 + 4.173863024633023 0.000000000000000 1.250000000000000 + 5.000000000000000 0.000000000000000 1.250000000000000 + 0.133845056285464 0.017621035949707 1.250000000000000 + 0.160337145104603 0.021108785609054 1.250000000000000 + 0.192072840146330 0.025286869123969 1.250000000000000 + 0.230090013750771 0.030291924980207 1.250000000000000 + 0.275631965391343 0.036287636658693 1.250000000000000 + 0.330188082077248 0.043470085679062 1.250000000000000 + 0.395542546711004 0.052074164176583 1.250000000000000 + 0.473832687340980 0.062381256726988 1.250000000000000 + 0.567618875541131 0.074728442642739 1.250000000000000 + 0.679968259848487 0.089519519689209 1.250000000000000 + 0.814555072645528 0.107238209736266 1.250000000000000 + 0.975780790886334 0.128463978217990 1.250000000000000 + 1.168918080358097 0.153890984754208 1.250000000000000 + 1.400283230977460 0.184350784687931 1.250000000000000 + 1.677442722381357 0.220839523961306 1.250000000000000 + 2.009460675256398 0.264550516701160 1.250000000000000 + 2.407195280962862 0.316913270919354 1.250000000000000 + 2.883653903777195 0.379640238609912 1.250000000000000 + 3.454418468884391 0.454782819140658 1.250000000000000 + 4.138155047850561 0.544798447453416 1.250000000000000 + 4.957224306869052 0.652630961100258 1.250000000000000 + 0.130399986549024 0.034940571088840 1.250000000000000 + 0.156210189193366 0.041856394043875 1.250000000000000 + 0.187129031632634 0.050141072906382 1.250000000000000 + 0.224167672163950 0.060065546725495 1.250000000000000 + 0.268537408679887 0.071954381793322 1.250000000000000 + 0.321689292503194 0.086196386139970 1.250000000000000 + 0.385361583028324 0.103257324966418 1.250000000000000 + 0.461636595108683 0.123695152856025 1.250000000000000 + 0.553008798305344 0.148178260913223 1.250000000000000 + 0.662466395089674 0.177507335577035 1.250000000000000 + 0.793589045903009 0.212641543971896 1.250000000000000 + 0.950664937037295 0.254729902151727 1.250000000000000 + 1.138831019881013 0.305148852092629 1.250000000000000 + 1.364241007862425 0.365547276338158 1.250000000000000 + 1.634266625199533 0.437900422439351 1.250000000000000 + 1.957738689020853 0.524574500714302 1.250000000000000 + 2.345235909116810 0.628404067908319 1.250000000000000 + 2.809430850121165 0.752784727481049 1.250000000000000 + 3.365504370340686 0.901784178156201 1.250000000000000 + 4.031642090886043 1.080275242424238 1.250000000000000 + 4.829629131445342 1.294095225512604 1.250000000000000 + 0.124723736889024 0.051662263369287 1.250000000000000 + 0.149410433635385 0.061887827971822 1.250000000000000 + 0.178983393505734 0.074137349029635 1.250000000000000 + 0.214409759555383 0.088811430312994 1.250000000000000 + 0.256848102453283 0.106389967505944 1.250000000000000 + 0.307686309945289 0.127447842535870 1.250000000000000 + 0.368586975817614 0.152673724297740 1.250000000000000 + 0.441541772744232 0.182892590624920 1.250000000000000 + 0.528936587207547 0.219092708056705 1.250000000000000 + 0.633629546640492 0.262457951738807 1.250000000000000 + 0.759044490560639 0.314406522434794 1.250000000000000 + 0.909282942541432 0.376637326835177 1.250000000000000 + 1.089258244910155 0.451185537968501 1.250000000000000 + 1.304856242863799 0.540489152741387 1.250000000000000 + 1.563127772956236 0.647468723280525 1.250000000000000 + 1.872519251028453 0.775622869580695 1.250000000000000 + 2.243148900643535 0.929142697068850 1.250000000000000 + 2.687137655698174 1.113048860953628 1.250000000000000 + 3.219005558926356 1.333355759861682 1.250000000000000 + 3.856146619964103 1.597268228488301 1.250000000000000 + 4.619397662556434 1.913417161825449 1.250000000000000 + 0.116913429510899 0.067500000000000 1.250000000000000 + 0.140054224133504 0.080860344004622 1.250000000000000 + 0.167775299892379 0.096865114556235 1.250000000000000 + 0.200983236515207 0.116037725704657 1.250000000000000 + 0.240764053981956 0.139005191377668 1.250000000000000 + 0.288418729317458 0.166518631010764 1.250000000000000 + 0.345505743259048 0.199477833877173 1.250000000000000 + 0.413892048229620 0.238960685460817 1.250000000000000 + 0.495814124453702 0.286258418221363 1.250000000000000 + 0.593951120972993 0.342917839579237 1.250000000000000 + 0.711512473537886 0.410791918128875 1.250000000000000 + 0.852342864797825 0.492100382432881 1.250000000000000 + 1.021047959369445 0.589502314197467 1.250000000000000 + 1.223145025775275 0.706183109889307 1.250000000000000 + 1.465243371136763 0.845958654754125 1.250000000000000 + 1.755260489490538 1.013400116105276 1.250000000000000 + 2.102680992561878 1.213983437075510 1.250000000000000 + 2.518866790970880 1.454268419819846 1.250000000000000 + 3.017428669921848 1.742113254839873 1.250000000000000 + 3.614671411248753 2.086931512316511 1.250000000000000 + 4.330127018922194 2.500000000000000 1.250000000000000 + 0.135000000000000 0.000000000000000 1.500000000000000 + 0.161720688009245 0.000000000000000 1.500000000000000 + 0.193730229112470 0.000000000000000 1.500000000000000 + 0.232075451409314 0.000000000000000 1.500000000000000 + 0.278010382755335 0.000000000000000 1.500000000000000 + 0.333037262021528 0.000000000000000 1.500000000000000 + 0.398955667754346 0.000000000000000 1.500000000000000 + 0.477921370921634 0.000000000000000 1.500000000000000 + 0.572516836442726 0.000000000000000 1.500000000000000 + 0.685835679158474 0.000000000000000 1.500000000000000 + 0.821583836257749 0.000000000000000 1.500000000000000 + 0.984200764865763 0.000000000000000 1.500000000000000 + 1.179004628394934 0.000000000000000 1.500000000000000 + 1.412366219778614 0.000000000000000 1.500000000000000 + 1.691917309508250 0.000000000000000 1.500000000000000 + 2.026800232210552 0.000000000000000 1.500000000000000 + 2.427966874151020 0.000000000000000 1.500000000000000 + 2.908536839639692 0.000000000000000 1.500000000000000 + 3.484226509679746 0.000000000000000 1.500000000000000 + 4.173863024633023 0.000000000000000 1.500000000000000 + 5.000000000000000 0.000000000000000 1.500000000000000 + 0.133845056285464 0.017621035949707 1.500000000000000 + 0.160337145104603 0.021108785609054 1.500000000000000 + 0.192072840146330 0.025286869123969 1.500000000000000 + 0.230090013750771 0.030291924980207 1.500000000000000 + 0.275631965391343 0.036287636658693 1.500000000000000 + 0.330188082077248 0.043470085679062 1.500000000000000 + 0.395542546711004 0.052074164176583 1.500000000000000 + 0.473832687340980 0.062381256726988 1.500000000000000 + 0.567618875541131 0.074728442642739 1.500000000000000 + 0.679968259848487 0.089519519689209 1.500000000000000 + 0.814555072645528 0.107238209736266 1.500000000000000 + 0.975780790886334 0.128463978217990 1.500000000000000 + 1.168918080358097 0.153890984754208 1.500000000000000 + 1.400283230977460 0.184350784687931 1.500000000000000 + 1.677442722381357 0.220839523961306 1.500000000000000 + 2.009460675256398 0.264550516701160 1.500000000000000 + 2.407195280962862 0.316913270919354 1.500000000000000 + 2.883653903777195 0.379640238609912 1.500000000000000 + 3.454418468884391 0.454782819140658 1.500000000000000 + 4.138155047850561 0.544798447453416 1.500000000000000 + 4.957224306869052 0.652630961100258 1.500000000000000 + 0.130399986549024 0.034940571088840 1.500000000000000 + 0.156210189193366 0.041856394043875 1.500000000000000 + 0.187129031632634 0.050141072906382 1.500000000000000 + 0.224167672163950 0.060065546725495 1.500000000000000 + 0.268537408679887 0.071954381793322 1.500000000000000 + 0.321689292503194 0.086196386139970 1.500000000000000 + 0.385361583028324 0.103257324966418 1.500000000000000 + 0.461636595108683 0.123695152856025 1.500000000000000 + 0.553008798305344 0.148178260913223 1.500000000000000 + 0.662466395089674 0.177507335577035 1.500000000000000 + 0.793589045903009 0.212641543971896 1.500000000000000 + 0.950664937037295 0.254729902151727 1.500000000000000 + 1.138831019881013 0.305148852092629 1.500000000000000 + 1.364241007862425 0.365547276338158 1.500000000000000 + 1.634266625199533 0.437900422439351 1.500000000000000 + 1.957738689020853 0.524574500714302 1.500000000000000 + 2.345235909116810 0.628404067908319 1.500000000000000 + 2.809430850121165 0.752784727481049 1.500000000000000 + 3.365504370340686 0.901784178156201 1.500000000000000 + 4.031642090886043 1.080275242424238 1.500000000000000 + 4.829629131445342 1.294095225512604 1.500000000000000 + 0.124723736889024 0.051662263369287 1.500000000000000 + 0.149410433635385 0.061887827971822 1.500000000000000 + 0.178983393505734 0.074137349029635 1.500000000000000 + 0.214409759555383 0.088811430312994 1.500000000000000 + 0.256848102453283 0.106389967505944 1.500000000000000 + 0.307686309945289 0.127447842535870 1.500000000000000 + 0.368586975817614 0.152673724297740 1.500000000000000 + 0.441541772744232 0.182892590624920 1.500000000000000 + 0.528936587207547 0.219092708056705 1.500000000000000 + 0.633629546640492 0.262457951738807 1.500000000000000 + 0.759044490560639 0.314406522434794 1.500000000000000 + 0.909282942541432 0.376637326835177 1.500000000000000 + 1.089258244910155 0.451185537968501 1.500000000000000 + 1.304856242863799 0.540489152741387 1.500000000000000 + 1.563127772956236 0.647468723280525 1.500000000000000 + 1.872519251028453 0.775622869580695 1.500000000000000 + 2.243148900643535 0.929142697068850 1.500000000000000 + 2.687137655698174 1.113048860953628 1.500000000000000 + 3.219005558926356 1.333355759861682 1.500000000000000 + 3.856146619964103 1.597268228488301 1.500000000000000 + 4.619397662556434 1.913417161825449 1.500000000000000 + 0.116913429510899 0.067500000000000 1.500000000000000 + 0.140054224133504 0.080860344004622 1.500000000000000 + 0.167775299892379 0.096865114556235 1.500000000000000 + 0.200983236515207 0.116037725704657 1.500000000000000 + 0.240764053981956 0.139005191377668 1.500000000000000 + 0.288418729317458 0.166518631010764 1.500000000000000 + 0.345505743259048 0.199477833877173 1.500000000000000 + 0.413892048229620 0.238960685460817 1.500000000000000 + 0.495814124453702 0.286258418221363 1.500000000000000 + 0.593951120972993 0.342917839579237 1.500000000000000 + 0.711512473537886 0.410791918128875 1.500000000000000 + 0.852342864797825 0.492100382432881 1.500000000000000 + 1.021047959369445 0.589502314197467 1.500000000000000 + 1.223145025775275 0.706183109889307 1.500000000000000 + 1.465243371136763 0.845958654754125 1.500000000000000 + 1.755260489490538 1.013400116105276 1.500000000000000 + 2.102680992561878 1.213983437075510 1.500000000000000 + 2.518866790970880 1.454268419819846 1.500000000000000 + 3.017428669921848 1.742113254839873 1.500000000000000 + 3.614671411248753 2.086931512316511 1.500000000000000 + 4.330127018922194 2.500000000000000 1.500000000000000 + 0.135000000000000 0.000000000000000 1.750000000000000 + 0.161720688009245 0.000000000000000 1.750000000000000 + 0.193730229112470 0.000000000000000 1.750000000000000 + 0.232075451409314 0.000000000000000 1.750000000000000 + 0.278010382755335 0.000000000000000 1.750000000000000 + 0.333037262021528 0.000000000000000 1.750000000000000 + 0.398955667754346 0.000000000000000 1.750000000000000 + 0.477921370921634 0.000000000000000 1.750000000000000 + 0.572516836442726 0.000000000000000 1.750000000000000 + 0.685835679158474 0.000000000000000 1.750000000000000 + 0.821583836257749 0.000000000000000 1.750000000000000 + 0.984200764865763 0.000000000000000 1.750000000000000 + 1.179004628394934 0.000000000000000 1.750000000000000 + 1.412366219778614 0.000000000000000 1.750000000000000 + 1.691917309508250 0.000000000000000 1.750000000000000 + 2.026800232210552 0.000000000000000 1.750000000000000 + 2.427966874151020 0.000000000000000 1.750000000000000 + 2.908536839639692 0.000000000000000 1.750000000000000 + 3.484226509679746 0.000000000000000 1.750000000000000 + 4.173863024633023 0.000000000000000 1.750000000000000 + 5.000000000000000 0.000000000000000 1.750000000000000 + 0.133845056285464 0.017621035949707 1.750000000000000 + 0.160337145104603 0.021108785609054 1.750000000000000 + 0.192072840146330 0.025286869123969 1.750000000000000 + 0.230090013750771 0.030291924980207 1.750000000000000 + 0.275631965391343 0.036287636658693 1.750000000000000 + 0.330188082077248 0.043470085679062 1.750000000000000 + 0.395542546711004 0.052074164176583 1.750000000000000 + 0.473832687340980 0.062381256726988 1.750000000000000 + 0.567618875541131 0.074728442642739 1.750000000000000 + 0.679968259848487 0.089519519689209 1.750000000000000 + 0.814555072645528 0.107238209736266 1.750000000000000 + 0.975780790886334 0.128463978217990 1.750000000000000 + 1.168918080358097 0.153890984754208 1.750000000000000 + 1.400283230977460 0.184350784687931 1.750000000000000 + 1.677442722381357 0.220839523961306 1.750000000000000 + 2.009460675256398 0.264550516701160 1.750000000000000 + 2.407195280962862 0.316913270919354 1.750000000000000 + 2.883653903777195 0.379640238609912 1.750000000000000 + 3.454418468884391 0.454782819140658 1.750000000000000 + 4.138155047850561 0.544798447453416 1.750000000000000 + 4.957224306869052 0.652630961100258 1.750000000000000 + 0.130399986549024 0.034940571088840 1.750000000000000 + 0.156210189193366 0.041856394043875 1.750000000000000 + 0.187129031632634 0.050141072906382 1.750000000000000 + 0.224167672163950 0.060065546725495 1.750000000000000 + 0.268537408679887 0.071954381793322 1.750000000000000 + 0.321689292503194 0.086196386139970 1.750000000000000 + 0.385361583028324 0.103257324966418 1.750000000000000 + 0.461636595108683 0.123695152856025 1.750000000000000 + 0.553008798305344 0.148178260913223 1.750000000000000 + 0.662466395089674 0.177507335577035 1.750000000000000 + 0.793589045903009 0.212641543971896 1.750000000000000 + 0.950664937037295 0.254729902151727 1.750000000000000 + 1.138831019881013 0.305148852092629 1.750000000000000 + 1.364241007862425 0.365547276338158 1.750000000000000 + 1.634266625199533 0.437900422439351 1.750000000000000 + 1.957738689020853 0.524574500714302 1.750000000000000 + 2.345235909116810 0.628404067908319 1.750000000000000 + 2.809430850121165 0.752784727481049 1.750000000000000 + 3.365504370340686 0.901784178156201 1.750000000000000 + 4.031642090886043 1.080275242424238 1.750000000000000 + 4.829629131445342 1.294095225512604 1.750000000000000 + 0.124723736889024 0.051662263369287 1.750000000000000 + 0.149410433635385 0.061887827971822 1.750000000000000 + 0.178983393505734 0.074137349029635 1.750000000000000 + 0.214409759555383 0.088811430312994 1.750000000000000 + 0.256848102453283 0.106389967505944 1.750000000000000 + 0.307686309945289 0.127447842535870 1.750000000000000 + 0.368586975817614 0.152673724297740 1.750000000000000 + 0.441541772744232 0.182892590624920 1.750000000000000 + 0.528936587207547 0.219092708056705 1.750000000000000 + 0.633629546640492 0.262457951738807 1.750000000000000 + 0.759044490560639 0.314406522434794 1.750000000000000 + 0.909282942541432 0.376637326835177 1.750000000000000 + 1.089258244910155 0.451185537968501 1.750000000000000 + 1.304856242863799 0.540489152741387 1.750000000000000 + 1.563127772956236 0.647468723280525 1.750000000000000 + 1.872519251028453 0.775622869580695 1.750000000000000 + 2.243148900643535 0.929142697068850 1.750000000000000 + 2.687137655698174 1.113048860953628 1.750000000000000 + 3.219005558926356 1.333355759861682 1.750000000000000 + 3.856146619964103 1.597268228488301 1.750000000000000 + 4.619397662556434 1.913417161825449 1.750000000000000 + 0.116913429510899 0.067500000000000 1.750000000000000 + 0.140054224133504 0.080860344004622 1.750000000000000 + 0.167775299892379 0.096865114556235 1.750000000000000 + 0.200983236515207 0.116037725704657 1.750000000000000 + 0.240764053981956 0.139005191377668 1.750000000000000 + 0.288418729317458 0.166518631010764 1.750000000000000 + 0.345505743259048 0.199477833877173 1.750000000000000 + 0.413892048229620 0.238960685460817 1.750000000000000 + 0.495814124453702 0.286258418221363 1.750000000000000 + 0.593951120972993 0.342917839579237 1.750000000000000 + 0.711512473537886 0.410791918128875 1.750000000000000 + 0.852342864797825 0.492100382432881 1.750000000000000 + 1.021047959369445 0.589502314197467 1.750000000000000 + 1.223145025775275 0.706183109889307 1.750000000000000 + 1.465243371136763 0.845958654754125 1.750000000000000 + 1.755260489490538 1.013400116105276 1.750000000000000 + 2.102680992561878 1.213983437075510 1.750000000000000 + 2.518866790970880 1.454268419819846 1.750000000000000 + 3.017428669921848 1.742113254839873 1.750000000000000 + 3.614671411248753 2.086931512316511 1.750000000000000 + 4.330127018922194 2.500000000000000 1.750000000000000 + 0.135000000000000 0.000000000000000 2.000000000000000 + 0.161720688009245 0.000000000000000 2.000000000000000 + 0.193730229112470 0.000000000000000 2.000000000000000 + 0.232075451409314 0.000000000000000 2.000000000000000 + 0.278010382755335 0.000000000000000 2.000000000000000 + 0.333037262021528 0.000000000000000 2.000000000000000 + 0.398955667754346 0.000000000000000 2.000000000000000 + 0.477921370921634 0.000000000000000 2.000000000000000 + 0.572516836442726 0.000000000000000 2.000000000000000 + 0.685835679158474 0.000000000000000 2.000000000000000 + 0.821583836257749 0.000000000000000 2.000000000000000 + 0.984200764865763 0.000000000000000 2.000000000000000 + 1.179004628394934 0.000000000000000 2.000000000000000 + 1.412366219778614 0.000000000000000 2.000000000000000 + 1.691917309508250 0.000000000000000 2.000000000000000 + 2.026800232210552 0.000000000000000 2.000000000000000 + 2.427966874151020 0.000000000000000 2.000000000000000 + 2.908536839639692 0.000000000000000 2.000000000000000 + 3.484226509679746 0.000000000000000 2.000000000000000 + 4.173863024633023 0.000000000000000 2.000000000000000 + 5.000000000000000 0.000000000000000 2.000000000000000 + 0.133845056285464 0.017621035949707 2.000000000000000 + 0.160337145104603 0.021108785609054 2.000000000000000 + 0.192072840146330 0.025286869123969 2.000000000000000 + 0.230090013750771 0.030291924980207 2.000000000000000 + 0.275631965391343 0.036287636658693 2.000000000000000 + 0.330188082077248 0.043470085679062 2.000000000000000 + 0.395542546711004 0.052074164176583 2.000000000000000 + 0.473832687340980 0.062381256726988 2.000000000000000 + 0.567618875541131 0.074728442642739 2.000000000000000 + 0.679968259848487 0.089519519689209 2.000000000000000 + 0.814555072645528 0.107238209736266 2.000000000000000 + 0.975780790886334 0.128463978217990 2.000000000000000 + 1.168918080358097 0.153890984754208 2.000000000000000 + 1.400283230977460 0.184350784687931 2.000000000000000 + 1.677442722381357 0.220839523961306 2.000000000000000 + 2.009460675256398 0.264550516701160 2.000000000000000 + 2.407195280962862 0.316913270919354 2.000000000000000 + 2.883653903777195 0.379640238609912 2.000000000000000 + 3.454418468884391 0.454782819140658 2.000000000000000 + 4.138155047850561 0.544798447453416 2.000000000000000 + 4.957224306869052 0.652630961100258 2.000000000000000 + 0.130399986549024 0.034940571088840 2.000000000000000 + 0.156210189193366 0.041856394043875 2.000000000000000 + 0.187129031632634 0.050141072906382 2.000000000000000 + 0.224167672163950 0.060065546725495 2.000000000000000 + 0.268537408679887 0.071954381793322 2.000000000000000 + 0.321689292503194 0.086196386139970 2.000000000000000 + 0.385361583028324 0.103257324966418 2.000000000000000 + 0.461636595108683 0.123695152856025 2.000000000000000 + 0.553008798305344 0.148178260913223 2.000000000000000 + 0.662466395089674 0.177507335577035 2.000000000000000 + 0.793589045903009 0.212641543971896 2.000000000000000 + 0.950664937037295 0.254729902151727 2.000000000000000 + 1.138831019881013 0.305148852092629 2.000000000000000 + 1.364241007862425 0.365547276338158 2.000000000000000 + 1.634266625199533 0.437900422439351 2.000000000000000 + 1.957738689020853 0.524574500714302 2.000000000000000 + 2.345235909116810 0.628404067908319 2.000000000000000 + 2.809430850121165 0.752784727481049 2.000000000000000 + 3.365504370340686 0.901784178156201 2.000000000000000 + 4.031642090886043 1.080275242424238 2.000000000000000 + 4.829629131445342 1.294095225512604 2.000000000000000 + 0.124723736889024 0.051662263369287 2.000000000000000 + 0.149410433635385 0.061887827971822 2.000000000000000 + 0.178983393505734 0.074137349029635 2.000000000000000 + 0.214409759555383 0.088811430312994 2.000000000000000 + 0.256848102453283 0.106389967505944 2.000000000000000 + 0.307686309945289 0.127447842535870 2.000000000000000 + 0.368586975817614 0.152673724297740 2.000000000000000 + 0.441541772744232 0.182892590624920 2.000000000000000 + 0.528936587207547 0.219092708056705 2.000000000000000 + 0.633629546640492 0.262457951738807 2.000000000000000 + 0.759044490560639 0.314406522434794 2.000000000000000 + 0.909282942541432 0.376637326835177 2.000000000000000 + 1.089258244910155 0.451185537968501 2.000000000000000 + 1.304856242863799 0.540489152741387 2.000000000000000 + 1.563127772956236 0.647468723280525 2.000000000000000 + 1.872519251028453 0.775622869580695 2.000000000000000 + 2.243148900643535 0.929142697068850 2.000000000000000 + 2.687137655698174 1.113048860953628 2.000000000000000 + 3.219005558926356 1.333355759861682 2.000000000000000 + 3.856146619964103 1.597268228488301 2.000000000000000 + 4.619397662556434 1.913417161825449 2.000000000000000 + 0.116913429510899 0.067500000000000 2.000000000000000 + 0.140054224133504 0.080860344004622 2.000000000000000 + 0.167775299892379 0.096865114556235 2.000000000000000 + 0.200983236515207 0.116037725704657 2.000000000000000 + 0.240764053981956 0.139005191377668 2.000000000000000 + 0.288418729317458 0.166518631010764 2.000000000000000 + 0.345505743259048 0.199477833877173 2.000000000000000 + 0.413892048229620 0.238960685460817 2.000000000000000 + 0.495814124453702 0.286258418221363 2.000000000000000 + 0.593951120972993 0.342917839579237 2.000000000000000 + 0.711512473537886 0.410791918128875 2.000000000000000 + 0.852342864797825 0.492100382432881 2.000000000000000 + 1.021047959369445 0.589502314197467 2.000000000000000 + 1.223145025775275 0.706183109889307 2.000000000000000 + 1.465243371136763 0.845958654754125 2.000000000000000 + 1.755260489490538 1.013400116105276 2.000000000000000 + 2.102680992561878 1.213983437075510 2.000000000000000 + 2.518866790970880 1.454268419819846 2.000000000000000 + 3.017428669921848 1.742113254839873 2.000000000000000 + 3.614671411248753 2.086931512316511 2.000000000000000 + 4.330127018922194 2.500000000000000 2.000000000000000 + 0.135000000000000 0.000000000000000 2.250000000000000 + 0.161720688009245 0.000000000000000 2.250000000000000 + 0.193730229112470 0.000000000000000 2.250000000000000 + 0.232075451409314 0.000000000000000 2.250000000000000 + 0.278010382755335 0.000000000000000 2.250000000000000 + 0.333037262021528 0.000000000000000 2.250000000000000 + 0.398955667754346 0.000000000000000 2.250000000000000 + 0.477921370921634 0.000000000000000 2.250000000000000 + 0.572516836442726 0.000000000000000 2.250000000000000 + 0.685835679158474 0.000000000000000 2.250000000000000 + 0.821583836257749 0.000000000000000 2.250000000000000 + 0.984200764865763 0.000000000000000 2.250000000000000 + 1.179004628394934 0.000000000000000 2.250000000000000 + 1.412366219778614 0.000000000000000 2.250000000000000 + 1.691917309508250 0.000000000000000 2.250000000000000 + 2.026800232210552 0.000000000000000 2.250000000000000 + 2.427966874151020 0.000000000000000 2.250000000000000 + 2.908536839639692 0.000000000000000 2.250000000000000 + 3.484226509679746 0.000000000000000 2.250000000000000 + 4.173863024633023 0.000000000000000 2.250000000000000 + 5.000000000000000 0.000000000000000 2.250000000000000 + 0.133845056285464 0.017621035949707 2.250000000000000 + 0.160337145104603 0.021108785609054 2.250000000000000 + 0.192072840146330 0.025286869123969 2.250000000000000 + 0.230090013750771 0.030291924980207 2.250000000000000 + 0.275631965391343 0.036287636658693 2.250000000000000 + 0.330188082077248 0.043470085679062 2.250000000000000 + 0.395542546711004 0.052074164176583 2.250000000000000 + 0.473832687340980 0.062381256726988 2.250000000000000 + 0.567618875541131 0.074728442642739 2.250000000000000 + 0.679968259848487 0.089519519689209 2.250000000000000 + 0.814555072645528 0.107238209736266 2.250000000000000 + 0.975780790886334 0.128463978217990 2.250000000000000 + 1.168918080358097 0.153890984754208 2.250000000000000 + 1.400283230977460 0.184350784687931 2.250000000000000 + 1.677442722381357 0.220839523961306 2.250000000000000 + 2.009460675256398 0.264550516701160 2.250000000000000 + 2.407195280962862 0.316913270919354 2.250000000000000 + 2.883653903777195 0.379640238609912 2.250000000000000 + 3.454418468884391 0.454782819140658 2.250000000000000 + 4.138155047850561 0.544798447453416 2.250000000000000 + 4.957224306869052 0.652630961100258 2.250000000000000 + 0.130399986549024 0.034940571088840 2.250000000000000 + 0.156210189193366 0.041856394043875 2.250000000000000 + 0.187129031632634 0.050141072906382 2.250000000000000 + 0.224167672163950 0.060065546725495 2.250000000000000 + 0.268537408679887 0.071954381793322 2.250000000000000 + 0.321689292503194 0.086196386139970 2.250000000000000 + 0.385361583028324 0.103257324966418 2.250000000000000 + 0.461636595108683 0.123695152856025 2.250000000000000 + 0.553008798305344 0.148178260913223 2.250000000000000 + 0.662466395089674 0.177507335577035 2.250000000000000 + 0.793589045903009 0.212641543971896 2.250000000000000 + 0.950664937037295 0.254729902151727 2.250000000000000 + 1.138831019881013 0.305148852092629 2.250000000000000 + 1.364241007862425 0.365547276338158 2.250000000000000 + 1.634266625199533 0.437900422439351 2.250000000000000 + 1.957738689020853 0.524574500714302 2.250000000000000 + 2.345235909116810 0.628404067908319 2.250000000000000 + 2.809430850121165 0.752784727481049 2.250000000000000 + 3.365504370340686 0.901784178156201 2.250000000000000 + 4.031642090886043 1.080275242424238 2.250000000000000 + 4.829629131445342 1.294095225512604 2.250000000000000 + 0.124723736889024 0.051662263369287 2.250000000000000 + 0.149410433635385 0.061887827971822 2.250000000000000 + 0.178983393505734 0.074137349029635 2.250000000000000 + 0.214409759555383 0.088811430312994 2.250000000000000 + 0.256848102453283 0.106389967505944 2.250000000000000 + 0.307686309945289 0.127447842535870 2.250000000000000 + 0.368586975817614 0.152673724297740 2.250000000000000 + 0.441541772744232 0.182892590624920 2.250000000000000 + 0.528936587207547 0.219092708056705 2.250000000000000 + 0.633629546640492 0.262457951738807 2.250000000000000 + 0.759044490560639 0.314406522434794 2.250000000000000 + 0.909282942541432 0.376637326835177 2.250000000000000 + 1.089258244910155 0.451185537968501 2.250000000000000 + 1.304856242863799 0.540489152741387 2.250000000000000 + 1.563127772956236 0.647468723280525 2.250000000000000 + 1.872519251028453 0.775622869580695 2.250000000000000 + 2.243148900643535 0.929142697068850 2.250000000000000 + 2.687137655698174 1.113048860953628 2.250000000000000 + 3.219005558926356 1.333355759861682 2.250000000000000 + 3.856146619964103 1.597268228488301 2.250000000000000 + 4.619397662556434 1.913417161825449 2.250000000000000 + 0.116913429510899 0.067500000000000 2.250000000000000 + 0.140054224133504 0.080860344004622 2.250000000000000 + 0.167775299892379 0.096865114556235 2.250000000000000 + 0.200983236515207 0.116037725704657 2.250000000000000 + 0.240764053981956 0.139005191377668 2.250000000000000 + 0.288418729317458 0.166518631010764 2.250000000000000 + 0.345505743259048 0.199477833877173 2.250000000000000 + 0.413892048229620 0.238960685460817 2.250000000000000 + 0.495814124453702 0.286258418221363 2.250000000000000 + 0.593951120972993 0.342917839579237 2.250000000000000 + 0.711512473537886 0.410791918128875 2.250000000000000 + 0.852342864797825 0.492100382432881 2.250000000000000 + 1.021047959369445 0.589502314197467 2.250000000000000 + 1.223145025775275 0.706183109889307 2.250000000000000 + 1.465243371136763 0.845958654754125 2.250000000000000 + 1.755260489490538 1.013400116105276 2.250000000000000 + 2.102680992561878 1.213983437075510 2.250000000000000 + 2.518866790970880 1.454268419819846 2.250000000000000 + 3.017428669921848 1.742113254839873 2.250000000000000 + 3.614671411248753 2.086931512316511 2.250000000000000 + 4.330127018922194 2.500000000000000 2.250000000000000 + 0.135000000000000 0.000000000000000 2.500000000000000 + 0.161720688009245 0.000000000000000 2.500000000000000 + 0.193730229112470 0.000000000000000 2.500000000000000 + 0.232075451409314 0.000000000000000 2.500000000000000 + 0.278010382755335 0.000000000000000 2.500000000000000 + 0.333037262021528 0.000000000000000 2.500000000000000 + 0.398955667754346 0.000000000000000 2.500000000000000 + 0.477921370921634 0.000000000000000 2.500000000000000 + 0.572516836442726 0.000000000000000 2.500000000000000 + 0.685835679158474 0.000000000000000 2.500000000000000 + 0.821583836257749 0.000000000000000 2.500000000000000 + 0.984200764865763 0.000000000000000 2.500000000000000 + 1.179004628394934 0.000000000000000 2.500000000000000 + 1.412366219778614 0.000000000000000 2.500000000000000 + 1.691917309508250 0.000000000000000 2.500000000000000 + 2.026800232210552 0.000000000000000 2.500000000000000 + 2.427966874151020 0.000000000000000 2.500000000000000 + 2.908536839639692 0.000000000000000 2.500000000000000 + 3.484226509679746 0.000000000000000 2.500000000000000 + 4.173863024633023 0.000000000000000 2.500000000000000 + 5.000000000000000 0.000000000000000 2.500000000000000 + 0.133845056285464 0.017621035949707 2.500000000000000 + 0.160337145104603 0.021108785609054 2.500000000000000 + 0.192072840146330 0.025286869123969 2.500000000000000 + 0.230090013750771 0.030291924980207 2.500000000000000 + 0.275631965391343 0.036287636658693 2.500000000000000 + 0.330188082077248 0.043470085679062 2.500000000000000 + 0.395542546711004 0.052074164176583 2.500000000000000 + 0.473832687340980 0.062381256726988 2.500000000000000 + 0.567618875541131 0.074728442642739 2.500000000000000 + 0.679968259848487 0.089519519689209 2.500000000000000 + 0.814555072645528 0.107238209736266 2.500000000000000 + 0.975780790886334 0.128463978217990 2.500000000000000 + 1.168918080358097 0.153890984754208 2.500000000000000 + 1.400283230977460 0.184350784687931 2.500000000000000 + 1.677442722381357 0.220839523961306 2.500000000000000 + 2.009460675256398 0.264550516701160 2.500000000000000 + 2.407195280962862 0.316913270919354 2.500000000000000 + 2.883653903777195 0.379640238609912 2.500000000000000 + 3.454418468884391 0.454782819140658 2.500000000000000 + 4.138155047850561 0.544798447453416 2.500000000000000 + 4.957224306869052 0.652630961100258 2.500000000000000 + 0.130399986549024 0.034940571088840 2.500000000000000 + 0.156210189193366 0.041856394043875 2.500000000000000 + 0.187129031632634 0.050141072906382 2.500000000000000 + 0.224167672163950 0.060065546725495 2.500000000000000 + 0.268537408679887 0.071954381793322 2.500000000000000 + 0.321689292503194 0.086196386139970 2.500000000000000 + 0.385361583028324 0.103257324966418 2.500000000000000 + 0.461636595108683 0.123695152856025 2.500000000000000 + 0.553008798305344 0.148178260913223 2.500000000000000 + 0.662466395089674 0.177507335577035 2.500000000000000 + 0.793589045903009 0.212641543971896 2.500000000000000 + 0.950664937037295 0.254729902151727 2.500000000000000 + 1.138831019881013 0.305148852092629 2.500000000000000 + 1.364241007862425 0.365547276338158 2.500000000000000 + 1.634266625199533 0.437900422439351 2.500000000000000 + 1.957738689020853 0.524574500714302 2.500000000000000 + 2.345235909116810 0.628404067908319 2.500000000000000 + 2.809430850121165 0.752784727481049 2.500000000000000 + 3.365504370340686 0.901784178156201 2.500000000000000 + 4.031642090886043 1.080275242424238 2.500000000000000 + 4.829629131445342 1.294095225512604 2.500000000000000 + 0.124723736889024 0.051662263369287 2.500000000000000 + 0.149410433635385 0.061887827971822 2.500000000000000 + 0.178983393505734 0.074137349029635 2.500000000000000 + 0.214409759555383 0.088811430312994 2.500000000000000 + 0.256848102453283 0.106389967505944 2.500000000000000 + 0.307686309945289 0.127447842535870 2.500000000000000 + 0.368586975817614 0.152673724297740 2.500000000000000 + 0.441541772744232 0.182892590624920 2.500000000000000 + 0.528936587207547 0.219092708056705 2.500000000000000 + 0.633629546640492 0.262457951738807 2.500000000000000 + 0.759044490560639 0.314406522434794 2.500000000000000 + 0.909282942541432 0.376637326835177 2.500000000000000 + 1.089258244910155 0.451185537968501 2.500000000000000 + 1.304856242863799 0.540489152741387 2.500000000000000 + 1.563127772956236 0.647468723280525 2.500000000000000 + 1.872519251028453 0.775622869580695 2.500000000000000 + 2.243148900643535 0.929142697068850 2.500000000000000 + 2.687137655698174 1.113048860953628 2.500000000000000 + 3.219005558926356 1.333355759861682 2.500000000000000 + 3.856146619964103 1.597268228488301 2.500000000000000 + 4.619397662556434 1.913417161825449 2.500000000000000 + 0.116913429510899 0.067500000000000 2.500000000000000 + 0.140054224133504 0.080860344004622 2.500000000000000 + 0.167775299892379 0.096865114556235 2.500000000000000 + 0.200983236515207 0.116037725704657 2.500000000000000 + 0.240764053981956 0.139005191377668 2.500000000000000 + 0.288418729317458 0.166518631010764 2.500000000000000 + 0.345505743259048 0.199477833877173 2.500000000000000 + 0.413892048229620 0.238960685460817 2.500000000000000 + 0.495814124453702 0.286258418221363 2.500000000000000 + 0.593951120972993 0.342917839579237 2.500000000000000 + 0.711512473537886 0.410791918128875 2.500000000000000 + 0.852342864797825 0.492100382432881 2.500000000000000 + 1.021047959369445 0.589502314197467 2.500000000000000 + 1.223145025775275 0.706183109889307 2.500000000000000 + 1.465243371136763 0.845958654754125 2.500000000000000 + 1.755260489490538 1.013400116105276 2.500000000000000 + 2.102680992561878 1.213983437075510 2.500000000000000 + 2.518866790970880 1.454268419819846 2.500000000000000 + 3.017428669921848 1.742113254839873 2.500000000000000 + 3.614671411248753 2.086931512316511 2.500000000000000 + 4.330127018922194 2.500000000000000 2.500000000000000 + 0.135000000000000 0.000000000000000 2.750000000000000 + 0.161720688009245 0.000000000000000 2.750000000000000 + 0.193730229112470 0.000000000000000 2.750000000000000 + 0.232075451409314 0.000000000000000 2.750000000000000 + 0.278010382755335 0.000000000000000 2.750000000000000 + 0.333037262021528 0.000000000000000 2.750000000000000 + 0.398955667754346 0.000000000000000 2.750000000000000 + 0.477921370921634 0.000000000000000 2.750000000000000 + 0.572516836442726 0.000000000000000 2.750000000000000 + 0.685835679158474 0.000000000000000 2.750000000000000 + 0.821583836257749 0.000000000000000 2.750000000000000 + 0.984200764865763 0.000000000000000 2.750000000000000 + 1.179004628394934 0.000000000000000 2.750000000000000 + 1.412366219778614 0.000000000000000 2.750000000000000 + 1.691917309508250 0.000000000000000 2.750000000000000 + 2.026800232210552 0.000000000000000 2.750000000000000 + 2.427966874151020 0.000000000000000 2.750000000000000 + 2.908536839639692 0.000000000000000 2.750000000000000 + 3.484226509679746 0.000000000000000 2.750000000000000 + 4.173863024633023 0.000000000000000 2.750000000000000 + 5.000000000000000 0.000000000000000 2.750000000000000 + 0.133845056285464 0.017621035949707 2.750000000000000 + 0.160337145104603 0.021108785609054 2.750000000000000 + 0.192072840146330 0.025286869123969 2.750000000000000 + 0.230090013750771 0.030291924980207 2.750000000000000 + 0.275631965391343 0.036287636658693 2.750000000000000 + 0.330188082077248 0.043470085679062 2.750000000000000 + 0.395542546711004 0.052074164176583 2.750000000000000 + 0.473832687340980 0.062381256726988 2.750000000000000 + 0.567618875541131 0.074728442642739 2.750000000000000 + 0.679968259848487 0.089519519689209 2.750000000000000 + 0.814555072645528 0.107238209736266 2.750000000000000 + 0.975780790886334 0.128463978217990 2.750000000000000 + 1.168918080358097 0.153890984754208 2.750000000000000 + 1.400283230977460 0.184350784687931 2.750000000000000 + 1.677442722381357 0.220839523961306 2.750000000000000 + 2.009460675256398 0.264550516701160 2.750000000000000 + 2.407195280962862 0.316913270919354 2.750000000000000 + 2.883653903777195 0.379640238609912 2.750000000000000 + 3.454418468884391 0.454782819140658 2.750000000000000 + 4.138155047850561 0.544798447453416 2.750000000000000 + 4.957224306869052 0.652630961100258 2.750000000000000 + 0.130399986549024 0.034940571088840 2.750000000000000 + 0.156210189193366 0.041856394043875 2.750000000000000 + 0.187129031632634 0.050141072906382 2.750000000000000 + 0.224167672163950 0.060065546725495 2.750000000000000 + 0.268537408679887 0.071954381793322 2.750000000000000 + 0.321689292503194 0.086196386139970 2.750000000000000 + 0.385361583028324 0.103257324966418 2.750000000000000 + 0.461636595108683 0.123695152856025 2.750000000000000 + 0.553008798305344 0.148178260913223 2.750000000000000 + 0.662466395089674 0.177507335577035 2.750000000000000 + 0.793589045903009 0.212641543971896 2.750000000000000 + 0.950664937037295 0.254729902151727 2.750000000000000 + 1.138831019881013 0.305148852092629 2.750000000000000 + 1.364241007862425 0.365547276338158 2.750000000000000 + 1.634266625199533 0.437900422439351 2.750000000000000 + 1.957738689020853 0.524574500714302 2.750000000000000 + 2.345235909116810 0.628404067908319 2.750000000000000 + 2.809430850121165 0.752784727481049 2.750000000000000 + 3.365504370340686 0.901784178156201 2.750000000000000 + 4.031642090886043 1.080275242424238 2.750000000000000 + 4.829629131445342 1.294095225512604 2.750000000000000 + 0.124723736889024 0.051662263369287 2.750000000000000 + 0.149410433635385 0.061887827971822 2.750000000000000 + 0.178983393505734 0.074137349029635 2.750000000000000 + 0.214409759555383 0.088811430312994 2.750000000000000 + 0.256848102453283 0.106389967505944 2.750000000000000 + 0.307686309945289 0.127447842535870 2.750000000000000 + 0.368586975817614 0.152673724297740 2.750000000000000 + 0.441541772744232 0.182892590624920 2.750000000000000 + 0.528936587207547 0.219092708056705 2.750000000000000 + 0.633629546640492 0.262457951738807 2.750000000000000 + 0.759044490560639 0.314406522434794 2.750000000000000 + 0.909282942541432 0.376637326835177 2.750000000000000 + 1.089258244910155 0.451185537968501 2.750000000000000 + 1.304856242863799 0.540489152741387 2.750000000000000 + 1.563127772956236 0.647468723280525 2.750000000000000 + 1.872519251028453 0.775622869580695 2.750000000000000 + 2.243148900643535 0.929142697068850 2.750000000000000 + 2.687137655698174 1.113048860953628 2.750000000000000 + 3.219005558926356 1.333355759861682 2.750000000000000 + 3.856146619964103 1.597268228488301 2.750000000000000 + 4.619397662556434 1.913417161825449 2.750000000000000 + 0.116913429510899 0.067500000000000 2.750000000000000 + 0.140054224133504 0.080860344004622 2.750000000000000 + 0.167775299892379 0.096865114556235 2.750000000000000 + 0.200983236515207 0.116037725704657 2.750000000000000 + 0.240764053981956 0.139005191377668 2.750000000000000 + 0.288418729317458 0.166518631010764 2.750000000000000 + 0.345505743259048 0.199477833877173 2.750000000000000 + 0.413892048229620 0.238960685460817 2.750000000000000 + 0.495814124453702 0.286258418221363 2.750000000000000 + 0.593951120972993 0.342917839579237 2.750000000000000 + 0.711512473537886 0.410791918128875 2.750000000000000 + 0.852342864797825 0.492100382432881 2.750000000000000 + 1.021047959369445 0.589502314197467 2.750000000000000 + 1.223145025775275 0.706183109889307 2.750000000000000 + 1.465243371136763 0.845958654754125 2.750000000000000 + 1.755260489490538 1.013400116105276 2.750000000000000 + 2.102680992561878 1.213983437075510 2.750000000000000 + 2.518866790970880 1.454268419819846 2.750000000000000 + 3.017428669921848 1.742113254839873 2.750000000000000 + 3.614671411248753 2.086931512316511 2.750000000000000 + 4.330127018922194 2.500000000000000 2.750000000000000 + 0.135000000000000 0.000000000000000 3.000000000000000 + 0.161720688009245 0.000000000000000 3.000000000000000 + 0.193730229112470 0.000000000000000 3.000000000000000 + 0.232075451409314 0.000000000000000 3.000000000000000 + 0.278010382755335 0.000000000000000 3.000000000000000 + 0.333037262021528 0.000000000000000 3.000000000000000 + 0.398955667754346 0.000000000000000 3.000000000000000 + 0.477921370921634 0.000000000000000 3.000000000000000 + 0.572516836442726 0.000000000000000 3.000000000000000 + 0.685835679158474 0.000000000000000 3.000000000000000 + 0.821583836257749 0.000000000000000 3.000000000000000 + 0.984200764865763 0.000000000000000 3.000000000000000 + 1.179004628394934 0.000000000000000 3.000000000000000 + 1.412366219778614 0.000000000000000 3.000000000000000 + 1.691917309508250 0.000000000000000 3.000000000000000 + 2.026800232210552 0.000000000000000 3.000000000000000 + 2.427966874151020 0.000000000000000 3.000000000000000 + 2.908536839639692 0.000000000000000 3.000000000000000 + 3.484226509679746 0.000000000000000 3.000000000000000 + 4.173863024633023 0.000000000000000 3.000000000000000 + 5.000000000000000 0.000000000000000 3.000000000000000 + 0.133845056285464 0.017621035949707 3.000000000000000 + 0.160337145104603 0.021108785609054 3.000000000000000 + 0.192072840146330 0.025286869123969 3.000000000000000 + 0.230090013750771 0.030291924980207 3.000000000000000 + 0.275631965391343 0.036287636658693 3.000000000000000 + 0.330188082077248 0.043470085679062 3.000000000000000 + 0.395542546711004 0.052074164176583 3.000000000000000 + 0.473832687340980 0.062381256726988 3.000000000000000 + 0.567618875541131 0.074728442642739 3.000000000000000 + 0.679968259848487 0.089519519689209 3.000000000000000 + 0.814555072645528 0.107238209736266 3.000000000000000 + 0.975780790886334 0.128463978217990 3.000000000000000 + 1.168918080358097 0.153890984754208 3.000000000000000 + 1.400283230977460 0.184350784687931 3.000000000000000 + 1.677442722381357 0.220839523961306 3.000000000000000 + 2.009460675256398 0.264550516701160 3.000000000000000 + 2.407195280962862 0.316913270919354 3.000000000000000 + 2.883653903777195 0.379640238609912 3.000000000000000 + 3.454418468884391 0.454782819140658 3.000000000000000 + 4.138155047850561 0.544798447453416 3.000000000000000 + 4.957224306869052 0.652630961100258 3.000000000000000 + 0.130399986549024 0.034940571088840 3.000000000000000 + 0.156210189193366 0.041856394043875 3.000000000000000 + 0.187129031632634 0.050141072906382 3.000000000000000 + 0.224167672163950 0.060065546725495 3.000000000000000 + 0.268537408679887 0.071954381793322 3.000000000000000 + 0.321689292503194 0.086196386139970 3.000000000000000 + 0.385361583028324 0.103257324966418 3.000000000000000 + 0.461636595108683 0.123695152856025 3.000000000000000 + 0.553008798305344 0.148178260913223 3.000000000000000 + 0.662466395089674 0.177507335577035 3.000000000000000 + 0.793589045903009 0.212641543971896 3.000000000000000 + 0.950664937037295 0.254729902151727 3.000000000000000 + 1.138831019881013 0.305148852092629 3.000000000000000 + 1.364241007862425 0.365547276338158 3.000000000000000 + 1.634266625199533 0.437900422439351 3.000000000000000 + 1.957738689020853 0.524574500714302 3.000000000000000 + 2.345235909116810 0.628404067908319 3.000000000000000 + 2.809430850121165 0.752784727481049 3.000000000000000 + 3.365504370340686 0.901784178156201 3.000000000000000 + 4.031642090886043 1.080275242424238 3.000000000000000 + 4.829629131445342 1.294095225512604 3.000000000000000 + 0.124723736889024 0.051662263369287 3.000000000000000 + 0.149410433635385 0.061887827971822 3.000000000000000 + 0.178983393505734 0.074137349029635 3.000000000000000 + 0.214409759555383 0.088811430312994 3.000000000000000 + 0.256848102453283 0.106389967505944 3.000000000000000 + 0.307686309945289 0.127447842535870 3.000000000000000 + 0.368586975817614 0.152673724297740 3.000000000000000 + 0.441541772744232 0.182892590624920 3.000000000000000 + 0.528936587207547 0.219092708056705 3.000000000000000 + 0.633629546640492 0.262457951738807 3.000000000000000 + 0.759044490560639 0.314406522434794 3.000000000000000 + 0.909282942541432 0.376637326835177 3.000000000000000 + 1.089258244910155 0.451185537968501 3.000000000000000 + 1.304856242863799 0.540489152741387 3.000000000000000 + 1.563127772956236 0.647468723280525 3.000000000000000 + 1.872519251028453 0.775622869580695 3.000000000000000 + 2.243148900643535 0.929142697068850 3.000000000000000 + 2.687137655698174 1.113048860953628 3.000000000000000 + 3.219005558926356 1.333355759861682 3.000000000000000 + 3.856146619964103 1.597268228488301 3.000000000000000 + 4.619397662556434 1.913417161825449 3.000000000000000 + 0.116913429510899 0.067500000000000 3.000000000000000 + 0.140054224133504 0.080860344004622 3.000000000000000 + 0.167775299892379 0.096865114556235 3.000000000000000 + 0.200983236515207 0.116037725704657 3.000000000000000 + 0.240764053981956 0.139005191377668 3.000000000000000 + 0.288418729317458 0.166518631010764 3.000000000000000 + 0.345505743259048 0.199477833877173 3.000000000000000 + 0.413892048229620 0.238960685460817 3.000000000000000 + 0.495814124453702 0.286258418221363 3.000000000000000 + 0.593951120972993 0.342917839579237 3.000000000000000 + 0.711512473537886 0.410791918128875 3.000000000000000 + 0.852342864797825 0.492100382432881 3.000000000000000 + 1.021047959369445 0.589502314197467 3.000000000000000 + 1.223145025775275 0.706183109889307 3.000000000000000 + 1.465243371136763 0.845958654754125 3.000000000000000 + 1.755260489490538 1.013400116105276 3.000000000000000 + 2.102680992561878 1.213983437075510 3.000000000000000 + 2.518866790970880 1.454268419819846 3.000000000000000 + 3.017428669921848 1.742113254839873 3.000000000000000 + 3.614671411248753 2.086931512316511 3.000000000000000 + 4.330127018922194 2.500000000000000 3.000000000000000 + 0.135000000000000 0.000000000000000 3.250000000000000 + 0.161720688009245 0.000000000000000 3.250000000000000 + 0.193730229112470 0.000000000000000 3.250000000000000 + 0.232075451409314 0.000000000000000 3.250000000000000 + 0.278010382755335 0.000000000000000 3.250000000000000 + 0.333037262021528 0.000000000000000 3.250000000000000 + 0.398955667754346 0.000000000000000 3.250000000000000 + 0.477921370921634 0.000000000000000 3.250000000000000 + 0.572516836442726 0.000000000000000 3.250000000000000 + 0.685835679158474 0.000000000000000 3.250000000000000 + 0.821583836257749 0.000000000000000 3.250000000000000 + 0.984200764865763 0.000000000000000 3.250000000000000 + 1.179004628394934 0.000000000000000 3.250000000000000 + 1.412366219778614 0.000000000000000 3.250000000000000 + 1.691917309508250 0.000000000000000 3.250000000000000 + 2.026800232210552 0.000000000000000 3.250000000000000 + 2.427966874151020 0.000000000000000 3.250000000000000 + 2.908536839639692 0.000000000000000 3.250000000000000 + 3.484226509679746 0.000000000000000 3.250000000000000 + 4.173863024633023 0.000000000000000 3.250000000000000 + 5.000000000000000 0.000000000000000 3.250000000000000 + 0.133845056285464 0.017621035949707 3.250000000000000 + 0.160337145104603 0.021108785609054 3.250000000000000 + 0.192072840146330 0.025286869123969 3.250000000000000 + 0.230090013750771 0.030291924980207 3.250000000000000 + 0.275631965391343 0.036287636658693 3.250000000000000 + 0.330188082077248 0.043470085679062 3.250000000000000 + 0.395542546711004 0.052074164176583 3.250000000000000 + 0.473832687340980 0.062381256726988 3.250000000000000 + 0.567618875541131 0.074728442642739 3.250000000000000 + 0.679968259848487 0.089519519689209 3.250000000000000 + 0.814555072645528 0.107238209736266 3.250000000000000 + 0.975780790886334 0.128463978217990 3.250000000000000 + 1.168918080358097 0.153890984754208 3.250000000000000 + 1.400283230977460 0.184350784687931 3.250000000000000 + 1.677442722381357 0.220839523961306 3.250000000000000 + 2.009460675256398 0.264550516701160 3.250000000000000 + 2.407195280962862 0.316913270919354 3.250000000000000 + 2.883653903777195 0.379640238609912 3.250000000000000 + 3.454418468884391 0.454782819140658 3.250000000000000 + 4.138155047850561 0.544798447453416 3.250000000000000 + 4.957224306869052 0.652630961100258 3.250000000000000 + 0.130399986549024 0.034940571088840 3.250000000000000 + 0.156210189193366 0.041856394043875 3.250000000000000 + 0.187129031632634 0.050141072906382 3.250000000000000 + 0.224167672163950 0.060065546725495 3.250000000000000 + 0.268537408679887 0.071954381793322 3.250000000000000 + 0.321689292503194 0.086196386139970 3.250000000000000 + 0.385361583028324 0.103257324966418 3.250000000000000 + 0.461636595108683 0.123695152856025 3.250000000000000 + 0.553008798305344 0.148178260913223 3.250000000000000 + 0.662466395089674 0.177507335577035 3.250000000000000 + 0.793589045903009 0.212641543971896 3.250000000000000 + 0.950664937037295 0.254729902151727 3.250000000000000 + 1.138831019881013 0.305148852092629 3.250000000000000 + 1.364241007862425 0.365547276338158 3.250000000000000 + 1.634266625199533 0.437900422439351 3.250000000000000 + 1.957738689020853 0.524574500714302 3.250000000000000 + 2.345235909116810 0.628404067908319 3.250000000000000 + 2.809430850121165 0.752784727481049 3.250000000000000 + 3.365504370340686 0.901784178156201 3.250000000000000 + 4.031642090886043 1.080275242424238 3.250000000000000 + 4.829629131445342 1.294095225512604 3.250000000000000 + 0.124723736889024 0.051662263369287 3.250000000000000 + 0.149410433635385 0.061887827971822 3.250000000000000 + 0.178983393505734 0.074137349029635 3.250000000000000 + 0.214409759555383 0.088811430312994 3.250000000000000 + 0.256848102453283 0.106389967505944 3.250000000000000 + 0.307686309945289 0.127447842535870 3.250000000000000 + 0.368586975817614 0.152673724297740 3.250000000000000 + 0.441541772744232 0.182892590624920 3.250000000000000 + 0.528936587207547 0.219092708056705 3.250000000000000 + 0.633629546640492 0.262457951738807 3.250000000000000 + 0.759044490560639 0.314406522434794 3.250000000000000 + 0.909282942541432 0.376637326835177 3.250000000000000 + 1.089258244910155 0.451185537968501 3.250000000000000 + 1.304856242863799 0.540489152741387 3.250000000000000 + 1.563127772956236 0.647468723280525 3.250000000000000 + 1.872519251028453 0.775622869580695 3.250000000000000 + 2.243148900643535 0.929142697068850 3.250000000000000 + 2.687137655698174 1.113048860953628 3.250000000000000 + 3.219005558926356 1.333355759861682 3.250000000000000 + 3.856146619964103 1.597268228488301 3.250000000000000 + 4.619397662556434 1.913417161825449 3.250000000000000 + 0.116913429510899 0.067500000000000 3.250000000000000 + 0.140054224133504 0.080860344004622 3.250000000000000 + 0.167775299892379 0.096865114556235 3.250000000000000 + 0.200983236515207 0.116037725704657 3.250000000000000 + 0.240764053981956 0.139005191377668 3.250000000000000 + 0.288418729317458 0.166518631010764 3.250000000000000 + 0.345505743259048 0.199477833877173 3.250000000000000 + 0.413892048229620 0.238960685460817 3.250000000000000 + 0.495814124453702 0.286258418221363 3.250000000000000 + 0.593951120972993 0.342917839579237 3.250000000000000 + 0.711512473537886 0.410791918128875 3.250000000000000 + 0.852342864797825 0.492100382432881 3.250000000000000 + 1.021047959369445 0.589502314197467 3.250000000000000 + 1.223145025775275 0.706183109889307 3.250000000000000 + 1.465243371136763 0.845958654754125 3.250000000000000 + 1.755260489490538 1.013400116105276 3.250000000000000 + 2.102680992561878 1.213983437075510 3.250000000000000 + 2.518866790970880 1.454268419819846 3.250000000000000 + 3.017428669921848 1.742113254839873 3.250000000000000 + 3.614671411248753 2.086931512316511 3.250000000000000 + 4.330127018922194 2.500000000000000 3.250000000000000 + 0.135000000000000 0.000000000000000 3.500000000000000 + 0.161720688009245 0.000000000000000 3.500000000000000 + 0.193730229112470 0.000000000000000 3.500000000000000 + 0.232075451409314 0.000000000000000 3.500000000000000 + 0.278010382755335 0.000000000000000 3.500000000000000 + 0.333037262021528 0.000000000000000 3.500000000000000 + 0.398955667754346 0.000000000000000 3.500000000000000 + 0.477921370921634 0.000000000000000 3.500000000000000 + 0.572516836442726 0.000000000000000 3.500000000000000 + 0.685835679158474 0.000000000000000 3.500000000000000 + 0.821583836257749 0.000000000000000 3.500000000000000 + 0.984200764865763 0.000000000000000 3.500000000000000 + 1.179004628394934 0.000000000000000 3.500000000000000 + 1.412366219778614 0.000000000000000 3.500000000000000 + 1.691917309508250 0.000000000000000 3.500000000000000 + 2.026800232210552 0.000000000000000 3.500000000000000 + 2.427966874151020 0.000000000000000 3.500000000000000 + 2.908536839639692 0.000000000000000 3.500000000000000 + 3.484226509679746 0.000000000000000 3.500000000000000 + 4.173863024633023 0.000000000000000 3.500000000000000 + 5.000000000000000 0.000000000000000 3.500000000000000 + 0.133845056285464 0.017621035949707 3.500000000000000 + 0.160337145104603 0.021108785609054 3.500000000000000 + 0.192072840146330 0.025286869123969 3.500000000000000 + 0.230090013750771 0.030291924980207 3.500000000000000 + 0.275631965391343 0.036287636658693 3.500000000000000 + 0.330188082077248 0.043470085679062 3.500000000000000 + 0.395542546711004 0.052074164176583 3.500000000000000 + 0.473832687340980 0.062381256726988 3.500000000000000 + 0.567618875541131 0.074728442642739 3.500000000000000 + 0.679968259848487 0.089519519689209 3.500000000000000 + 0.814555072645528 0.107238209736266 3.500000000000000 + 0.975780790886334 0.128463978217990 3.500000000000000 + 1.168918080358097 0.153890984754208 3.500000000000000 + 1.400283230977460 0.184350784687931 3.500000000000000 + 1.677442722381357 0.220839523961306 3.500000000000000 + 2.009460675256398 0.264550516701160 3.500000000000000 + 2.407195280962862 0.316913270919354 3.500000000000000 + 2.883653903777195 0.379640238609912 3.500000000000000 + 3.454418468884391 0.454782819140658 3.500000000000000 + 4.138155047850561 0.544798447453416 3.500000000000000 + 4.957224306869052 0.652630961100258 3.500000000000000 + 0.130399986549024 0.034940571088840 3.500000000000000 + 0.156210189193366 0.041856394043875 3.500000000000000 + 0.187129031632634 0.050141072906382 3.500000000000000 + 0.224167672163950 0.060065546725495 3.500000000000000 + 0.268537408679887 0.071954381793322 3.500000000000000 + 0.321689292503194 0.086196386139970 3.500000000000000 + 0.385361583028324 0.103257324966418 3.500000000000000 + 0.461636595108683 0.123695152856025 3.500000000000000 + 0.553008798305344 0.148178260913223 3.500000000000000 + 0.662466395089674 0.177507335577035 3.500000000000000 + 0.793589045903009 0.212641543971896 3.500000000000000 + 0.950664937037295 0.254729902151727 3.500000000000000 + 1.138831019881013 0.305148852092629 3.500000000000000 + 1.364241007862425 0.365547276338158 3.500000000000000 + 1.634266625199533 0.437900422439351 3.500000000000000 + 1.957738689020853 0.524574500714302 3.500000000000000 + 2.345235909116810 0.628404067908319 3.500000000000000 + 2.809430850121165 0.752784727481049 3.500000000000000 + 3.365504370340686 0.901784178156201 3.500000000000000 + 4.031642090886043 1.080275242424238 3.500000000000000 + 4.829629131445342 1.294095225512604 3.500000000000000 + 0.124723736889024 0.051662263369287 3.500000000000000 + 0.149410433635385 0.061887827971822 3.500000000000000 + 0.178983393505734 0.074137349029635 3.500000000000000 + 0.214409759555383 0.088811430312994 3.500000000000000 + 0.256848102453283 0.106389967505944 3.500000000000000 + 0.307686309945289 0.127447842535870 3.500000000000000 + 0.368586975817614 0.152673724297740 3.500000000000000 + 0.441541772744232 0.182892590624920 3.500000000000000 + 0.528936587207547 0.219092708056705 3.500000000000000 + 0.633629546640492 0.262457951738807 3.500000000000000 + 0.759044490560639 0.314406522434794 3.500000000000000 + 0.909282942541432 0.376637326835177 3.500000000000000 + 1.089258244910155 0.451185537968501 3.500000000000000 + 1.304856242863799 0.540489152741387 3.500000000000000 + 1.563127772956236 0.647468723280525 3.500000000000000 + 1.872519251028453 0.775622869580695 3.500000000000000 + 2.243148900643535 0.929142697068850 3.500000000000000 + 2.687137655698174 1.113048860953628 3.500000000000000 + 3.219005558926356 1.333355759861682 3.500000000000000 + 3.856146619964103 1.597268228488301 3.500000000000000 + 4.619397662556434 1.913417161825449 3.500000000000000 + 0.116913429510899 0.067500000000000 3.500000000000000 + 0.140054224133504 0.080860344004622 3.500000000000000 + 0.167775299892379 0.096865114556235 3.500000000000000 + 0.200983236515207 0.116037725704657 3.500000000000000 + 0.240764053981956 0.139005191377668 3.500000000000000 + 0.288418729317458 0.166518631010764 3.500000000000000 + 0.345505743259048 0.199477833877173 3.500000000000000 + 0.413892048229620 0.238960685460817 3.500000000000000 + 0.495814124453702 0.286258418221363 3.500000000000000 + 0.593951120972993 0.342917839579237 3.500000000000000 + 0.711512473537886 0.410791918128875 3.500000000000000 + 0.852342864797825 0.492100382432881 3.500000000000000 + 1.021047959369445 0.589502314197467 3.500000000000000 + 1.223145025775275 0.706183109889307 3.500000000000000 + 1.465243371136763 0.845958654754125 3.500000000000000 + 1.755260489490538 1.013400116105276 3.500000000000000 + 2.102680992561878 1.213983437075510 3.500000000000000 + 2.518866790970880 1.454268419819846 3.500000000000000 + 3.017428669921848 1.742113254839873 3.500000000000000 + 3.614671411248753 2.086931512316511 3.500000000000000 + 4.330127018922194 2.500000000000000 3.500000000000000 + 0.135000000000000 0.000000000000000 3.750000000000000 + 0.161720688009245 0.000000000000000 3.750000000000000 + 0.193730229112470 0.000000000000000 3.750000000000000 + 0.232075451409314 0.000000000000000 3.750000000000000 + 0.278010382755335 0.000000000000000 3.750000000000000 + 0.333037262021528 0.000000000000000 3.750000000000000 + 0.398955667754346 0.000000000000000 3.750000000000000 + 0.477921370921634 0.000000000000000 3.750000000000000 + 0.572516836442726 0.000000000000000 3.750000000000000 + 0.685835679158474 0.000000000000000 3.750000000000000 + 0.821583836257749 0.000000000000000 3.750000000000000 + 0.984200764865763 0.000000000000000 3.750000000000000 + 1.179004628394934 0.000000000000000 3.750000000000000 + 1.412366219778614 0.000000000000000 3.750000000000000 + 1.691917309508250 0.000000000000000 3.750000000000000 + 2.026800232210552 0.000000000000000 3.750000000000000 + 2.427966874151020 0.000000000000000 3.750000000000000 + 2.908536839639692 0.000000000000000 3.750000000000000 + 3.484226509679746 0.000000000000000 3.750000000000000 + 4.173863024633023 0.000000000000000 3.750000000000000 + 5.000000000000000 0.000000000000000 3.750000000000000 + 0.133845056285464 0.017621035949707 3.750000000000000 + 0.160337145104603 0.021108785609054 3.750000000000000 + 0.192072840146330 0.025286869123969 3.750000000000000 + 0.230090013750771 0.030291924980207 3.750000000000000 + 0.275631965391343 0.036287636658693 3.750000000000000 + 0.330188082077248 0.043470085679062 3.750000000000000 + 0.395542546711004 0.052074164176583 3.750000000000000 + 0.473832687340980 0.062381256726988 3.750000000000000 + 0.567618875541131 0.074728442642739 3.750000000000000 + 0.679968259848487 0.089519519689209 3.750000000000000 + 0.814555072645528 0.107238209736266 3.750000000000000 + 0.975780790886334 0.128463978217990 3.750000000000000 + 1.168918080358097 0.153890984754208 3.750000000000000 + 1.400283230977460 0.184350784687931 3.750000000000000 + 1.677442722381357 0.220839523961306 3.750000000000000 + 2.009460675256398 0.264550516701160 3.750000000000000 + 2.407195280962862 0.316913270919354 3.750000000000000 + 2.883653903777195 0.379640238609912 3.750000000000000 + 3.454418468884391 0.454782819140658 3.750000000000000 + 4.138155047850561 0.544798447453416 3.750000000000000 + 4.957224306869052 0.652630961100258 3.750000000000000 + 0.130399986549024 0.034940571088840 3.750000000000000 + 0.156210189193366 0.041856394043875 3.750000000000000 + 0.187129031632634 0.050141072906382 3.750000000000000 + 0.224167672163950 0.060065546725495 3.750000000000000 + 0.268537408679887 0.071954381793322 3.750000000000000 + 0.321689292503194 0.086196386139970 3.750000000000000 + 0.385361583028324 0.103257324966418 3.750000000000000 + 0.461636595108683 0.123695152856025 3.750000000000000 + 0.553008798305344 0.148178260913223 3.750000000000000 + 0.662466395089674 0.177507335577035 3.750000000000000 + 0.793589045903009 0.212641543971896 3.750000000000000 + 0.950664937037295 0.254729902151727 3.750000000000000 + 1.138831019881013 0.305148852092629 3.750000000000000 + 1.364241007862425 0.365547276338158 3.750000000000000 + 1.634266625199533 0.437900422439351 3.750000000000000 + 1.957738689020853 0.524574500714302 3.750000000000000 + 2.345235909116810 0.628404067908319 3.750000000000000 + 2.809430850121165 0.752784727481049 3.750000000000000 + 3.365504370340686 0.901784178156201 3.750000000000000 + 4.031642090886043 1.080275242424238 3.750000000000000 + 4.829629131445342 1.294095225512604 3.750000000000000 + 0.124723736889024 0.051662263369287 3.750000000000000 + 0.149410433635385 0.061887827971822 3.750000000000000 + 0.178983393505734 0.074137349029635 3.750000000000000 + 0.214409759555383 0.088811430312994 3.750000000000000 + 0.256848102453283 0.106389967505944 3.750000000000000 + 0.307686309945289 0.127447842535870 3.750000000000000 + 0.368586975817614 0.152673724297740 3.750000000000000 + 0.441541772744232 0.182892590624920 3.750000000000000 + 0.528936587207547 0.219092708056705 3.750000000000000 + 0.633629546640492 0.262457951738807 3.750000000000000 + 0.759044490560639 0.314406522434794 3.750000000000000 + 0.909282942541432 0.376637326835177 3.750000000000000 + 1.089258244910155 0.451185537968501 3.750000000000000 + 1.304856242863799 0.540489152741387 3.750000000000000 + 1.563127772956236 0.647468723280525 3.750000000000000 + 1.872519251028453 0.775622869580695 3.750000000000000 + 2.243148900643535 0.929142697068850 3.750000000000000 + 2.687137655698174 1.113048860953628 3.750000000000000 + 3.219005558926356 1.333355759861682 3.750000000000000 + 3.856146619964103 1.597268228488301 3.750000000000000 + 4.619397662556434 1.913417161825449 3.750000000000000 + 0.116913429510899 0.067500000000000 3.750000000000000 + 0.140054224133504 0.080860344004622 3.750000000000000 + 0.167775299892379 0.096865114556235 3.750000000000000 + 0.200983236515207 0.116037725704657 3.750000000000000 + 0.240764053981956 0.139005191377668 3.750000000000000 + 0.288418729317458 0.166518631010764 3.750000000000000 + 0.345505743259048 0.199477833877173 3.750000000000000 + 0.413892048229620 0.238960685460817 3.750000000000000 + 0.495814124453702 0.286258418221363 3.750000000000000 + 0.593951120972993 0.342917839579237 3.750000000000000 + 0.711512473537886 0.410791918128875 3.750000000000000 + 0.852342864797825 0.492100382432881 3.750000000000000 + 1.021047959369445 0.589502314197467 3.750000000000000 + 1.223145025775275 0.706183109889307 3.750000000000000 + 1.465243371136763 0.845958654754125 3.750000000000000 + 1.755260489490538 1.013400116105276 3.750000000000000 + 2.102680992561878 1.213983437075510 3.750000000000000 + 2.518866790970880 1.454268419819846 3.750000000000000 + 3.017428669921848 1.742113254839873 3.750000000000000 + 3.614671411248753 2.086931512316511 3.750000000000000 + 4.330127018922194 2.500000000000000 3.750000000000000 + 0.135000000000000 0.000000000000000 4.000000000000000 + 0.161720688009245 0.000000000000000 4.000000000000000 + 0.193730229112470 0.000000000000000 4.000000000000000 + 0.232075451409314 0.000000000000000 4.000000000000000 + 0.278010382755335 0.000000000000000 4.000000000000000 + 0.333037262021528 0.000000000000000 4.000000000000000 + 0.398955667754346 0.000000000000000 4.000000000000000 + 0.477921370921634 0.000000000000000 4.000000000000000 + 0.572516836442726 0.000000000000000 4.000000000000000 + 0.685835679158474 0.000000000000000 4.000000000000000 + 0.821583836257749 0.000000000000000 4.000000000000000 + 0.984200764865763 0.000000000000000 4.000000000000000 + 1.179004628394934 0.000000000000000 4.000000000000000 + 1.412366219778614 0.000000000000000 4.000000000000000 + 1.691917309508250 0.000000000000000 4.000000000000000 + 2.026800232210552 0.000000000000000 4.000000000000000 + 2.427966874151020 0.000000000000000 4.000000000000000 + 2.908536839639692 0.000000000000000 4.000000000000000 + 3.484226509679746 0.000000000000000 4.000000000000000 + 4.173863024633023 0.000000000000000 4.000000000000000 + 5.000000000000000 0.000000000000000 4.000000000000000 + 0.133845056285464 0.017621035949707 4.000000000000000 + 0.160337145104603 0.021108785609054 4.000000000000000 + 0.192072840146330 0.025286869123969 4.000000000000000 + 0.230090013750771 0.030291924980207 4.000000000000000 + 0.275631965391343 0.036287636658693 4.000000000000000 + 0.330188082077248 0.043470085679062 4.000000000000000 + 0.395542546711004 0.052074164176583 4.000000000000000 + 0.473832687340980 0.062381256726988 4.000000000000000 + 0.567618875541131 0.074728442642739 4.000000000000000 + 0.679968259848487 0.089519519689209 4.000000000000000 + 0.814555072645528 0.107238209736266 4.000000000000000 + 0.975780790886334 0.128463978217990 4.000000000000000 + 1.168918080358097 0.153890984754208 4.000000000000000 + 1.400283230977460 0.184350784687931 4.000000000000000 + 1.677442722381357 0.220839523961306 4.000000000000000 + 2.009460675256398 0.264550516701160 4.000000000000000 + 2.407195280962862 0.316913270919354 4.000000000000000 + 2.883653903777195 0.379640238609912 4.000000000000000 + 3.454418468884391 0.454782819140658 4.000000000000000 + 4.138155047850561 0.544798447453416 4.000000000000000 + 4.957224306869052 0.652630961100258 4.000000000000000 + 0.130399986549024 0.034940571088840 4.000000000000000 + 0.156210189193366 0.041856394043875 4.000000000000000 + 0.187129031632634 0.050141072906382 4.000000000000000 + 0.224167672163950 0.060065546725495 4.000000000000000 + 0.268537408679887 0.071954381793322 4.000000000000000 + 0.321689292503194 0.086196386139970 4.000000000000000 + 0.385361583028324 0.103257324966418 4.000000000000000 + 0.461636595108683 0.123695152856025 4.000000000000000 + 0.553008798305344 0.148178260913223 4.000000000000000 + 0.662466395089674 0.177507335577035 4.000000000000000 + 0.793589045903009 0.212641543971896 4.000000000000000 + 0.950664937037295 0.254729902151727 4.000000000000000 + 1.138831019881013 0.305148852092629 4.000000000000000 + 1.364241007862425 0.365547276338158 4.000000000000000 + 1.634266625199533 0.437900422439351 4.000000000000000 + 1.957738689020853 0.524574500714302 4.000000000000000 + 2.345235909116810 0.628404067908319 4.000000000000000 + 2.809430850121165 0.752784727481049 4.000000000000000 + 3.365504370340686 0.901784178156201 4.000000000000000 + 4.031642090886043 1.080275242424238 4.000000000000000 + 4.829629131445342 1.294095225512604 4.000000000000000 + 0.124723736889024 0.051662263369287 4.000000000000000 + 0.149410433635385 0.061887827971822 4.000000000000000 + 0.178983393505734 0.074137349029635 4.000000000000000 + 0.214409759555383 0.088811430312994 4.000000000000000 + 0.256848102453283 0.106389967505944 4.000000000000000 + 0.307686309945289 0.127447842535870 4.000000000000000 + 0.368586975817614 0.152673724297740 4.000000000000000 + 0.441541772744232 0.182892590624920 4.000000000000000 + 0.528936587207547 0.219092708056705 4.000000000000000 + 0.633629546640492 0.262457951738807 4.000000000000000 + 0.759044490560639 0.314406522434794 4.000000000000000 + 0.909282942541432 0.376637326835177 4.000000000000000 + 1.089258244910155 0.451185537968501 4.000000000000000 + 1.304856242863799 0.540489152741387 4.000000000000000 + 1.563127772956236 0.647468723280525 4.000000000000000 + 1.872519251028453 0.775622869580695 4.000000000000000 + 2.243148900643535 0.929142697068850 4.000000000000000 + 2.687137655698174 1.113048860953628 4.000000000000000 + 3.219005558926356 1.333355759861682 4.000000000000000 + 3.856146619964103 1.597268228488301 4.000000000000000 + 4.619397662556434 1.913417161825449 4.000000000000000 + 0.116913429510899 0.067500000000000 4.000000000000000 + 0.140054224133504 0.080860344004622 4.000000000000000 + 0.167775299892379 0.096865114556235 4.000000000000000 + 0.200983236515207 0.116037725704657 4.000000000000000 + 0.240764053981956 0.139005191377668 4.000000000000000 + 0.288418729317458 0.166518631010764 4.000000000000000 + 0.345505743259048 0.199477833877173 4.000000000000000 + 0.413892048229620 0.238960685460817 4.000000000000000 + 0.495814124453702 0.286258418221363 4.000000000000000 + 0.593951120972993 0.342917839579237 4.000000000000000 + 0.711512473537886 0.410791918128875 4.000000000000000 + 0.852342864797825 0.492100382432881 4.000000000000000 + 1.021047959369445 0.589502314197467 4.000000000000000 + 1.223145025775275 0.706183109889307 4.000000000000000 + 1.465243371136763 0.845958654754125 4.000000000000000 + 1.755260489490538 1.013400116105276 4.000000000000000 + 2.102680992561878 1.213983437075510 4.000000000000000 + 2.518866790970880 1.454268419819846 4.000000000000000 + 3.017428669921848 1.742113254839873 4.000000000000000 + 3.614671411248753 2.086931512316511 4.000000000000000 + 4.330127018922194 2.500000000000000 4.000000000000000 + 0.135000000000000 0.000000000000000 4.250000000000000 + 0.161720688009245 0.000000000000000 4.250000000000000 + 0.193730229112470 0.000000000000000 4.250000000000000 + 0.232075451409314 0.000000000000000 4.250000000000000 + 0.278010382755335 0.000000000000000 4.250000000000000 + 0.333037262021528 0.000000000000000 4.250000000000000 + 0.398955667754346 0.000000000000000 4.250000000000000 + 0.477921370921634 0.000000000000000 4.250000000000000 + 0.572516836442726 0.000000000000000 4.250000000000000 + 0.685835679158474 0.000000000000000 4.250000000000000 + 0.821583836257749 0.000000000000000 4.250000000000000 + 0.984200764865763 0.000000000000000 4.250000000000000 + 1.179004628394934 0.000000000000000 4.250000000000000 + 1.412366219778614 0.000000000000000 4.250000000000000 + 1.691917309508250 0.000000000000000 4.250000000000000 + 2.026800232210552 0.000000000000000 4.250000000000000 + 2.427966874151020 0.000000000000000 4.250000000000000 + 2.908536839639692 0.000000000000000 4.250000000000000 + 3.484226509679746 0.000000000000000 4.250000000000000 + 4.173863024633023 0.000000000000000 4.250000000000000 + 5.000000000000000 0.000000000000000 4.250000000000000 + 0.133845056285464 0.017621035949707 4.250000000000000 + 0.160337145104603 0.021108785609054 4.250000000000000 + 0.192072840146330 0.025286869123969 4.250000000000000 + 0.230090013750771 0.030291924980207 4.250000000000000 + 0.275631965391343 0.036287636658693 4.250000000000000 + 0.330188082077248 0.043470085679062 4.250000000000000 + 0.395542546711004 0.052074164176583 4.250000000000000 + 0.473832687340980 0.062381256726988 4.250000000000000 + 0.567618875541131 0.074728442642739 4.250000000000000 + 0.679968259848487 0.089519519689209 4.250000000000000 + 0.814555072645528 0.107238209736266 4.250000000000000 + 0.975780790886334 0.128463978217990 4.250000000000000 + 1.168918080358097 0.153890984754208 4.250000000000000 + 1.400283230977460 0.184350784687931 4.250000000000000 + 1.677442722381357 0.220839523961306 4.250000000000000 + 2.009460675256398 0.264550516701160 4.250000000000000 + 2.407195280962862 0.316913270919354 4.250000000000000 + 2.883653903777195 0.379640238609912 4.250000000000000 + 3.454418468884391 0.454782819140658 4.250000000000000 + 4.138155047850561 0.544798447453416 4.250000000000000 + 4.957224306869052 0.652630961100258 4.250000000000000 + 0.130399986549024 0.034940571088840 4.250000000000000 + 0.156210189193366 0.041856394043875 4.250000000000000 + 0.187129031632634 0.050141072906382 4.250000000000000 + 0.224167672163950 0.060065546725495 4.250000000000000 + 0.268537408679887 0.071954381793322 4.250000000000000 + 0.321689292503194 0.086196386139970 4.250000000000000 + 0.385361583028324 0.103257324966418 4.250000000000000 + 0.461636595108683 0.123695152856025 4.250000000000000 + 0.553008798305344 0.148178260913223 4.250000000000000 + 0.662466395089674 0.177507335577035 4.250000000000000 + 0.793589045903009 0.212641543971896 4.250000000000000 + 0.950664937037295 0.254729902151727 4.250000000000000 + 1.138831019881013 0.305148852092629 4.250000000000000 + 1.364241007862425 0.365547276338158 4.250000000000000 + 1.634266625199533 0.437900422439351 4.250000000000000 + 1.957738689020853 0.524574500714302 4.250000000000000 + 2.345235909116810 0.628404067908319 4.250000000000000 + 2.809430850121165 0.752784727481049 4.250000000000000 + 3.365504370340686 0.901784178156201 4.250000000000000 + 4.031642090886043 1.080275242424238 4.250000000000000 + 4.829629131445342 1.294095225512604 4.250000000000000 + 0.124723736889024 0.051662263369287 4.250000000000000 + 0.149410433635385 0.061887827971822 4.250000000000000 + 0.178983393505734 0.074137349029635 4.250000000000000 + 0.214409759555383 0.088811430312994 4.250000000000000 + 0.256848102453283 0.106389967505944 4.250000000000000 + 0.307686309945289 0.127447842535870 4.250000000000000 + 0.368586975817614 0.152673724297740 4.250000000000000 + 0.441541772744232 0.182892590624920 4.250000000000000 + 0.528936587207547 0.219092708056705 4.250000000000000 + 0.633629546640492 0.262457951738807 4.250000000000000 + 0.759044490560639 0.314406522434794 4.250000000000000 + 0.909282942541432 0.376637326835177 4.250000000000000 + 1.089258244910155 0.451185537968501 4.250000000000000 + 1.304856242863799 0.540489152741387 4.250000000000000 + 1.563127772956236 0.647468723280525 4.250000000000000 + 1.872519251028453 0.775622869580695 4.250000000000000 + 2.243148900643535 0.929142697068850 4.250000000000000 + 2.687137655698174 1.113048860953628 4.250000000000000 + 3.219005558926356 1.333355759861682 4.250000000000000 + 3.856146619964103 1.597268228488301 4.250000000000000 + 4.619397662556434 1.913417161825449 4.250000000000000 + 0.116913429510899 0.067500000000000 4.250000000000000 + 0.140054224133504 0.080860344004622 4.250000000000000 + 0.167775299892379 0.096865114556235 4.250000000000000 + 0.200983236515207 0.116037725704657 4.250000000000000 + 0.240764053981956 0.139005191377668 4.250000000000000 + 0.288418729317458 0.166518631010764 4.250000000000000 + 0.345505743259048 0.199477833877173 4.250000000000000 + 0.413892048229620 0.238960685460817 4.250000000000000 + 0.495814124453702 0.286258418221363 4.250000000000000 + 0.593951120972993 0.342917839579237 4.250000000000000 + 0.711512473537886 0.410791918128875 4.250000000000000 + 0.852342864797825 0.492100382432881 4.250000000000000 + 1.021047959369445 0.589502314197467 4.250000000000000 + 1.223145025775275 0.706183109889307 4.250000000000000 + 1.465243371136763 0.845958654754125 4.250000000000000 + 1.755260489490538 1.013400116105276 4.250000000000000 + 2.102680992561878 1.213983437075510 4.250000000000000 + 2.518866790970880 1.454268419819846 4.250000000000000 + 3.017428669921848 1.742113254839873 4.250000000000000 + 3.614671411248753 2.086931512316511 4.250000000000000 + 4.330127018922194 2.500000000000000 4.250000000000000 + 0.135000000000000 0.000000000000000 4.500000000000000 + 0.161720688009245 0.000000000000000 4.500000000000000 + 0.193730229112470 0.000000000000000 4.500000000000000 + 0.232075451409314 0.000000000000000 4.500000000000000 + 0.278010382755335 0.000000000000000 4.500000000000000 + 0.333037262021528 0.000000000000000 4.500000000000000 + 0.398955667754346 0.000000000000000 4.500000000000000 + 0.477921370921634 0.000000000000000 4.500000000000000 + 0.572516836442726 0.000000000000000 4.500000000000000 + 0.685835679158474 0.000000000000000 4.500000000000000 + 0.821583836257749 0.000000000000000 4.500000000000000 + 0.984200764865763 0.000000000000000 4.500000000000000 + 1.179004628394934 0.000000000000000 4.500000000000000 + 1.412366219778614 0.000000000000000 4.500000000000000 + 1.691917309508250 0.000000000000000 4.500000000000000 + 2.026800232210552 0.000000000000000 4.500000000000000 + 2.427966874151020 0.000000000000000 4.500000000000000 + 2.908536839639692 0.000000000000000 4.500000000000000 + 3.484226509679746 0.000000000000000 4.500000000000000 + 4.173863024633023 0.000000000000000 4.500000000000000 + 5.000000000000000 0.000000000000000 4.500000000000000 + 0.133845056285464 0.017621035949707 4.500000000000000 + 0.160337145104603 0.021108785609054 4.500000000000000 + 0.192072840146330 0.025286869123969 4.500000000000000 + 0.230090013750771 0.030291924980207 4.500000000000000 + 0.275631965391343 0.036287636658693 4.500000000000000 + 0.330188082077248 0.043470085679062 4.500000000000000 + 0.395542546711004 0.052074164176583 4.500000000000000 + 0.473832687340980 0.062381256726988 4.500000000000000 + 0.567618875541131 0.074728442642739 4.500000000000000 + 0.679968259848487 0.089519519689209 4.500000000000000 + 0.814555072645528 0.107238209736266 4.500000000000000 + 0.975780790886334 0.128463978217990 4.500000000000000 + 1.168918080358097 0.153890984754208 4.500000000000000 + 1.400283230977460 0.184350784687931 4.500000000000000 + 1.677442722381357 0.220839523961306 4.500000000000000 + 2.009460675256398 0.264550516701160 4.500000000000000 + 2.407195280962862 0.316913270919354 4.500000000000000 + 2.883653903777195 0.379640238609912 4.500000000000000 + 3.454418468884391 0.454782819140658 4.500000000000000 + 4.138155047850561 0.544798447453416 4.500000000000000 + 4.957224306869052 0.652630961100258 4.500000000000000 + 0.130399986549024 0.034940571088840 4.500000000000000 + 0.156210189193366 0.041856394043875 4.500000000000000 + 0.187129031632634 0.050141072906382 4.500000000000000 + 0.224167672163950 0.060065546725495 4.500000000000000 + 0.268537408679887 0.071954381793322 4.500000000000000 + 0.321689292503194 0.086196386139970 4.500000000000000 + 0.385361583028324 0.103257324966418 4.500000000000000 + 0.461636595108683 0.123695152856025 4.500000000000000 + 0.553008798305344 0.148178260913223 4.500000000000000 + 0.662466395089674 0.177507335577035 4.500000000000000 + 0.793589045903009 0.212641543971896 4.500000000000000 + 0.950664937037295 0.254729902151727 4.500000000000000 + 1.138831019881013 0.305148852092629 4.500000000000000 + 1.364241007862425 0.365547276338158 4.500000000000000 + 1.634266625199533 0.437900422439351 4.500000000000000 + 1.957738689020853 0.524574500714302 4.500000000000000 + 2.345235909116810 0.628404067908319 4.500000000000000 + 2.809430850121165 0.752784727481049 4.500000000000000 + 3.365504370340686 0.901784178156201 4.500000000000000 + 4.031642090886043 1.080275242424238 4.500000000000000 + 4.829629131445342 1.294095225512604 4.500000000000000 + 0.124723736889024 0.051662263369287 4.500000000000000 + 0.149410433635385 0.061887827971822 4.500000000000000 + 0.178983393505734 0.074137349029635 4.500000000000000 + 0.214409759555383 0.088811430312994 4.500000000000000 + 0.256848102453283 0.106389967505944 4.500000000000000 + 0.307686309945289 0.127447842535870 4.500000000000000 + 0.368586975817614 0.152673724297740 4.500000000000000 + 0.441541772744232 0.182892590624920 4.500000000000000 + 0.528936587207547 0.219092708056705 4.500000000000000 + 0.633629546640492 0.262457951738807 4.500000000000000 + 0.759044490560639 0.314406522434794 4.500000000000000 + 0.909282942541432 0.376637326835177 4.500000000000000 + 1.089258244910155 0.451185537968501 4.500000000000000 + 1.304856242863799 0.540489152741387 4.500000000000000 + 1.563127772956236 0.647468723280525 4.500000000000000 + 1.872519251028453 0.775622869580695 4.500000000000000 + 2.243148900643535 0.929142697068850 4.500000000000000 + 2.687137655698174 1.113048860953628 4.500000000000000 + 3.219005558926356 1.333355759861682 4.500000000000000 + 3.856146619964103 1.597268228488301 4.500000000000000 + 4.619397662556434 1.913417161825449 4.500000000000000 + 0.116913429510899 0.067500000000000 4.500000000000000 + 0.140054224133504 0.080860344004622 4.500000000000000 + 0.167775299892379 0.096865114556235 4.500000000000000 + 0.200983236515207 0.116037725704657 4.500000000000000 + 0.240764053981956 0.139005191377668 4.500000000000000 + 0.288418729317458 0.166518631010764 4.500000000000000 + 0.345505743259048 0.199477833877173 4.500000000000000 + 0.413892048229620 0.238960685460817 4.500000000000000 + 0.495814124453702 0.286258418221363 4.500000000000000 + 0.593951120972993 0.342917839579237 4.500000000000000 + 0.711512473537886 0.410791918128875 4.500000000000000 + 0.852342864797825 0.492100382432881 4.500000000000000 + 1.021047959369445 0.589502314197467 4.500000000000000 + 1.223145025775275 0.706183109889307 4.500000000000000 + 1.465243371136763 0.845958654754125 4.500000000000000 + 1.755260489490538 1.013400116105276 4.500000000000000 + 2.102680992561878 1.213983437075510 4.500000000000000 + 2.518866790970880 1.454268419819846 4.500000000000000 + 3.017428669921848 1.742113254839873 4.500000000000000 + 3.614671411248753 2.086931512316511 4.500000000000000 + 4.330127018922194 2.500000000000000 4.500000000000000 + 0.135000000000000 0.000000000000000 4.750000000000000 + 0.161720688009245 0.000000000000000 4.750000000000000 + 0.193730229112470 0.000000000000000 4.750000000000000 + 0.232075451409314 0.000000000000000 4.750000000000000 + 0.278010382755335 0.000000000000000 4.750000000000000 + 0.333037262021528 0.000000000000000 4.750000000000000 + 0.398955667754346 0.000000000000000 4.750000000000000 + 0.477921370921634 0.000000000000000 4.750000000000000 + 0.572516836442726 0.000000000000000 4.750000000000000 + 0.685835679158474 0.000000000000000 4.750000000000000 + 0.821583836257749 0.000000000000000 4.750000000000000 + 0.984200764865763 0.000000000000000 4.750000000000000 + 1.179004628394934 0.000000000000000 4.750000000000000 + 1.412366219778614 0.000000000000000 4.750000000000000 + 1.691917309508250 0.000000000000000 4.750000000000000 + 2.026800232210552 0.000000000000000 4.750000000000000 + 2.427966874151020 0.000000000000000 4.750000000000000 + 2.908536839639692 0.000000000000000 4.750000000000000 + 3.484226509679746 0.000000000000000 4.750000000000000 + 4.173863024633023 0.000000000000000 4.750000000000000 + 5.000000000000000 0.000000000000000 4.750000000000000 + 0.133845056285464 0.017621035949707 4.750000000000000 + 0.160337145104603 0.021108785609054 4.750000000000000 + 0.192072840146330 0.025286869123969 4.750000000000000 + 0.230090013750771 0.030291924980207 4.750000000000000 + 0.275631965391343 0.036287636658693 4.750000000000000 + 0.330188082077248 0.043470085679062 4.750000000000000 + 0.395542546711004 0.052074164176583 4.750000000000000 + 0.473832687340980 0.062381256726988 4.750000000000000 + 0.567618875541131 0.074728442642739 4.750000000000000 + 0.679968259848487 0.089519519689209 4.750000000000000 + 0.814555072645528 0.107238209736266 4.750000000000000 + 0.975780790886334 0.128463978217990 4.750000000000000 + 1.168918080358097 0.153890984754208 4.750000000000000 + 1.400283230977460 0.184350784687931 4.750000000000000 + 1.677442722381357 0.220839523961306 4.750000000000000 + 2.009460675256398 0.264550516701160 4.750000000000000 + 2.407195280962862 0.316913270919354 4.750000000000000 + 2.883653903777195 0.379640238609912 4.750000000000000 + 3.454418468884391 0.454782819140658 4.750000000000000 + 4.138155047850561 0.544798447453416 4.750000000000000 + 4.957224306869052 0.652630961100258 4.750000000000000 + 0.130399986549024 0.034940571088840 4.750000000000000 + 0.156210189193366 0.041856394043875 4.750000000000000 + 0.187129031632634 0.050141072906382 4.750000000000000 + 0.224167672163950 0.060065546725495 4.750000000000000 + 0.268537408679887 0.071954381793322 4.750000000000000 + 0.321689292503194 0.086196386139970 4.750000000000000 + 0.385361583028324 0.103257324966418 4.750000000000000 + 0.461636595108683 0.123695152856025 4.750000000000000 + 0.553008798305344 0.148178260913223 4.750000000000000 + 0.662466395089674 0.177507335577035 4.750000000000000 + 0.793589045903009 0.212641543971896 4.750000000000000 + 0.950664937037295 0.254729902151727 4.750000000000000 + 1.138831019881013 0.305148852092629 4.750000000000000 + 1.364241007862425 0.365547276338158 4.750000000000000 + 1.634266625199533 0.437900422439351 4.750000000000000 + 1.957738689020853 0.524574500714302 4.750000000000000 + 2.345235909116810 0.628404067908319 4.750000000000000 + 2.809430850121165 0.752784727481049 4.750000000000000 + 3.365504370340686 0.901784178156201 4.750000000000000 + 4.031642090886043 1.080275242424238 4.750000000000000 + 4.829629131445342 1.294095225512604 4.750000000000000 + 0.124723736889024 0.051662263369287 4.750000000000000 + 0.149410433635385 0.061887827971822 4.750000000000000 + 0.178983393505734 0.074137349029635 4.750000000000000 + 0.214409759555383 0.088811430312994 4.750000000000000 + 0.256848102453283 0.106389967505944 4.750000000000000 + 0.307686309945289 0.127447842535870 4.750000000000000 + 0.368586975817614 0.152673724297740 4.750000000000000 + 0.441541772744232 0.182892590624920 4.750000000000000 + 0.528936587207547 0.219092708056705 4.750000000000000 + 0.633629546640492 0.262457951738807 4.750000000000000 + 0.759044490560639 0.314406522434794 4.750000000000000 + 0.909282942541432 0.376637326835177 4.750000000000000 + 1.089258244910155 0.451185537968501 4.750000000000000 + 1.304856242863799 0.540489152741387 4.750000000000000 + 1.563127772956236 0.647468723280525 4.750000000000000 + 1.872519251028453 0.775622869580695 4.750000000000000 + 2.243148900643535 0.929142697068850 4.750000000000000 + 2.687137655698174 1.113048860953628 4.750000000000000 + 3.219005558926356 1.333355759861682 4.750000000000000 + 3.856146619964103 1.597268228488301 4.750000000000000 + 4.619397662556434 1.913417161825449 4.750000000000000 + 0.116913429510899 0.067500000000000 4.750000000000000 + 0.140054224133504 0.080860344004622 4.750000000000000 + 0.167775299892379 0.096865114556235 4.750000000000000 + 0.200983236515207 0.116037725704657 4.750000000000000 + 0.240764053981956 0.139005191377668 4.750000000000000 + 0.288418729317458 0.166518631010764 4.750000000000000 + 0.345505743259048 0.199477833877173 4.750000000000000 + 0.413892048229620 0.238960685460817 4.750000000000000 + 0.495814124453702 0.286258418221363 4.750000000000000 + 0.593951120972993 0.342917839579237 4.750000000000000 + 0.711512473537886 0.410791918128875 4.750000000000000 + 0.852342864797825 0.492100382432881 4.750000000000000 + 1.021047959369445 0.589502314197467 4.750000000000000 + 1.223145025775275 0.706183109889307 4.750000000000000 + 1.465243371136763 0.845958654754125 4.750000000000000 + 1.755260489490538 1.013400116105276 4.750000000000000 + 2.102680992561878 1.213983437075510 4.750000000000000 + 2.518866790970880 1.454268419819846 4.750000000000000 + 3.017428669921848 1.742113254839873 4.750000000000000 + 3.614671411248753 2.086931512316511 4.750000000000000 + 4.330127018922194 2.500000000000000 4.750000000000000 + 0.135000000000000 0.000000000000000 5.000000000000000 + 0.161720688009245 0.000000000000000 5.000000000000000 + 0.193730229112470 0.000000000000000 5.000000000000000 + 0.232075451409314 0.000000000000000 5.000000000000000 + 0.278010382755335 0.000000000000000 5.000000000000000 + 0.333037262021528 0.000000000000000 5.000000000000000 + 0.398955667754346 0.000000000000000 5.000000000000000 + 0.477921370921634 0.000000000000000 5.000000000000000 + 0.572516836442726 0.000000000000000 5.000000000000000 + 0.685835679158474 0.000000000000000 5.000000000000000 + 0.821583836257749 0.000000000000000 5.000000000000000 + 0.984200764865763 0.000000000000000 5.000000000000000 + 1.179004628394934 0.000000000000000 5.000000000000000 + 1.412366219778614 0.000000000000000 5.000000000000000 + 1.691917309508250 0.000000000000000 5.000000000000000 + 2.026800232210552 0.000000000000000 5.000000000000000 + 2.427966874151020 0.000000000000000 5.000000000000000 + 2.908536839639692 0.000000000000000 5.000000000000000 + 3.484226509679746 0.000000000000000 5.000000000000000 + 4.173863024633023 0.000000000000000 5.000000000000000 + 5.000000000000000 0.000000000000000 5.000000000000000 + 0.133845056285464 0.017621035949707 5.000000000000000 + 0.160337145104603 0.021108785609054 5.000000000000000 + 0.192072840146330 0.025286869123969 5.000000000000000 + 0.230090013750771 0.030291924980207 5.000000000000000 + 0.275631965391343 0.036287636658693 5.000000000000000 + 0.330188082077248 0.043470085679062 5.000000000000000 + 0.395542546711004 0.052074164176583 5.000000000000000 + 0.473832687340980 0.062381256726988 5.000000000000000 + 0.567618875541131 0.074728442642739 5.000000000000000 + 0.679968259848487 0.089519519689209 5.000000000000000 + 0.814555072645528 0.107238209736266 5.000000000000000 + 0.975780790886334 0.128463978217990 5.000000000000000 + 1.168918080358097 0.153890984754208 5.000000000000000 + 1.400283230977460 0.184350784687931 5.000000000000000 + 1.677442722381357 0.220839523961306 5.000000000000000 + 2.009460675256398 0.264550516701160 5.000000000000000 + 2.407195280962862 0.316913270919354 5.000000000000000 + 2.883653903777195 0.379640238609912 5.000000000000000 + 3.454418468884391 0.454782819140658 5.000000000000000 + 4.138155047850561 0.544798447453416 5.000000000000000 + 4.957224306869052 0.652630961100258 5.000000000000000 + 0.130399986549024 0.034940571088840 5.000000000000000 + 0.156210189193366 0.041856394043875 5.000000000000000 + 0.187129031632634 0.050141072906382 5.000000000000000 + 0.224167672163950 0.060065546725495 5.000000000000000 + 0.268537408679887 0.071954381793322 5.000000000000000 + 0.321689292503194 0.086196386139970 5.000000000000000 + 0.385361583028324 0.103257324966418 5.000000000000000 + 0.461636595108683 0.123695152856025 5.000000000000000 + 0.553008798305344 0.148178260913223 5.000000000000000 + 0.662466395089674 0.177507335577035 5.000000000000000 + 0.793589045903009 0.212641543971896 5.000000000000000 + 0.950664937037295 0.254729902151727 5.000000000000000 + 1.138831019881013 0.305148852092629 5.000000000000000 + 1.364241007862425 0.365547276338158 5.000000000000000 + 1.634266625199533 0.437900422439351 5.000000000000000 + 1.957738689020853 0.524574500714302 5.000000000000000 + 2.345235909116810 0.628404067908319 5.000000000000000 + 2.809430850121165 0.752784727481049 5.000000000000000 + 3.365504370340686 0.901784178156201 5.000000000000000 + 4.031642090886043 1.080275242424238 5.000000000000000 + 4.829629131445342 1.294095225512604 5.000000000000000 + 0.124723736889024 0.051662263369287 5.000000000000000 + 0.149410433635385 0.061887827971822 5.000000000000000 + 0.178983393505734 0.074137349029635 5.000000000000000 + 0.214409759555383 0.088811430312994 5.000000000000000 + 0.256848102453283 0.106389967505944 5.000000000000000 + 0.307686309945289 0.127447842535870 5.000000000000000 + 0.368586975817614 0.152673724297740 5.000000000000000 + 0.441541772744232 0.182892590624920 5.000000000000000 + 0.528936587207547 0.219092708056705 5.000000000000000 + 0.633629546640492 0.262457951738807 5.000000000000000 + 0.759044490560639 0.314406522434794 5.000000000000000 + 0.909282942541432 0.376637326835177 5.000000000000000 + 1.089258244910155 0.451185537968501 5.000000000000000 + 1.304856242863799 0.540489152741387 5.000000000000000 + 1.563127772956236 0.647468723280525 5.000000000000000 + 1.872519251028453 0.775622869580695 5.000000000000000 + 2.243148900643535 0.929142697068850 5.000000000000000 + 2.687137655698174 1.113048860953628 5.000000000000000 + 3.219005558926356 1.333355759861682 5.000000000000000 + 3.856146619964103 1.597268228488301 5.000000000000000 + 4.619397662556434 1.913417161825449 5.000000000000000 + 0.116913429510899 0.067500000000000 5.000000000000000 + 0.140054224133504 0.080860344004622 5.000000000000000 + 0.167775299892379 0.096865114556235 5.000000000000000 + 0.200983236515207 0.116037725704657 5.000000000000000 + 0.240764053981956 0.139005191377668 5.000000000000000 + 0.288418729317458 0.166518631010764 5.000000000000000 + 0.345505743259048 0.199477833877173 5.000000000000000 + 0.413892048229620 0.238960685460817 5.000000000000000 + 0.495814124453702 0.286258418221363 5.000000000000000 + 0.593951120972993 0.342917839579237 5.000000000000000 + 0.711512473537886 0.410791918128875 5.000000000000000 + 0.852342864797825 0.492100382432881 5.000000000000000 + 1.021047959369445 0.589502314197467 5.000000000000000 + 1.223145025775275 0.706183109889307 5.000000000000000 + 1.465243371136763 0.845958654754125 5.000000000000000 + 1.755260489490538 1.013400116105276 5.000000000000000 + 2.102680992561878 1.213983437075510 5.000000000000000 + 2.518866790970880 1.454268419819846 5.000000000000000 + 3.017428669921848 1.742113254839873 5.000000000000000 + 3.614671411248753 2.086931512316511 5.000000000000000 + 4.330127018922194 2.500000000000000 5.000000000000000 + 0.135000000000000 0.000000000000000 5.250000000000000 + 0.161720688009245 0.000000000000000 5.250000000000000 + 0.193730229112470 0.000000000000000 5.250000000000000 + 0.232075451409314 0.000000000000000 5.250000000000000 + 0.278010382755335 0.000000000000000 5.250000000000000 + 0.333037262021528 0.000000000000000 5.250000000000000 + 0.398955667754346 0.000000000000000 5.250000000000000 + 0.477921370921634 0.000000000000000 5.250000000000000 + 0.572516836442726 0.000000000000000 5.250000000000000 + 0.685835679158474 0.000000000000000 5.250000000000000 + 0.821583836257749 0.000000000000000 5.250000000000000 + 0.984200764865763 0.000000000000000 5.250000000000000 + 1.179004628394934 0.000000000000000 5.250000000000000 + 1.412366219778614 0.000000000000000 5.250000000000000 + 1.691917309508250 0.000000000000000 5.250000000000000 + 2.026800232210552 0.000000000000000 5.250000000000000 + 2.427966874151020 0.000000000000000 5.250000000000000 + 2.908536839639692 0.000000000000000 5.250000000000000 + 3.484226509679746 0.000000000000000 5.250000000000000 + 4.173863024633023 0.000000000000000 5.250000000000000 + 5.000000000000000 0.000000000000000 5.250000000000000 + 0.133845056285464 0.017621035949707 5.250000000000000 + 0.160337145104603 0.021108785609054 5.250000000000000 + 0.192072840146330 0.025286869123969 5.250000000000000 + 0.230090013750771 0.030291924980207 5.250000000000000 + 0.275631965391343 0.036287636658693 5.250000000000000 + 0.330188082077248 0.043470085679062 5.250000000000000 + 0.395542546711004 0.052074164176583 5.250000000000000 + 0.473832687340980 0.062381256726988 5.250000000000000 + 0.567618875541131 0.074728442642739 5.250000000000000 + 0.679968259848487 0.089519519689209 5.250000000000000 + 0.814555072645528 0.107238209736266 5.250000000000000 + 0.975780790886334 0.128463978217990 5.250000000000000 + 1.168918080358097 0.153890984754208 5.250000000000000 + 1.400283230977460 0.184350784687931 5.250000000000000 + 1.677442722381357 0.220839523961306 5.250000000000000 + 2.009460675256398 0.264550516701160 5.250000000000000 + 2.407195280962862 0.316913270919354 5.250000000000000 + 2.883653903777195 0.379640238609912 5.250000000000000 + 3.454418468884391 0.454782819140658 5.250000000000000 + 4.138155047850561 0.544798447453416 5.250000000000000 + 4.957224306869052 0.652630961100258 5.250000000000000 + 0.130399986549024 0.034940571088840 5.250000000000000 + 0.156210189193366 0.041856394043875 5.250000000000000 + 0.187129031632634 0.050141072906382 5.250000000000000 + 0.224167672163950 0.060065546725495 5.250000000000000 + 0.268537408679887 0.071954381793322 5.250000000000000 + 0.321689292503194 0.086196386139970 5.250000000000000 + 0.385361583028324 0.103257324966418 5.250000000000000 + 0.461636595108683 0.123695152856025 5.250000000000000 + 0.553008798305344 0.148178260913223 5.250000000000000 + 0.662466395089674 0.177507335577035 5.250000000000000 + 0.793589045903009 0.212641543971896 5.250000000000000 + 0.950664937037295 0.254729902151727 5.250000000000000 + 1.138831019881013 0.305148852092629 5.250000000000000 + 1.364241007862425 0.365547276338158 5.250000000000000 + 1.634266625199533 0.437900422439351 5.250000000000000 + 1.957738689020853 0.524574500714302 5.250000000000000 + 2.345235909116810 0.628404067908319 5.250000000000000 + 2.809430850121165 0.752784727481049 5.250000000000000 + 3.365504370340686 0.901784178156201 5.250000000000000 + 4.031642090886043 1.080275242424238 5.250000000000000 + 4.829629131445342 1.294095225512604 5.250000000000000 + 0.124723736889024 0.051662263369287 5.250000000000000 + 0.149410433635385 0.061887827971822 5.250000000000000 + 0.178983393505734 0.074137349029635 5.250000000000000 + 0.214409759555383 0.088811430312994 5.250000000000000 + 0.256848102453283 0.106389967505944 5.250000000000000 + 0.307686309945289 0.127447842535870 5.250000000000000 + 0.368586975817614 0.152673724297740 5.250000000000000 + 0.441541772744232 0.182892590624920 5.250000000000000 + 0.528936587207547 0.219092708056705 5.250000000000000 + 0.633629546640492 0.262457951738807 5.250000000000000 + 0.759044490560639 0.314406522434794 5.250000000000000 + 0.909282942541432 0.376637326835177 5.250000000000000 + 1.089258244910155 0.451185537968501 5.250000000000000 + 1.304856242863799 0.540489152741387 5.250000000000000 + 1.563127772956236 0.647468723280525 5.250000000000000 + 1.872519251028453 0.775622869580695 5.250000000000000 + 2.243148900643535 0.929142697068850 5.250000000000000 + 2.687137655698174 1.113048860953628 5.250000000000000 + 3.219005558926356 1.333355759861682 5.250000000000000 + 3.856146619964103 1.597268228488301 5.250000000000000 + 4.619397662556434 1.913417161825449 5.250000000000000 + 0.116913429510899 0.067500000000000 5.250000000000000 + 0.140054224133504 0.080860344004622 5.250000000000000 + 0.167775299892379 0.096865114556235 5.250000000000000 + 0.200983236515207 0.116037725704657 5.250000000000000 + 0.240764053981956 0.139005191377668 5.250000000000000 + 0.288418729317458 0.166518631010764 5.250000000000000 + 0.345505743259048 0.199477833877173 5.250000000000000 + 0.413892048229620 0.238960685460817 5.250000000000000 + 0.495814124453702 0.286258418221363 5.250000000000000 + 0.593951120972993 0.342917839579237 5.250000000000000 + 0.711512473537886 0.410791918128875 5.250000000000000 + 0.852342864797825 0.492100382432881 5.250000000000000 + 1.021047959369445 0.589502314197467 5.250000000000000 + 1.223145025775275 0.706183109889307 5.250000000000000 + 1.465243371136763 0.845958654754125 5.250000000000000 + 1.755260489490538 1.013400116105276 5.250000000000000 + 2.102680992561878 1.213983437075510 5.250000000000000 + 2.518866790970880 1.454268419819846 5.250000000000000 + 3.017428669921848 1.742113254839873 5.250000000000000 + 3.614671411248753 2.086931512316511 5.250000000000000 + 4.330127018922194 2.500000000000000 5.250000000000000 + 0.135000000000000 0.000000000000000 5.500000000000000 + 0.161720688009245 0.000000000000000 5.500000000000000 + 0.193730229112470 0.000000000000000 5.500000000000000 + 0.232075451409314 0.000000000000000 5.500000000000000 + 0.278010382755335 0.000000000000000 5.500000000000000 + 0.333037262021528 0.000000000000000 5.500000000000000 + 0.398955667754346 0.000000000000000 5.500000000000000 + 0.477921370921634 0.000000000000000 5.500000000000000 + 0.572516836442726 0.000000000000000 5.500000000000000 + 0.685835679158474 0.000000000000000 5.500000000000000 + 0.821583836257749 0.000000000000000 5.500000000000000 + 0.984200764865763 0.000000000000000 5.500000000000000 + 1.179004628394934 0.000000000000000 5.500000000000000 + 1.412366219778614 0.000000000000000 5.500000000000000 + 1.691917309508250 0.000000000000000 5.500000000000000 + 2.026800232210552 0.000000000000000 5.500000000000000 + 2.427966874151020 0.000000000000000 5.500000000000000 + 2.908536839639692 0.000000000000000 5.500000000000000 + 3.484226509679746 0.000000000000000 5.500000000000000 + 4.173863024633023 0.000000000000000 5.500000000000000 + 5.000000000000000 0.000000000000000 5.500000000000000 + 0.133845056285464 0.017621035949707 5.500000000000000 + 0.160337145104603 0.021108785609054 5.500000000000000 + 0.192072840146330 0.025286869123969 5.500000000000000 + 0.230090013750771 0.030291924980207 5.500000000000000 + 0.275631965391343 0.036287636658693 5.500000000000000 + 0.330188082077248 0.043470085679062 5.500000000000000 + 0.395542546711004 0.052074164176583 5.500000000000000 + 0.473832687340980 0.062381256726988 5.500000000000000 + 0.567618875541131 0.074728442642739 5.500000000000000 + 0.679968259848487 0.089519519689209 5.500000000000000 + 0.814555072645528 0.107238209736266 5.500000000000000 + 0.975780790886334 0.128463978217990 5.500000000000000 + 1.168918080358097 0.153890984754208 5.500000000000000 + 1.400283230977460 0.184350784687931 5.500000000000000 + 1.677442722381357 0.220839523961306 5.500000000000000 + 2.009460675256398 0.264550516701160 5.500000000000000 + 2.407195280962862 0.316913270919354 5.500000000000000 + 2.883653903777195 0.379640238609912 5.500000000000000 + 3.454418468884391 0.454782819140658 5.500000000000000 + 4.138155047850561 0.544798447453416 5.500000000000000 + 4.957224306869052 0.652630961100258 5.500000000000000 + 0.130399986549024 0.034940571088840 5.500000000000000 + 0.156210189193366 0.041856394043875 5.500000000000000 + 0.187129031632634 0.050141072906382 5.500000000000000 + 0.224167672163950 0.060065546725495 5.500000000000000 + 0.268537408679887 0.071954381793322 5.500000000000000 + 0.321689292503194 0.086196386139970 5.500000000000000 + 0.385361583028324 0.103257324966418 5.500000000000000 + 0.461636595108683 0.123695152856025 5.500000000000000 + 0.553008798305344 0.148178260913223 5.500000000000000 + 0.662466395089674 0.177507335577035 5.500000000000000 + 0.793589045903009 0.212641543971896 5.500000000000000 + 0.950664937037295 0.254729902151727 5.500000000000000 + 1.138831019881013 0.305148852092629 5.500000000000000 + 1.364241007862425 0.365547276338158 5.500000000000000 + 1.634266625199533 0.437900422439351 5.500000000000000 + 1.957738689020853 0.524574500714302 5.500000000000000 + 2.345235909116810 0.628404067908319 5.500000000000000 + 2.809430850121165 0.752784727481049 5.500000000000000 + 3.365504370340686 0.901784178156201 5.500000000000000 + 4.031642090886043 1.080275242424238 5.500000000000000 + 4.829629131445342 1.294095225512604 5.500000000000000 + 0.124723736889024 0.051662263369287 5.500000000000000 + 0.149410433635385 0.061887827971822 5.500000000000000 + 0.178983393505734 0.074137349029635 5.500000000000000 + 0.214409759555383 0.088811430312994 5.500000000000000 + 0.256848102453283 0.106389967505944 5.500000000000000 + 0.307686309945289 0.127447842535870 5.500000000000000 + 0.368586975817614 0.152673724297740 5.500000000000000 + 0.441541772744232 0.182892590624920 5.500000000000000 + 0.528936587207547 0.219092708056705 5.500000000000000 + 0.633629546640492 0.262457951738807 5.500000000000000 + 0.759044490560639 0.314406522434794 5.500000000000000 + 0.909282942541432 0.376637326835177 5.500000000000000 + 1.089258244910155 0.451185537968501 5.500000000000000 + 1.304856242863799 0.540489152741387 5.500000000000000 + 1.563127772956236 0.647468723280525 5.500000000000000 + 1.872519251028453 0.775622869580695 5.500000000000000 + 2.243148900643535 0.929142697068850 5.500000000000000 + 2.687137655698174 1.113048860953628 5.500000000000000 + 3.219005558926356 1.333355759861682 5.500000000000000 + 3.856146619964103 1.597268228488301 5.500000000000000 + 4.619397662556434 1.913417161825449 5.500000000000000 + 0.116913429510899 0.067500000000000 5.500000000000000 + 0.140054224133504 0.080860344004622 5.500000000000000 + 0.167775299892379 0.096865114556235 5.500000000000000 + 0.200983236515207 0.116037725704657 5.500000000000000 + 0.240764053981956 0.139005191377668 5.500000000000000 + 0.288418729317458 0.166518631010764 5.500000000000000 + 0.345505743259048 0.199477833877173 5.500000000000000 + 0.413892048229620 0.238960685460817 5.500000000000000 + 0.495814124453702 0.286258418221363 5.500000000000000 + 0.593951120972993 0.342917839579237 5.500000000000000 + 0.711512473537886 0.410791918128875 5.500000000000000 + 0.852342864797825 0.492100382432881 5.500000000000000 + 1.021047959369445 0.589502314197467 5.500000000000000 + 1.223145025775275 0.706183109889307 5.500000000000000 + 1.465243371136763 0.845958654754125 5.500000000000000 + 1.755260489490538 1.013400116105276 5.500000000000000 + 2.102680992561878 1.213983437075510 5.500000000000000 + 2.518866790970880 1.454268419819846 5.500000000000000 + 3.017428669921848 1.742113254839873 5.500000000000000 + 3.614671411248753 2.086931512316511 5.500000000000000 + 4.330127018922194 2.500000000000000 5.500000000000000 + 0.135000000000000 0.000000000000000 5.750000000000000 + 0.161720688009245 0.000000000000000 5.750000000000000 + 0.193730229112470 0.000000000000000 5.750000000000000 + 0.232075451409314 0.000000000000000 5.750000000000000 + 0.278010382755335 0.000000000000000 5.750000000000000 + 0.333037262021528 0.000000000000000 5.750000000000000 + 0.398955667754346 0.000000000000000 5.750000000000000 + 0.477921370921634 0.000000000000000 5.750000000000000 + 0.572516836442726 0.000000000000000 5.750000000000000 + 0.685835679158474 0.000000000000000 5.750000000000000 + 0.821583836257749 0.000000000000000 5.750000000000000 + 0.984200764865763 0.000000000000000 5.750000000000000 + 1.179004628394934 0.000000000000000 5.750000000000000 + 1.412366219778614 0.000000000000000 5.750000000000000 + 1.691917309508250 0.000000000000000 5.750000000000000 + 2.026800232210552 0.000000000000000 5.750000000000000 + 2.427966874151020 0.000000000000000 5.750000000000000 + 2.908536839639692 0.000000000000000 5.750000000000000 + 3.484226509679746 0.000000000000000 5.750000000000000 + 4.173863024633023 0.000000000000000 5.750000000000000 + 5.000000000000000 0.000000000000000 5.750000000000000 + 0.133845056285464 0.017621035949707 5.750000000000000 + 0.160337145104603 0.021108785609054 5.750000000000000 + 0.192072840146330 0.025286869123969 5.750000000000000 + 0.230090013750771 0.030291924980207 5.750000000000000 + 0.275631965391343 0.036287636658693 5.750000000000000 + 0.330188082077248 0.043470085679062 5.750000000000000 + 0.395542546711004 0.052074164176583 5.750000000000000 + 0.473832687340980 0.062381256726988 5.750000000000000 + 0.567618875541131 0.074728442642739 5.750000000000000 + 0.679968259848487 0.089519519689209 5.750000000000000 + 0.814555072645528 0.107238209736266 5.750000000000000 + 0.975780790886334 0.128463978217990 5.750000000000000 + 1.168918080358097 0.153890984754208 5.750000000000000 + 1.400283230977460 0.184350784687931 5.750000000000000 + 1.677442722381357 0.220839523961306 5.750000000000000 + 2.009460675256398 0.264550516701160 5.750000000000000 + 2.407195280962862 0.316913270919354 5.750000000000000 + 2.883653903777195 0.379640238609912 5.750000000000000 + 3.454418468884391 0.454782819140658 5.750000000000000 + 4.138155047850561 0.544798447453416 5.750000000000000 + 4.957224306869052 0.652630961100258 5.750000000000000 + 0.130399986549024 0.034940571088840 5.750000000000000 + 0.156210189193366 0.041856394043875 5.750000000000000 + 0.187129031632634 0.050141072906382 5.750000000000000 + 0.224167672163950 0.060065546725495 5.750000000000000 + 0.268537408679887 0.071954381793322 5.750000000000000 + 0.321689292503194 0.086196386139970 5.750000000000000 + 0.385361583028324 0.103257324966418 5.750000000000000 + 0.461636595108683 0.123695152856025 5.750000000000000 + 0.553008798305344 0.148178260913223 5.750000000000000 + 0.662466395089674 0.177507335577035 5.750000000000000 + 0.793589045903009 0.212641543971896 5.750000000000000 + 0.950664937037295 0.254729902151727 5.750000000000000 + 1.138831019881013 0.305148852092629 5.750000000000000 + 1.364241007862425 0.365547276338158 5.750000000000000 + 1.634266625199533 0.437900422439351 5.750000000000000 + 1.957738689020853 0.524574500714302 5.750000000000000 + 2.345235909116810 0.628404067908319 5.750000000000000 + 2.809430850121165 0.752784727481049 5.750000000000000 + 3.365504370340686 0.901784178156201 5.750000000000000 + 4.031642090886043 1.080275242424238 5.750000000000000 + 4.829629131445342 1.294095225512604 5.750000000000000 + 0.124723736889024 0.051662263369287 5.750000000000000 + 0.149410433635385 0.061887827971822 5.750000000000000 + 0.178983393505734 0.074137349029635 5.750000000000000 + 0.214409759555383 0.088811430312994 5.750000000000000 + 0.256848102453283 0.106389967505944 5.750000000000000 + 0.307686309945289 0.127447842535870 5.750000000000000 + 0.368586975817614 0.152673724297740 5.750000000000000 + 0.441541772744232 0.182892590624920 5.750000000000000 + 0.528936587207547 0.219092708056705 5.750000000000000 + 0.633629546640492 0.262457951738807 5.750000000000000 + 0.759044490560639 0.314406522434794 5.750000000000000 + 0.909282942541432 0.376637326835177 5.750000000000000 + 1.089258244910155 0.451185537968501 5.750000000000000 + 1.304856242863799 0.540489152741387 5.750000000000000 + 1.563127772956236 0.647468723280525 5.750000000000000 + 1.872519251028453 0.775622869580695 5.750000000000000 + 2.243148900643535 0.929142697068850 5.750000000000000 + 2.687137655698174 1.113048860953628 5.750000000000000 + 3.219005558926356 1.333355759861682 5.750000000000000 + 3.856146619964103 1.597268228488301 5.750000000000000 + 4.619397662556434 1.913417161825449 5.750000000000000 + 0.116913429510899 0.067500000000000 5.750000000000000 + 0.140054224133504 0.080860344004622 5.750000000000000 + 0.167775299892379 0.096865114556235 5.750000000000000 + 0.200983236515207 0.116037725704657 5.750000000000000 + 0.240764053981956 0.139005191377668 5.750000000000000 + 0.288418729317458 0.166518631010764 5.750000000000000 + 0.345505743259048 0.199477833877173 5.750000000000000 + 0.413892048229620 0.238960685460817 5.750000000000000 + 0.495814124453702 0.286258418221363 5.750000000000000 + 0.593951120972993 0.342917839579237 5.750000000000000 + 0.711512473537886 0.410791918128875 5.750000000000000 + 0.852342864797825 0.492100382432881 5.750000000000000 + 1.021047959369445 0.589502314197467 5.750000000000000 + 1.223145025775275 0.706183109889307 5.750000000000000 + 1.465243371136763 0.845958654754125 5.750000000000000 + 1.755260489490538 1.013400116105276 5.750000000000000 + 2.102680992561878 1.213983437075510 5.750000000000000 + 2.518866790970880 1.454268419819846 5.750000000000000 + 3.017428669921848 1.742113254839873 5.750000000000000 + 3.614671411248753 2.086931512316511 5.750000000000000 + 4.330127018922194 2.500000000000000 5.750000000000000 + 0.135000000000000 0.000000000000000 6.000000000000000 + 0.161720688009245 0.000000000000000 6.000000000000000 + 0.193730229112470 0.000000000000000 6.000000000000000 + 0.232075451409314 0.000000000000000 6.000000000000000 + 0.278010382755335 0.000000000000000 6.000000000000000 + 0.333037262021528 0.000000000000000 6.000000000000000 + 0.398955667754346 0.000000000000000 6.000000000000000 + 0.477921370921634 0.000000000000000 6.000000000000000 + 0.572516836442726 0.000000000000000 6.000000000000000 + 0.685835679158474 0.000000000000000 6.000000000000000 + 0.821583836257749 0.000000000000000 6.000000000000000 + 0.984200764865763 0.000000000000000 6.000000000000000 + 1.179004628394934 0.000000000000000 6.000000000000000 + 1.412366219778614 0.000000000000000 6.000000000000000 + 1.691917309508250 0.000000000000000 6.000000000000000 + 2.026800232210552 0.000000000000000 6.000000000000000 + 2.427966874151020 0.000000000000000 6.000000000000000 + 2.908536839639692 0.000000000000000 6.000000000000000 + 3.484226509679746 0.000000000000000 6.000000000000000 + 4.173863024633023 0.000000000000000 6.000000000000000 + 5.000000000000000 0.000000000000000 6.000000000000000 + 0.133845056285464 0.017621035949707 6.000000000000000 + 0.160337145104603 0.021108785609054 6.000000000000000 + 0.192072840146330 0.025286869123969 6.000000000000000 + 0.230090013750771 0.030291924980207 6.000000000000000 + 0.275631965391343 0.036287636658693 6.000000000000000 + 0.330188082077248 0.043470085679062 6.000000000000000 + 0.395542546711004 0.052074164176583 6.000000000000000 + 0.473832687340980 0.062381256726988 6.000000000000000 + 0.567618875541131 0.074728442642739 6.000000000000000 + 0.679968259848487 0.089519519689209 6.000000000000000 + 0.814555072645528 0.107238209736266 6.000000000000000 + 0.975780790886334 0.128463978217990 6.000000000000000 + 1.168918080358097 0.153890984754208 6.000000000000000 + 1.400283230977460 0.184350784687931 6.000000000000000 + 1.677442722381357 0.220839523961306 6.000000000000000 + 2.009460675256398 0.264550516701160 6.000000000000000 + 2.407195280962862 0.316913270919354 6.000000000000000 + 2.883653903777195 0.379640238609912 6.000000000000000 + 3.454418468884391 0.454782819140658 6.000000000000000 + 4.138155047850561 0.544798447453416 6.000000000000000 + 4.957224306869052 0.652630961100258 6.000000000000000 + 0.130399986549024 0.034940571088840 6.000000000000000 + 0.156210189193366 0.041856394043875 6.000000000000000 + 0.187129031632634 0.050141072906382 6.000000000000000 + 0.224167672163950 0.060065546725495 6.000000000000000 + 0.268537408679887 0.071954381793322 6.000000000000000 + 0.321689292503194 0.086196386139970 6.000000000000000 + 0.385361583028324 0.103257324966418 6.000000000000000 + 0.461636595108683 0.123695152856025 6.000000000000000 + 0.553008798305344 0.148178260913223 6.000000000000000 + 0.662466395089674 0.177507335577035 6.000000000000000 + 0.793589045903009 0.212641543971896 6.000000000000000 + 0.950664937037295 0.254729902151727 6.000000000000000 + 1.138831019881013 0.305148852092629 6.000000000000000 + 1.364241007862425 0.365547276338158 6.000000000000000 + 1.634266625199533 0.437900422439351 6.000000000000000 + 1.957738689020853 0.524574500714302 6.000000000000000 + 2.345235909116810 0.628404067908319 6.000000000000000 + 2.809430850121165 0.752784727481049 6.000000000000000 + 3.365504370340686 0.901784178156201 6.000000000000000 + 4.031642090886043 1.080275242424238 6.000000000000000 + 4.829629131445342 1.294095225512604 6.000000000000000 + 0.124723736889024 0.051662263369287 6.000000000000000 + 0.149410433635385 0.061887827971822 6.000000000000000 + 0.178983393505734 0.074137349029635 6.000000000000000 + 0.214409759555383 0.088811430312994 6.000000000000000 + 0.256848102453283 0.106389967505944 6.000000000000000 + 0.307686309945289 0.127447842535870 6.000000000000000 + 0.368586975817614 0.152673724297740 6.000000000000000 + 0.441541772744232 0.182892590624920 6.000000000000000 + 0.528936587207547 0.219092708056705 6.000000000000000 + 0.633629546640492 0.262457951738807 6.000000000000000 + 0.759044490560639 0.314406522434794 6.000000000000000 + 0.909282942541432 0.376637326835177 6.000000000000000 + 1.089258244910155 0.451185537968501 6.000000000000000 + 1.304856242863799 0.540489152741387 6.000000000000000 + 1.563127772956236 0.647468723280525 6.000000000000000 + 1.872519251028453 0.775622869580695 6.000000000000000 + 2.243148900643535 0.929142697068850 6.000000000000000 + 2.687137655698174 1.113048860953628 6.000000000000000 + 3.219005558926356 1.333355759861682 6.000000000000000 + 3.856146619964103 1.597268228488301 6.000000000000000 + 4.619397662556434 1.913417161825449 6.000000000000000 + 0.116913429510899 0.067500000000000 6.000000000000000 + 0.140054224133504 0.080860344004622 6.000000000000000 + 0.167775299892379 0.096865114556235 6.000000000000000 + 0.200983236515207 0.116037725704657 6.000000000000000 + 0.240764053981956 0.139005191377668 6.000000000000000 + 0.288418729317458 0.166518631010764 6.000000000000000 + 0.345505743259048 0.199477833877173 6.000000000000000 + 0.413892048229620 0.238960685460817 6.000000000000000 + 0.495814124453702 0.286258418221363 6.000000000000000 + 0.593951120972993 0.342917839579237 6.000000000000000 + 0.711512473537886 0.410791918128875 6.000000000000000 + 0.852342864797825 0.492100382432881 6.000000000000000 + 1.021047959369445 0.589502314197467 6.000000000000000 + 1.223145025775275 0.706183109889307 6.000000000000000 + 1.465243371136763 0.845958654754125 6.000000000000000 + 1.755260489490538 1.013400116105276 6.000000000000000 + 2.102680992561878 1.213983437075510 6.000000000000000 + 2.518866790970880 1.454268419819846 6.000000000000000 + 3.017428669921848 1.742113254839873 6.000000000000000 + 3.614671411248753 2.086931512316511 6.000000000000000 + 4.330127018922194 2.500000000000000 6.000000000000000 + 0.135000000000000 0.000000000000000 6.250000000000000 + 0.161720688009245 0.000000000000000 6.250000000000000 + 0.193730229112470 0.000000000000000 6.250000000000000 + 0.232075451409314 0.000000000000000 6.250000000000000 + 0.278010382755335 0.000000000000000 6.250000000000000 + 0.333037262021528 0.000000000000000 6.250000000000000 + 0.398955667754346 0.000000000000000 6.250000000000000 + 0.477921370921634 0.000000000000000 6.250000000000000 + 0.572516836442726 0.000000000000000 6.250000000000000 + 0.685835679158474 0.000000000000000 6.250000000000000 + 0.821583836257749 0.000000000000000 6.250000000000000 + 0.984200764865763 0.000000000000000 6.250000000000000 + 1.179004628394934 0.000000000000000 6.250000000000000 + 1.412366219778614 0.000000000000000 6.250000000000000 + 1.691917309508250 0.000000000000000 6.250000000000000 + 2.026800232210552 0.000000000000000 6.250000000000000 + 2.427966874151020 0.000000000000000 6.250000000000000 + 2.908536839639692 0.000000000000000 6.250000000000000 + 3.484226509679746 0.000000000000000 6.250000000000000 + 4.173863024633023 0.000000000000000 6.250000000000000 + 5.000000000000000 0.000000000000000 6.250000000000000 + 0.133845056285464 0.017621035949707 6.250000000000000 + 0.160337145104603 0.021108785609054 6.250000000000000 + 0.192072840146330 0.025286869123969 6.250000000000000 + 0.230090013750771 0.030291924980207 6.250000000000000 + 0.275631965391343 0.036287636658693 6.250000000000000 + 0.330188082077248 0.043470085679062 6.250000000000000 + 0.395542546711004 0.052074164176583 6.250000000000000 + 0.473832687340980 0.062381256726988 6.250000000000000 + 0.567618875541131 0.074728442642739 6.250000000000000 + 0.679968259848487 0.089519519689209 6.250000000000000 + 0.814555072645528 0.107238209736266 6.250000000000000 + 0.975780790886334 0.128463978217990 6.250000000000000 + 1.168918080358097 0.153890984754208 6.250000000000000 + 1.400283230977460 0.184350784687931 6.250000000000000 + 1.677442722381357 0.220839523961306 6.250000000000000 + 2.009460675256398 0.264550516701160 6.250000000000000 + 2.407195280962862 0.316913270919354 6.250000000000000 + 2.883653903777195 0.379640238609912 6.250000000000000 + 3.454418468884391 0.454782819140658 6.250000000000000 + 4.138155047850561 0.544798447453416 6.250000000000000 + 4.957224306869052 0.652630961100258 6.250000000000000 + 0.130399986549024 0.034940571088840 6.250000000000000 + 0.156210189193366 0.041856394043875 6.250000000000000 + 0.187129031632634 0.050141072906382 6.250000000000000 + 0.224167672163950 0.060065546725495 6.250000000000000 + 0.268537408679887 0.071954381793322 6.250000000000000 + 0.321689292503194 0.086196386139970 6.250000000000000 + 0.385361583028324 0.103257324966418 6.250000000000000 + 0.461636595108683 0.123695152856025 6.250000000000000 + 0.553008798305344 0.148178260913223 6.250000000000000 + 0.662466395089674 0.177507335577035 6.250000000000000 + 0.793589045903009 0.212641543971896 6.250000000000000 + 0.950664937037295 0.254729902151727 6.250000000000000 + 1.138831019881013 0.305148852092629 6.250000000000000 + 1.364241007862425 0.365547276338158 6.250000000000000 + 1.634266625199533 0.437900422439351 6.250000000000000 + 1.957738689020853 0.524574500714302 6.250000000000000 + 2.345235909116810 0.628404067908319 6.250000000000000 + 2.809430850121165 0.752784727481049 6.250000000000000 + 3.365504370340686 0.901784178156201 6.250000000000000 + 4.031642090886043 1.080275242424238 6.250000000000000 + 4.829629131445342 1.294095225512604 6.250000000000000 + 0.124723736889024 0.051662263369287 6.250000000000000 + 0.149410433635385 0.061887827971822 6.250000000000000 + 0.178983393505734 0.074137349029635 6.250000000000000 + 0.214409759555383 0.088811430312994 6.250000000000000 + 0.256848102453283 0.106389967505944 6.250000000000000 + 0.307686309945289 0.127447842535870 6.250000000000000 + 0.368586975817614 0.152673724297740 6.250000000000000 + 0.441541772744232 0.182892590624920 6.250000000000000 + 0.528936587207547 0.219092708056705 6.250000000000000 + 0.633629546640492 0.262457951738807 6.250000000000000 + 0.759044490560639 0.314406522434794 6.250000000000000 + 0.909282942541432 0.376637326835177 6.250000000000000 + 1.089258244910155 0.451185537968501 6.250000000000000 + 1.304856242863799 0.540489152741387 6.250000000000000 + 1.563127772956236 0.647468723280525 6.250000000000000 + 1.872519251028453 0.775622869580695 6.250000000000000 + 2.243148900643535 0.929142697068850 6.250000000000000 + 2.687137655698174 1.113048860953628 6.250000000000000 + 3.219005558926356 1.333355759861682 6.250000000000000 + 3.856146619964103 1.597268228488301 6.250000000000000 + 4.619397662556434 1.913417161825449 6.250000000000000 + 0.116913429510899 0.067500000000000 6.250000000000000 + 0.140054224133504 0.080860344004622 6.250000000000000 + 0.167775299892379 0.096865114556235 6.250000000000000 + 0.200983236515207 0.116037725704657 6.250000000000000 + 0.240764053981956 0.139005191377668 6.250000000000000 + 0.288418729317458 0.166518631010764 6.250000000000000 + 0.345505743259048 0.199477833877173 6.250000000000000 + 0.413892048229620 0.238960685460817 6.250000000000000 + 0.495814124453702 0.286258418221363 6.250000000000000 + 0.593951120972993 0.342917839579237 6.250000000000000 + 0.711512473537886 0.410791918128875 6.250000000000000 + 0.852342864797825 0.492100382432881 6.250000000000000 + 1.021047959369445 0.589502314197467 6.250000000000000 + 1.223145025775275 0.706183109889307 6.250000000000000 + 1.465243371136763 0.845958654754125 6.250000000000000 + 1.755260489490538 1.013400116105276 6.250000000000000 + 2.102680992561878 1.213983437075510 6.250000000000000 + 2.518866790970880 1.454268419819846 6.250000000000000 + 3.017428669921848 1.742113254839873 6.250000000000000 + 3.614671411248753 2.086931512316511 6.250000000000000 + 4.330127018922194 2.500000000000000 6.250000000000000 + 0.135000000000000 0.000000000000000 6.500000000000000 + 0.161720688009245 0.000000000000000 6.500000000000000 + 0.193730229112470 0.000000000000000 6.500000000000000 + 0.232075451409314 0.000000000000000 6.500000000000000 + 0.278010382755335 0.000000000000000 6.500000000000000 + 0.333037262021528 0.000000000000000 6.500000000000000 + 0.398955667754346 0.000000000000000 6.500000000000000 + 0.477921370921634 0.000000000000000 6.500000000000000 + 0.572516836442726 0.000000000000000 6.500000000000000 + 0.685835679158474 0.000000000000000 6.500000000000000 + 0.821583836257749 0.000000000000000 6.500000000000000 + 0.984200764865763 0.000000000000000 6.500000000000000 + 1.179004628394934 0.000000000000000 6.500000000000000 + 1.412366219778614 0.000000000000000 6.500000000000000 + 1.691917309508250 0.000000000000000 6.500000000000000 + 2.026800232210552 0.000000000000000 6.500000000000000 + 2.427966874151020 0.000000000000000 6.500000000000000 + 2.908536839639692 0.000000000000000 6.500000000000000 + 3.484226509679746 0.000000000000000 6.500000000000000 + 4.173863024633023 0.000000000000000 6.500000000000000 + 5.000000000000000 0.000000000000000 6.500000000000000 + 0.133845056285464 0.017621035949707 6.500000000000000 + 0.160337145104603 0.021108785609054 6.500000000000000 + 0.192072840146330 0.025286869123969 6.500000000000000 + 0.230090013750771 0.030291924980207 6.500000000000000 + 0.275631965391343 0.036287636658693 6.500000000000000 + 0.330188082077248 0.043470085679062 6.500000000000000 + 0.395542546711004 0.052074164176583 6.500000000000000 + 0.473832687340980 0.062381256726988 6.500000000000000 + 0.567618875541131 0.074728442642739 6.500000000000000 + 0.679968259848487 0.089519519689209 6.500000000000000 + 0.814555072645528 0.107238209736266 6.500000000000000 + 0.975780790886334 0.128463978217990 6.500000000000000 + 1.168918080358097 0.153890984754208 6.500000000000000 + 1.400283230977460 0.184350784687931 6.500000000000000 + 1.677442722381357 0.220839523961306 6.500000000000000 + 2.009460675256398 0.264550516701160 6.500000000000000 + 2.407195280962862 0.316913270919354 6.500000000000000 + 2.883653903777195 0.379640238609912 6.500000000000000 + 3.454418468884391 0.454782819140658 6.500000000000000 + 4.138155047850561 0.544798447453416 6.500000000000000 + 4.957224306869052 0.652630961100258 6.500000000000000 + 0.130399986549024 0.034940571088840 6.500000000000000 + 0.156210189193366 0.041856394043875 6.500000000000000 + 0.187129031632634 0.050141072906382 6.500000000000000 + 0.224167672163950 0.060065546725495 6.500000000000000 + 0.268537408679887 0.071954381793322 6.500000000000000 + 0.321689292503194 0.086196386139970 6.500000000000000 + 0.385361583028324 0.103257324966418 6.500000000000000 + 0.461636595108683 0.123695152856025 6.500000000000000 + 0.553008798305344 0.148178260913223 6.500000000000000 + 0.662466395089674 0.177507335577035 6.500000000000000 + 0.793589045903009 0.212641543971896 6.500000000000000 + 0.950664937037295 0.254729902151727 6.500000000000000 + 1.138831019881013 0.305148852092629 6.500000000000000 + 1.364241007862425 0.365547276338158 6.500000000000000 + 1.634266625199533 0.437900422439351 6.500000000000000 + 1.957738689020853 0.524574500714302 6.500000000000000 + 2.345235909116810 0.628404067908319 6.500000000000000 + 2.809430850121165 0.752784727481049 6.500000000000000 + 3.365504370340686 0.901784178156201 6.500000000000000 + 4.031642090886043 1.080275242424238 6.500000000000000 + 4.829629131445342 1.294095225512604 6.500000000000000 + 0.124723736889024 0.051662263369287 6.500000000000000 + 0.149410433635385 0.061887827971822 6.500000000000000 + 0.178983393505734 0.074137349029635 6.500000000000000 + 0.214409759555383 0.088811430312994 6.500000000000000 + 0.256848102453283 0.106389967505944 6.500000000000000 + 0.307686309945289 0.127447842535870 6.500000000000000 + 0.368586975817614 0.152673724297740 6.500000000000000 + 0.441541772744232 0.182892590624920 6.500000000000000 + 0.528936587207547 0.219092708056705 6.500000000000000 + 0.633629546640492 0.262457951738807 6.500000000000000 + 0.759044490560639 0.314406522434794 6.500000000000000 + 0.909282942541432 0.376637326835177 6.500000000000000 + 1.089258244910155 0.451185537968501 6.500000000000000 + 1.304856242863799 0.540489152741387 6.500000000000000 + 1.563127772956236 0.647468723280525 6.500000000000000 + 1.872519251028453 0.775622869580695 6.500000000000000 + 2.243148900643535 0.929142697068850 6.500000000000000 + 2.687137655698174 1.113048860953628 6.500000000000000 + 3.219005558926356 1.333355759861682 6.500000000000000 + 3.856146619964103 1.597268228488301 6.500000000000000 + 4.619397662556434 1.913417161825449 6.500000000000000 + 0.116913429510899 0.067500000000000 6.500000000000000 + 0.140054224133504 0.080860344004622 6.500000000000000 + 0.167775299892379 0.096865114556235 6.500000000000000 + 0.200983236515207 0.116037725704657 6.500000000000000 + 0.240764053981956 0.139005191377668 6.500000000000000 + 0.288418729317458 0.166518631010764 6.500000000000000 + 0.345505743259048 0.199477833877173 6.500000000000000 + 0.413892048229620 0.238960685460817 6.500000000000000 + 0.495814124453702 0.286258418221363 6.500000000000000 + 0.593951120972993 0.342917839579237 6.500000000000000 + 0.711512473537886 0.410791918128875 6.500000000000000 + 0.852342864797825 0.492100382432881 6.500000000000000 + 1.021047959369445 0.589502314197467 6.500000000000000 + 1.223145025775275 0.706183109889307 6.500000000000000 + 1.465243371136763 0.845958654754125 6.500000000000000 + 1.755260489490538 1.013400116105276 6.500000000000000 + 2.102680992561878 1.213983437075510 6.500000000000000 + 2.518866790970880 1.454268419819846 6.500000000000000 + 3.017428669921848 1.742113254839873 6.500000000000000 + 3.614671411248753 2.086931512316511 6.500000000000000 + 4.330127018922194 2.500000000000000 6.500000000000000 + 0.135000000000000 0.000000000000000 6.750000000000000 + 0.161720688009245 0.000000000000000 6.750000000000000 + 0.193730229112470 0.000000000000000 6.750000000000000 + 0.232075451409314 0.000000000000000 6.750000000000000 + 0.278010382755335 0.000000000000000 6.750000000000000 + 0.333037262021528 0.000000000000000 6.750000000000000 + 0.398955667754346 0.000000000000000 6.750000000000000 + 0.477921370921634 0.000000000000000 6.750000000000000 + 0.572516836442726 0.000000000000000 6.750000000000000 + 0.685835679158474 0.000000000000000 6.750000000000000 + 0.821583836257749 0.000000000000000 6.750000000000000 + 0.984200764865763 0.000000000000000 6.750000000000000 + 1.179004628394934 0.000000000000000 6.750000000000000 + 1.412366219778614 0.000000000000000 6.750000000000000 + 1.691917309508250 0.000000000000000 6.750000000000000 + 2.026800232210552 0.000000000000000 6.750000000000000 + 2.427966874151020 0.000000000000000 6.750000000000000 + 2.908536839639692 0.000000000000000 6.750000000000000 + 3.484226509679746 0.000000000000000 6.750000000000000 + 4.173863024633023 0.000000000000000 6.750000000000000 + 5.000000000000000 0.000000000000000 6.750000000000000 + 0.133845056285464 0.017621035949707 6.750000000000000 + 0.160337145104603 0.021108785609054 6.750000000000000 + 0.192072840146330 0.025286869123969 6.750000000000000 + 0.230090013750771 0.030291924980207 6.750000000000000 + 0.275631965391343 0.036287636658693 6.750000000000000 + 0.330188082077248 0.043470085679062 6.750000000000000 + 0.395542546711004 0.052074164176583 6.750000000000000 + 0.473832687340980 0.062381256726988 6.750000000000000 + 0.567618875541131 0.074728442642739 6.750000000000000 + 0.679968259848487 0.089519519689209 6.750000000000000 + 0.814555072645528 0.107238209736266 6.750000000000000 + 0.975780790886334 0.128463978217990 6.750000000000000 + 1.168918080358097 0.153890984754208 6.750000000000000 + 1.400283230977460 0.184350784687931 6.750000000000000 + 1.677442722381357 0.220839523961306 6.750000000000000 + 2.009460675256398 0.264550516701160 6.750000000000000 + 2.407195280962862 0.316913270919354 6.750000000000000 + 2.883653903777195 0.379640238609912 6.750000000000000 + 3.454418468884391 0.454782819140658 6.750000000000000 + 4.138155047850561 0.544798447453416 6.750000000000000 + 4.957224306869052 0.652630961100258 6.750000000000000 + 0.130399986549024 0.034940571088840 6.750000000000000 + 0.156210189193366 0.041856394043875 6.750000000000000 + 0.187129031632634 0.050141072906382 6.750000000000000 + 0.224167672163950 0.060065546725495 6.750000000000000 + 0.268537408679887 0.071954381793322 6.750000000000000 + 0.321689292503194 0.086196386139970 6.750000000000000 + 0.385361583028324 0.103257324966418 6.750000000000000 + 0.461636595108683 0.123695152856025 6.750000000000000 + 0.553008798305344 0.148178260913223 6.750000000000000 + 0.662466395089674 0.177507335577035 6.750000000000000 + 0.793589045903009 0.212641543971896 6.750000000000000 + 0.950664937037295 0.254729902151727 6.750000000000000 + 1.138831019881013 0.305148852092629 6.750000000000000 + 1.364241007862425 0.365547276338158 6.750000000000000 + 1.634266625199533 0.437900422439351 6.750000000000000 + 1.957738689020853 0.524574500714302 6.750000000000000 + 2.345235909116810 0.628404067908319 6.750000000000000 + 2.809430850121165 0.752784727481049 6.750000000000000 + 3.365504370340686 0.901784178156201 6.750000000000000 + 4.031642090886043 1.080275242424238 6.750000000000000 + 4.829629131445342 1.294095225512604 6.750000000000000 + 0.124723736889024 0.051662263369287 6.750000000000000 + 0.149410433635385 0.061887827971822 6.750000000000000 + 0.178983393505734 0.074137349029635 6.750000000000000 + 0.214409759555383 0.088811430312994 6.750000000000000 + 0.256848102453283 0.106389967505944 6.750000000000000 + 0.307686309945289 0.127447842535870 6.750000000000000 + 0.368586975817614 0.152673724297740 6.750000000000000 + 0.441541772744232 0.182892590624920 6.750000000000000 + 0.528936587207547 0.219092708056705 6.750000000000000 + 0.633629546640492 0.262457951738807 6.750000000000000 + 0.759044490560639 0.314406522434794 6.750000000000000 + 0.909282942541432 0.376637326835177 6.750000000000000 + 1.089258244910155 0.451185537968501 6.750000000000000 + 1.304856242863799 0.540489152741387 6.750000000000000 + 1.563127772956236 0.647468723280525 6.750000000000000 + 1.872519251028453 0.775622869580695 6.750000000000000 + 2.243148900643535 0.929142697068850 6.750000000000000 + 2.687137655698174 1.113048860953628 6.750000000000000 + 3.219005558926356 1.333355759861682 6.750000000000000 + 3.856146619964103 1.597268228488301 6.750000000000000 + 4.619397662556434 1.913417161825449 6.750000000000000 + 0.116913429510899 0.067500000000000 6.750000000000000 + 0.140054224133504 0.080860344004622 6.750000000000000 + 0.167775299892379 0.096865114556235 6.750000000000000 + 0.200983236515207 0.116037725704657 6.750000000000000 + 0.240764053981956 0.139005191377668 6.750000000000000 + 0.288418729317458 0.166518631010764 6.750000000000000 + 0.345505743259048 0.199477833877173 6.750000000000000 + 0.413892048229620 0.238960685460817 6.750000000000000 + 0.495814124453702 0.286258418221363 6.750000000000000 + 0.593951120972993 0.342917839579237 6.750000000000000 + 0.711512473537886 0.410791918128875 6.750000000000000 + 0.852342864797825 0.492100382432881 6.750000000000000 + 1.021047959369445 0.589502314197467 6.750000000000000 + 1.223145025775275 0.706183109889307 6.750000000000000 + 1.465243371136763 0.845958654754125 6.750000000000000 + 1.755260489490538 1.013400116105276 6.750000000000000 + 2.102680992561878 1.213983437075510 6.750000000000000 + 2.518866790970880 1.454268419819846 6.750000000000000 + 3.017428669921848 1.742113254839873 6.750000000000000 + 3.614671411248753 2.086931512316511 6.750000000000000 + 4.330127018922194 2.500000000000000 6.750000000000000 + 0.135000000000000 0.000000000000000 7.000000000000000 + 0.161720688009245 0.000000000000000 7.000000000000000 + 0.193730229112470 0.000000000000000 7.000000000000000 + 0.232075451409314 0.000000000000000 7.000000000000000 + 0.278010382755335 0.000000000000000 7.000000000000000 + 0.333037262021528 0.000000000000000 7.000000000000000 + 0.398955667754346 0.000000000000000 7.000000000000000 + 0.477921370921634 0.000000000000000 7.000000000000000 + 0.572516836442726 0.000000000000000 7.000000000000000 + 0.685835679158474 0.000000000000000 7.000000000000000 + 0.821583836257749 0.000000000000000 7.000000000000000 + 0.984200764865763 0.000000000000000 7.000000000000000 + 1.179004628394934 0.000000000000000 7.000000000000000 + 1.412366219778614 0.000000000000000 7.000000000000000 + 1.691917309508250 0.000000000000000 7.000000000000000 + 2.026800232210552 0.000000000000000 7.000000000000000 + 2.427966874151020 0.000000000000000 7.000000000000000 + 2.908536839639692 0.000000000000000 7.000000000000000 + 3.484226509679746 0.000000000000000 7.000000000000000 + 4.173863024633023 0.000000000000000 7.000000000000000 + 5.000000000000000 0.000000000000000 7.000000000000000 + 0.133845056285464 0.017621035949707 7.000000000000000 + 0.160337145104603 0.021108785609054 7.000000000000000 + 0.192072840146330 0.025286869123969 7.000000000000000 + 0.230090013750771 0.030291924980207 7.000000000000000 + 0.275631965391343 0.036287636658693 7.000000000000000 + 0.330188082077248 0.043470085679062 7.000000000000000 + 0.395542546711004 0.052074164176583 7.000000000000000 + 0.473832687340980 0.062381256726988 7.000000000000000 + 0.567618875541131 0.074728442642739 7.000000000000000 + 0.679968259848487 0.089519519689209 7.000000000000000 + 0.814555072645528 0.107238209736266 7.000000000000000 + 0.975780790886334 0.128463978217990 7.000000000000000 + 1.168918080358097 0.153890984754208 7.000000000000000 + 1.400283230977460 0.184350784687931 7.000000000000000 + 1.677442722381357 0.220839523961306 7.000000000000000 + 2.009460675256398 0.264550516701160 7.000000000000000 + 2.407195280962862 0.316913270919354 7.000000000000000 + 2.883653903777195 0.379640238609912 7.000000000000000 + 3.454418468884391 0.454782819140658 7.000000000000000 + 4.138155047850561 0.544798447453416 7.000000000000000 + 4.957224306869052 0.652630961100258 7.000000000000000 + 0.130399986549024 0.034940571088840 7.000000000000000 + 0.156210189193366 0.041856394043875 7.000000000000000 + 0.187129031632634 0.050141072906382 7.000000000000000 + 0.224167672163950 0.060065546725495 7.000000000000000 + 0.268537408679887 0.071954381793322 7.000000000000000 + 0.321689292503194 0.086196386139970 7.000000000000000 + 0.385361583028324 0.103257324966418 7.000000000000000 + 0.461636595108683 0.123695152856025 7.000000000000000 + 0.553008798305344 0.148178260913223 7.000000000000000 + 0.662466395089674 0.177507335577035 7.000000000000000 + 0.793589045903009 0.212641543971896 7.000000000000000 + 0.950664937037295 0.254729902151727 7.000000000000000 + 1.138831019881013 0.305148852092629 7.000000000000000 + 1.364241007862425 0.365547276338158 7.000000000000000 + 1.634266625199533 0.437900422439351 7.000000000000000 + 1.957738689020853 0.524574500714302 7.000000000000000 + 2.345235909116810 0.628404067908319 7.000000000000000 + 2.809430850121165 0.752784727481049 7.000000000000000 + 3.365504370340686 0.901784178156201 7.000000000000000 + 4.031642090886043 1.080275242424238 7.000000000000000 + 4.829629131445342 1.294095225512604 7.000000000000000 + 0.124723736889024 0.051662263369287 7.000000000000000 + 0.149410433635385 0.061887827971822 7.000000000000000 + 0.178983393505734 0.074137349029635 7.000000000000000 + 0.214409759555383 0.088811430312994 7.000000000000000 + 0.256848102453283 0.106389967505944 7.000000000000000 + 0.307686309945289 0.127447842535870 7.000000000000000 + 0.368586975817614 0.152673724297740 7.000000000000000 + 0.441541772744232 0.182892590624920 7.000000000000000 + 0.528936587207547 0.219092708056705 7.000000000000000 + 0.633629546640492 0.262457951738807 7.000000000000000 + 0.759044490560639 0.314406522434794 7.000000000000000 + 0.909282942541432 0.376637326835177 7.000000000000000 + 1.089258244910155 0.451185537968501 7.000000000000000 + 1.304856242863799 0.540489152741387 7.000000000000000 + 1.563127772956236 0.647468723280525 7.000000000000000 + 1.872519251028453 0.775622869580695 7.000000000000000 + 2.243148900643535 0.929142697068850 7.000000000000000 + 2.687137655698174 1.113048860953628 7.000000000000000 + 3.219005558926356 1.333355759861682 7.000000000000000 + 3.856146619964103 1.597268228488301 7.000000000000000 + 4.619397662556434 1.913417161825449 7.000000000000000 + 0.116913429510899 0.067500000000000 7.000000000000000 + 0.140054224133504 0.080860344004622 7.000000000000000 + 0.167775299892379 0.096865114556235 7.000000000000000 + 0.200983236515207 0.116037725704657 7.000000000000000 + 0.240764053981956 0.139005191377668 7.000000000000000 + 0.288418729317458 0.166518631010764 7.000000000000000 + 0.345505743259048 0.199477833877173 7.000000000000000 + 0.413892048229620 0.238960685460817 7.000000000000000 + 0.495814124453702 0.286258418221363 7.000000000000000 + 0.593951120972993 0.342917839579237 7.000000000000000 + 0.711512473537886 0.410791918128875 7.000000000000000 + 0.852342864797825 0.492100382432881 7.000000000000000 + 1.021047959369445 0.589502314197467 7.000000000000000 + 1.223145025775275 0.706183109889307 7.000000000000000 + 1.465243371136763 0.845958654754125 7.000000000000000 + 1.755260489490538 1.013400116105276 7.000000000000000 + 2.102680992561878 1.213983437075510 7.000000000000000 + 2.518866790970880 1.454268419819846 7.000000000000000 + 3.017428669921848 1.742113254839873 7.000000000000000 + 3.614671411248753 2.086931512316511 7.000000000000000 + 4.330127018922194 2.500000000000000 7.000000000000000 + # +CUBE +0 1 21 22 105 106 126 127 +1 2 22 23 106 107 127 128 +2 3 23 24 107 108 128 129 +3 4 24 25 108 109 129 130 +4 5 25 26 109 110 130 131 +5 6 26 27 110 111 131 132 +6 7 27 28 111 112 132 133 +7 8 28 29 112 113 133 134 +8 9 29 30 113 114 134 135 +9 10 30 31 114 115 135 136 +10 11 31 32 115 116 136 137 +11 12 32 33 116 117 137 138 +12 13 33 34 117 118 138 139 +13 14 34 35 118 119 139 140 +14 15 35 36 119 120 140 141 +15 16 36 37 120 121 141 142 +16 17 37 38 121 122 142 143 +17 18 38 39 122 123 143 144 +18 19 39 40 123 124 144 145 +19 20 40 41 124 125 145 146 +21 22 42 43 126 127 147 148 +22 23 43 44 127 128 148 149 +23 24 44 45 128 129 149 150 +24 25 45 46 129 130 150 151 +25 26 46 47 130 131 151 152 +26 27 47 48 131 132 152 153 +27 28 48 49 132 133 153 154 +28 29 49 50 133 134 154 155 +29 30 50 51 134 135 155 156 +30 31 51 52 135 136 156 157 +31 32 52 53 136 137 157 158 +32 33 53 54 137 138 158 159 +33 34 54 55 138 139 159 160 +34 35 55 56 139 140 160 161 +35 36 56 57 140 141 161 162 +36 37 57 58 141 142 162 163 +37 38 58 59 142 143 163 164 +38 39 59 60 143 144 164 165 +39 40 60 61 144 145 165 166 +40 41 61 62 145 146 166 167 +42 43 63 64 147 148 168 169 +43 44 64 65 148 149 169 170 +44 45 65 66 149 150 170 171 +45 46 66 67 150 151 171 172 +46 47 67 68 151 152 172 173 +47 48 68 69 152 153 173 174 +48 49 69 70 153 154 174 175 +49 50 70 71 154 155 175 176 +50 51 71 72 155 156 176 177 +51 52 72 73 156 157 177 178 +52 53 73 74 157 158 178 179 +53 54 74 75 158 159 179 180 +54 55 75 76 159 160 180 181 +55 56 76 77 160 161 181 182 +56 57 77 78 161 162 182 183 +57 58 78 79 162 163 183 184 +58 59 79 80 163 164 184 185 +59 60 80 81 164 165 185 186 +60 61 81 82 165 166 186 187 +61 62 82 83 166 167 187 188 +63 64 84 85 168 169 189 190 +64 65 85 86 169 170 190 191 +65 66 86 87 170 171 191 192 +66 67 87 88 171 172 192 193 +67 68 88 89 172 173 193 194 +68 69 89 90 173 174 194 195 +69 70 90 91 174 175 195 196 +70 71 91 92 175 176 196 197 +71 72 92 93 176 177 197 198 +72 73 93 94 177 178 198 199 +73 74 94 95 178 179 199 200 +74 75 95 96 179 180 200 201 +75 76 96 97 180 181 201 202 +76 77 97 98 181 182 202 203 +77 78 98 99 182 183 203 204 +78 79 99 100 183 184 204 205 +79 80 100 101 184 185 205 206 +80 81 101 102 185 186 206 207 +81 82 102 103 186 187 207 208 +82 83 103 104 187 188 208 209 +105 106 126 127 210 211 231 232 +106 107 127 128 211 212 232 233 +107 108 128 129 212 213 233 234 +108 109 129 130 213 214 234 235 +109 110 130 131 214 215 235 236 +110 111 131 132 215 216 236 237 +111 112 132 133 216 217 237 238 +112 113 133 134 217 218 238 239 +113 114 134 135 218 219 239 240 +114 115 135 136 219 220 240 241 +115 116 136 137 220 221 241 242 +116 117 137 138 221 222 242 243 +117 118 138 139 222 223 243 244 +118 119 139 140 223 224 244 245 +119 120 140 141 224 225 245 246 +120 121 141 142 225 226 246 247 +121 122 142 143 226 227 247 248 +122 123 143 144 227 228 248 249 +123 124 144 145 228 229 249 250 +124 125 145 146 229 230 250 251 +126 127 147 148 231 232 252 253 +127 128 148 149 232 233 253 254 +128 129 149 150 233 234 254 255 +129 130 150 151 234 235 255 256 +130 131 151 152 235 236 256 257 +131 132 152 153 236 237 257 258 +132 133 153 154 237 238 258 259 +133 134 154 155 238 239 259 260 +134 135 155 156 239 240 260 261 +135 136 156 157 240 241 261 262 +136 137 157 158 241 242 262 263 +137 138 158 159 242 243 263 264 +138 139 159 160 243 244 264 265 +139 140 160 161 244 245 265 266 +140 141 161 162 245 246 266 267 +141 142 162 163 246 247 267 268 +142 143 163 164 247 248 268 269 +143 144 164 165 248 249 269 270 +144 145 165 166 249 250 270 271 +145 146 166 167 250 251 271 272 +147 148 168 169 252 253 273 274 +148 149 169 170 253 254 274 275 +149 150 170 171 254 255 275 276 +150 151 171 172 255 256 276 277 +151 152 172 173 256 257 277 278 +152 153 173 174 257 258 278 279 +153 154 174 175 258 259 279 280 +154 155 175 176 259 260 280 281 +155 156 176 177 260 261 281 282 +156 157 177 178 261 262 282 283 +157 158 178 179 262 263 283 284 +158 159 179 180 263 264 284 285 +159 160 180 181 264 265 285 286 +160 161 181 182 265 266 286 287 +161 162 182 183 266 267 287 288 +162 163 183 184 267 268 288 289 +163 164 184 185 268 269 289 290 +164 165 185 186 269 270 290 291 +165 166 186 187 270 271 291 292 +166 167 187 188 271 272 292 293 +168 169 189 190 273 274 294 295 +169 170 190 191 274 275 295 296 +170 171 191 192 275 276 296 297 +171 172 192 193 276 277 297 298 +172 173 193 194 277 278 298 299 +173 174 194 195 278 279 299 300 +174 175 195 196 279 280 300 301 +175 176 196 197 280 281 301 302 +176 177 197 198 281 282 302 303 +177 178 198 199 282 283 303 304 +178 179 199 200 283 284 304 305 +179 180 200 201 284 285 305 306 +180 181 201 202 285 286 306 307 +181 182 202 203 286 287 307 308 +182 183 203 204 287 288 308 309 +183 184 204 205 288 289 309 310 +184 185 205 206 289 290 310 311 +185 186 206 207 290 291 311 312 +186 187 207 208 291 292 312 313 +187 188 208 209 292 293 313 314 +210 211 231 232 315 316 336 337 +211 212 232 233 316 317 337 338 +212 213 233 234 317 318 338 339 +213 214 234 235 318 319 339 340 +214 215 235 236 319 320 340 341 +215 216 236 237 320 321 341 342 +216 217 237 238 321 322 342 343 +217 218 238 239 322 323 343 344 +218 219 239 240 323 324 344 345 +219 220 240 241 324 325 345 346 +220 221 241 242 325 326 346 347 +221 222 242 243 326 327 347 348 +222 223 243 244 327 328 348 349 +223 224 244 245 328 329 349 350 +224 225 245 246 329 330 350 351 +225 226 246 247 330 331 351 352 +226 227 247 248 331 332 352 353 +227 228 248 249 332 333 353 354 +228 229 249 250 333 334 354 355 +229 230 250 251 334 335 355 356 +231 232 252 253 336 337 357 358 +232 233 253 254 337 338 358 359 +233 234 254 255 338 339 359 360 +234 235 255 256 339 340 360 361 +235 236 256 257 340 341 361 362 +236 237 257 258 341 342 362 363 +237 238 258 259 342 343 363 364 +238 239 259 260 343 344 364 365 +239 240 260 261 344 345 365 366 +240 241 261 262 345 346 366 367 +241 242 262 263 346 347 367 368 +242 243 263 264 347 348 368 369 +243 244 264 265 348 349 369 370 +244 245 265 266 349 350 370 371 +245 246 266 267 350 351 371 372 +246 247 267 268 351 352 372 373 +247 248 268 269 352 353 373 374 +248 249 269 270 353 354 374 375 +249 250 270 271 354 355 375 376 +250 251 271 272 355 356 376 377 +252 253 273 274 357 358 378 379 +253 254 274 275 358 359 379 380 +254 255 275 276 359 360 380 381 +255 256 276 277 360 361 381 382 +256 257 277 278 361 362 382 383 +257 258 278 279 362 363 383 384 +258 259 279 280 363 364 384 385 +259 260 280 281 364 365 385 386 +260 261 281 282 365 366 386 387 +261 262 282 283 366 367 387 388 +262 263 283 284 367 368 388 389 +263 264 284 285 368 369 389 390 +264 265 285 286 369 370 390 391 +265 266 286 287 370 371 391 392 +266 267 287 288 371 372 392 393 +267 268 288 289 372 373 393 394 +268 269 289 290 373 374 394 395 +269 270 290 291 374 375 395 396 +270 271 291 292 375 376 396 397 +271 272 292 293 376 377 397 398 +273 274 294 295 378 379 399 400 +274 275 295 296 379 380 400 401 +275 276 296 297 380 381 401 402 +276 277 297 298 381 382 402 403 +277 278 298 299 382 383 403 404 +278 279 299 300 383 384 404 405 +279 280 300 301 384 385 405 406 +280 281 301 302 385 386 406 407 +281 282 302 303 386 387 407 408 +282 283 303 304 387 388 408 409 +283 284 304 305 388 389 409 410 +284 285 305 306 389 390 410 411 +285 286 306 307 390 391 411 412 +286 287 307 308 391 392 412 413 +287 288 308 309 392 393 413 414 +288 289 309 310 393 394 414 415 +289 290 310 311 394 395 415 416 +290 291 311 312 395 396 416 417 +291 292 312 313 396 397 417 418 +292 293 313 314 397 398 418 419 +315 316 336 337 420 421 441 442 +316 317 337 338 421 422 442 443 +317 318 338 339 422 423 443 444 +318 319 339 340 423 424 444 445 +319 320 340 341 424 425 445 446 +320 321 341 342 425 426 446 447 +321 322 342 343 426 427 447 448 +322 323 343 344 427 428 448 449 +323 324 344 345 428 429 449 450 +324 325 345 346 429 430 450 451 +325 326 346 347 430 431 451 452 +326 327 347 348 431 432 452 453 +327 328 348 349 432 433 453 454 +328 329 349 350 433 434 454 455 +329 330 350 351 434 435 455 456 +330 331 351 352 435 436 456 457 +331 332 352 353 436 437 457 458 +332 333 353 354 437 438 458 459 +333 334 354 355 438 439 459 460 +334 335 355 356 439 440 460 461 +336 337 357 358 441 442 462 463 +337 338 358 359 442 443 463 464 +338 339 359 360 443 444 464 465 +339 340 360 361 444 445 465 466 +340 341 361 362 445 446 466 467 +341 342 362 363 446 447 467 468 +342 343 363 364 447 448 468 469 +343 344 364 365 448 449 469 470 +344 345 365 366 449 450 470 471 +345 346 366 367 450 451 471 472 +346 347 367 368 451 452 472 473 +347 348 368 369 452 453 473 474 +348 349 369 370 453 454 474 475 +349 350 370 371 454 455 475 476 +350 351 371 372 455 456 476 477 +351 352 372 373 456 457 477 478 +352 353 373 374 457 458 478 479 +353 354 374 375 458 459 479 480 +354 355 375 376 459 460 480 481 +355 356 376 377 460 461 481 482 +357 358 378 379 462 463 483 484 +358 359 379 380 463 464 484 485 +359 360 380 381 464 465 485 486 +360 361 381 382 465 466 486 487 +361 362 382 383 466 467 487 488 +362 363 383 384 467 468 488 489 +363 364 384 385 468 469 489 490 +364 365 385 386 469 470 490 491 +365 366 386 387 470 471 491 492 +366 367 387 388 471 472 492 493 +367 368 388 389 472 473 493 494 +368 369 389 390 473 474 494 495 +369 370 390 391 474 475 495 496 +370 371 391 392 475 476 496 497 +371 372 392 393 476 477 497 498 +372 373 393 394 477 478 498 499 +373 374 394 395 478 479 499 500 +374 375 395 396 479 480 500 501 +375 376 396 397 480 481 501 502 +376 377 397 398 481 482 502 503 +378 379 399 400 483 484 504 505 +379 380 400 401 484 485 505 506 +380 381 401 402 485 486 506 507 +381 382 402 403 486 487 507 508 +382 383 403 404 487 488 508 509 +383 384 404 405 488 489 509 510 +384 385 405 406 489 490 510 511 +385 386 406 407 490 491 511 512 +386 387 407 408 491 492 512 513 +387 388 408 409 492 493 513 514 +388 389 409 410 493 494 514 515 +389 390 410 411 494 495 515 516 +390 391 411 412 495 496 516 517 +391 392 412 413 496 497 517 518 +392 393 413 414 497 498 518 519 +393 394 414 415 498 499 519 520 +394 395 415 416 499 500 520 521 +395 396 416 417 500 501 521 522 +396 397 417 418 501 502 522 523 +397 398 418 419 502 503 523 524 +420 421 441 442 525 526 546 547 +421 422 442 443 526 527 547 548 +422 423 443 444 527 528 548 549 +423 424 444 445 528 529 549 550 +424 425 445 446 529 530 550 551 +425 426 446 447 530 531 551 552 +426 427 447 448 531 532 552 553 +427 428 448 449 532 533 553 554 +428 429 449 450 533 534 554 555 +429 430 450 451 534 535 555 556 +430 431 451 452 535 536 556 557 +431 432 452 453 536 537 557 558 +432 433 453 454 537 538 558 559 +433 434 454 455 538 539 559 560 +434 435 455 456 539 540 560 561 +435 436 456 457 540 541 561 562 +436 437 457 458 541 542 562 563 +437 438 458 459 542 543 563 564 +438 439 459 460 543 544 564 565 +439 440 460 461 544 545 565 566 +441 442 462 463 546 547 567 568 +442 443 463 464 547 548 568 569 +443 444 464 465 548 549 569 570 +444 445 465 466 549 550 570 571 +445 446 466 467 550 551 571 572 +446 447 467 468 551 552 572 573 +447 448 468 469 552 553 573 574 +448 449 469 470 553 554 574 575 +449 450 470 471 554 555 575 576 +450 451 471 472 555 556 576 577 +451 452 472 473 556 557 577 578 +452 453 473 474 557 558 578 579 +453 454 474 475 558 559 579 580 +454 455 475 476 559 560 580 581 +455 456 476 477 560 561 581 582 +456 457 477 478 561 562 582 583 +457 458 478 479 562 563 583 584 +458 459 479 480 563 564 584 585 +459 460 480 481 564 565 585 586 +460 461 481 482 565 566 586 587 +462 463 483 484 567 568 588 589 +463 464 484 485 568 569 589 590 +464 465 485 486 569 570 590 591 +465 466 486 487 570 571 591 592 +466 467 487 488 571 572 592 593 +467 468 488 489 572 573 593 594 +468 469 489 490 573 574 594 595 +469 470 490 491 574 575 595 596 +470 471 491 492 575 576 596 597 +471 472 492 493 576 577 597 598 +472 473 493 494 577 578 598 599 +473 474 494 495 578 579 599 600 +474 475 495 496 579 580 600 601 +475 476 496 497 580 581 601 602 +476 477 497 498 581 582 602 603 +477 478 498 499 582 583 603 604 +478 479 499 500 583 584 604 605 +479 480 500 501 584 585 605 606 +480 481 501 502 585 586 606 607 +481 482 502 503 586 587 607 608 +483 484 504 505 588 589 609 610 +484 485 505 506 589 590 610 611 +485 486 506 507 590 591 611 612 +486 487 507 508 591 592 612 613 +487 488 508 509 592 593 613 614 +488 489 509 510 593 594 614 615 +489 490 510 511 594 595 615 616 +490 491 511 512 595 596 616 617 +491 492 512 513 596 597 617 618 +492 493 513 514 597 598 618 619 +493 494 514 515 598 599 619 620 +494 495 515 516 599 600 620 621 +495 496 516 517 600 601 621 622 +496 497 517 518 601 602 622 623 +497 498 518 519 602 603 623 624 +498 499 519 520 603 604 624 625 +499 500 520 521 604 605 625 626 +500 501 521 522 605 606 626 627 +501 502 522 523 606 607 627 628 +502 503 523 524 607 608 628 629 +525 526 546 547 630 631 651 652 +526 527 547 548 631 632 652 653 +527 528 548 549 632 633 653 654 +528 529 549 550 633 634 654 655 +529 530 550 551 634 635 655 656 +530 531 551 552 635 636 656 657 +531 532 552 553 636 637 657 658 +532 533 553 554 637 638 658 659 +533 534 554 555 638 639 659 660 +534 535 555 556 639 640 660 661 +535 536 556 557 640 641 661 662 +536 537 557 558 641 642 662 663 +537 538 558 559 642 643 663 664 +538 539 559 560 643 644 664 665 +539 540 560 561 644 645 665 666 +540 541 561 562 645 646 666 667 +541 542 562 563 646 647 667 668 +542 543 563 564 647 648 668 669 +543 544 564 565 648 649 669 670 +544 545 565 566 649 650 670 671 +546 547 567 568 651 652 672 673 +547 548 568 569 652 653 673 674 +548 549 569 570 653 654 674 675 +549 550 570 571 654 655 675 676 +550 551 571 572 655 656 676 677 +551 552 572 573 656 657 677 678 +552 553 573 574 657 658 678 679 +553 554 574 575 658 659 679 680 +554 555 575 576 659 660 680 681 +555 556 576 577 660 661 681 682 +556 557 577 578 661 662 682 683 +557 558 578 579 662 663 683 684 +558 559 579 580 663 664 684 685 +559 560 580 581 664 665 685 686 +560 561 581 582 665 666 686 687 +561 562 582 583 666 667 687 688 +562 563 583 584 667 668 688 689 +563 564 584 585 668 669 689 690 +564 565 585 586 669 670 690 691 +565 566 586 587 670 671 691 692 +567 568 588 589 672 673 693 694 +568 569 589 590 673 674 694 695 +569 570 590 591 674 675 695 696 +570 571 591 592 675 676 696 697 +571 572 592 593 676 677 697 698 +572 573 593 594 677 678 698 699 +573 574 594 595 678 679 699 700 +574 575 595 596 679 680 700 701 +575 576 596 597 680 681 701 702 +576 577 597 598 681 682 702 703 +577 578 598 599 682 683 703 704 +578 579 599 600 683 684 704 705 +579 580 600 601 684 685 705 706 +580 581 601 602 685 686 706 707 +581 582 602 603 686 687 707 708 +582 583 603 604 687 688 708 709 +583 584 604 605 688 689 709 710 +584 585 605 606 689 690 710 711 +585 586 606 607 690 691 711 712 +586 587 607 608 691 692 712 713 +588 589 609 610 693 694 714 715 +589 590 610 611 694 695 715 716 +590 591 611 612 695 696 716 717 +591 592 612 613 696 697 717 718 +592 593 613 614 697 698 718 719 +593 594 614 615 698 699 719 720 +594 595 615 616 699 700 720 721 +595 596 616 617 700 701 721 722 +596 597 617 618 701 702 722 723 +597 598 618 619 702 703 723 724 +598 599 619 620 703 704 724 725 +599 600 620 621 704 705 725 726 +600 601 621 622 705 706 726 727 +601 602 622 623 706 707 727 728 +602 603 623 624 707 708 728 729 +603 604 624 625 708 709 729 730 +604 605 625 626 709 710 730 731 +605 606 626 627 710 711 731 732 +606 607 627 628 711 712 732 733 +607 608 628 629 712 713 733 734 +630 631 651 652 735 736 756 757 +631 632 652 653 736 737 757 758 +632 633 653 654 737 738 758 759 +633 634 654 655 738 739 759 760 +634 635 655 656 739 740 760 761 +635 636 656 657 740 741 761 762 +636 637 657 658 741 742 762 763 +637 638 658 659 742 743 763 764 +638 639 659 660 743 744 764 765 +639 640 660 661 744 745 765 766 +640 641 661 662 745 746 766 767 +641 642 662 663 746 747 767 768 +642 643 663 664 747 748 768 769 +643 644 664 665 748 749 769 770 +644 645 665 666 749 750 770 771 +645 646 666 667 750 751 771 772 +646 647 667 668 751 752 772 773 +647 648 668 669 752 753 773 774 +648 649 669 670 753 754 774 775 +649 650 670 671 754 755 775 776 +651 652 672 673 756 757 777 778 +652 653 673 674 757 758 778 779 +653 654 674 675 758 759 779 780 +654 655 675 676 759 760 780 781 +655 656 676 677 760 761 781 782 +656 657 677 678 761 762 782 783 +657 658 678 679 762 763 783 784 +658 659 679 680 763 764 784 785 +659 660 680 681 764 765 785 786 +660 661 681 682 765 766 786 787 +661 662 682 683 766 767 787 788 +662 663 683 684 767 768 788 789 +663 664 684 685 768 769 789 790 +664 665 685 686 769 770 790 791 +665 666 686 687 770 771 791 792 +666 667 687 688 771 772 792 793 +667 668 688 689 772 773 793 794 +668 669 689 690 773 774 794 795 +669 670 690 691 774 775 795 796 +670 671 691 692 775 776 796 797 +672 673 693 694 777 778 798 799 +673 674 694 695 778 779 799 800 +674 675 695 696 779 780 800 801 +675 676 696 697 780 781 801 802 +676 677 697 698 781 782 802 803 +677 678 698 699 782 783 803 804 +678 679 699 700 783 784 804 805 +679 680 700 701 784 785 805 806 +680 681 701 702 785 786 806 807 +681 682 702 703 786 787 807 808 +682 683 703 704 787 788 808 809 +683 684 704 705 788 789 809 810 +684 685 705 706 789 790 810 811 +685 686 706 707 790 791 811 812 +686 687 707 708 791 792 812 813 +687 688 708 709 792 793 813 814 +688 689 709 710 793 794 814 815 +689 690 710 711 794 795 815 816 +690 691 711 712 795 796 816 817 +691 692 712 713 796 797 817 818 +693 694 714 715 798 799 819 820 +694 695 715 716 799 800 820 821 +695 696 716 717 800 801 821 822 +696 697 717 718 801 802 822 823 +697 698 718 719 802 803 823 824 +698 699 719 720 803 804 824 825 +699 700 720 721 804 805 825 826 +700 701 721 722 805 806 826 827 +701 702 722 723 806 807 827 828 +702 703 723 724 807 808 828 829 +703 704 724 725 808 809 829 830 +704 705 725 726 809 810 830 831 +705 706 726 727 810 811 831 832 +706 707 727 728 811 812 832 833 +707 708 728 729 812 813 833 834 +708 709 729 730 813 814 834 835 +709 710 730 731 814 815 835 836 +710 711 731 732 815 816 836 837 +711 712 732 733 816 817 837 838 +712 713 733 734 817 818 838 839 +735 736 756 757 840 841 861 862 +736 737 757 758 841 842 862 863 +737 738 758 759 842 843 863 864 +738 739 759 760 843 844 864 865 +739 740 760 761 844 845 865 866 +740 741 761 762 845 846 866 867 +741 742 762 763 846 847 867 868 +742 743 763 764 847 848 868 869 +743 744 764 765 848 849 869 870 +744 745 765 766 849 850 870 871 +745 746 766 767 850 851 871 872 +746 747 767 768 851 852 872 873 +747 748 768 769 852 853 873 874 +748 749 769 770 853 854 874 875 +749 750 770 771 854 855 875 876 +750 751 771 772 855 856 876 877 +751 752 772 773 856 857 877 878 +752 753 773 774 857 858 878 879 +753 754 774 775 858 859 879 880 +754 755 775 776 859 860 880 881 +756 757 777 778 861 862 882 883 +757 758 778 779 862 863 883 884 +758 759 779 780 863 864 884 885 +759 760 780 781 864 865 885 886 +760 761 781 782 865 866 886 887 +761 762 782 783 866 867 887 888 +762 763 783 784 867 868 888 889 +763 764 784 785 868 869 889 890 +764 765 785 786 869 870 890 891 +765 766 786 787 870 871 891 892 +766 767 787 788 871 872 892 893 +767 768 788 789 872 873 893 894 +768 769 789 790 873 874 894 895 +769 770 790 791 874 875 895 896 +770 771 791 792 875 876 896 897 +771 772 792 793 876 877 897 898 +772 773 793 794 877 878 898 899 +773 774 794 795 878 879 899 900 +774 775 795 796 879 880 900 901 +775 776 796 797 880 881 901 902 +777 778 798 799 882 883 903 904 +778 779 799 800 883 884 904 905 +779 780 800 801 884 885 905 906 +780 781 801 802 885 886 906 907 +781 782 802 803 886 887 907 908 +782 783 803 804 887 888 908 909 +783 784 804 805 888 889 909 910 +784 785 805 806 889 890 910 911 +785 786 806 807 890 891 911 912 +786 787 807 808 891 892 912 913 +787 788 808 809 892 893 913 914 +788 789 809 810 893 894 914 915 +789 790 810 811 894 895 915 916 +790 791 811 812 895 896 916 917 +791 792 812 813 896 897 917 918 +792 793 813 814 897 898 918 919 +793 794 814 815 898 899 919 920 +794 795 815 816 899 900 920 921 +795 796 816 817 900 901 921 922 +796 797 817 818 901 902 922 923 +798 799 819 820 903 904 924 925 +799 800 820 821 904 905 925 926 +800 801 821 822 905 906 926 927 +801 802 822 823 906 907 927 928 +802 803 823 824 907 908 928 929 +803 804 824 825 908 909 929 930 +804 805 825 826 909 910 930 931 +805 806 826 827 910 911 931 932 +806 807 827 828 911 912 932 933 +807 808 828 829 912 913 933 934 +808 809 829 830 913 914 934 935 +809 810 830 831 914 915 935 936 +810 811 831 832 915 916 936 937 +811 812 832 833 916 917 937 938 +812 813 833 834 917 918 938 939 +813 814 834 835 918 919 939 940 +814 815 835 836 919 920 940 941 +815 816 836 837 920 921 941 942 +816 817 837 838 921 922 942 943 +817 818 838 839 922 923 943 944 +840 841 861 862 945 946 966 967 +841 842 862 863 946 947 967 968 +842 843 863 864 947 948 968 969 +843 844 864 865 948 949 969 970 +844 845 865 866 949 950 970 971 +845 846 866 867 950 951 971 972 +846 847 867 868 951 952 972 973 +847 848 868 869 952 953 973 974 +848 849 869 870 953 954 974 975 +849 850 870 871 954 955 975 976 +850 851 871 872 955 956 976 977 +851 852 872 873 956 957 977 978 +852 853 873 874 957 958 978 979 +853 854 874 875 958 959 979 980 +854 855 875 876 959 960 980 981 +855 856 876 877 960 961 981 982 +856 857 877 878 961 962 982 983 +857 858 878 879 962 963 983 984 +858 859 879 880 963 964 984 985 +859 860 880 881 964 965 985 986 +861 862 882 883 966 967 987 988 +862 863 883 884 967 968 988 989 +863 864 884 885 968 969 989 990 +864 865 885 886 969 970 990 991 +865 866 886 887 970 971 991 992 +866 867 887 888 971 972 992 993 +867 868 888 889 972 973 993 994 +868 869 889 890 973 974 994 995 +869 870 890 891 974 975 995 996 +870 871 891 892 975 976 996 997 +871 872 892 893 976 977 997 998 +872 873 893 894 977 978 998 999 +873 874 894 895 978 979 999 1000 +874 875 895 896 979 980 1000 1001 +875 876 896 897 980 981 1001 1002 +876 877 897 898 981 982 1002 1003 +877 878 898 899 982 983 1003 1004 +878 879 899 900 983 984 1004 1005 +879 880 900 901 984 985 1005 1006 +880 881 901 902 985 986 1006 1007 +882 883 903 904 987 988 1008 1009 +883 884 904 905 988 989 1009 1010 +884 885 905 906 989 990 1010 1011 +885 886 906 907 990 991 1011 1012 +886 887 907 908 991 992 1012 1013 +887 888 908 909 992 993 1013 1014 +888 889 909 910 993 994 1014 1015 +889 890 910 911 994 995 1015 1016 +890 891 911 912 995 996 1016 1017 +891 892 912 913 996 997 1017 1018 +892 893 913 914 997 998 1018 1019 +893 894 914 915 998 999 1019 1020 +894 895 915 916 999 1000 1020 1021 +895 896 916 917 1000 1001 1021 1022 +896 897 917 918 1001 1002 1022 1023 +897 898 918 919 1002 1003 1023 1024 +898 899 919 920 1003 1004 1024 1025 +899 900 920 921 1004 1005 1025 1026 +900 901 921 922 1005 1006 1026 1027 +901 902 922 923 1006 1007 1027 1028 +903 904 924 925 1008 1009 1029 1030 +904 905 925 926 1009 1010 1030 1031 +905 906 926 927 1010 1011 1031 1032 +906 907 927 928 1011 1012 1032 1033 +907 908 928 929 1012 1013 1033 1034 +908 909 929 930 1013 1014 1034 1035 +909 910 930 931 1014 1015 1035 1036 +910 911 931 932 1015 1016 1036 1037 +911 912 932 933 1016 1017 1037 1038 +912 913 933 934 1017 1018 1038 1039 +913 914 934 935 1018 1019 1039 1040 +914 915 935 936 1019 1020 1040 1041 +915 916 936 937 1020 1021 1041 1042 +916 917 937 938 1021 1022 1042 1043 +917 918 938 939 1022 1023 1043 1044 +918 919 939 940 1023 1024 1044 1045 +919 920 940 941 1024 1025 1045 1046 +920 921 941 942 1025 1026 1046 1047 +921 922 942 943 1026 1027 1047 1048 +922 923 943 944 1027 1028 1048 1049 +945 946 966 967 1050 1051 1071 1072 +946 947 967 968 1051 1052 1072 1073 +947 948 968 969 1052 1053 1073 1074 +948 949 969 970 1053 1054 1074 1075 +949 950 970 971 1054 1055 1075 1076 +950 951 971 972 1055 1056 1076 1077 +951 952 972 973 1056 1057 1077 1078 +952 953 973 974 1057 1058 1078 1079 +953 954 974 975 1058 1059 1079 1080 +954 955 975 976 1059 1060 1080 1081 +955 956 976 977 1060 1061 1081 1082 +956 957 977 978 1061 1062 1082 1083 +957 958 978 979 1062 1063 1083 1084 +958 959 979 980 1063 1064 1084 1085 +959 960 980 981 1064 1065 1085 1086 +960 961 981 982 1065 1066 1086 1087 +961 962 982 983 1066 1067 1087 1088 +962 963 983 984 1067 1068 1088 1089 +963 964 984 985 1068 1069 1089 1090 +964 965 985 986 1069 1070 1090 1091 +966 967 987 988 1071 1072 1092 1093 +967 968 988 989 1072 1073 1093 1094 +968 969 989 990 1073 1074 1094 1095 +969 970 990 991 1074 1075 1095 1096 +970 971 991 992 1075 1076 1096 1097 +971 972 992 993 1076 1077 1097 1098 +972 973 993 994 1077 1078 1098 1099 +973 974 994 995 1078 1079 1099 1100 +974 975 995 996 1079 1080 1100 1101 +975 976 996 997 1080 1081 1101 1102 +976 977 997 998 1081 1082 1102 1103 +977 978 998 999 1082 1083 1103 1104 +978 979 999 1000 1083 1084 1104 1105 +979 980 1000 1001 1084 1085 1105 1106 +980 981 1001 1002 1085 1086 1106 1107 +981 982 1002 1003 1086 1087 1107 1108 +982 983 1003 1004 1087 1088 1108 1109 +983 984 1004 1005 1088 1089 1109 1110 +984 985 1005 1006 1089 1090 1110 1111 +985 986 1006 1007 1090 1091 1111 1112 +987 988 1008 1009 1092 1093 1113 1114 +988 989 1009 1010 1093 1094 1114 1115 +989 990 1010 1011 1094 1095 1115 1116 +990 991 1011 1012 1095 1096 1116 1117 +991 992 1012 1013 1096 1097 1117 1118 +992 993 1013 1014 1097 1098 1118 1119 +993 994 1014 1015 1098 1099 1119 1120 +994 995 1015 1016 1099 1100 1120 1121 +995 996 1016 1017 1100 1101 1121 1122 +996 997 1017 1018 1101 1102 1122 1123 +997 998 1018 1019 1102 1103 1123 1124 +998 999 1019 1020 1103 1104 1124 1125 +999 1000 1020 1021 1104 1105 1125 1126 +1000 1001 1021 1022 1105 1106 1126 1127 +1001 1002 1022 1023 1106 1107 1127 1128 +1002 1003 1023 1024 1107 1108 1128 1129 +1003 1004 1024 1025 1108 1109 1129 1130 +1004 1005 1025 1026 1109 1110 1130 1131 +1005 1006 1026 1027 1110 1111 1131 1132 +1006 1007 1027 1028 1111 1112 1132 1133 +1008 1009 1029 1030 1113 1114 1134 1135 +1009 1010 1030 1031 1114 1115 1135 1136 +1010 1011 1031 1032 1115 1116 1136 1137 +1011 1012 1032 1033 1116 1117 1137 1138 +1012 1013 1033 1034 1117 1118 1138 1139 +1013 1014 1034 1035 1118 1119 1139 1140 +1014 1015 1035 1036 1119 1120 1140 1141 +1015 1016 1036 1037 1120 1121 1141 1142 +1016 1017 1037 1038 1121 1122 1142 1143 +1017 1018 1038 1039 1122 1123 1143 1144 +1018 1019 1039 1040 1123 1124 1144 1145 +1019 1020 1040 1041 1124 1125 1145 1146 +1020 1021 1041 1042 1125 1126 1146 1147 +1021 1022 1042 1043 1126 1127 1147 1148 +1022 1023 1043 1044 1127 1128 1148 1149 +1023 1024 1044 1045 1128 1129 1149 1150 +1024 1025 1045 1046 1129 1130 1150 1151 +1025 1026 1046 1047 1130 1131 1151 1152 +1026 1027 1047 1048 1131 1132 1152 1153 +1027 1028 1048 1049 1132 1133 1153 1154 +1050 1051 1071 1072 1155 1156 1176 1177 +1051 1052 1072 1073 1156 1157 1177 1178 +1052 1053 1073 1074 1157 1158 1178 1179 +1053 1054 1074 1075 1158 1159 1179 1180 +1054 1055 1075 1076 1159 1160 1180 1181 +1055 1056 1076 1077 1160 1161 1181 1182 +1056 1057 1077 1078 1161 1162 1182 1183 +1057 1058 1078 1079 1162 1163 1183 1184 +1058 1059 1079 1080 1163 1164 1184 1185 +1059 1060 1080 1081 1164 1165 1185 1186 +1060 1061 1081 1082 1165 1166 1186 1187 +1061 1062 1082 1083 1166 1167 1187 1188 +1062 1063 1083 1084 1167 1168 1188 1189 +1063 1064 1084 1085 1168 1169 1189 1190 +1064 1065 1085 1086 1169 1170 1190 1191 +1065 1066 1086 1087 1170 1171 1191 1192 +1066 1067 1087 1088 1171 1172 1192 1193 +1067 1068 1088 1089 1172 1173 1193 1194 +1068 1069 1089 1090 1173 1174 1194 1195 +1069 1070 1090 1091 1174 1175 1195 1196 +1071 1072 1092 1093 1176 1177 1197 1198 +1072 1073 1093 1094 1177 1178 1198 1199 +1073 1074 1094 1095 1178 1179 1199 1200 +1074 1075 1095 1096 1179 1180 1200 1201 +1075 1076 1096 1097 1180 1181 1201 1202 +1076 1077 1097 1098 1181 1182 1202 1203 +1077 1078 1098 1099 1182 1183 1203 1204 +1078 1079 1099 1100 1183 1184 1204 1205 +1079 1080 1100 1101 1184 1185 1205 1206 +1080 1081 1101 1102 1185 1186 1206 1207 +1081 1082 1102 1103 1186 1187 1207 1208 +1082 1083 1103 1104 1187 1188 1208 1209 +1083 1084 1104 1105 1188 1189 1209 1210 +1084 1085 1105 1106 1189 1190 1210 1211 +1085 1086 1106 1107 1190 1191 1211 1212 +1086 1087 1107 1108 1191 1192 1212 1213 +1087 1088 1108 1109 1192 1193 1213 1214 +1088 1089 1109 1110 1193 1194 1214 1215 +1089 1090 1110 1111 1194 1195 1215 1216 +1090 1091 1111 1112 1195 1196 1216 1217 +1092 1093 1113 1114 1197 1198 1218 1219 +1093 1094 1114 1115 1198 1199 1219 1220 +1094 1095 1115 1116 1199 1200 1220 1221 +1095 1096 1116 1117 1200 1201 1221 1222 +1096 1097 1117 1118 1201 1202 1222 1223 +1097 1098 1118 1119 1202 1203 1223 1224 +1098 1099 1119 1120 1203 1204 1224 1225 +1099 1100 1120 1121 1204 1205 1225 1226 +1100 1101 1121 1122 1205 1206 1226 1227 +1101 1102 1122 1123 1206 1207 1227 1228 +1102 1103 1123 1124 1207 1208 1228 1229 +1103 1104 1124 1125 1208 1209 1229 1230 +1104 1105 1125 1126 1209 1210 1230 1231 +1105 1106 1126 1127 1210 1211 1231 1232 +1106 1107 1127 1128 1211 1212 1232 1233 +1107 1108 1128 1129 1212 1213 1233 1234 +1108 1109 1129 1130 1213 1214 1234 1235 +1109 1110 1130 1131 1214 1215 1235 1236 +1110 1111 1131 1132 1215 1216 1236 1237 +1111 1112 1132 1133 1216 1217 1237 1238 +1113 1114 1134 1135 1218 1219 1239 1240 +1114 1115 1135 1136 1219 1220 1240 1241 +1115 1116 1136 1137 1220 1221 1241 1242 +1116 1117 1137 1138 1221 1222 1242 1243 +1117 1118 1138 1139 1222 1223 1243 1244 +1118 1119 1139 1140 1223 1224 1244 1245 +1119 1120 1140 1141 1224 1225 1245 1246 +1120 1121 1141 1142 1225 1226 1246 1247 +1121 1122 1142 1143 1226 1227 1247 1248 +1122 1123 1143 1144 1227 1228 1248 1249 +1123 1124 1144 1145 1228 1229 1249 1250 +1124 1125 1145 1146 1229 1230 1250 1251 +1125 1126 1146 1147 1230 1231 1251 1252 +1126 1127 1147 1148 1231 1232 1252 1253 +1127 1128 1148 1149 1232 1233 1253 1254 +1128 1129 1149 1150 1233 1234 1254 1255 +1129 1130 1150 1151 1234 1235 1255 1256 +1130 1131 1151 1152 1235 1236 1256 1257 +1131 1132 1152 1153 1236 1237 1257 1258 +1132 1133 1153 1154 1237 1238 1258 1259 +1155 1156 1176 1177 1260 1261 1281 1282 +1156 1157 1177 1178 1261 1262 1282 1283 +1157 1158 1178 1179 1262 1263 1283 1284 +1158 1159 1179 1180 1263 1264 1284 1285 +1159 1160 1180 1181 1264 1265 1285 1286 +1160 1161 1181 1182 1265 1266 1286 1287 +1161 1162 1182 1183 1266 1267 1287 1288 +1162 1163 1183 1184 1267 1268 1288 1289 +1163 1164 1184 1185 1268 1269 1289 1290 +1164 1165 1185 1186 1269 1270 1290 1291 +1165 1166 1186 1187 1270 1271 1291 1292 +1166 1167 1187 1188 1271 1272 1292 1293 +1167 1168 1188 1189 1272 1273 1293 1294 +1168 1169 1189 1190 1273 1274 1294 1295 +1169 1170 1190 1191 1274 1275 1295 1296 +1170 1171 1191 1192 1275 1276 1296 1297 +1171 1172 1192 1193 1276 1277 1297 1298 +1172 1173 1193 1194 1277 1278 1298 1299 +1173 1174 1194 1195 1278 1279 1299 1300 +1174 1175 1195 1196 1279 1280 1300 1301 +1176 1177 1197 1198 1281 1282 1302 1303 +1177 1178 1198 1199 1282 1283 1303 1304 +1178 1179 1199 1200 1283 1284 1304 1305 +1179 1180 1200 1201 1284 1285 1305 1306 +1180 1181 1201 1202 1285 1286 1306 1307 +1181 1182 1202 1203 1286 1287 1307 1308 +1182 1183 1203 1204 1287 1288 1308 1309 +1183 1184 1204 1205 1288 1289 1309 1310 +1184 1185 1205 1206 1289 1290 1310 1311 +1185 1186 1206 1207 1290 1291 1311 1312 +1186 1187 1207 1208 1291 1292 1312 1313 +1187 1188 1208 1209 1292 1293 1313 1314 +1188 1189 1209 1210 1293 1294 1314 1315 +1189 1190 1210 1211 1294 1295 1315 1316 +1190 1191 1211 1212 1295 1296 1316 1317 +1191 1192 1212 1213 1296 1297 1317 1318 +1192 1193 1213 1214 1297 1298 1318 1319 +1193 1194 1214 1215 1298 1299 1319 1320 +1194 1195 1215 1216 1299 1300 1320 1321 +1195 1196 1216 1217 1300 1301 1321 1322 +1197 1198 1218 1219 1302 1303 1323 1324 +1198 1199 1219 1220 1303 1304 1324 1325 +1199 1200 1220 1221 1304 1305 1325 1326 +1200 1201 1221 1222 1305 1306 1326 1327 +1201 1202 1222 1223 1306 1307 1327 1328 +1202 1203 1223 1224 1307 1308 1328 1329 +1203 1204 1224 1225 1308 1309 1329 1330 +1204 1205 1225 1226 1309 1310 1330 1331 +1205 1206 1226 1227 1310 1311 1331 1332 +1206 1207 1227 1228 1311 1312 1332 1333 +1207 1208 1228 1229 1312 1313 1333 1334 +1208 1209 1229 1230 1313 1314 1334 1335 +1209 1210 1230 1231 1314 1315 1335 1336 +1210 1211 1231 1232 1315 1316 1336 1337 +1211 1212 1232 1233 1316 1317 1337 1338 +1212 1213 1233 1234 1317 1318 1338 1339 +1213 1214 1234 1235 1318 1319 1339 1340 +1214 1215 1235 1236 1319 1320 1340 1341 +1215 1216 1236 1237 1320 1321 1341 1342 +1216 1217 1237 1238 1321 1322 1342 1343 +1218 1219 1239 1240 1323 1324 1344 1345 +1219 1220 1240 1241 1324 1325 1345 1346 +1220 1221 1241 1242 1325 1326 1346 1347 +1221 1222 1242 1243 1326 1327 1347 1348 +1222 1223 1243 1244 1327 1328 1348 1349 +1223 1224 1244 1245 1328 1329 1349 1350 +1224 1225 1245 1246 1329 1330 1350 1351 +1225 1226 1246 1247 1330 1331 1351 1352 +1226 1227 1247 1248 1331 1332 1352 1353 +1227 1228 1248 1249 1332 1333 1353 1354 +1228 1229 1249 1250 1333 1334 1354 1355 +1229 1230 1250 1251 1334 1335 1355 1356 +1230 1231 1251 1252 1335 1336 1356 1357 +1231 1232 1252 1253 1336 1337 1357 1358 +1232 1233 1253 1254 1337 1338 1358 1359 +1233 1234 1254 1255 1338 1339 1359 1360 +1234 1235 1255 1256 1339 1340 1360 1361 +1235 1236 1256 1257 1340 1341 1361 1362 +1236 1237 1257 1258 1341 1342 1362 1363 +1237 1238 1258 1259 1342 1343 1363 1364 +1260 1261 1281 1282 1365 1366 1386 1387 +1261 1262 1282 1283 1366 1367 1387 1388 +1262 1263 1283 1284 1367 1368 1388 1389 +1263 1264 1284 1285 1368 1369 1389 1390 +1264 1265 1285 1286 1369 1370 1390 1391 +1265 1266 1286 1287 1370 1371 1391 1392 +1266 1267 1287 1288 1371 1372 1392 1393 +1267 1268 1288 1289 1372 1373 1393 1394 +1268 1269 1289 1290 1373 1374 1394 1395 +1269 1270 1290 1291 1374 1375 1395 1396 +1270 1271 1291 1292 1375 1376 1396 1397 +1271 1272 1292 1293 1376 1377 1397 1398 +1272 1273 1293 1294 1377 1378 1398 1399 +1273 1274 1294 1295 1378 1379 1399 1400 +1274 1275 1295 1296 1379 1380 1400 1401 +1275 1276 1296 1297 1380 1381 1401 1402 +1276 1277 1297 1298 1381 1382 1402 1403 +1277 1278 1298 1299 1382 1383 1403 1404 +1278 1279 1299 1300 1383 1384 1404 1405 +1279 1280 1300 1301 1384 1385 1405 1406 +1281 1282 1302 1303 1386 1387 1407 1408 +1282 1283 1303 1304 1387 1388 1408 1409 +1283 1284 1304 1305 1388 1389 1409 1410 +1284 1285 1305 1306 1389 1390 1410 1411 +1285 1286 1306 1307 1390 1391 1411 1412 +1286 1287 1307 1308 1391 1392 1412 1413 +1287 1288 1308 1309 1392 1393 1413 1414 +1288 1289 1309 1310 1393 1394 1414 1415 +1289 1290 1310 1311 1394 1395 1415 1416 +1290 1291 1311 1312 1395 1396 1416 1417 +1291 1292 1312 1313 1396 1397 1417 1418 +1292 1293 1313 1314 1397 1398 1418 1419 +1293 1294 1314 1315 1398 1399 1419 1420 +1294 1295 1315 1316 1399 1400 1420 1421 +1295 1296 1316 1317 1400 1401 1421 1422 +1296 1297 1317 1318 1401 1402 1422 1423 +1297 1298 1318 1319 1402 1403 1423 1424 +1298 1299 1319 1320 1403 1404 1424 1425 +1299 1300 1320 1321 1404 1405 1425 1426 +1300 1301 1321 1322 1405 1406 1426 1427 +1302 1303 1323 1324 1407 1408 1428 1429 +1303 1304 1324 1325 1408 1409 1429 1430 +1304 1305 1325 1326 1409 1410 1430 1431 +1305 1306 1326 1327 1410 1411 1431 1432 +1306 1307 1327 1328 1411 1412 1432 1433 +1307 1308 1328 1329 1412 1413 1433 1434 +1308 1309 1329 1330 1413 1414 1434 1435 +1309 1310 1330 1331 1414 1415 1435 1436 +1310 1311 1331 1332 1415 1416 1436 1437 +1311 1312 1332 1333 1416 1417 1437 1438 +1312 1313 1333 1334 1417 1418 1438 1439 +1313 1314 1334 1335 1418 1419 1439 1440 +1314 1315 1335 1336 1419 1420 1440 1441 +1315 1316 1336 1337 1420 1421 1441 1442 +1316 1317 1337 1338 1421 1422 1442 1443 +1317 1318 1338 1339 1422 1423 1443 1444 +1318 1319 1339 1340 1423 1424 1444 1445 +1319 1320 1340 1341 1424 1425 1445 1446 +1320 1321 1341 1342 1425 1426 1446 1447 +1321 1322 1342 1343 1426 1427 1447 1448 +1323 1324 1344 1345 1428 1429 1449 1450 +1324 1325 1345 1346 1429 1430 1450 1451 +1325 1326 1346 1347 1430 1431 1451 1452 +1326 1327 1347 1348 1431 1432 1452 1453 +1327 1328 1348 1349 1432 1433 1453 1454 +1328 1329 1349 1350 1433 1434 1454 1455 +1329 1330 1350 1351 1434 1435 1455 1456 +1330 1331 1351 1352 1435 1436 1456 1457 +1331 1332 1352 1353 1436 1437 1457 1458 +1332 1333 1353 1354 1437 1438 1458 1459 +1333 1334 1354 1355 1438 1439 1459 1460 +1334 1335 1355 1356 1439 1440 1460 1461 +1335 1336 1356 1357 1440 1441 1461 1462 +1336 1337 1357 1358 1441 1442 1462 1463 +1337 1338 1358 1359 1442 1443 1463 1464 +1338 1339 1359 1360 1443 1444 1464 1465 +1339 1340 1360 1361 1444 1445 1465 1466 +1340 1341 1361 1362 1445 1446 1466 1467 +1341 1342 1362 1363 1446 1447 1467 1468 +1342 1343 1363 1364 1447 1448 1468 1469 +1365 1366 1386 1387 1470 1471 1491 1492 +1366 1367 1387 1388 1471 1472 1492 1493 +1367 1368 1388 1389 1472 1473 1493 1494 +1368 1369 1389 1390 1473 1474 1494 1495 +1369 1370 1390 1391 1474 1475 1495 1496 +1370 1371 1391 1392 1475 1476 1496 1497 +1371 1372 1392 1393 1476 1477 1497 1498 +1372 1373 1393 1394 1477 1478 1498 1499 +1373 1374 1394 1395 1478 1479 1499 1500 +1374 1375 1395 1396 1479 1480 1500 1501 +1375 1376 1396 1397 1480 1481 1501 1502 +1376 1377 1397 1398 1481 1482 1502 1503 +1377 1378 1398 1399 1482 1483 1503 1504 +1378 1379 1399 1400 1483 1484 1504 1505 +1379 1380 1400 1401 1484 1485 1505 1506 +1380 1381 1401 1402 1485 1486 1506 1507 +1381 1382 1402 1403 1486 1487 1507 1508 +1382 1383 1403 1404 1487 1488 1508 1509 +1383 1384 1404 1405 1488 1489 1509 1510 +1384 1385 1405 1406 1489 1490 1510 1511 +1386 1387 1407 1408 1491 1492 1512 1513 +1387 1388 1408 1409 1492 1493 1513 1514 +1388 1389 1409 1410 1493 1494 1514 1515 +1389 1390 1410 1411 1494 1495 1515 1516 +1390 1391 1411 1412 1495 1496 1516 1517 +1391 1392 1412 1413 1496 1497 1517 1518 +1392 1393 1413 1414 1497 1498 1518 1519 +1393 1394 1414 1415 1498 1499 1519 1520 +1394 1395 1415 1416 1499 1500 1520 1521 +1395 1396 1416 1417 1500 1501 1521 1522 +1396 1397 1417 1418 1501 1502 1522 1523 +1397 1398 1418 1419 1502 1503 1523 1524 +1398 1399 1419 1420 1503 1504 1524 1525 +1399 1400 1420 1421 1504 1505 1525 1526 +1400 1401 1421 1422 1505 1506 1526 1527 +1401 1402 1422 1423 1506 1507 1527 1528 +1402 1403 1423 1424 1507 1508 1528 1529 +1403 1404 1424 1425 1508 1509 1529 1530 +1404 1405 1425 1426 1509 1510 1530 1531 +1405 1406 1426 1427 1510 1511 1531 1532 +1407 1408 1428 1429 1512 1513 1533 1534 +1408 1409 1429 1430 1513 1514 1534 1535 +1409 1410 1430 1431 1514 1515 1535 1536 +1410 1411 1431 1432 1515 1516 1536 1537 +1411 1412 1432 1433 1516 1517 1537 1538 +1412 1413 1433 1434 1517 1518 1538 1539 +1413 1414 1434 1435 1518 1519 1539 1540 +1414 1415 1435 1436 1519 1520 1540 1541 +1415 1416 1436 1437 1520 1521 1541 1542 +1416 1417 1437 1438 1521 1522 1542 1543 +1417 1418 1438 1439 1522 1523 1543 1544 +1418 1419 1439 1440 1523 1524 1544 1545 +1419 1420 1440 1441 1524 1525 1545 1546 +1420 1421 1441 1442 1525 1526 1546 1547 +1421 1422 1442 1443 1526 1527 1547 1548 +1422 1423 1443 1444 1527 1528 1548 1549 +1423 1424 1444 1445 1528 1529 1549 1550 +1424 1425 1445 1446 1529 1530 1550 1551 +1425 1426 1446 1447 1530 1531 1551 1552 +1426 1427 1447 1448 1531 1532 1552 1553 +1428 1429 1449 1450 1533 1534 1554 1555 +1429 1430 1450 1451 1534 1535 1555 1556 +1430 1431 1451 1452 1535 1536 1556 1557 +1431 1432 1452 1453 1536 1537 1557 1558 +1432 1433 1453 1454 1537 1538 1558 1559 +1433 1434 1454 1455 1538 1539 1559 1560 +1434 1435 1455 1456 1539 1540 1560 1561 +1435 1436 1456 1457 1540 1541 1561 1562 +1436 1437 1457 1458 1541 1542 1562 1563 +1437 1438 1458 1459 1542 1543 1563 1564 +1438 1439 1459 1460 1543 1544 1564 1565 +1439 1440 1460 1461 1544 1545 1565 1566 +1440 1441 1461 1462 1545 1546 1566 1567 +1441 1442 1462 1463 1546 1547 1567 1568 +1442 1443 1463 1464 1547 1548 1568 1569 +1443 1444 1464 1465 1548 1549 1569 1570 +1444 1445 1465 1466 1549 1550 1570 1571 +1445 1446 1466 1467 1550 1551 1571 1572 +1446 1447 1467 1468 1551 1552 1572 1573 +1447 1448 1468 1469 1552 1553 1573 1574 +1470 1471 1491 1492 1575 1576 1596 1597 +1471 1472 1492 1493 1576 1577 1597 1598 +1472 1473 1493 1494 1577 1578 1598 1599 +1473 1474 1494 1495 1578 1579 1599 1600 +1474 1475 1495 1496 1579 1580 1600 1601 +1475 1476 1496 1497 1580 1581 1601 1602 +1476 1477 1497 1498 1581 1582 1602 1603 +1477 1478 1498 1499 1582 1583 1603 1604 +1478 1479 1499 1500 1583 1584 1604 1605 +1479 1480 1500 1501 1584 1585 1605 1606 +1480 1481 1501 1502 1585 1586 1606 1607 +1481 1482 1502 1503 1586 1587 1607 1608 +1482 1483 1503 1504 1587 1588 1608 1609 +1483 1484 1504 1505 1588 1589 1609 1610 +1484 1485 1505 1506 1589 1590 1610 1611 +1485 1486 1506 1507 1590 1591 1611 1612 +1486 1487 1507 1508 1591 1592 1612 1613 +1487 1488 1508 1509 1592 1593 1613 1614 +1488 1489 1509 1510 1593 1594 1614 1615 +1489 1490 1510 1511 1594 1595 1615 1616 +1491 1492 1512 1513 1596 1597 1617 1618 +1492 1493 1513 1514 1597 1598 1618 1619 +1493 1494 1514 1515 1598 1599 1619 1620 +1494 1495 1515 1516 1599 1600 1620 1621 +1495 1496 1516 1517 1600 1601 1621 1622 +1496 1497 1517 1518 1601 1602 1622 1623 +1497 1498 1518 1519 1602 1603 1623 1624 +1498 1499 1519 1520 1603 1604 1624 1625 +1499 1500 1520 1521 1604 1605 1625 1626 +1500 1501 1521 1522 1605 1606 1626 1627 +1501 1502 1522 1523 1606 1607 1627 1628 +1502 1503 1523 1524 1607 1608 1628 1629 +1503 1504 1524 1525 1608 1609 1629 1630 +1504 1505 1525 1526 1609 1610 1630 1631 +1505 1506 1526 1527 1610 1611 1631 1632 +1506 1507 1527 1528 1611 1612 1632 1633 +1507 1508 1528 1529 1612 1613 1633 1634 +1508 1509 1529 1530 1613 1614 1634 1635 +1509 1510 1530 1531 1614 1615 1635 1636 +1510 1511 1531 1532 1615 1616 1636 1637 +1512 1513 1533 1534 1617 1618 1638 1639 +1513 1514 1534 1535 1618 1619 1639 1640 +1514 1515 1535 1536 1619 1620 1640 1641 +1515 1516 1536 1537 1620 1621 1641 1642 +1516 1517 1537 1538 1621 1622 1642 1643 +1517 1518 1538 1539 1622 1623 1643 1644 +1518 1519 1539 1540 1623 1624 1644 1645 +1519 1520 1540 1541 1624 1625 1645 1646 +1520 1521 1541 1542 1625 1626 1646 1647 +1521 1522 1542 1543 1626 1627 1647 1648 +1522 1523 1543 1544 1627 1628 1648 1649 +1523 1524 1544 1545 1628 1629 1649 1650 +1524 1525 1545 1546 1629 1630 1650 1651 +1525 1526 1546 1547 1630 1631 1651 1652 +1526 1527 1547 1548 1631 1632 1652 1653 +1527 1528 1548 1549 1632 1633 1653 1654 +1528 1529 1549 1550 1633 1634 1654 1655 +1529 1530 1550 1551 1634 1635 1655 1656 +1530 1531 1551 1552 1635 1636 1656 1657 +1531 1532 1552 1553 1636 1637 1657 1658 +1533 1534 1554 1555 1638 1639 1659 1660 +1534 1535 1555 1556 1639 1640 1660 1661 +1535 1536 1556 1557 1640 1641 1661 1662 +1536 1537 1557 1558 1641 1642 1662 1663 +1537 1538 1558 1559 1642 1643 1663 1664 +1538 1539 1559 1560 1643 1644 1664 1665 +1539 1540 1560 1561 1644 1645 1665 1666 +1540 1541 1561 1562 1645 1646 1666 1667 +1541 1542 1562 1563 1646 1647 1667 1668 +1542 1543 1563 1564 1647 1648 1668 1669 +1543 1544 1564 1565 1648 1649 1669 1670 +1544 1545 1565 1566 1649 1650 1670 1671 +1545 1546 1566 1567 1650 1651 1671 1672 +1546 1547 1567 1568 1651 1652 1672 1673 +1547 1548 1568 1569 1652 1653 1673 1674 +1548 1549 1569 1570 1653 1654 1674 1675 +1549 1550 1570 1571 1654 1655 1675 1676 +1550 1551 1571 1572 1655 1656 1676 1677 +1551 1552 1572 1573 1656 1657 1677 1678 +1552 1553 1573 1574 1657 1658 1678 1679 +1575 1576 1596 1597 1680 1681 1701 1702 +1576 1577 1597 1598 1681 1682 1702 1703 +1577 1578 1598 1599 1682 1683 1703 1704 +1578 1579 1599 1600 1683 1684 1704 1705 +1579 1580 1600 1601 1684 1685 1705 1706 +1580 1581 1601 1602 1685 1686 1706 1707 +1581 1582 1602 1603 1686 1687 1707 1708 +1582 1583 1603 1604 1687 1688 1708 1709 +1583 1584 1604 1605 1688 1689 1709 1710 +1584 1585 1605 1606 1689 1690 1710 1711 +1585 1586 1606 1607 1690 1691 1711 1712 +1586 1587 1607 1608 1691 1692 1712 1713 +1587 1588 1608 1609 1692 1693 1713 1714 +1588 1589 1609 1610 1693 1694 1714 1715 +1589 1590 1610 1611 1694 1695 1715 1716 +1590 1591 1611 1612 1695 1696 1716 1717 +1591 1592 1612 1613 1696 1697 1717 1718 +1592 1593 1613 1614 1697 1698 1718 1719 +1593 1594 1614 1615 1698 1699 1719 1720 +1594 1595 1615 1616 1699 1700 1720 1721 +1596 1597 1617 1618 1701 1702 1722 1723 +1597 1598 1618 1619 1702 1703 1723 1724 +1598 1599 1619 1620 1703 1704 1724 1725 +1599 1600 1620 1621 1704 1705 1725 1726 +1600 1601 1621 1622 1705 1706 1726 1727 +1601 1602 1622 1623 1706 1707 1727 1728 +1602 1603 1623 1624 1707 1708 1728 1729 +1603 1604 1624 1625 1708 1709 1729 1730 +1604 1605 1625 1626 1709 1710 1730 1731 +1605 1606 1626 1627 1710 1711 1731 1732 +1606 1607 1627 1628 1711 1712 1732 1733 +1607 1608 1628 1629 1712 1713 1733 1734 +1608 1609 1629 1630 1713 1714 1734 1735 +1609 1610 1630 1631 1714 1715 1735 1736 +1610 1611 1631 1632 1715 1716 1736 1737 +1611 1612 1632 1633 1716 1717 1737 1738 +1612 1613 1633 1634 1717 1718 1738 1739 +1613 1614 1634 1635 1718 1719 1739 1740 +1614 1615 1635 1636 1719 1720 1740 1741 +1615 1616 1636 1637 1720 1721 1741 1742 +1617 1618 1638 1639 1722 1723 1743 1744 +1618 1619 1639 1640 1723 1724 1744 1745 +1619 1620 1640 1641 1724 1725 1745 1746 +1620 1621 1641 1642 1725 1726 1746 1747 +1621 1622 1642 1643 1726 1727 1747 1748 +1622 1623 1643 1644 1727 1728 1748 1749 +1623 1624 1644 1645 1728 1729 1749 1750 +1624 1625 1645 1646 1729 1730 1750 1751 +1625 1626 1646 1647 1730 1731 1751 1752 +1626 1627 1647 1648 1731 1732 1752 1753 +1627 1628 1648 1649 1732 1733 1753 1754 +1628 1629 1649 1650 1733 1734 1754 1755 +1629 1630 1650 1651 1734 1735 1755 1756 +1630 1631 1651 1652 1735 1736 1756 1757 +1631 1632 1652 1653 1736 1737 1757 1758 +1632 1633 1653 1654 1737 1738 1758 1759 +1633 1634 1654 1655 1738 1739 1759 1760 +1634 1635 1655 1656 1739 1740 1760 1761 +1635 1636 1656 1657 1740 1741 1761 1762 +1636 1637 1657 1658 1741 1742 1762 1763 +1638 1639 1659 1660 1743 1744 1764 1765 +1639 1640 1660 1661 1744 1745 1765 1766 +1640 1641 1661 1662 1745 1746 1766 1767 +1641 1642 1662 1663 1746 1747 1767 1768 +1642 1643 1663 1664 1747 1748 1768 1769 +1643 1644 1664 1665 1748 1749 1769 1770 +1644 1645 1665 1666 1749 1750 1770 1771 +1645 1646 1666 1667 1750 1751 1771 1772 +1646 1647 1667 1668 1751 1752 1772 1773 +1647 1648 1668 1669 1752 1753 1773 1774 +1648 1649 1669 1670 1753 1754 1774 1775 +1649 1650 1670 1671 1754 1755 1775 1776 +1650 1651 1671 1672 1755 1756 1776 1777 +1651 1652 1672 1673 1756 1757 1777 1778 +1652 1653 1673 1674 1757 1758 1778 1779 +1653 1654 1674 1675 1758 1759 1779 1780 +1654 1655 1675 1676 1759 1760 1780 1781 +1655 1656 1676 1677 1760 1761 1781 1782 +1656 1657 1677 1678 1761 1762 1782 1783 +1657 1658 1678 1679 1762 1763 1783 1784 +1680 1681 1701 1702 1785 1786 1806 1807 +1681 1682 1702 1703 1786 1787 1807 1808 +1682 1683 1703 1704 1787 1788 1808 1809 +1683 1684 1704 1705 1788 1789 1809 1810 +1684 1685 1705 1706 1789 1790 1810 1811 +1685 1686 1706 1707 1790 1791 1811 1812 +1686 1687 1707 1708 1791 1792 1812 1813 +1687 1688 1708 1709 1792 1793 1813 1814 +1688 1689 1709 1710 1793 1794 1814 1815 +1689 1690 1710 1711 1794 1795 1815 1816 +1690 1691 1711 1712 1795 1796 1816 1817 +1691 1692 1712 1713 1796 1797 1817 1818 +1692 1693 1713 1714 1797 1798 1818 1819 +1693 1694 1714 1715 1798 1799 1819 1820 +1694 1695 1715 1716 1799 1800 1820 1821 +1695 1696 1716 1717 1800 1801 1821 1822 +1696 1697 1717 1718 1801 1802 1822 1823 +1697 1698 1718 1719 1802 1803 1823 1824 +1698 1699 1719 1720 1803 1804 1824 1825 +1699 1700 1720 1721 1804 1805 1825 1826 +1701 1702 1722 1723 1806 1807 1827 1828 +1702 1703 1723 1724 1807 1808 1828 1829 +1703 1704 1724 1725 1808 1809 1829 1830 +1704 1705 1725 1726 1809 1810 1830 1831 +1705 1706 1726 1727 1810 1811 1831 1832 +1706 1707 1727 1728 1811 1812 1832 1833 +1707 1708 1728 1729 1812 1813 1833 1834 +1708 1709 1729 1730 1813 1814 1834 1835 +1709 1710 1730 1731 1814 1815 1835 1836 +1710 1711 1731 1732 1815 1816 1836 1837 +1711 1712 1732 1733 1816 1817 1837 1838 +1712 1713 1733 1734 1817 1818 1838 1839 +1713 1714 1734 1735 1818 1819 1839 1840 +1714 1715 1735 1736 1819 1820 1840 1841 +1715 1716 1736 1737 1820 1821 1841 1842 +1716 1717 1737 1738 1821 1822 1842 1843 +1717 1718 1738 1739 1822 1823 1843 1844 +1718 1719 1739 1740 1823 1824 1844 1845 +1719 1720 1740 1741 1824 1825 1845 1846 +1720 1721 1741 1742 1825 1826 1846 1847 +1722 1723 1743 1744 1827 1828 1848 1849 +1723 1724 1744 1745 1828 1829 1849 1850 +1724 1725 1745 1746 1829 1830 1850 1851 +1725 1726 1746 1747 1830 1831 1851 1852 +1726 1727 1747 1748 1831 1832 1852 1853 +1727 1728 1748 1749 1832 1833 1853 1854 +1728 1729 1749 1750 1833 1834 1854 1855 +1729 1730 1750 1751 1834 1835 1855 1856 +1730 1731 1751 1752 1835 1836 1856 1857 +1731 1732 1752 1753 1836 1837 1857 1858 +1732 1733 1753 1754 1837 1838 1858 1859 +1733 1734 1754 1755 1838 1839 1859 1860 +1734 1735 1755 1756 1839 1840 1860 1861 +1735 1736 1756 1757 1840 1841 1861 1862 +1736 1737 1757 1758 1841 1842 1862 1863 +1737 1738 1758 1759 1842 1843 1863 1864 +1738 1739 1759 1760 1843 1844 1864 1865 +1739 1740 1760 1761 1844 1845 1865 1866 +1740 1741 1761 1762 1845 1846 1866 1867 +1741 1742 1762 1763 1846 1847 1867 1868 +1743 1744 1764 1765 1848 1849 1869 1870 +1744 1745 1765 1766 1849 1850 1870 1871 +1745 1746 1766 1767 1850 1851 1871 1872 +1746 1747 1767 1768 1851 1852 1872 1873 +1747 1748 1768 1769 1852 1853 1873 1874 +1748 1749 1769 1770 1853 1854 1874 1875 +1749 1750 1770 1771 1854 1855 1875 1876 +1750 1751 1771 1772 1855 1856 1876 1877 +1751 1752 1772 1773 1856 1857 1877 1878 +1752 1753 1773 1774 1857 1858 1878 1879 +1753 1754 1774 1775 1858 1859 1879 1880 +1754 1755 1775 1776 1859 1860 1880 1881 +1755 1756 1776 1777 1860 1861 1881 1882 +1756 1757 1777 1778 1861 1862 1882 1883 +1757 1758 1778 1779 1862 1863 1883 1884 +1758 1759 1779 1780 1863 1864 1884 1885 +1759 1760 1780 1781 1864 1865 1885 1886 +1760 1761 1781 1782 1865 1866 1886 1887 +1761 1762 1782 1783 1866 1867 1887 1888 +1762 1763 1783 1784 1867 1868 1888 1889 +1785 1786 1806 1807 1890 1891 1911 1912 +1786 1787 1807 1808 1891 1892 1912 1913 +1787 1788 1808 1809 1892 1893 1913 1914 +1788 1789 1809 1810 1893 1894 1914 1915 +1789 1790 1810 1811 1894 1895 1915 1916 +1790 1791 1811 1812 1895 1896 1916 1917 +1791 1792 1812 1813 1896 1897 1917 1918 +1792 1793 1813 1814 1897 1898 1918 1919 +1793 1794 1814 1815 1898 1899 1919 1920 +1794 1795 1815 1816 1899 1900 1920 1921 +1795 1796 1816 1817 1900 1901 1921 1922 +1796 1797 1817 1818 1901 1902 1922 1923 +1797 1798 1818 1819 1902 1903 1923 1924 +1798 1799 1819 1820 1903 1904 1924 1925 +1799 1800 1820 1821 1904 1905 1925 1926 +1800 1801 1821 1822 1905 1906 1926 1927 +1801 1802 1822 1823 1906 1907 1927 1928 +1802 1803 1823 1824 1907 1908 1928 1929 +1803 1804 1824 1825 1908 1909 1929 1930 +1804 1805 1825 1826 1909 1910 1930 1931 +1806 1807 1827 1828 1911 1912 1932 1933 +1807 1808 1828 1829 1912 1913 1933 1934 +1808 1809 1829 1830 1913 1914 1934 1935 +1809 1810 1830 1831 1914 1915 1935 1936 +1810 1811 1831 1832 1915 1916 1936 1937 +1811 1812 1832 1833 1916 1917 1937 1938 +1812 1813 1833 1834 1917 1918 1938 1939 +1813 1814 1834 1835 1918 1919 1939 1940 +1814 1815 1835 1836 1919 1920 1940 1941 +1815 1816 1836 1837 1920 1921 1941 1942 +1816 1817 1837 1838 1921 1922 1942 1943 +1817 1818 1838 1839 1922 1923 1943 1944 +1818 1819 1839 1840 1923 1924 1944 1945 +1819 1820 1840 1841 1924 1925 1945 1946 +1820 1821 1841 1842 1925 1926 1946 1947 +1821 1822 1842 1843 1926 1927 1947 1948 +1822 1823 1843 1844 1927 1928 1948 1949 +1823 1824 1844 1845 1928 1929 1949 1950 +1824 1825 1845 1846 1929 1930 1950 1951 +1825 1826 1846 1847 1930 1931 1951 1952 +1827 1828 1848 1849 1932 1933 1953 1954 +1828 1829 1849 1850 1933 1934 1954 1955 +1829 1830 1850 1851 1934 1935 1955 1956 +1830 1831 1851 1852 1935 1936 1956 1957 +1831 1832 1852 1853 1936 1937 1957 1958 +1832 1833 1853 1854 1937 1938 1958 1959 +1833 1834 1854 1855 1938 1939 1959 1960 +1834 1835 1855 1856 1939 1940 1960 1961 +1835 1836 1856 1857 1940 1941 1961 1962 +1836 1837 1857 1858 1941 1942 1962 1963 +1837 1838 1858 1859 1942 1943 1963 1964 +1838 1839 1859 1860 1943 1944 1964 1965 +1839 1840 1860 1861 1944 1945 1965 1966 +1840 1841 1861 1862 1945 1946 1966 1967 +1841 1842 1862 1863 1946 1947 1967 1968 +1842 1843 1863 1864 1947 1948 1968 1969 +1843 1844 1864 1865 1948 1949 1969 1970 +1844 1845 1865 1866 1949 1950 1970 1971 +1845 1846 1866 1867 1950 1951 1971 1972 +1846 1847 1867 1868 1951 1952 1972 1973 +1848 1849 1869 1870 1953 1954 1974 1975 +1849 1850 1870 1871 1954 1955 1975 1976 +1850 1851 1871 1872 1955 1956 1976 1977 +1851 1852 1872 1873 1956 1957 1977 1978 +1852 1853 1873 1874 1957 1958 1978 1979 +1853 1854 1874 1875 1958 1959 1979 1980 +1854 1855 1875 1876 1959 1960 1980 1981 +1855 1856 1876 1877 1960 1961 1981 1982 +1856 1857 1877 1878 1961 1962 1982 1983 +1857 1858 1878 1879 1962 1963 1983 1984 +1858 1859 1879 1880 1963 1964 1984 1985 +1859 1860 1880 1881 1964 1965 1985 1986 +1860 1861 1881 1882 1965 1966 1986 1987 +1861 1862 1882 1883 1966 1967 1987 1988 +1862 1863 1883 1884 1967 1968 1988 1989 +1863 1864 1884 1885 1968 1969 1989 1990 +1864 1865 1885 1886 1969 1970 1990 1991 +1865 1866 1886 1887 1970 1971 1991 1992 +1866 1867 1887 1888 1971 1972 1992 1993 +1867 1868 1888 1889 1972 1973 1993 1994 +1890 1891 1911 1912 1995 1996 2016 2017 +1891 1892 1912 1913 1996 1997 2017 2018 +1892 1893 1913 1914 1997 1998 2018 2019 +1893 1894 1914 1915 1998 1999 2019 2020 +1894 1895 1915 1916 1999 2000 2020 2021 +1895 1896 1916 1917 2000 2001 2021 2022 +1896 1897 1917 1918 2001 2002 2022 2023 +1897 1898 1918 1919 2002 2003 2023 2024 +1898 1899 1919 1920 2003 2004 2024 2025 +1899 1900 1920 1921 2004 2005 2025 2026 +1900 1901 1921 1922 2005 2006 2026 2027 +1901 1902 1922 1923 2006 2007 2027 2028 +1902 1903 1923 1924 2007 2008 2028 2029 +1903 1904 1924 1925 2008 2009 2029 2030 +1904 1905 1925 1926 2009 2010 2030 2031 +1905 1906 1926 1927 2010 2011 2031 2032 +1906 1907 1927 1928 2011 2012 2032 2033 +1907 1908 1928 1929 2012 2013 2033 2034 +1908 1909 1929 1930 2013 2014 2034 2035 +1909 1910 1930 1931 2014 2015 2035 2036 +1911 1912 1932 1933 2016 2017 2037 2038 +1912 1913 1933 1934 2017 2018 2038 2039 +1913 1914 1934 1935 2018 2019 2039 2040 +1914 1915 1935 1936 2019 2020 2040 2041 +1915 1916 1936 1937 2020 2021 2041 2042 +1916 1917 1937 1938 2021 2022 2042 2043 +1917 1918 1938 1939 2022 2023 2043 2044 +1918 1919 1939 1940 2023 2024 2044 2045 +1919 1920 1940 1941 2024 2025 2045 2046 +1920 1921 1941 1942 2025 2026 2046 2047 +1921 1922 1942 1943 2026 2027 2047 2048 +1922 1923 1943 1944 2027 2028 2048 2049 +1923 1924 1944 1945 2028 2029 2049 2050 +1924 1925 1945 1946 2029 2030 2050 2051 +1925 1926 1946 1947 2030 2031 2051 2052 +1926 1927 1947 1948 2031 2032 2052 2053 +1927 1928 1948 1949 2032 2033 2053 2054 +1928 1929 1949 1950 2033 2034 2054 2055 +1929 1930 1950 1951 2034 2035 2055 2056 +1930 1931 1951 1952 2035 2036 2056 2057 +1932 1933 1953 1954 2037 2038 2058 2059 +1933 1934 1954 1955 2038 2039 2059 2060 +1934 1935 1955 1956 2039 2040 2060 2061 +1935 1936 1956 1957 2040 2041 2061 2062 +1936 1937 1957 1958 2041 2042 2062 2063 +1937 1938 1958 1959 2042 2043 2063 2064 +1938 1939 1959 1960 2043 2044 2064 2065 +1939 1940 1960 1961 2044 2045 2065 2066 +1940 1941 1961 1962 2045 2046 2066 2067 +1941 1942 1962 1963 2046 2047 2067 2068 +1942 1943 1963 1964 2047 2048 2068 2069 +1943 1944 1964 1965 2048 2049 2069 2070 +1944 1945 1965 1966 2049 2050 2070 2071 +1945 1946 1966 1967 2050 2051 2071 2072 +1946 1947 1967 1968 2051 2052 2072 2073 +1947 1948 1968 1969 2052 2053 2073 2074 +1948 1949 1969 1970 2053 2054 2074 2075 +1949 1950 1970 1971 2054 2055 2075 2076 +1950 1951 1971 1972 2055 2056 2076 2077 +1951 1952 1972 1973 2056 2057 2077 2078 +1953 1954 1974 1975 2058 2059 2079 2080 +1954 1955 1975 1976 2059 2060 2080 2081 +1955 1956 1976 1977 2060 2061 2081 2082 +1956 1957 1977 1978 2061 2062 2082 2083 +1957 1958 1978 1979 2062 2063 2083 2084 +1958 1959 1979 1980 2063 2064 2084 2085 +1959 1960 1980 1981 2064 2065 2085 2086 +1960 1961 1981 1982 2065 2066 2086 2087 +1961 1962 1982 1983 2066 2067 2087 2088 +1962 1963 1983 1984 2067 2068 2088 2089 +1963 1964 1984 1985 2068 2069 2089 2090 +1964 1965 1985 1986 2069 2070 2090 2091 +1965 1966 1986 1987 2070 2071 2091 2092 +1966 1967 1987 1988 2071 2072 2092 2093 +1967 1968 1988 1989 2072 2073 2093 2094 +1968 1969 1989 1990 2073 2074 2094 2095 +1969 1970 1990 1991 2074 2075 2095 2096 +1970 1971 1991 1992 2075 2076 2096 2097 +1971 1972 1992 1993 2076 2077 2097 2098 +1972 1973 1993 1994 2077 2078 2098 2099 +1995 1996 2016 2017 2100 2101 2121 2122 +1996 1997 2017 2018 2101 2102 2122 2123 +1997 1998 2018 2019 2102 2103 2123 2124 +1998 1999 2019 2020 2103 2104 2124 2125 +1999 2000 2020 2021 2104 2105 2125 2126 +2000 2001 2021 2022 2105 2106 2126 2127 +2001 2002 2022 2023 2106 2107 2127 2128 +2002 2003 2023 2024 2107 2108 2128 2129 +2003 2004 2024 2025 2108 2109 2129 2130 +2004 2005 2025 2026 2109 2110 2130 2131 +2005 2006 2026 2027 2110 2111 2131 2132 +2006 2007 2027 2028 2111 2112 2132 2133 +2007 2008 2028 2029 2112 2113 2133 2134 +2008 2009 2029 2030 2113 2114 2134 2135 +2009 2010 2030 2031 2114 2115 2135 2136 +2010 2011 2031 2032 2115 2116 2136 2137 +2011 2012 2032 2033 2116 2117 2137 2138 +2012 2013 2033 2034 2117 2118 2138 2139 +2013 2014 2034 2035 2118 2119 2139 2140 +2014 2015 2035 2036 2119 2120 2140 2141 +2016 2017 2037 2038 2121 2122 2142 2143 +2017 2018 2038 2039 2122 2123 2143 2144 +2018 2019 2039 2040 2123 2124 2144 2145 +2019 2020 2040 2041 2124 2125 2145 2146 +2020 2021 2041 2042 2125 2126 2146 2147 +2021 2022 2042 2043 2126 2127 2147 2148 +2022 2023 2043 2044 2127 2128 2148 2149 +2023 2024 2044 2045 2128 2129 2149 2150 +2024 2025 2045 2046 2129 2130 2150 2151 +2025 2026 2046 2047 2130 2131 2151 2152 +2026 2027 2047 2048 2131 2132 2152 2153 +2027 2028 2048 2049 2132 2133 2153 2154 +2028 2029 2049 2050 2133 2134 2154 2155 +2029 2030 2050 2051 2134 2135 2155 2156 +2030 2031 2051 2052 2135 2136 2156 2157 +2031 2032 2052 2053 2136 2137 2157 2158 +2032 2033 2053 2054 2137 2138 2158 2159 +2033 2034 2054 2055 2138 2139 2159 2160 +2034 2035 2055 2056 2139 2140 2160 2161 +2035 2036 2056 2057 2140 2141 2161 2162 +2037 2038 2058 2059 2142 2143 2163 2164 +2038 2039 2059 2060 2143 2144 2164 2165 +2039 2040 2060 2061 2144 2145 2165 2166 +2040 2041 2061 2062 2145 2146 2166 2167 +2041 2042 2062 2063 2146 2147 2167 2168 +2042 2043 2063 2064 2147 2148 2168 2169 +2043 2044 2064 2065 2148 2149 2169 2170 +2044 2045 2065 2066 2149 2150 2170 2171 +2045 2046 2066 2067 2150 2151 2171 2172 +2046 2047 2067 2068 2151 2152 2172 2173 +2047 2048 2068 2069 2152 2153 2173 2174 +2048 2049 2069 2070 2153 2154 2174 2175 +2049 2050 2070 2071 2154 2155 2175 2176 +2050 2051 2071 2072 2155 2156 2176 2177 +2051 2052 2072 2073 2156 2157 2177 2178 +2052 2053 2073 2074 2157 2158 2178 2179 +2053 2054 2074 2075 2158 2159 2179 2180 +2054 2055 2075 2076 2159 2160 2180 2181 +2055 2056 2076 2077 2160 2161 2181 2182 +2056 2057 2077 2078 2161 2162 2182 2183 +2058 2059 2079 2080 2163 2164 2184 2185 +2059 2060 2080 2081 2164 2165 2185 2186 +2060 2061 2081 2082 2165 2166 2186 2187 +2061 2062 2082 2083 2166 2167 2187 2188 +2062 2063 2083 2084 2167 2168 2188 2189 +2063 2064 2084 2085 2168 2169 2189 2190 +2064 2065 2085 2086 2169 2170 2190 2191 +2065 2066 2086 2087 2170 2171 2191 2192 +2066 2067 2087 2088 2171 2172 2192 2193 +2067 2068 2088 2089 2172 2173 2193 2194 +2068 2069 2089 2090 2173 2174 2194 2195 +2069 2070 2090 2091 2174 2175 2195 2196 +2070 2071 2091 2092 2175 2176 2196 2197 +2071 2072 2092 2093 2176 2177 2197 2198 +2072 2073 2093 2094 2177 2178 2198 2199 +2073 2074 2094 2095 2178 2179 2199 2200 +2074 2075 2095 2096 2179 2180 2200 2201 +2075 2076 2096 2097 2180 2181 2201 2202 +2076 2077 2097 2098 2181 2182 2202 2203 +2077 2078 2098 2099 2182 2183 2203 2204 +2100 2101 2121 2122 2205 2206 2226 2227 +2101 2102 2122 2123 2206 2207 2227 2228 +2102 2103 2123 2124 2207 2208 2228 2229 +2103 2104 2124 2125 2208 2209 2229 2230 +2104 2105 2125 2126 2209 2210 2230 2231 +2105 2106 2126 2127 2210 2211 2231 2232 +2106 2107 2127 2128 2211 2212 2232 2233 +2107 2108 2128 2129 2212 2213 2233 2234 +2108 2109 2129 2130 2213 2214 2234 2235 +2109 2110 2130 2131 2214 2215 2235 2236 +2110 2111 2131 2132 2215 2216 2236 2237 +2111 2112 2132 2133 2216 2217 2237 2238 +2112 2113 2133 2134 2217 2218 2238 2239 +2113 2114 2134 2135 2218 2219 2239 2240 +2114 2115 2135 2136 2219 2220 2240 2241 +2115 2116 2136 2137 2220 2221 2241 2242 +2116 2117 2137 2138 2221 2222 2242 2243 +2117 2118 2138 2139 2222 2223 2243 2244 +2118 2119 2139 2140 2223 2224 2244 2245 +2119 2120 2140 2141 2224 2225 2245 2246 +2121 2122 2142 2143 2226 2227 2247 2248 +2122 2123 2143 2144 2227 2228 2248 2249 +2123 2124 2144 2145 2228 2229 2249 2250 +2124 2125 2145 2146 2229 2230 2250 2251 +2125 2126 2146 2147 2230 2231 2251 2252 +2126 2127 2147 2148 2231 2232 2252 2253 +2127 2128 2148 2149 2232 2233 2253 2254 +2128 2129 2149 2150 2233 2234 2254 2255 +2129 2130 2150 2151 2234 2235 2255 2256 +2130 2131 2151 2152 2235 2236 2256 2257 +2131 2132 2152 2153 2236 2237 2257 2258 +2132 2133 2153 2154 2237 2238 2258 2259 +2133 2134 2154 2155 2238 2239 2259 2260 +2134 2135 2155 2156 2239 2240 2260 2261 +2135 2136 2156 2157 2240 2241 2261 2262 +2136 2137 2157 2158 2241 2242 2262 2263 +2137 2138 2158 2159 2242 2243 2263 2264 +2138 2139 2159 2160 2243 2244 2264 2265 +2139 2140 2160 2161 2244 2245 2265 2266 +2140 2141 2161 2162 2245 2246 2266 2267 +2142 2143 2163 2164 2247 2248 2268 2269 +2143 2144 2164 2165 2248 2249 2269 2270 +2144 2145 2165 2166 2249 2250 2270 2271 +2145 2146 2166 2167 2250 2251 2271 2272 +2146 2147 2167 2168 2251 2252 2272 2273 +2147 2148 2168 2169 2252 2253 2273 2274 +2148 2149 2169 2170 2253 2254 2274 2275 +2149 2150 2170 2171 2254 2255 2275 2276 +2150 2151 2171 2172 2255 2256 2276 2277 +2151 2152 2172 2173 2256 2257 2277 2278 +2152 2153 2173 2174 2257 2258 2278 2279 +2153 2154 2174 2175 2258 2259 2279 2280 +2154 2155 2175 2176 2259 2260 2280 2281 +2155 2156 2176 2177 2260 2261 2281 2282 +2156 2157 2177 2178 2261 2262 2282 2283 +2157 2158 2178 2179 2262 2263 2283 2284 +2158 2159 2179 2180 2263 2264 2284 2285 +2159 2160 2180 2181 2264 2265 2285 2286 +2160 2161 2181 2182 2265 2266 2286 2287 +2161 2162 2182 2183 2266 2267 2287 2288 +2163 2164 2184 2185 2268 2269 2289 2290 +2164 2165 2185 2186 2269 2270 2290 2291 +2165 2166 2186 2187 2270 2271 2291 2292 +2166 2167 2187 2188 2271 2272 2292 2293 +2167 2168 2188 2189 2272 2273 2293 2294 +2168 2169 2189 2190 2273 2274 2294 2295 +2169 2170 2190 2191 2274 2275 2295 2296 +2170 2171 2191 2192 2275 2276 2296 2297 +2171 2172 2192 2193 2276 2277 2297 2298 +2172 2173 2193 2194 2277 2278 2298 2299 +2173 2174 2194 2195 2278 2279 2299 2300 +2174 2175 2195 2196 2279 2280 2300 2301 +2175 2176 2196 2197 2280 2281 2301 2302 +2176 2177 2197 2198 2281 2282 2302 2303 +2177 2178 2198 2199 2282 2283 2303 2304 +2178 2179 2199 2200 2283 2284 2304 2305 +2179 2180 2200 2201 2284 2285 2305 2306 +2180 2181 2201 2202 2285 2286 2306 2307 +2181 2182 2202 2203 2286 2287 2307 2308 +2182 2183 2203 2204 2287 2288 2308 2309 +2205 2206 2226 2227 2310 2311 2331 2332 +2206 2207 2227 2228 2311 2312 2332 2333 +2207 2208 2228 2229 2312 2313 2333 2334 +2208 2209 2229 2230 2313 2314 2334 2335 +2209 2210 2230 2231 2314 2315 2335 2336 +2210 2211 2231 2232 2315 2316 2336 2337 +2211 2212 2232 2233 2316 2317 2337 2338 +2212 2213 2233 2234 2317 2318 2338 2339 +2213 2214 2234 2235 2318 2319 2339 2340 +2214 2215 2235 2236 2319 2320 2340 2341 +2215 2216 2236 2237 2320 2321 2341 2342 +2216 2217 2237 2238 2321 2322 2342 2343 +2217 2218 2238 2239 2322 2323 2343 2344 +2218 2219 2239 2240 2323 2324 2344 2345 +2219 2220 2240 2241 2324 2325 2345 2346 +2220 2221 2241 2242 2325 2326 2346 2347 +2221 2222 2242 2243 2326 2327 2347 2348 +2222 2223 2243 2244 2327 2328 2348 2349 +2223 2224 2244 2245 2328 2329 2349 2350 +2224 2225 2245 2246 2329 2330 2350 2351 +2226 2227 2247 2248 2331 2332 2352 2353 +2227 2228 2248 2249 2332 2333 2353 2354 +2228 2229 2249 2250 2333 2334 2354 2355 +2229 2230 2250 2251 2334 2335 2355 2356 +2230 2231 2251 2252 2335 2336 2356 2357 +2231 2232 2252 2253 2336 2337 2357 2358 +2232 2233 2253 2254 2337 2338 2358 2359 +2233 2234 2254 2255 2338 2339 2359 2360 +2234 2235 2255 2256 2339 2340 2360 2361 +2235 2236 2256 2257 2340 2341 2361 2362 +2236 2237 2257 2258 2341 2342 2362 2363 +2237 2238 2258 2259 2342 2343 2363 2364 +2238 2239 2259 2260 2343 2344 2364 2365 +2239 2240 2260 2261 2344 2345 2365 2366 +2240 2241 2261 2262 2345 2346 2366 2367 +2241 2242 2262 2263 2346 2347 2367 2368 +2242 2243 2263 2264 2347 2348 2368 2369 +2243 2244 2264 2265 2348 2349 2369 2370 +2244 2245 2265 2266 2349 2350 2370 2371 +2245 2246 2266 2267 2350 2351 2371 2372 +2247 2248 2268 2269 2352 2353 2373 2374 +2248 2249 2269 2270 2353 2354 2374 2375 +2249 2250 2270 2271 2354 2355 2375 2376 +2250 2251 2271 2272 2355 2356 2376 2377 +2251 2252 2272 2273 2356 2357 2377 2378 +2252 2253 2273 2274 2357 2358 2378 2379 +2253 2254 2274 2275 2358 2359 2379 2380 +2254 2255 2275 2276 2359 2360 2380 2381 +2255 2256 2276 2277 2360 2361 2381 2382 +2256 2257 2277 2278 2361 2362 2382 2383 +2257 2258 2278 2279 2362 2363 2383 2384 +2258 2259 2279 2280 2363 2364 2384 2385 +2259 2260 2280 2281 2364 2365 2385 2386 +2260 2261 2281 2282 2365 2366 2386 2387 +2261 2262 2282 2283 2366 2367 2387 2388 +2262 2263 2283 2284 2367 2368 2388 2389 +2263 2264 2284 2285 2368 2369 2389 2390 +2264 2265 2285 2286 2369 2370 2390 2391 +2265 2266 2286 2287 2370 2371 2391 2392 +2266 2267 2287 2288 2371 2372 2392 2393 +2268 2269 2289 2290 2373 2374 2394 2395 +2269 2270 2290 2291 2374 2375 2395 2396 +2270 2271 2291 2292 2375 2376 2396 2397 +2271 2272 2292 2293 2376 2377 2397 2398 +2272 2273 2293 2294 2377 2378 2398 2399 +2273 2274 2294 2295 2378 2379 2399 2400 +2274 2275 2295 2296 2379 2380 2400 2401 +2275 2276 2296 2297 2380 2381 2401 2402 +2276 2277 2297 2298 2381 2382 2402 2403 +2277 2278 2298 2299 2382 2383 2403 2404 +2278 2279 2299 2300 2383 2384 2404 2405 +2279 2280 2300 2301 2384 2385 2405 2406 +2280 2281 2301 2302 2385 2386 2406 2407 +2281 2282 2302 2303 2386 2387 2407 2408 +2282 2283 2303 2304 2387 2388 2408 2409 +2283 2284 2304 2305 2388 2389 2409 2410 +2284 2285 2305 2306 2389 2390 2410 2411 +2285 2286 2306 2307 2390 2391 2411 2412 +2286 2287 2307 2308 2391 2392 2412 2413 +2287 2288 2308 2309 2392 2393 2413 2414 +2310 2311 2331 2332 2415 2416 2436 2437 +2311 2312 2332 2333 2416 2417 2437 2438 +2312 2313 2333 2334 2417 2418 2438 2439 +2313 2314 2334 2335 2418 2419 2439 2440 +2314 2315 2335 2336 2419 2420 2440 2441 +2315 2316 2336 2337 2420 2421 2441 2442 +2316 2317 2337 2338 2421 2422 2442 2443 +2317 2318 2338 2339 2422 2423 2443 2444 +2318 2319 2339 2340 2423 2424 2444 2445 +2319 2320 2340 2341 2424 2425 2445 2446 +2320 2321 2341 2342 2425 2426 2446 2447 +2321 2322 2342 2343 2426 2427 2447 2448 +2322 2323 2343 2344 2427 2428 2448 2449 +2323 2324 2344 2345 2428 2429 2449 2450 +2324 2325 2345 2346 2429 2430 2450 2451 +2325 2326 2346 2347 2430 2431 2451 2452 +2326 2327 2347 2348 2431 2432 2452 2453 +2327 2328 2348 2349 2432 2433 2453 2454 +2328 2329 2349 2350 2433 2434 2454 2455 +2329 2330 2350 2351 2434 2435 2455 2456 +2331 2332 2352 2353 2436 2437 2457 2458 +2332 2333 2353 2354 2437 2438 2458 2459 +2333 2334 2354 2355 2438 2439 2459 2460 +2334 2335 2355 2356 2439 2440 2460 2461 +2335 2336 2356 2357 2440 2441 2461 2462 +2336 2337 2357 2358 2441 2442 2462 2463 +2337 2338 2358 2359 2442 2443 2463 2464 +2338 2339 2359 2360 2443 2444 2464 2465 +2339 2340 2360 2361 2444 2445 2465 2466 +2340 2341 2361 2362 2445 2446 2466 2467 +2341 2342 2362 2363 2446 2447 2467 2468 +2342 2343 2363 2364 2447 2448 2468 2469 +2343 2344 2364 2365 2448 2449 2469 2470 +2344 2345 2365 2366 2449 2450 2470 2471 +2345 2346 2366 2367 2450 2451 2471 2472 +2346 2347 2367 2368 2451 2452 2472 2473 +2347 2348 2368 2369 2452 2453 2473 2474 +2348 2349 2369 2370 2453 2454 2474 2475 +2349 2350 2370 2371 2454 2455 2475 2476 +2350 2351 2371 2372 2455 2456 2476 2477 +2352 2353 2373 2374 2457 2458 2478 2479 +2353 2354 2374 2375 2458 2459 2479 2480 +2354 2355 2375 2376 2459 2460 2480 2481 +2355 2356 2376 2377 2460 2461 2481 2482 +2356 2357 2377 2378 2461 2462 2482 2483 +2357 2358 2378 2379 2462 2463 2483 2484 +2358 2359 2379 2380 2463 2464 2484 2485 +2359 2360 2380 2381 2464 2465 2485 2486 +2360 2361 2381 2382 2465 2466 2486 2487 +2361 2362 2382 2383 2466 2467 2487 2488 +2362 2363 2383 2384 2467 2468 2488 2489 +2363 2364 2384 2385 2468 2469 2489 2490 +2364 2365 2385 2386 2469 2470 2490 2491 +2365 2366 2386 2387 2470 2471 2491 2492 +2366 2367 2387 2388 2471 2472 2492 2493 +2367 2368 2388 2389 2472 2473 2493 2494 +2368 2369 2389 2390 2473 2474 2494 2495 +2369 2370 2390 2391 2474 2475 2495 2496 +2370 2371 2391 2392 2475 2476 2496 2497 +2371 2372 2392 2393 2476 2477 2497 2498 +2373 2374 2394 2395 2478 2479 2499 2500 +2374 2375 2395 2396 2479 2480 2500 2501 +2375 2376 2396 2397 2480 2481 2501 2502 +2376 2377 2397 2398 2481 2482 2502 2503 +2377 2378 2398 2399 2482 2483 2503 2504 +2378 2379 2399 2400 2483 2484 2504 2505 +2379 2380 2400 2401 2484 2485 2505 2506 +2380 2381 2401 2402 2485 2486 2506 2507 +2381 2382 2402 2403 2486 2487 2507 2508 +2382 2383 2403 2404 2487 2488 2508 2509 +2383 2384 2404 2405 2488 2489 2509 2510 +2384 2385 2405 2406 2489 2490 2510 2511 +2385 2386 2406 2407 2490 2491 2511 2512 +2386 2387 2407 2408 2491 2492 2512 2513 +2387 2388 2408 2409 2492 2493 2513 2514 +2388 2389 2409 2410 2493 2494 2514 2515 +2389 2390 2410 2411 2494 2495 2515 2516 +2390 2391 2411 2412 2495 2496 2516 2517 +2391 2392 2412 2413 2496 2497 2517 2518 +2392 2393 2413 2414 2497 2498 2518 2519 +2415 2416 2436 2437 2520 2521 2541 2542 +2416 2417 2437 2438 2521 2522 2542 2543 +2417 2418 2438 2439 2522 2523 2543 2544 +2418 2419 2439 2440 2523 2524 2544 2545 +2419 2420 2440 2441 2524 2525 2545 2546 +2420 2421 2441 2442 2525 2526 2546 2547 +2421 2422 2442 2443 2526 2527 2547 2548 +2422 2423 2443 2444 2527 2528 2548 2549 +2423 2424 2444 2445 2528 2529 2549 2550 +2424 2425 2445 2446 2529 2530 2550 2551 +2425 2426 2446 2447 2530 2531 2551 2552 +2426 2427 2447 2448 2531 2532 2552 2553 +2427 2428 2448 2449 2532 2533 2553 2554 +2428 2429 2449 2450 2533 2534 2554 2555 +2429 2430 2450 2451 2534 2535 2555 2556 +2430 2431 2451 2452 2535 2536 2556 2557 +2431 2432 2452 2453 2536 2537 2557 2558 +2432 2433 2453 2454 2537 2538 2558 2559 +2433 2434 2454 2455 2538 2539 2559 2560 +2434 2435 2455 2456 2539 2540 2560 2561 +2436 2437 2457 2458 2541 2542 2562 2563 +2437 2438 2458 2459 2542 2543 2563 2564 +2438 2439 2459 2460 2543 2544 2564 2565 +2439 2440 2460 2461 2544 2545 2565 2566 +2440 2441 2461 2462 2545 2546 2566 2567 +2441 2442 2462 2463 2546 2547 2567 2568 +2442 2443 2463 2464 2547 2548 2568 2569 +2443 2444 2464 2465 2548 2549 2569 2570 +2444 2445 2465 2466 2549 2550 2570 2571 +2445 2446 2466 2467 2550 2551 2571 2572 +2446 2447 2467 2468 2551 2552 2572 2573 +2447 2448 2468 2469 2552 2553 2573 2574 +2448 2449 2469 2470 2553 2554 2574 2575 +2449 2450 2470 2471 2554 2555 2575 2576 +2450 2451 2471 2472 2555 2556 2576 2577 +2451 2452 2472 2473 2556 2557 2577 2578 +2452 2453 2473 2474 2557 2558 2578 2579 +2453 2454 2474 2475 2558 2559 2579 2580 +2454 2455 2475 2476 2559 2560 2580 2581 +2455 2456 2476 2477 2560 2561 2581 2582 +2457 2458 2478 2479 2562 2563 2583 2584 +2458 2459 2479 2480 2563 2564 2584 2585 +2459 2460 2480 2481 2564 2565 2585 2586 +2460 2461 2481 2482 2565 2566 2586 2587 +2461 2462 2482 2483 2566 2567 2587 2588 +2462 2463 2483 2484 2567 2568 2588 2589 +2463 2464 2484 2485 2568 2569 2589 2590 +2464 2465 2485 2486 2569 2570 2590 2591 +2465 2466 2486 2487 2570 2571 2591 2592 +2466 2467 2487 2488 2571 2572 2592 2593 +2467 2468 2488 2489 2572 2573 2593 2594 +2468 2469 2489 2490 2573 2574 2594 2595 +2469 2470 2490 2491 2574 2575 2595 2596 +2470 2471 2491 2492 2575 2576 2596 2597 +2471 2472 2492 2493 2576 2577 2597 2598 +2472 2473 2493 2494 2577 2578 2598 2599 +2473 2474 2494 2495 2578 2579 2599 2600 +2474 2475 2495 2496 2579 2580 2600 2601 +2475 2476 2496 2497 2580 2581 2601 2602 +2476 2477 2497 2498 2581 2582 2602 2603 +2478 2479 2499 2500 2583 2584 2604 2605 +2479 2480 2500 2501 2584 2585 2605 2606 +2480 2481 2501 2502 2585 2586 2606 2607 +2481 2482 2502 2503 2586 2587 2607 2608 +2482 2483 2503 2504 2587 2588 2608 2609 +2483 2484 2504 2505 2588 2589 2609 2610 +2484 2485 2505 2506 2589 2590 2610 2611 +2485 2486 2506 2507 2590 2591 2611 2612 +2486 2487 2507 2508 2591 2592 2612 2613 +2487 2488 2508 2509 2592 2593 2613 2614 +2488 2489 2509 2510 2593 2594 2614 2615 +2489 2490 2510 2511 2594 2595 2615 2616 +2490 2491 2511 2512 2595 2596 2616 2617 +2491 2492 2512 2513 2596 2597 2617 2618 +2492 2493 2513 2514 2597 2598 2618 2619 +2493 2494 2514 2515 2598 2599 2619 2620 +2494 2495 2515 2516 2599 2600 2620 2621 +2495 2496 2516 2517 2600 2601 2621 2622 +2496 2497 2517 2518 2601 2602 2622 2623 +2497 2498 2518 2519 2602 2603 2623 2624 +2520 2521 2541 2542 2625 2626 2646 2647 +2521 2522 2542 2543 2626 2627 2647 2648 +2522 2523 2543 2544 2627 2628 2648 2649 +2523 2524 2544 2545 2628 2629 2649 2650 +2524 2525 2545 2546 2629 2630 2650 2651 +2525 2526 2546 2547 2630 2631 2651 2652 +2526 2527 2547 2548 2631 2632 2652 2653 +2527 2528 2548 2549 2632 2633 2653 2654 +2528 2529 2549 2550 2633 2634 2654 2655 +2529 2530 2550 2551 2634 2635 2655 2656 +2530 2531 2551 2552 2635 2636 2656 2657 +2531 2532 2552 2553 2636 2637 2657 2658 +2532 2533 2553 2554 2637 2638 2658 2659 +2533 2534 2554 2555 2638 2639 2659 2660 +2534 2535 2555 2556 2639 2640 2660 2661 +2535 2536 2556 2557 2640 2641 2661 2662 +2536 2537 2557 2558 2641 2642 2662 2663 +2537 2538 2558 2559 2642 2643 2663 2664 +2538 2539 2559 2560 2643 2644 2664 2665 +2539 2540 2560 2561 2644 2645 2665 2666 +2541 2542 2562 2563 2646 2647 2667 2668 +2542 2543 2563 2564 2647 2648 2668 2669 +2543 2544 2564 2565 2648 2649 2669 2670 +2544 2545 2565 2566 2649 2650 2670 2671 +2545 2546 2566 2567 2650 2651 2671 2672 +2546 2547 2567 2568 2651 2652 2672 2673 +2547 2548 2568 2569 2652 2653 2673 2674 +2548 2549 2569 2570 2653 2654 2674 2675 +2549 2550 2570 2571 2654 2655 2675 2676 +2550 2551 2571 2572 2655 2656 2676 2677 +2551 2552 2572 2573 2656 2657 2677 2678 +2552 2553 2573 2574 2657 2658 2678 2679 +2553 2554 2574 2575 2658 2659 2679 2680 +2554 2555 2575 2576 2659 2660 2680 2681 +2555 2556 2576 2577 2660 2661 2681 2682 +2556 2557 2577 2578 2661 2662 2682 2683 +2557 2558 2578 2579 2662 2663 2683 2684 +2558 2559 2579 2580 2663 2664 2684 2685 +2559 2560 2580 2581 2664 2665 2685 2686 +2560 2561 2581 2582 2665 2666 2686 2687 +2562 2563 2583 2584 2667 2668 2688 2689 +2563 2564 2584 2585 2668 2669 2689 2690 +2564 2565 2585 2586 2669 2670 2690 2691 +2565 2566 2586 2587 2670 2671 2691 2692 +2566 2567 2587 2588 2671 2672 2692 2693 +2567 2568 2588 2589 2672 2673 2693 2694 +2568 2569 2589 2590 2673 2674 2694 2695 +2569 2570 2590 2591 2674 2675 2695 2696 +2570 2571 2591 2592 2675 2676 2696 2697 +2571 2572 2592 2593 2676 2677 2697 2698 +2572 2573 2593 2594 2677 2678 2698 2699 +2573 2574 2594 2595 2678 2679 2699 2700 +2574 2575 2595 2596 2679 2680 2700 2701 +2575 2576 2596 2597 2680 2681 2701 2702 +2576 2577 2597 2598 2681 2682 2702 2703 +2577 2578 2598 2599 2682 2683 2703 2704 +2578 2579 2599 2600 2683 2684 2704 2705 +2579 2580 2600 2601 2684 2685 2705 2706 +2580 2581 2601 2602 2685 2686 2706 2707 +2581 2582 2602 2603 2686 2687 2707 2708 +2583 2584 2604 2605 2688 2689 2709 2710 +2584 2585 2605 2606 2689 2690 2710 2711 +2585 2586 2606 2607 2690 2691 2711 2712 +2586 2587 2607 2608 2691 2692 2712 2713 +2587 2588 2608 2609 2692 2693 2713 2714 +2588 2589 2609 2610 2693 2694 2714 2715 +2589 2590 2610 2611 2694 2695 2715 2716 +2590 2591 2611 2612 2695 2696 2716 2717 +2591 2592 2612 2613 2696 2697 2717 2718 +2592 2593 2613 2614 2697 2698 2718 2719 +2593 2594 2614 2615 2698 2699 2719 2720 +2594 2595 2615 2616 2699 2700 2720 2721 +2595 2596 2616 2617 2700 2701 2721 2722 +2596 2597 2617 2618 2701 2702 2722 2723 +2597 2598 2618 2619 2702 2703 2723 2724 +2598 2599 2619 2620 2703 2704 2724 2725 +2599 2600 2620 2621 2704 2705 2725 2726 +2600 2601 2621 2622 2705 2706 2726 2727 +2601 2602 2622 2623 2706 2707 2727 2728 +2602 2603 2623 2624 2707 2708 2728 2729 +2625 2626 2646 2647 2730 2731 2751 2752 +2626 2627 2647 2648 2731 2732 2752 2753 +2627 2628 2648 2649 2732 2733 2753 2754 +2628 2629 2649 2650 2733 2734 2754 2755 +2629 2630 2650 2651 2734 2735 2755 2756 +2630 2631 2651 2652 2735 2736 2756 2757 +2631 2632 2652 2653 2736 2737 2757 2758 +2632 2633 2653 2654 2737 2738 2758 2759 +2633 2634 2654 2655 2738 2739 2759 2760 +2634 2635 2655 2656 2739 2740 2760 2761 +2635 2636 2656 2657 2740 2741 2761 2762 +2636 2637 2657 2658 2741 2742 2762 2763 +2637 2638 2658 2659 2742 2743 2763 2764 +2638 2639 2659 2660 2743 2744 2764 2765 +2639 2640 2660 2661 2744 2745 2765 2766 +2640 2641 2661 2662 2745 2746 2766 2767 +2641 2642 2662 2663 2746 2747 2767 2768 +2642 2643 2663 2664 2747 2748 2768 2769 +2643 2644 2664 2665 2748 2749 2769 2770 +2644 2645 2665 2666 2749 2750 2770 2771 +2646 2647 2667 2668 2751 2752 2772 2773 +2647 2648 2668 2669 2752 2753 2773 2774 +2648 2649 2669 2670 2753 2754 2774 2775 +2649 2650 2670 2671 2754 2755 2775 2776 +2650 2651 2671 2672 2755 2756 2776 2777 +2651 2652 2672 2673 2756 2757 2777 2778 +2652 2653 2673 2674 2757 2758 2778 2779 +2653 2654 2674 2675 2758 2759 2779 2780 +2654 2655 2675 2676 2759 2760 2780 2781 +2655 2656 2676 2677 2760 2761 2781 2782 +2656 2657 2677 2678 2761 2762 2782 2783 +2657 2658 2678 2679 2762 2763 2783 2784 +2658 2659 2679 2680 2763 2764 2784 2785 +2659 2660 2680 2681 2764 2765 2785 2786 +2660 2661 2681 2682 2765 2766 2786 2787 +2661 2662 2682 2683 2766 2767 2787 2788 +2662 2663 2683 2684 2767 2768 2788 2789 +2663 2664 2684 2685 2768 2769 2789 2790 +2664 2665 2685 2686 2769 2770 2790 2791 +2665 2666 2686 2687 2770 2771 2791 2792 +2667 2668 2688 2689 2772 2773 2793 2794 +2668 2669 2689 2690 2773 2774 2794 2795 +2669 2670 2690 2691 2774 2775 2795 2796 +2670 2671 2691 2692 2775 2776 2796 2797 +2671 2672 2692 2693 2776 2777 2797 2798 +2672 2673 2693 2694 2777 2778 2798 2799 +2673 2674 2694 2695 2778 2779 2799 2800 +2674 2675 2695 2696 2779 2780 2800 2801 +2675 2676 2696 2697 2780 2781 2801 2802 +2676 2677 2697 2698 2781 2782 2802 2803 +2677 2678 2698 2699 2782 2783 2803 2804 +2678 2679 2699 2700 2783 2784 2804 2805 +2679 2680 2700 2701 2784 2785 2805 2806 +2680 2681 2701 2702 2785 2786 2806 2807 +2681 2682 2702 2703 2786 2787 2807 2808 +2682 2683 2703 2704 2787 2788 2808 2809 +2683 2684 2704 2705 2788 2789 2809 2810 +2684 2685 2705 2706 2789 2790 2810 2811 +2685 2686 2706 2707 2790 2791 2811 2812 +2686 2687 2707 2708 2791 2792 2812 2813 +2688 2689 2709 2710 2793 2794 2814 2815 +2689 2690 2710 2711 2794 2795 2815 2816 +2690 2691 2711 2712 2795 2796 2816 2817 +2691 2692 2712 2713 2796 2797 2817 2818 +2692 2693 2713 2714 2797 2798 2818 2819 +2693 2694 2714 2715 2798 2799 2819 2820 +2694 2695 2715 2716 2799 2800 2820 2821 +2695 2696 2716 2717 2800 2801 2821 2822 +2696 2697 2717 2718 2801 2802 2822 2823 +2697 2698 2718 2719 2802 2803 2823 2824 +2698 2699 2719 2720 2803 2804 2824 2825 +2699 2700 2720 2721 2804 2805 2825 2826 +2700 2701 2721 2722 2805 2806 2826 2827 +2701 2702 2722 2723 2806 2807 2827 2828 +2702 2703 2723 2724 2807 2808 2828 2829 +2703 2704 2724 2725 2808 2809 2829 2830 +2704 2705 2725 2726 2809 2810 2830 2831 +2705 2706 2726 2727 2810 2811 2831 2832 +2706 2707 2727 2728 2811 2812 2832 2833 +2707 2708 2728 2729 2812 2813 2833 2834 +2730 2731 2751 2752 2835 2836 2856 2857 +2731 2732 2752 2753 2836 2837 2857 2858 +2732 2733 2753 2754 2837 2838 2858 2859 +2733 2734 2754 2755 2838 2839 2859 2860 +2734 2735 2755 2756 2839 2840 2860 2861 +2735 2736 2756 2757 2840 2841 2861 2862 +2736 2737 2757 2758 2841 2842 2862 2863 +2737 2738 2758 2759 2842 2843 2863 2864 +2738 2739 2759 2760 2843 2844 2864 2865 +2739 2740 2760 2761 2844 2845 2865 2866 +2740 2741 2761 2762 2845 2846 2866 2867 +2741 2742 2762 2763 2846 2847 2867 2868 +2742 2743 2763 2764 2847 2848 2868 2869 +2743 2744 2764 2765 2848 2849 2869 2870 +2744 2745 2765 2766 2849 2850 2870 2871 +2745 2746 2766 2767 2850 2851 2871 2872 +2746 2747 2767 2768 2851 2852 2872 2873 +2747 2748 2768 2769 2852 2853 2873 2874 +2748 2749 2769 2770 2853 2854 2874 2875 +2749 2750 2770 2771 2854 2855 2875 2876 +2751 2752 2772 2773 2856 2857 2877 2878 +2752 2753 2773 2774 2857 2858 2878 2879 +2753 2754 2774 2775 2858 2859 2879 2880 +2754 2755 2775 2776 2859 2860 2880 2881 +2755 2756 2776 2777 2860 2861 2881 2882 +2756 2757 2777 2778 2861 2862 2882 2883 +2757 2758 2778 2779 2862 2863 2883 2884 +2758 2759 2779 2780 2863 2864 2884 2885 +2759 2760 2780 2781 2864 2865 2885 2886 +2760 2761 2781 2782 2865 2866 2886 2887 +2761 2762 2782 2783 2866 2867 2887 2888 +2762 2763 2783 2784 2867 2868 2888 2889 +2763 2764 2784 2785 2868 2869 2889 2890 +2764 2765 2785 2786 2869 2870 2890 2891 +2765 2766 2786 2787 2870 2871 2891 2892 +2766 2767 2787 2788 2871 2872 2892 2893 +2767 2768 2788 2789 2872 2873 2893 2894 +2768 2769 2789 2790 2873 2874 2894 2895 +2769 2770 2790 2791 2874 2875 2895 2896 +2770 2771 2791 2792 2875 2876 2896 2897 +2772 2773 2793 2794 2877 2878 2898 2899 +2773 2774 2794 2795 2878 2879 2899 2900 +2774 2775 2795 2796 2879 2880 2900 2901 +2775 2776 2796 2797 2880 2881 2901 2902 +2776 2777 2797 2798 2881 2882 2902 2903 +2777 2778 2798 2799 2882 2883 2903 2904 +2778 2779 2799 2800 2883 2884 2904 2905 +2779 2780 2800 2801 2884 2885 2905 2906 +2780 2781 2801 2802 2885 2886 2906 2907 +2781 2782 2802 2803 2886 2887 2907 2908 +2782 2783 2803 2804 2887 2888 2908 2909 +2783 2784 2804 2805 2888 2889 2909 2910 +2784 2785 2805 2806 2889 2890 2910 2911 +2785 2786 2806 2807 2890 2891 2911 2912 +2786 2787 2807 2808 2891 2892 2912 2913 +2787 2788 2808 2809 2892 2893 2913 2914 +2788 2789 2809 2810 2893 2894 2914 2915 +2789 2790 2810 2811 2894 2895 2915 2916 +2790 2791 2811 2812 2895 2896 2916 2917 +2791 2792 2812 2813 2896 2897 2917 2918 +2793 2794 2814 2815 2898 2899 2919 2920 +2794 2795 2815 2816 2899 2900 2920 2921 +2795 2796 2816 2817 2900 2901 2921 2922 +2796 2797 2817 2818 2901 2902 2922 2923 +2797 2798 2818 2819 2902 2903 2923 2924 +2798 2799 2819 2820 2903 2904 2924 2925 +2799 2800 2820 2821 2904 2905 2925 2926 +2800 2801 2821 2822 2905 2906 2926 2927 +2801 2802 2822 2823 2906 2907 2927 2928 +2802 2803 2823 2824 2907 2908 2928 2929 +2803 2804 2824 2825 2908 2909 2929 2930 +2804 2805 2825 2826 2909 2910 2930 2931 +2805 2806 2826 2827 2910 2911 2931 2932 +2806 2807 2827 2828 2911 2912 2932 2933 +2807 2808 2828 2829 2912 2913 2933 2934 +2808 2809 2829 2830 2913 2914 2934 2935 +2809 2810 2830 2831 2914 2915 2935 2936 +2810 2811 2831 2832 2915 2916 2936 2937 +2811 2812 2832 2833 2916 2917 2937 2938 +2812 2813 2833 2834 2917 2918 2938 2939 +2835 2836 2856 2857 2940 2941 2961 2962 +2836 2837 2857 2858 2941 2942 2962 2963 +2837 2838 2858 2859 2942 2943 2963 2964 +2838 2839 2859 2860 2943 2944 2964 2965 +2839 2840 2860 2861 2944 2945 2965 2966 +2840 2841 2861 2862 2945 2946 2966 2967 +2841 2842 2862 2863 2946 2947 2967 2968 +2842 2843 2863 2864 2947 2948 2968 2969 +2843 2844 2864 2865 2948 2949 2969 2970 +2844 2845 2865 2866 2949 2950 2970 2971 +2845 2846 2866 2867 2950 2951 2971 2972 +2846 2847 2867 2868 2951 2952 2972 2973 +2847 2848 2868 2869 2952 2953 2973 2974 +2848 2849 2869 2870 2953 2954 2974 2975 +2849 2850 2870 2871 2954 2955 2975 2976 +2850 2851 2871 2872 2955 2956 2976 2977 +2851 2852 2872 2873 2956 2957 2977 2978 +2852 2853 2873 2874 2957 2958 2978 2979 +2853 2854 2874 2875 2958 2959 2979 2980 +2854 2855 2875 2876 2959 2960 2980 2981 +2856 2857 2877 2878 2961 2962 2982 2983 +2857 2858 2878 2879 2962 2963 2983 2984 +2858 2859 2879 2880 2963 2964 2984 2985 +2859 2860 2880 2881 2964 2965 2985 2986 +2860 2861 2881 2882 2965 2966 2986 2987 +2861 2862 2882 2883 2966 2967 2987 2988 +2862 2863 2883 2884 2967 2968 2988 2989 +2863 2864 2884 2885 2968 2969 2989 2990 +2864 2865 2885 2886 2969 2970 2990 2991 +2865 2866 2886 2887 2970 2971 2991 2992 +2866 2867 2887 2888 2971 2972 2992 2993 +2867 2868 2888 2889 2972 2973 2993 2994 +2868 2869 2889 2890 2973 2974 2994 2995 +2869 2870 2890 2891 2974 2975 2995 2996 +2870 2871 2891 2892 2975 2976 2996 2997 +2871 2872 2892 2893 2976 2977 2997 2998 +2872 2873 2893 2894 2977 2978 2998 2999 +2873 2874 2894 2895 2978 2979 2999 3000 +2874 2875 2895 2896 2979 2980 3000 3001 +2875 2876 2896 2897 2980 2981 3001 3002 +2877 2878 2898 2899 2982 2983 3003 3004 +2878 2879 2899 2900 2983 2984 3004 3005 +2879 2880 2900 2901 2984 2985 3005 3006 +2880 2881 2901 2902 2985 2986 3006 3007 +2881 2882 2902 2903 2986 2987 3007 3008 +2882 2883 2903 2904 2987 2988 3008 3009 +2883 2884 2904 2905 2988 2989 3009 3010 +2884 2885 2905 2906 2989 2990 3010 3011 +2885 2886 2906 2907 2990 2991 3011 3012 +2886 2887 2907 2908 2991 2992 3012 3013 +2887 2888 2908 2909 2992 2993 3013 3014 +2888 2889 2909 2910 2993 2994 3014 3015 +2889 2890 2910 2911 2994 2995 3015 3016 +2890 2891 2911 2912 2995 2996 3016 3017 +2891 2892 2912 2913 2996 2997 3017 3018 +2892 2893 2913 2914 2997 2998 3018 3019 +2893 2894 2914 2915 2998 2999 3019 3020 +2894 2895 2915 2916 2999 3000 3020 3021 +2895 2896 2916 2917 3000 3001 3021 3022 +2896 2897 2917 2918 3001 3002 3022 3023 +2898 2899 2919 2920 3003 3004 3024 3025 +2899 2900 2920 2921 3004 3005 3025 3026 +2900 2901 2921 2922 3005 3006 3026 3027 +2901 2902 2922 2923 3006 3007 3027 3028 +2902 2903 2923 2924 3007 3008 3028 3029 +2903 2904 2924 2925 3008 3009 3029 3030 +2904 2905 2925 2926 3009 3010 3030 3031 +2905 2906 2926 2927 3010 3011 3031 3032 +2906 2907 2927 2928 3011 3012 3032 3033 +2907 2908 2928 2929 3012 3013 3033 3034 +2908 2909 2929 2930 3013 3014 3034 3035 +2909 2910 2930 2931 3014 3015 3035 3036 +2910 2911 2931 2932 3015 3016 3036 3037 +2911 2912 2932 2933 3016 3017 3037 3038 +2912 2913 2933 2934 3017 3018 3038 3039 +2913 2914 2934 2935 3018 3019 3039 3040 +2914 2915 2935 2936 3019 3020 3040 3041 +2915 2916 2936 2937 3020 3021 3041 3042 +2916 2917 2937 2938 3021 3022 3042 3043 +2917 2918 2938 2939 3022 3023 3043 3044 +# +BOUNDARYDOMAIN +default 1 +# diff --git a/test/porousmediumflow/2pliquidvapor/grids/pieceofcake.m b/test/porousmediumflow/2pliquidvapor/grids/pieceofcake.m new file mode 100644 index 0000000000..df20ee4afe --- /dev/null +++ b/test/porousmediumflow/2pliquidvapor/grids/pieceofcake.m @@ -0,0 +1,47 @@ +% Cake cake grid +clear; + +pathdgf = 'pieceofcake.dgf'; +pathvtk = 'pieceofcake.vtk'; +R = 5; % Domain radius +A = pi/6; % Domain angle +Z = 7; % Domain length in z direction +nSlice = 4; %no of slices +nZ = 28; %approximate no of elements in Z direction +cellSizeZ = Z/nZ; +wellRadius = 0.135; %Well radius at the tip of the cake slice +numCellsR = 21; %number of Cells in R direction +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%dr Vector + +%the spacing in R direction is generated with the following formula: +%dr(i) = a*exp(lambda*i) - wellRadius +%--> dr(1) = 0 +%--> dr(numCellsR)=R-wellRadius + + +lambda = log(R/wellRadius)/(numCellsR-1) +a = wellRadius/exp(lambda) + +for i=1:numCellsR + dr(i) = a*exp(lambda*i) - wellRadius; +end + + + +%da Vector +da = 0:A/nSlice:A; + +%Z-Vector +dz = 0:Z/nZ:Z; + +%Create the dgf file +dgfWriterCake(pathdgf, dr, da, dz, wellRadius); + +%Create the vtk file +vtkWriterCake(pathvtk, dr, da, dz, wellRadius); + + +noNodes = length(dr)*length(da)*length(dz); +display(noNodes); diff --git a/test/porousmediumflow/2pliquidvapor/grids/pieceofcake_preheat.dgf b/test/porousmediumflow/2pliquidvapor/grids/pieceofcake_preheat.dgf new file mode 100644 index 0000000000..822b4d4267 --- /dev/null +++ b/test/porousmediumflow/2pliquidvapor/grids/pieceofcake_preheat.dgf @@ -0,0 +1,17871 @@ +DGF +Vertex +0.135000000000000 0.000000000000000 0.000000000000000 + 0.235000000000000 0.000000000000000 0.000000000000000 + 0.335000000000000 0.000000000000000 0.000000000000000 + 0.435000000000000 0.000000000000000 0.000000000000000 + 0.535000000000000 0.000000000000000 0.000000000000000 + 0.635000000000000 0.000000000000000 0.000000000000000 + 0.735000000000000 0.000000000000000 0.000000000000000 + 0.835000000000000 0.000000000000000 0.000000000000000 + 0.935000000000000 0.000000000000000 0.000000000000000 + 1.035000000000000 0.000000000000000 0.000000000000000 + 1.135000000000000 0.000000000000000 0.000000000000000 + 1.235000000000000 0.000000000000000 0.000000000000000 + 1.335000000000000 0.000000000000000 0.000000000000000 + 1.435000000000000 0.000000000000000 0.000000000000000 + 1.535000000000000 0.000000000000000 0.000000000000000 + 1.635000000000000 0.000000000000000 0.000000000000000 + 1.735000000000000 0.000000000000000 0.000000000000000 + 1.835000000000000 0.000000000000000 0.000000000000000 + 1.935000000000000 0.000000000000000 0.000000000000000 + 2.035000000000000 0.000000000000000 0.000000000000000 + 2.135000000000000 0.000000000000000 0.000000000000000 + 2.235000000000000 0.000000000000000 0.000000000000000 + 2.335000000000000 0.000000000000000 0.000000000000000 + 2.435000000000000 0.000000000000000 0.000000000000000 + 2.535000000000000 0.000000000000000 0.000000000000000 + 2.635000000000000 0.000000000000000 0.000000000000000 + 2.735000000000000 0.000000000000000 0.000000000000000 + 2.835000000000000 0.000000000000000 0.000000000000000 + 2.935000000000000 0.000000000000000 0.000000000000000 + 3.035000000000000 0.000000000000000 0.000000000000000 + 3.135000000000000 0.000000000000000 0.000000000000000 + 3.235000000000000 0.000000000000000 0.000000000000000 + 3.335000000000000 0.000000000000000 0.000000000000000 + 3.435000000000000 0.000000000000000 0.000000000000000 + 3.535000000000000 0.000000000000000 0.000000000000000 + 3.635000000000000 0.000000000000000 0.000000000000000 + 3.735000000000000 0.000000000000000 0.000000000000000 + 3.835000000000000 0.000000000000000 0.000000000000000 + 3.935000000000000 0.000000000000000 0.000000000000000 + 4.035000000000000 0.000000000000000 0.000000000000000 + 4.135000000000001 0.000000000000000 0.000000000000000 + 4.235000000000000 0.000000000000000 0.000000000000000 + 4.335000000000000 0.000000000000000 0.000000000000000 + 4.435000000000000 0.000000000000000 0.000000000000000 + 4.535000000000000 0.000000000000000 0.000000000000000 + 4.635000000000001 0.000000000000000 0.000000000000000 + 4.735000000000000 0.000000000000000 0.000000000000000 + 4.835000000000001 0.000000000000000 0.000000000000000 + 4.935000000000000 0.000000000000000 0.000000000000000 + 5.035000000000000 0.000000000000000 0.000000000000000 + 5.135000000000001 0.000000000000000 0.000000000000000 + 0.133845056285464 0.017621035949707 0.000000000000000 + 0.232989542422845 0.030673655171712 0.000000000000000 + 0.332134028560227 0.043726274393717 0.000000000000000 + 0.431278514697608 0.056778893615722 0.000000000000000 + 0.530423000834989 0.069831512837728 0.000000000000000 + 0.629567486972370 0.082884132059733 0.000000000000000 + 0.728711973109751 0.095936751281738 0.000000000000000 + 0.827856459247132 0.108989370503743 0.000000000000000 + 0.927000945384513 0.122041989725748 0.000000000000000 + 1.026145431521894 0.135094608947753 0.000000000000000 + 1.125289917659275 0.148147228169759 0.000000000000000 + 1.224434403796656 0.161199847391764 0.000000000000000 + 1.323578889934037 0.174252466613769 0.000000000000000 + 1.422723376071418 0.187305085835774 0.000000000000000 + 1.521867862208799 0.200357705057779 0.000000000000000 + 1.621012348346180 0.213410324279784 0.000000000000000 + 1.720156834483561 0.226462943501789 0.000000000000000 + 1.819301320620942 0.239515562723795 0.000000000000000 + 1.918445806758323 0.252568181945800 0.000000000000000 + 2.017590292895704 0.265620801167805 0.000000000000000 + 2.116734779033085 0.278673420389810 0.000000000000000 + 2.215879265170466 0.291726039611815 0.000000000000000 + 2.315023751307847 0.304778658833820 0.000000000000000 + 2.414168237445228 0.317831278055826 0.000000000000000 + 2.513312723582609 0.330883897277831 0.000000000000000 + 2.612457209719990 0.343936516499836 0.000000000000000 + 2.711601695857371 0.356989135721841 0.000000000000000 + 2.810746181994753 0.370041754943846 0.000000000000000 + 2.909890668132133 0.383094374165851 0.000000000000000 + 3.009035154269514 0.396146993387857 0.000000000000000 + 3.108179640406895 0.409199612609862 0.000000000000000 + 3.207324126544277 0.422252231831867 0.000000000000000 + 3.306468612681658 0.435304851053872 0.000000000000000 + 3.405613098819039 0.448357470275877 0.000000000000000 + 3.504757584956419 0.461410089497882 0.000000000000000 + 3.603902071093801 0.474462708719887 0.000000000000000 + 3.703046557231182 0.487515327941893 0.000000000000000 + 3.802191043368563 0.500567947163898 0.000000000000000 + 3.901335529505944 0.513620566385903 0.000000000000000 + 4.000480015643325 0.526673185607908 0.000000000000000 + 4.099624501780707 0.539725804829913 0.000000000000000 + 4.198768987918087 0.552778424051918 0.000000000000000 + 4.297913474055468 0.565831043273924 0.000000000000000 + 4.397057960192850 0.578883662495929 0.000000000000000 + 4.496202446330230 0.591936281717934 0.000000000000000 + 4.595346932467612 0.604988900939939 0.000000000000000 + 4.694491418604993 0.618041520161944 0.000000000000000 + 4.793635904742374 0.631094139383950 0.000000000000000 + 4.892780390879754 0.644146758605955 0.000000000000000 + 4.991924877017135 0.657199377827960 0.000000000000000 + 5.091069363154517 0.670251997049965 0.000000000000000 + 0.130399986549024 0.034940571088840 0.000000000000000 + 0.226992569177931 0.060822475599092 0.000000000000000 + 0.323585151806838 0.086704380109344 0.000000000000000 + 0.420177734435745 0.112586284619597 0.000000000000000 + 0.516770317064652 0.138468189129849 0.000000000000000 + 0.613362899693559 0.164350093640101 0.000000000000000 + 0.709955482322465 0.190231998150353 0.000000000000000 + 0.806548064951372 0.216113902660605 0.000000000000000 + 0.903140647580279 0.241995807170857 0.000000000000000 + 0.999733230209186 0.267877711681109 0.000000000000000 + 1.096325812838093 0.293759616191361 0.000000000000000 + 1.192918395467000 0.319641520701613 0.000000000000000 + 1.289510978095906 0.345523425211865 0.000000000000000 + 1.386103560724813 0.371405329722117 0.000000000000000 + 1.482696143353720 0.397287234232369 0.000000000000000 + 1.579288725982627 0.423169138742621 0.000000000000000 + 1.675881308611534 0.449051043252873 0.000000000000000 + 1.772473891240440 0.474932947763126 0.000000000000000 + 1.869066473869347 0.500814852273378 0.000000000000000 + 1.965659056498254 0.526696756783630 0.000000000000000 + 2.062251639127161 0.552578661293882 0.000000000000000 + 2.158844221756068 0.578460565804134 0.000000000000000 + 2.255436804384975 0.604342470314386 0.000000000000000 + 2.352029387013882 0.630224374824638 0.000000000000000 + 2.448621969642788 0.656106279334890 0.000000000000000 + 2.545214552271695 0.681988183845142 0.000000000000000 + 2.641807134900602 0.707870088355394 0.000000000000000 + 2.738399717529509 0.733751992865646 0.000000000000000 + 2.834992300158416 0.759633897375898 0.000000000000000 + 2.931584882787322 0.785515801886150 0.000000000000000 + 3.028177465416229 0.811397706396403 0.000000000000000 + 3.124770048045136 0.837279610906655 0.000000000000000 + 3.221362630674043 0.863161515416907 0.000000000000000 + 3.317955213302950 0.889043419927159 0.000000000000000 + 3.414547795931857 0.914925324437411 0.000000000000000 + 3.511140378560763 0.940807228947663 0.000000000000000 + 3.607732961189670 0.966689133457915 0.000000000000000 + 3.704325543818577 0.992571037968167 0.000000000000000 + 3.800918126447484 1.018452942478419 0.000000000000000 + 3.897510709076391 1.044334846988671 0.000000000000000 + 3.994103291705299 1.070216751498923 0.000000000000000 + 4.090695874334204 1.096098656009175 0.000000000000000 + 4.187288456963111 1.121980560519428 0.000000000000000 + 4.283881039592019 1.147862465029680 0.000000000000000 + 4.380473622220926 1.173744369539932 0.000000000000000 + 4.477066204849833 1.199626274050184 0.000000000000000 + 4.573658787478739 1.225508178560436 0.000000000000000 + 4.670251370107646 1.251390083070688 0.000000000000000 + 4.766843952736553 1.277271987580940 0.000000000000000 + 4.863436535365460 1.303153892091192 0.000000000000000 + 4.960029117994367 1.329035796601444 0.000000000000000 + 0.135000000000000 0.000000000000000 0.100000000000000 + 0.235000000000000 0.000000000000000 0.100000000000000 + 0.335000000000000 0.000000000000000 0.100000000000000 + 0.435000000000000 0.000000000000000 0.100000000000000 + 0.535000000000000 0.000000000000000 0.100000000000000 + 0.635000000000000 0.000000000000000 0.100000000000000 + 0.735000000000000 0.000000000000000 0.100000000000000 + 0.835000000000000 0.000000000000000 0.100000000000000 + 0.935000000000000 0.000000000000000 0.100000000000000 + 1.035000000000000 0.000000000000000 0.100000000000000 + 1.135000000000000 0.000000000000000 0.100000000000000 + 1.235000000000000 0.000000000000000 0.100000000000000 + 1.335000000000000 0.000000000000000 0.100000000000000 + 1.435000000000000 0.000000000000000 0.100000000000000 + 1.535000000000000 0.000000000000000 0.100000000000000 + 1.635000000000000 0.000000000000000 0.100000000000000 + 1.735000000000000 0.000000000000000 0.100000000000000 + 1.835000000000000 0.000000000000000 0.100000000000000 + 1.935000000000000 0.000000000000000 0.100000000000000 + 2.035000000000000 0.000000000000000 0.100000000000000 + 2.135000000000000 0.000000000000000 0.100000000000000 + 2.235000000000000 0.000000000000000 0.100000000000000 + 2.335000000000000 0.000000000000000 0.100000000000000 + 2.435000000000000 0.000000000000000 0.100000000000000 + 2.535000000000000 0.000000000000000 0.100000000000000 + 2.635000000000000 0.000000000000000 0.100000000000000 + 2.735000000000000 0.000000000000000 0.100000000000000 + 2.835000000000000 0.000000000000000 0.100000000000000 + 2.935000000000000 0.000000000000000 0.100000000000000 + 3.035000000000000 0.000000000000000 0.100000000000000 + 3.135000000000000 0.000000000000000 0.100000000000000 + 3.235000000000000 0.000000000000000 0.100000000000000 + 3.335000000000000 0.000000000000000 0.100000000000000 + 3.435000000000000 0.000000000000000 0.100000000000000 + 3.535000000000000 0.000000000000000 0.100000000000000 + 3.635000000000000 0.000000000000000 0.100000000000000 + 3.735000000000000 0.000000000000000 0.100000000000000 + 3.835000000000000 0.000000000000000 0.100000000000000 + 3.935000000000000 0.000000000000000 0.100000000000000 + 4.035000000000000 0.000000000000000 0.100000000000000 + 4.135000000000001 0.000000000000000 0.100000000000000 + 4.235000000000000 0.000000000000000 0.100000000000000 + 4.335000000000000 0.000000000000000 0.100000000000000 + 4.435000000000000 0.000000000000000 0.100000000000000 + 4.535000000000000 0.000000000000000 0.100000000000000 + 4.635000000000001 0.000000000000000 0.100000000000000 + 4.735000000000000 0.000000000000000 0.100000000000000 + 4.835000000000001 0.000000000000000 0.100000000000000 + 4.935000000000000 0.000000000000000 0.100000000000000 + 5.035000000000000 0.000000000000000 0.100000000000000 + 5.135000000000001 0.000000000000000 0.100000000000000 + 0.133845056285464 0.017621035949707 0.100000000000000 + 0.232989542422845 0.030673655171712 0.100000000000000 + 0.332134028560227 0.043726274393717 0.100000000000000 + 0.431278514697608 0.056778893615722 0.100000000000000 + 0.530423000834989 0.069831512837728 0.100000000000000 + 0.629567486972370 0.082884132059733 0.100000000000000 + 0.728711973109751 0.095936751281738 0.100000000000000 + 0.827856459247132 0.108989370503743 0.100000000000000 + 0.927000945384513 0.122041989725748 0.100000000000000 + 1.026145431521894 0.135094608947753 0.100000000000000 + 1.125289917659275 0.148147228169759 0.100000000000000 + 1.224434403796656 0.161199847391764 0.100000000000000 + 1.323578889934037 0.174252466613769 0.100000000000000 + 1.422723376071418 0.187305085835774 0.100000000000000 + 1.521867862208799 0.200357705057779 0.100000000000000 + 1.621012348346180 0.213410324279784 0.100000000000000 + 1.720156834483561 0.226462943501789 0.100000000000000 + 1.819301320620942 0.239515562723795 0.100000000000000 + 1.918445806758323 0.252568181945800 0.100000000000000 + 2.017590292895704 0.265620801167805 0.100000000000000 + 2.116734779033085 0.278673420389810 0.100000000000000 + 2.215879265170466 0.291726039611815 0.100000000000000 + 2.315023751307847 0.304778658833820 0.100000000000000 + 2.414168237445228 0.317831278055826 0.100000000000000 + 2.513312723582609 0.330883897277831 0.100000000000000 + 2.612457209719990 0.343936516499836 0.100000000000000 + 2.711601695857371 0.356989135721841 0.100000000000000 + 2.810746181994753 0.370041754943846 0.100000000000000 + 2.909890668132133 0.383094374165851 0.100000000000000 + 3.009035154269514 0.396146993387857 0.100000000000000 + 3.108179640406895 0.409199612609862 0.100000000000000 + 3.207324126544277 0.422252231831867 0.100000000000000 + 3.306468612681658 0.435304851053872 0.100000000000000 + 3.405613098819039 0.448357470275877 0.100000000000000 + 3.504757584956419 0.461410089497882 0.100000000000000 + 3.603902071093801 0.474462708719887 0.100000000000000 + 3.703046557231182 0.487515327941893 0.100000000000000 + 3.802191043368563 0.500567947163898 0.100000000000000 + 3.901335529505944 0.513620566385903 0.100000000000000 + 4.000480015643325 0.526673185607908 0.100000000000000 + 4.099624501780707 0.539725804829913 0.100000000000000 + 4.198768987918087 0.552778424051918 0.100000000000000 + 4.297913474055468 0.565831043273924 0.100000000000000 + 4.397057960192850 0.578883662495929 0.100000000000000 + 4.496202446330230 0.591936281717934 0.100000000000000 + 4.595346932467612 0.604988900939939 0.100000000000000 + 4.694491418604993 0.618041520161944 0.100000000000000 + 4.793635904742374 0.631094139383950 0.100000000000000 + 4.892780390879754 0.644146758605955 0.100000000000000 + 4.991924877017135 0.657199377827960 0.100000000000000 + 5.091069363154517 0.670251997049965 0.100000000000000 + 0.130399986549024 0.034940571088840 0.100000000000000 + 0.226992569177931 0.060822475599092 0.100000000000000 + 0.323585151806838 0.086704380109344 0.100000000000000 + 0.420177734435745 0.112586284619597 0.100000000000000 + 0.516770317064652 0.138468189129849 0.100000000000000 + 0.613362899693559 0.164350093640101 0.100000000000000 + 0.709955482322465 0.190231998150353 0.100000000000000 + 0.806548064951372 0.216113902660605 0.100000000000000 + 0.903140647580279 0.241995807170857 0.100000000000000 + 0.999733230209186 0.267877711681109 0.100000000000000 + 1.096325812838093 0.293759616191361 0.100000000000000 + 1.192918395467000 0.319641520701613 0.100000000000000 + 1.289510978095906 0.345523425211865 0.100000000000000 + 1.386103560724813 0.371405329722117 0.100000000000000 + 1.482696143353720 0.397287234232369 0.100000000000000 + 1.579288725982627 0.423169138742621 0.100000000000000 + 1.675881308611534 0.449051043252873 0.100000000000000 + 1.772473891240440 0.474932947763126 0.100000000000000 + 1.869066473869347 0.500814852273378 0.100000000000000 + 1.965659056498254 0.526696756783630 0.100000000000000 + 2.062251639127161 0.552578661293882 0.100000000000000 + 2.158844221756068 0.578460565804134 0.100000000000000 + 2.255436804384975 0.604342470314386 0.100000000000000 + 2.352029387013882 0.630224374824638 0.100000000000000 + 2.448621969642788 0.656106279334890 0.100000000000000 + 2.545214552271695 0.681988183845142 0.100000000000000 + 2.641807134900602 0.707870088355394 0.100000000000000 + 2.738399717529509 0.733751992865646 0.100000000000000 + 2.834992300158416 0.759633897375898 0.100000000000000 + 2.931584882787322 0.785515801886150 0.100000000000000 + 3.028177465416229 0.811397706396403 0.100000000000000 + 3.124770048045136 0.837279610906655 0.100000000000000 + 3.221362630674043 0.863161515416907 0.100000000000000 + 3.317955213302950 0.889043419927159 0.100000000000000 + 3.414547795931857 0.914925324437411 0.100000000000000 + 3.511140378560763 0.940807228947663 0.100000000000000 + 3.607732961189670 0.966689133457915 0.100000000000000 + 3.704325543818577 0.992571037968167 0.100000000000000 + 3.800918126447484 1.018452942478419 0.100000000000000 + 3.897510709076391 1.044334846988671 0.100000000000000 + 3.994103291705299 1.070216751498923 0.100000000000000 + 4.090695874334204 1.096098656009175 0.100000000000000 + 4.187288456963111 1.121980560519428 0.100000000000000 + 4.283881039592019 1.147862465029680 0.100000000000000 + 4.380473622220926 1.173744369539932 0.100000000000000 + 4.477066204849833 1.199626274050184 0.100000000000000 + 4.573658787478739 1.225508178560436 0.100000000000000 + 4.670251370107646 1.251390083070688 0.100000000000000 + 4.766843952736553 1.277271987580940 0.100000000000000 + 4.863436535365460 1.303153892091192 0.100000000000000 + 4.960029117994367 1.329035796601444 0.100000000000000 + 0.135000000000000 0.000000000000000 0.200000000000000 + 0.235000000000000 0.000000000000000 0.200000000000000 + 0.335000000000000 0.000000000000000 0.200000000000000 + 0.435000000000000 0.000000000000000 0.200000000000000 + 0.535000000000000 0.000000000000000 0.200000000000000 + 0.635000000000000 0.000000000000000 0.200000000000000 + 0.735000000000000 0.000000000000000 0.200000000000000 + 0.835000000000000 0.000000000000000 0.200000000000000 + 0.935000000000000 0.000000000000000 0.200000000000000 + 1.035000000000000 0.000000000000000 0.200000000000000 + 1.135000000000000 0.000000000000000 0.200000000000000 + 1.235000000000000 0.000000000000000 0.200000000000000 + 1.335000000000000 0.000000000000000 0.200000000000000 + 1.435000000000000 0.000000000000000 0.200000000000000 + 1.535000000000000 0.000000000000000 0.200000000000000 + 1.635000000000000 0.000000000000000 0.200000000000000 + 1.735000000000000 0.000000000000000 0.200000000000000 + 1.835000000000000 0.000000000000000 0.200000000000000 + 1.935000000000000 0.000000000000000 0.200000000000000 + 2.035000000000000 0.000000000000000 0.200000000000000 + 2.135000000000000 0.000000000000000 0.200000000000000 + 2.235000000000000 0.000000000000000 0.200000000000000 + 2.335000000000000 0.000000000000000 0.200000000000000 + 2.435000000000000 0.000000000000000 0.200000000000000 + 2.535000000000000 0.000000000000000 0.200000000000000 + 2.635000000000000 0.000000000000000 0.200000000000000 + 2.735000000000000 0.000000000000000 0.200000000000000 + 2.835000000000000 0.000000000000000 0.200000000000000 + 2.935000000000000 0.000000000000000 0.200000000000000 + 3.035000000000000 0.000000000000000 0.200000000000000 + 3.135000000000000 0.000000000000000 0.200000000000000 + 3.235000000000000 0.000000000000000 0.200000000000000 + 3.335000000000000 0.000000000000000 0.200000000000000 + 3.435000000000000 0.000000000000000 0.200000000000000 + 3.535000000000000 0.000000000000000 0.200000000000000 + 3.635000000000000 0.000000000000000 0.200000000000000 + 3.735000000000000 0.000000000000000 0.200000000000000 + 3.835000000000000 0.000000000000000 0.200000000000000 + 3.935000000000000 0.000000000000000 0.200000000000000 + 4.035000000000000 0.000000000000000 0.200000000000000 + 4.135000000000001 0.000000000000000 0.200000000000000 + 4.235000000000000 0.000000000000000 0.200000000000000 + 4.335000000000000 0.000000000000000 0.200000000000000 + 4.435000000000000 0.000000000000000 0.200000000000000 + 4.535000000000000 0.000000000000000 0.200000000000000 + 4.635000000000001 0.000000000000000 0.200000000000000 + 4.735000000000000 0.000000000000000 0.200000000000000 + 4.835000000000001 0.000000000000000 0.200000000000000 + 4.935000000000000 0.000000000000000 0.200000000000000 + 5.035000000000000 0.000000000000000 0.200000000000000 + 5.135000000000001 0.000000000000000 0.200000000000000 + 0.133845056285464 0.017621035949707 0.200000000000000 + 0.232989542422845 0.030673655171712 0.200000000000000 + 0.332134028560227 0.043726274393717 0.200000000000000 + 0.431278514697608 0.056778893615722 0.200000000000000 + 0.530423000834989 0.069831512837728 0.200000000000000 + 0.629567486972370 0.082884132059733 0.200000000000000 + 0.728711973109751 0.095936751281738 0.200000000000000 + 0.827856459247132 0.108989370503743 0.200000000000000 + 0.927000945384513 0.122041989725748 0.200000000000000 + 1.026145431521894 0.135094608947753 0.200000000000000 + 1.125289917659275 0.148147228169759 0.200000000000000 + 1.224434403796656 0.161199847391764 0.200000000000000 + 1.323578889934037 0.174252466613769 0.200000000000000 + 1.422723376071418 0.187305085835774 0.200000000000000 + 1.521867862208799 0.200357705057779 0.200000000000000 + 1.621012348346180 0.213410324279784 0.200000000000000 + 1.720156834483561 0.226462943501789 0.200000000000000 + 1.819301320620942 0.239515562723795 0.200000000000000 + 1.918445806758323 0.252568181945800 0.200000000000000 + 2.017590292895704 0.265620801167805 0.200000000000000 + 2.116734779033085 0.278673420389810 0.200000000000000 + 2.215879265170466 0.291726039611815 0.200000000000000 + 2.315023751307847 0.304778658833820 0.200000000000000 + 2.414168237445228 0.317831278055826 0.200000000000000 + 2.513312723582609 0.330883897277831 0.200000000000000 + 2.612457209719990 0.343936516499836 0.200000000000000 + 2.711601695857371 0.356989135721841 0.200000000000000 + 2.810746181994753 0.370041754943846 0.200000000000000 + 2.909890668132133 0.383094374165851 0.200000000000000 + 3.009035154269514 0.396146993387857 0.200000000000000 + 3.108179640406895 0.409199612609862 0.200000000000000 + 3.207324126544277 0.422252231831867 0.200000000000000 + 3.306468612681658 0.435304851053872 0.200000000000000 + 3.405613098819039 0.448357470275877 0.200000000000000 + 3.504757584956419 0.461410089497882 0.200000000000000 + 3.603902071093801 0.474462708719887 0.200000000000000 + 3.703046557231182 0.487515327941893 0.200000000000000 + 3.802191043368563 0.500567947163898 0.200000000000000 + 3.901335529505944 0.513620566385903 0.200000000000000 + 4.000480015643325 0.526673185607908 0.200000000000000 + 4.099624501780707 0.539725804829913 0.200000000000000 + 4.198768987918087 0.552778424051918 0.200000000000000 + 4.297913474055468 0.565831043273924 0.200000000000000 + 4.397057960192850 0.578883662495929 0.200000000000000 + 4.496202446330230 0.591936281717934 0.200000000000000 + 4.595346932467612 0.604988900939939 0.200000000000000 + 4.694491418604993 0.618041520161944 0.200000000000000 + 4.793635904742374 0.631094139383950 0.200000000000000 + 4.892780390879754 0.644146758605955 0.200000000000000 + 4.991924877017135 0.657199377827960 0.200000000000000 + 5.091069363154517 0.670251997049965 0.200000000000000 + 0.130399986549024 0.034940571088840 0.200000000000000 + 0.226992569177931 0.060822475599092 0.200000000000000 + 0.323585151806838 0.086704380109344 0.200000000000000 + 0.420177734435745 0.112586284619597 0.200000000000000 + 0.516770317064652 0.138468189129849 0.200000000000000 + 0.613362899693559 0.164350093640101 0.200000000000000 + 0.709955482322465 0.190231998150353 0.200000000000000 + 0.806548064951372 0.216113902660605 0.200000000000000 + 0.903140647580279 0.241995807170857 0.200000000000000 + 0.999733230209186 0.267877711681109 0.200000000000000 + 1.096325812838093 0.293759616191361 0.200000000000000 + 1.192918395467000 0.319641520701613 0.200000000000000 + 1.289510978095906 0.345523425211865 0.200000000000000 + 1.386103560724813 0.371405329722117 0.200000000000000 + 1.482696143353720 0.397287234232369 0.200000000000000 + 1.579288725982627 0.423169138742621 0.200000000000000 + 1.675881308611534 0.449051043252873 0.200000000000000 + 1.772473891240440 0.474932947763126 0.200000000000000 + 1.869066473869347 0.500814852273378 0.200000000000000 + 1.965659056498254 0.526696756783630 0.200000000000000 + 2.062251639127161 0.552578661293882 0.200000000000000 + 2.158844221756068 0.578460565804134 0.200000000000000 + 2.255436804384975 0.604342470314386 0.200000000000000 + 2.352029387013882 0.630224374824638 0.200000000000000 + 2.448621969642788 0.656106279334890 0.200000000000000 + 2.545214552271695 0.681988183845142 0.200000000000000 + 2.641807134900602 0.707870088355394 0.200000000000000 + 2.738399717529509 0.733751992865646 0.200000000000000 + 2.834992300158416 0.759633897375898 0.200000000000000 + 2.931584882787322 0.785515801886150 0.200000000000000 + 3.028177465416229 0.811397706396403 0.200000000000000 + 3.124770048045136 0.837279610906655 0.200000000000000 + 3.221362630674043 0.863161515416907 0.200000000000000 + 3.317955213302950 0.889043419927159 0.200000000000000 + 3.414547795931857 0.914925324437411 0.200000000000000 + 3.511140378560763 0.940807228947663 0.200000000000000 + 3.607732961189670 0.966689133457915 0.200000000000000 + 3.704325543818577 0.992571037968167 0.200000000000000 + 3.800918126447484 1.018452942478419 0.200000000000000 + 3.897510709076391 1.044334846988671 0.200000000000000 + 3.994103291705299 1.070216751498923 0.200000000000000 + 4.090695874334204 1.096098656009175 0.200000000000000 + 4.187288456963111 1.121980560519428 0.200000000000000 + 4.283881039592019 1.147862465029680 0.200000000000000 + 4.380473622220926 1.173744369539932 0.200000000000000 + 4.477066204849833 1.199626274050184 0.200000000000000 + 4.573658787478739 1.225508178560436 0.200000000000000 + 4.670251370107646 1.251390083070688 0.200000000000000 + 4.766843952736553 1.277271987580940 0.200000000000000 + 4.863436535365460 1.303153892091192 0.200000000000000 + 4.960029117994367 1.329035796601444 0.200000000000000 + 0.135000000000000 0.000000000000000 0.300000000000000 + 0.235000000000000 0.000000000000000 0.300000000000000 + 0.335000000000000 0.000000000000000 0.300000000000000 + 0.435000000000000 0.000000000000000 0.300000000000000 + 0.535000000000000 0.000000000000000 0.300000000000000 + 0.635000000000000 0.000000000000000 0.300000000000000 + 0.735000000000000 0.000000000000000 0.300000000000000 + 0.835000000000000 0.000000000000000 0.300000000000000 + 0.935000000000000 0.000000000000000 0.300000000000000 + 1.035000000000000 0.000000000000000 0.300000000000000 + 1.135000000000000 0.000000000000000 0.300000000000000 + 1.235000000000000 0.000000000000000 0.300000000000000 + 1.335000000000000 0.000000000000000 0.300000000000000 + 1.435000000000000 0.000000000000000 0.300000000000000 + 1.535000000000000 0.000000000000000 0.300000000000000 + 1.635000000000000 0.000000000000000 0.300000000000000 + 1.735000000000000 0.000000000000000 0.300000000000000 + 1.835000000000000 0.000000000000000 0.300000000000000 + 1.935000000000000 0.000000000000000 0.300000000000000 + 2.035000000000000 0.000000000000000 0.300000000000000 + 2.135000000000000 0.000000000000000 0.300000000000000 + 2.235000000000000 0.000000000000000 0.300000000000000 + 2.335000000000000 0.000000000000000 0.300000000000000 + 2.435000000000000 0.000000000000000 0.300000000000000 + 2.535000000000000 0.000000000000000 0.300000000000000 + 2.635000000000000 0.000000000000000 0.300000000000000 + 2.735000000000000 0.000000000000000 0.300000000000000 + 2.835000000000000 0.000000000000000 0.300000000000000 + 2.935000000000000 0.000000000000000 0.300000000000000 + 3.035000000000000 0.000000000000000 0.300000000000000 + 3.135000000000000 0.000000000000000 0.300000000000000 + 3.235000000000000 0.000000000000000 0.300000000000000 + 3.335000000000000 0.000000000000000 0.300000000000000 + 3.435000000000000 0.000000000000000 0.300000000000000 + 3.535000000000000 0.000000000000000 0.300000000000000 + 3.635000000000000 0.000000000000000 0.300000000000000 + 3.735000000000000 0.000000000000000 0.300000000000000 + 3.835000000000000 0.000000000000000 0.300000000000000 + 3.935000000000000 0.000000000000000 0.300000000000000 + 4.035000000000000 0.000000000000000 0.300000000000000 + 4.135000000000001 0.000000000000000 0.300000000000000 + 4.235000000000000 0.000000000000000 0.300000000000000 + 4.335000000000000 0.000000000000000 0.300000000000000 + 4.435000000000000 0.000000000000000 0.300000000000000 + 4.535000000000000 0.000000000000000 0.300000000000000 + 4.635000000000001 0.000000000000000 0.300000000000000 + 4.735000000000000 0.000000000000000 0.300000000000000 + 4.835000000000001 0.000000000000000 0.300000000000000 + 4.935000000000000 0.000000000000000 0.300000000000000 + 5.035000000000000 0.000000000000000 0.300000000000000 + 5.135000000000001 0.000000000000000 0.300000000000000 + 0.133845056285464 0.017621035949707 0.300000000000000 + 0.232989542422845 0.030673655171712 0.300000000000000 + 0.332134028560227 0.043726274393717 0.300000000000000 + 0.431278514697608 0.056778893615722 0.300000000000000 + 0.530423000834989 0.069831512837728 0.300000000000000 + 0.629567486972370 0.082884132059733 0.300000000000000 + 0.728711973109751 0.095936751281738 0.300000000000000 + 0.827856459247132 0.108989370503743 0.300000000000000 + 0.927000945384513 0.122041989725748 0.300000000000000 + 1.026145431521894 0.135094608947753 0.300000000000000 + 1.125289917659275 0.148147228169759 0.300000000000000 + 1.224434403796656 0.161199847391764 0.300000000000000 + 1.323578889934037 0.174252466613769 0.300000000000000 + 1.422723376071418 0.187305085835774 0.300000000000000 + 1.521867862208799 0.200357705057779 0.300000000000000 + 1.621012348346180 0.213410324279784 0.300000000000000 + 1.720156834483561 0.226462943501789 0.300000000000000 + 1.819301320620942 0.239515562723795 0.300000000000000 + 1.918445806758323 0.252568181945800 0.300000000000000 + 2.017590292895704 0.265620801167805 0.300000000000000 + 2.116734779033085 0.278673420389810 0.300000000000000 + 2.215879265170466 0.291726039611815 0.300000000000000 + 2.315023751307847 0.304778658833820 0.300000000000000 + 2.414168237445228 0.317831278055826 0.300000000000000 + 2.513312723582609 0.330883897277831 0.300000000000000 + 2.612457209719990 0.343936516499836 0.300000000000000 + 2.711601695857371 0.356989135721841 0.300000000000000 + 2.810746181994753 0.370041754943846 0.300000000000000 + 2.909890668132133 0.383094374165851 0.300000000000000 + 3.009035154269514 0.396146993387857 0.300000000000000 + 3.108179640406895 0.409199612609862 0.300000000000000 + 3.207324126544277 0.422252231831867 0.300000000000000 + 3.306468612681658 0.435304851053872 0.300000000000000 + 3.405613098819039 0.448357470275877 0.300000000000000 + 3.504757584956419 0.461410089497882 0.300000000000000 + 3.603902071093801 0.474462708719887 0.300000000000000 + 3.703046557231182 0.487515327941893 0.300000000000000 + 3.802191043368563 0.500567947163898 0.300000000000000 + 3.901335529505944 0.513620566385903 0.300000000000000 + 4.000480015643325 0.526673185607908 0.300000000000000 + 4.099624501780707 0.539725804829913 0.300000000000000 + 4.198768987918087 0.552778424051918 0.300000000000000 + 4.297913474055468 0.565831043273924 0.300000000000000 + 4.397057960192850 0.578883662495929 0.300000000000000 + 4.496202446330230 0.591936281717934 0.300000000000000 + 4.595346932467612 0.604988900939939 0.300000000000000 + 4.694491418604993 0.618041520161944 0.300000000000000 + 4.793635904742374 0.631094139383950 0.300000000000000 + 4.892780390879754 0.644146758605955 0.300000000000000 + 4.991924877017135 0.657199377827960 0.300000000000000 + 5.091069363154517 0.670251997049965 0.300000000000000 + 0.130399986549024 0.034940571088840 0.300000000000000 + 0.226992569177931 0.060822475599092 0.300000000000000 + 0.323585151806838 0.086704380109344 0.300000000000000 + 0.420177734435745 0.112586284619597 0.300000000000000 + 0.516770317064652 0.138468189129849 0.300000000000000 + 0.613362899693559 0.164350093640101 0.300000000000000 + 0.709955482322465 0.190231998150353 0.300000000000000 + 0.806548064951372 0.216113902660605 0.300000000000000 + 0.903140647580279 0.241995807170857 0.300000000000000 + 0.999733230209186 0.267877711681109 0.300000000000000 + 1.096325812838093 0.293759616191361 0.300000000000000 + 1.192918395467000 0.319641520701613 0.300000000000000 + 1.289510978095906 0.345523425211865 0.300000000000000 + 1.386103560724813 0.371405329722117 0.300000000000000 + 1.482696143353720 0.397287234232369 0.300000000000000 + 1.579288725982627 0.423169138742621 0.300000000000000 + 1.675881308611534 0.449051043252873 0.300000000000000 + 1.772473891240440 0.474932947763126 0.300000000000000 + 1.869066473869347 0.500814852273378 0.300000000000000 + 1.965659056498254 0.526696756783630 0.300000000000000 + 2.062251639127161 0.552578661293882 0.300000000000000 + 2.158844221756068 0.578460565804134 0.300000000000000 + 2.255436804384975 0.604342470314386 0.300000000000000 + 2.352029387013882 0.630224374824638 0.300000000000000 + 2.448621969642788 0.656106279334890 0.300000000000000 + 2.545214552271695 0.681988183845142 0.300000000000000 + 2.641807134900602 0.707870088355394 0.300000000000000 + 2.738399717529509 0.733751992865646 0.300000000000000 + 2.834992300158416 0.759633897375898 0.300000000000000 + 2.931584882787322 0.785515801886150 0.300000000000000 + 3.028177465416229 0.811397706396403 0.300000000000000 + 3.124770048045136 0.837279610906655 0.300000000000000 + 3.221362630674043 0.863161515416907 0.300000000000000 + 3.317955213302950 0.889043419927159 0.300000000000000 + 3.414547795931857 0.914925324437411 0.300000000000000 + 3.511140378560763 0.940807228947663 0.300000000000000 + 3.607732961189670 0.966689133457915 0.300000000000000 + 3.704325543818577 0.992571037968167 0.300000000000000 + 3.800918126447484 1.018452942478419 0.300000000000000 + 3.897510709076391 1.044334846988671 0.300000000000000 + 3.994103291705299 1.070216751498923 0.300000000000000 + 4.090695874334204 1.096098656009175 0.300000000000000 + 4.187288456963111 1.121980560519428 0.300000000000000 + 4.283881039592019 1.147862465029680 0.300000000000000 + 4.380473622220926 1.173744369539932 0.300000000000000 + 4.477066204849833 1.199626274050184 0.300000000000000 + 4.573658787478739 1.225508178560436 0.300000000000000 + 4.670251370107646 1.251390083070688 0.300000000000000 + 4.766843952736553 1.277271987580940 0.300000000000000 + 4.863436535365460 1.303153892091192 0.300000000000000 + 4.960029117994367 1.329035796601444 0.300000000000000 + 0.135000000000000 0.000000000000000 0.400000000000000 + 0.235000000000000 0.000000000000000 0.400000000000000 + 0.335000000000000 0.000000000000000 0.400000000000000 + 0.435000000000000 0.000000000000000 0.400000000000000 + 0.535000000000000 0.000000000000000 0.400000000000000 + 0.635000000000000 0.000000000000000 0.400000000000000 + 0.735000000000000 0.000000000000000 0.400000000000000 + 0.835000000000000 0.000000000000000 0.400000000000000 + 0.935000000000000 0.000000000000000 0.400000000000000 + 1.035000000000000 0.000000000000000 0.400000000000000 + 1.135000000000000 0.000000000000000 0.400000000000000 + 1.235000000000000 0.000000000000000 0.400000000000000 + 1.335000000000000 0.000000000000000 0.400000000000000 + 1.435000000000000 0.000000000000000 0.400000000000000 + 1.535000000000000 0.000000000000000 0.400000000000000 + 1.635000000000000 0.000000000000000 0.400000000000000 + 1.735000000000000 0.000000000000000 0.400000000000000 + 1.835000000000000 0.000000000000000 0.400000000000000 + 1.935000000000000 0.000000000000000 0.400000000000000 + 2.035000000000000 0.000000000000000 0.400000000000000 + 2.135000000000000 0.000000000000000 0.400000000000000 + 2.235000000000000 0.000000000000000 0.400000000000000 + 2.335000000000000 0.000000000000000 0.400000000000000 + 2.435000000000000 0.000000000000000 0.400000000000000 + 2.535000000000000 0.000000000000000 0.400000000000000 + 2.635000000000000 0.000000000000000 0.400000000000000 + 2.735000000000000 0.000000000000000 0.400000000000000 + 2.835000000000000 0.000000000000000 0.400000000000000 + 2.935000000000000 0.000000000000000 0.400000000000000 + 3.035000000000000 0.000000000000000 0.400000000000000 + 3.135000000000000 0.000000000000000 0.400000000000000 + 3.235000000000000 0.000000000000000 0.400000000000000 + 3.335000000000000 0.000000000000000 0.400000000000000 + 3.435000000000000 0.000000000000000 0.400000000000000 + 3.535000000000000 0.000000000000000 0.400000000000000 + 3.635000000000000 0.000000000000000 0.400000000000000 + 3.735000000000000 0.000000000000000 0.400000000000000 + 3.835000000000000 0.000000000000000 0.400000000000000 + 3.935000000000000 0.000000000000000 0.400000000000000 + 4.035000000000000 0.000000000000000 0.400000000000000 + 4.135000000000001 0.000000000000000 0.400000000000000 + 4.235000000000000 0.000000000000000 0.400000000000000 + 4.335000000000000 0.000000000000000 0.400000000000000 + 4.435000000000000 0.000000000000000 0.400000000000000 + 4.535000000000000 0.000000000000000 0.400000000000000 + 4.635000000000001 0.000000000000000 0.400000000000000 + 4.735000000000000 0.000000000000000 0.400000000000000 + 4.835000000000001 0.000000000000000 0.400000000000000 + 4.935000000000000 0.000000000000000 0.400000000000000 + 5.035000000000000 0.000000000000000 0.400000000000000 + 5.135000000000001 0.000000000000000 0.400000000000000 + 0.133845056285464 0.017621035949707 0.400000000000000 + 0.232989542422845 0.030673655171712 0.400000000000000 + 0.332134028560227 0.043726274393717 0.400000000000000 + 0.431278514697608 0.056778893615722 0.400000000000000 + 0.530423000834989 0.069831512837728 0.400000000000000 + 0.629567486972370 0.082884132059733 0.400000000000000 + 0.728711973109751 0.095936751281738 0.400000000000000 + 0.827856459247132 0.108989370503743 0.400000000000000 + 0.927000945384513 0.122041989725748 0.400000000000000 + 1.026145431521894 0.135094608947753 0.400000000000000 + 1.125289917659275 0.148147228169759 0.400000000000000 + 1.224434403796656 0.161199847391764 0.400000000000000 + 1.323578889934037 0.174252466613769 0.400000000000000 + 1.422723376071418 0.187305085835774 0.400000000000000 + 1.521867862208799 0.200357705057779 0.400000000000000 + 1.621012348346180 0.213410324279784 0.400000000000000 + 1.720156834483561 0.226462943501789 0.400000000000000 + 1.819301320620942 0.239515562723795 0.400000000000000 + 1.918445806758323 0.252568181945800 0.400000000000000 + 2.017590292895704 0.265620801167805 0.400000000000000 + 2.116734779033085 0.278673420389810 0.400000000000000 + 2.215879265170466 0.291726039611815 0.400000000000000 + 2.315023751307847 0.304778658833820 0.400000000000000 + 2.414168237445228 0.317831278055826 0.400000000000000 + 2.513312723582609 0.330883897277831 0.400000000000000 + 2.612457209719990 0.343936516499836 0.400000000000000 + 2.711601695857371 0.356989135721841 0.400000000000000 + 2.810746181994753 0.370041754943846 0.400000000000000 + 2.909890668132133 0.383094374165851 0.400000000000000 + 3.009035154269514 0.396146993387857 0.400000000000000 + 3.108179640406895 0.409199612609862 0.400000000000000 + 3.207324126544277 0.422252231831867 0.400000000000000 + 3.306468612681658 0.435304851053872 0.400000000000000 + 3.405613098819039 0.448357470275877 0.400000000000000 + 3.504757584956419 0.461410089497882 0.400000000000000 + 3.603902071093801 0.474462708719887 0.400000000000000 + 3.703046557231182 0.487515327941893 0.400000000000000 + 3.802191043368563 0.500567947163898 0.400000000000000 + 3.901335529505944 0.513620566385903 0.400000000000000 + 4.000480015643325 0.526673185607908 0.400000000000000 + 4.099624501780707 0.539725804829913 0.400000000000000 + 4.198768987918087 0.552778424051918 0.400000000000000 + 4.297913474055468 0.565831043273924 0.400000000000000 + 4.397057960192850 0.578883662495929 0.400000000000000 + 4.496202446330230 0.591936281717934 0.400000000000000 + 4.595346932467612 0.604988900939939 0.400000000000000 + 4.694491418604993 0.618041520161944 0.400000000000000 + 4.793635904742374 0.631094139383950 0.400000000000000 + 4.892780390879754 0.644146758605955 0.400000000000000 + 4.991924877017135 0.657199377827960 0.400000000000000 + 5.091069363154517 0.670251997049965 0.400000000000000 + 0.130399986549024 0.034940571088840 0.400000000000000 + 0.226992569177931 0.060822475599092 0.400000000000000 + 0.323585151806838 0.086704380109344 0.400000000000000 + 0.420177734435745 0.112586284619597 0.400000000000000 + 0.516770317064652 0.138468189129849 0.400000000000000 + 0.613362899693559 0.164350093640101 0.400000000000000 + 0.709955482322465 0.190231998150353 0.400000000000000 + 0.806548064951372 0.216113902660605 0.400000000000000 + 0.903140647580279 0.241995807170857 0.400000000000000 + 0.999733230209186 0.267877711681109 0.400000000000000 + 1.096325812838093 0.293759616191361 0.400000000000000 + 1.192918395467000 0.319641520701613 0.400000000000000 + 1.289510978095906 0.345523425211865 0.400000000000000 + 1.386103560724813 0.371405329722117 0.400000000000000 + 1.482696143353720 0.397287234232369 0.400000000000000 + 1.579288725982627 0.423169138742621 0.400000000000000 + 1.675881308611534 0.449051043252873 0.400000000000000 + 1.772473891240440 0.474932947763126 0.400000000000000 + 1.869066473869347 0.500814852273378 0.400000000000000 + 1.965659056498254 0.526696756783630 0.400000000000000 + 2.062251639127161 0.552578661293882 0.400000000000000 + 2.158844221756068 0.578460565804134 0.400000000000000 + 2.255436804384975 0.604342470314386 0.400000000000000 + 2.352029387013882 0.630224374824638 0.400000000000000 + 2.448621969642788 0.656106279334890 0.400000000000000 + 2.545214552271695 0.681988183845142 0.400000000000000 + 2.641807134900602 0.707870088355394 0.400000000000000 + 2.738399717529509 0.733751992865646 0.400000000000000 + 2.834992300158416 0.759633897375898 0.400000000000000 + 2.931584882787322 0.785515801886150 0.400000000000000 + 3.028177465416229 0.811397706396403 0.400000000000000 + 3.124770048045136 0.837279610906655 0.400000000000000 + 3.221362630674043 0.863161515416907 0.400000000000000 + 3.317955213302950 0.889043419927159 0.400000000000000 + 3.414547795931857 0.914925324437411 0.400000000000000 + 3.511140378560763 0.940807228947663 0.400000000000000 + 3.607732961189670 0.966689133457915 0.400000000000000 + 3.704325543818577 0.992571037968167 0.400000000000000 + 3.800918126447484 1.018452942478419 0.400000000000000 + 3.897510709076391 1.044334846988671 0.400000000000000 + 3.994103291705299 1.070216751498923 0.400000000000000 + 4.090695874334204 1.096098656009175 0.400000000000000 + 4.187288456963111 1.121980560519428 0.400000000000000 + 4.283881039592019 1.147862465029680 0.400000000000000 + 4.380473622220926 1.173744369539932 0.400000000000000 + 4.477066204849833 1.199626274050184 0.400000000000000 + 4.573658787478739 1.225508178560436 0.400000000000000 + 4.670251370107646 1.251390083070688 0.400000000000000 + 4.766843952736553 1.277271987580940 0.400000000000000 + 4.863436535365460 1.303153892091192 0.400000000000000 + 4.960029117994367 1.329035796601444 0.400000000000000 + 0.135000000000000 0.000000000000000 0.500000000000000 + 0.235000000000000 0.000000000000000 0.500000000000000 + 0.335000000000000 0.000000000000000 0.500000000000000 + 0.435000000000000 0.000000000000000 0.500000000000000 + 0.535000000000000 0.000000000000000 0.500000000000000 + 0.635000000000000 0.000000000000000 0.500000000000000 + 0.735000000000000 0.000000000000000 0.500000000000000 + 0.835000000000000 0.000000000000000 0.500000000000000 + 0.935000000000000 0.000000000000000 0.500000000000000 + 1.035000000000000 0.000000000000000 0.500000000000000 + 1.135000000000000 0.000000000000000 0.500000000000000 + 1.235000000000000 0.000000000000000 0.500000000000000 + 1.335000000000000 0.000000000000000 0.500000000000000 + 1.435000000000000 0.000000000000000 0.500000000000000 + 1.535000000000000 0.000000000000000 0.500000000000000 + 1.635000000000000 0.000000000000000 0.500000000000000 + 1.735000000000000 0.000000000000000 0.500000000000000 + 1.835000000000000 0.000000000000000 0.500000000000000 + 1.935000000000000 0.000000000000000 0.500000000000000 + 2.035000000000000 0.000000000000000 0.500000000000000 + 2.135000000000000 0.000000000000000 0.500000000000000 + 2.235000000000000 0.000000000000000 0.500000000000000 + 2.335000000000000 0.000000000000000 0.500000000000000 + 2.435000000000000 0.000000000000000 0.500000000000000 + 2.535000000000000 0.000000000000000 0.500000000000000 + 2.635000000000000 0.000000000000000 0.500000000000000 + 2.735000000000000 0.000000000000000 0.500000000000000 + 2.835000000000000 0.000000000000000 0.500000000000000 + 2.935000000000000 0.000000000000000 0.500000000000000 + 3.035000000000000 0.000000000000000 0.500000000000000 + 3.135000000000000 0.000000000000000 0.500000000000000 + 3.235000000000000 0.000000000000000 0.500000000000000 + 3.335000000000000 0.000000000000000 0.500000000000000 + 3.435000000000000 0.000000000000000 0.500000000000000 + 3.535000000000000 0.000000000000000 0.500000000000000 + 3.635000000000000 0.000000000000000 0.500000000000000 + 3.735000000000000 0.000000000000000 0.500000000000000 + 3.835000000000000 0.000000000000000 0.500000000000000 + 3.935000000000000 0.000000000000000 0.500000000000000 + 4.035000000000000 0.000000000000000 0.500000000000000 + 4.135000000000001 0.000000000000000 0.500000000000000 + 4.235000000000000 0.000000000000000 0.500000000000000 + 4.335000000000000 0.000000000000000 0.500000000000000 + 4.435000000000000 0.000000000000000 0.500000000000000 + 4.535000000000000 0.000000000000000 0.500000000000000 + 4.635000000000001 0.000000000000000 0.500000000000000 + 4.735000000000000 0.000000000000000 0.500000000000000 + 4.835000000000001 0.000000000000000 0.500000000000000 + 4.935000000000000 0.000000000000000 0.500000000000000 + 5.035000000000000 0.000000000000000 0.500000000000000 + 5.135000000000001 0.000000000000000 0.500000000000000 + 0.133845056285464 0.017621035949707 0.500000000000000 + 0.232989542422845 0.030673655171712 0.500000000000000 + 0.332134028560227 0.043726274393717 0.500000000000000 + 0.431278514697608 0.056778893615722 0.500000000000000 + 0.530423000834989 0.069831512837728 0.500000000000000 + 0.629567486972370 0.082884132059733 0.500000000000000 + 0.728711973109751 0.095936751281738 0.500000000000000 + 0.827856459247132 0.108989370503743 0.500000000000000 + 0.927000945384513 0.122041989725748 0.500000000000000 + 1.026145431521894 0.135094608947753 0.500000000000000 + 1.125289917659275 0.148147228169759 0.500000000000000 + 1.224434403796656 0.161199847391764 0.500000000000000 + 1.323578889934037 0.174252466613769 0.500000000000000 + 1.422723376071418 0.187305085835774 0.500000000000000 + 1.521867862208799 0.200357705057779 0.500000000000000 + 1.621012348346180 0.213410324279784 0.500000000000000 + 1.720156834483561 0.226462943501789 0.500000000000000 + 1.819301320620942 0.239515562723795 0.500000000000000 + 1.918445806758323 0.252568181945800 0.500000000000000 + 2.017590292895704 0.265620801167805 0.500000000000000 + 2.116734779033085 0.278673420389810 0.500000000000000 + 2.215879265170466 0.291726039611815 0.500000000000000 + 2.315023751307847 0.304778658833820 0.500000000000000 + 2.414168237445228 0.317831278055826 0.500000000000000 + 2.513312723582609 0.330883897277831 0.500000000000000 + 2.612457209719990 0.343936516499836 0.500000000000000 + 2.711601695857371 0.356989135721841 0.500000000000000 + 2.810746181994753 0.370041754943846 0.500000000000000 + 2.909890668132133 0.383094374165851 0.500000000000000 + 3.009035154269514 0.396146993387857 0.500000000000000 + 3.108179640406895 0.409199612609862 0.500000000000000 + 3.207324126544277 0.422252231831867 0.500000000000000 + 3.306468612681658 0.435304851053872 0.500000000000000 + 3.405613098819039 0.448357470275877 0.500000000000000 + 3.504757584956419 0.461410089497882 0.500000000000000 + 3.603902071093801 0.474462708719887 0.500000000000000 + 3.703046557231182 0.487515327941893 0.500000000000000 + 3.802191043368563 0.500567947163898 0.500000000000000 + 3.901335529505944 0.513620566385903 0.500000000000000 + 4.000480015643325 0.526673185607908 0.500000000000000 + 4.099624501780707 0.539725804829913 0.500000000000000 + 4.198768987918087 0.552778424051918 0.500000000000000 + 4.297913474055468 0.565831043273924 0.500000000000000 + 4.397057960192850 0.578883662495929 0.500000000000000 + 4.496202446330230 0.591936281717934 0.500000000000000 + 4.595346932467612 0.604988900939939 0.500000000000000 + 4.694491418604993 0.618041520161944 0.500000000000000 + 4.793635904742374 0.631094139383950 0.500000000000000 + 4.892780390879754 0.644146758605955 0.500000000000000 + 4.991924877017135 0.657199377827960 0.500000000000000 + 5.091069363154517 0.670251997049965 0.500000000000000 + 0.130399986549024 0.034940571088840 0.500000000000000 + 0.226992569177931 0.060822475599092 0.500000000000000 + 0.323585151806838 0.086704380109344 0.500000000000000 + 0.420177734435745 0.112586284619597 0.500000000000000 + 0.516770317064652 0.138468189129849 0.500000000000000 + 0.613362899693559 0.164350093640101 0.500000000000000 + 0.709955482322465 0.190231998150353 0.500000000000000 + 0.806548064951372 0.216113902660605 0.500000000000000 + 0.903140647580279 0.241995807170857 0.500000000000000 + 0.999733230209186 0.267877711681109 0.500000000000000 + 1.096325812838093 0.293759616191361 0.500000000000000 + 1.192918395467000 0.319641520701613 0.500000000000000 + 1.289510978095906 0.345523425211865 0.500000000000000 + 1.386103560724813 0.371405329722117 0.500000000000000 + 1.482696143353720 0.397287234232369 0.500000000000000 + 1.579288725982627 0.423169138742621 0.500000000000000 + 1.675881308611534 0.449051043252873 0.500000000000000 + 1.772473891240440 0.474932947763126 0.500000000000000 + 1.869066473869347 0.500814852273378 0.500000000000000 + 1.965659056498254 0.526696756783630 0.500000000000000 + 2.062251639127161 0.552578661293882 0.500000000000000 + 2.158844221756068 0.578460565804134 0.500000000000000 + 2.255436804384975 0.604342470314386 0.500000000000000 + 2.352029387013882 0.630224374824638 0.500000000000000 + 2.448621969642788 0.656106279334890 0.500000000000000 + 2.545214552271695 0.681988183845142 0.500000000000000 + 2.641807134900602 0.707870088355394 0.500000000000000 + 2.738399717529509 0.733751992865646 0.500000000000000 + 2.834992300158416 0.759633897375898 0.500000000000000 + 2.931584882787322 0.785515801886150 0.500000000000000 + 3.028177465416229 0.811397706396403 0.500000000000000 + 3.124770048045136 0.837279610906655 0.500000000000000 + 3.221362630674043 0.863161515416907 0.500000000000000 + 3.317955213302950 0.889043419927159 0.500000000000000 + 3.414547795931857 0.914925324437411 0.500000000000000 + 3.511140378560763 0.940807228947663 0.500000000000000 + 3.607732961189670 0.966689133457915 0.500000000000000 + 3.704325543818577 0.992571037968167 0.500000000000000 + 3.800918126447484 1.018452942478419 0.500000000000000 + 3.897510709076391 1.044334846988671 0.500000000000000 + 3.994103291705299 1.070216751498923 0.500000000000000 + 4.090695874334204 1.096098656009175 0.500000000000000 + 4.187288456963111 1.121980560519428 0.500000000000000 + 4.283881039592019 1.147862465029680 0.500000000000000 + 4.380473622220926 1.173744369539932 0.500000000000000 + 4.477066204849833 1.199626274050184 0.500000000000000 + 4.573658787478739 1.225508178560436 0.500000000000000 + 4.670251370107646 1.251390083070688 0.500000000000000 + 4.766843952736553 1.277271987580940 0.500000000000000 + 4.863436535365460 1.303153892091192 0.500000000000000 + 4.960029117994367 1.329035796601444 0.500000000000000 + 0.135000000000000 0.000000000000000 0.600000000000000 + 0.235000000000000 0.000000000000000 0.600000000000000 + 0.335000000000000 0.000000000000000 0.600000000000000 + 0.435000000000000 0.000000000000000 0.600000000000000 + 0.535000000000000 0.000000000000000 0.600000000000000 + 0.635000000000000 0.000000000000000 0.600000000000000 + 0.735000000000000 0.000000000000000 0.600000000000000 + 0.835000000000000 0.000000000000000 0.600000000000000 + 0.935000000000000 0.000000000000000 0.600000000000000 + 1.035000000000000 0.000000000000000 0.600000000000000 + 1.135000000000000 0.000000000000000 0.600000000000000 + 1.235000000000000 0.000000000000000 0.600000000000000 + 1.335000000000000 0.000000000000000 0.600000000000000 + 1.435000000000000 0.000000000000000 0.600000000000000 + 1.535000000000000 0.000000000000000 0.600000000000000 + 1.635000000000000 0.000000000000000 0.600000000000000 + 1.735000000000000 0.000000000000000 0.600000000000000 + 1.835000000000000 0.000000000000000 0.600000000000000 + 1.935000000000000 0.000000000000000 0.600000000000000 + 2.035000000000000 0.000000000000000 0.600000000000000 + 2.135000000000000 0.000000000000000 0.600000000000000 + 2.235000000000000 0.000000000000000 0.600000000000000 + 2.335000000000000 0.000000000000000 0.600000000000000 + 2.435000000000000 0.000000000000000 0.600000000000000 + 2.535000000000000 0.000000000000000 0.600000000000000 + 2.635000000000000 0.000000000000000 0.600000000000000 + 2.735000000000000 0.000000000000000 0.600000000000000 + 2.835000000000000 0.000000000000000 0.600000000000000 + 2.935000000000000 0.000000000000000 0.600000000000000 + 3.035000000000000 0.000000000000000 0.600000000000000 + 3.135000000000000 0.000000000000000 0.600000000000000 + 3.235000000000000 0.000000000000000 0.600000000000000 + 3.335000000000000 0.000000000000000 0.600000000000000 + 3.435000000000000 0.000000000000000 0.600000000000000 + 3.535000000000000 0.000000000000000 0.600000000000000 + 3.635000000000000 0.000000000000000 0.600000000000000 + 3.735000000000000 0.000000000000000 0.600000000000000 + 3.835000000000000 0.000000000000000 0.600000000000000 + 3.935000000000000 0.000000000000000 0.600000000000000 + 4.035000000000000 0.000000000000000 0.600000000000000 + 4.135000000000001 0.000000000000000 0.600000000000000 + 4.235000000000000 0.000000000000000 0.600000000000000 + 4.335000000000000 0.000000000000000 0.600000000000000 + 4.435000000000000 0.000000000000000 0.600000000000000 + 4.535000000000000 0.000000000000000 0.600000000000000 + 4.635000000000001 0.000000000000000 0.600000000000000 + 4.735000000000000 0.000000000000000 0.600000000000000 + 4.835000000000001 0.000000000000000 0.600000000000000 + 4.935000000000000 0.000000000000000 0.600000000000000 + 5.035000000000000 0.000000000000000 0.600000000000000 + 5.135000000000001 0.000000000000000 0.600000000000000 + 0.133845056285464 0.017621035949707 0.600000000000000 + 0.232989542422845 0.030673655171712 0.600000000000000 + 0.332134028560227 0.043726274393717 0.600000000000000 + 0.431278514697608 0.056778893615722 0.600000000000000 + 0.530423000834989 0.069831512837728 0.600000000000000 + 0.629567486972370 0.082884132059733 0.600000000000000 + 0.728711973109751 0.095936751281738 0.600000000000000 + 0.827856459247132 0.108989370503743 0.600000000000000 + 0.927000945384513 0.122041989725748 0.600000000000000 + 1.026145431521894 0.135094608947753 0.600000000000000 + 1.125289917659275 0.148147228169759 0.600000000000000 + 1.224434403796656 0.161199847391764 0.600000000000000 + 1.323578889934037 0.174252466613769 0.600000000000000 + 1.422723376071418 0.187305085835774 0.600000000000000 + 1.521867862208799 0.200357705057779 0.600000000000000 + 1.621012348346180 0.213410324279784 0.600000000000000 + 1.720156834483561 0.226462943501789 0.600000000000000 + 1.819301320620942 0.239515562723795 0.600000000000000 + 1.918445806758323 0.252568181945800 0.600000000000000 + 2.017590292895704 0.265620801167805 0.600000000000000 + 2.116734779033085 0.278673420389810 0.600000000000000 + 2.215879265170466 0.291726039611815 0.600000000000000 + 2.315023751307847 0.304778658833820 0.600000000000000 + 2.414168237445228 0.317831278055826 0.600000000000000 + 2.513312723582609 0.330883897277831 0.600000000000000 + 2.612457209719990 0.343936516499836 0.600000000000000 + 2.711601695857371 0.356989135721841 0.600000000000000 + 2.810746181994753 0.370041754943846 0.600000000000000 + 2.909890668132133 0.383094374165851 0.600000000000000 + 3.009035154269514 0.396146993387857 0.600000000000000 + 3.108179640406895 0.409199612609862 0.600000000000000 + 3.207324126544277 0.422252231831867 0.600000000000000 + 3.306468612681658 0.435304851053872 0.600000000000000 + 3.405613098819039 0.448357470275877 0.600000000000000 + 3.504757584956419 0.461410089497882 0.600000000000000 + 3.603902071093801 0.474462708719887 0.600000000000000 + 3.703046557231182 0.487515327941893 0.600000000000000 + 3.802191043368563 0.500567947163898 0.600000000000000 + 3.901335529505944 0.513620566385903 0.600000000000000 + 4.000480015643325 0.526673185607908 0.600000000000000 + 4.099624501780707 0.539725804829913 0.600000000000000 + 4.198768987918087 0.552778424051918 0.600000000000000 + 4.297913474055468 0.565831043273924 0.600000000000000 + 4.397057960192850 0.578883662495929 0.600000000000000 + 4.496202446330230 0.591936281717934 0.600000000000000 + 4.595346932467612 0.604988900939939 0.600000000000000 + 4.694491418604993 0.618041520161944 0.600000000000000 + 4.793635904742374 0.631094139383950 0.600000000000000 + 4.892780390879754 0.644146758605955 0.600000000000000 + 4.991924877017135 0.657199377827960 0.600000000000000 + 5.091069363154517 0.670251997049965 0.600000000000000 + 0.130399986549024 0.034940571088840 0.600000000000000 + 0.226992569177931 0.060822475599092 0.600000000000000 + 0.323585151806838 0.086704380109344 0.600000000000000 + 0.420177734435745 0.112586284619597 0.600000000000000 + 0.516770317064652 0.138468189129849 0.600000000000000 + 0.613362899693559 0.164350093640101 0.600000000000000 + 0.709955482322465 0.190231998150353 0.600000000000000 + 0.806548064951372 0.216113902660605 0.600000000000000 + 0.903140647580279 0.241995807170857 0.600000000000000 + 0.999733230209186 0.267877711681109 0.600000000000000 + 1.096325812838093 0.293759616191361 0.600000000000000 + 1.192918395467000 0.319641520701613 0.600000000000000 + 1.289510978095906 0.345523425211865 0.600000000000000 + 1.386103560724813 0.371405329722117 0.600000000000000 + 1.482696143353720 0.397287234232369 0.600000000000000 + 1.579288725982627 0.423169138742621 0.600000000000000 + 1.675881308611534 0.449051043252873 0.600000000000000 + 1.772473891240440 0.474932947763126 0.600000000000000 + 1.869066473869347 0.500814852273378 0.600000000000000 + 1.965659056498254 0.526696756783630 0.600000000000000 + 2.062251639127161 0.552578661293882 0.600000000000000 + 2.158844221756068 0.578460565804134 0.600000000000000 + 2.255436804384975 0.604342470314386 0.600000000000000 + 2.352029387013882 0.630224374824638 0.600000000000000 + 2.448621969642788 0.656106279334890 0.600000000000000 + 2.545214552271695 0.681988183845142 0.600000000000000 + 2.641807134900602 0.707870088355394 0.600000000000000 + 2.738399717529509 0.733751992865646 0.600000000000000 + 2.834992300158416 0.759633897375898 0.600000000000000 + 2.931584882787322 0.785515801886150 0.600000000000000 + 3.028177465416229 0.811397706396403 0.600000000000000 + 3.124770048045136 0.837279610906655 0.600000000000000 + 3.221362630674043 0.863161515416907 0.600000000000000 + 3.317955213302950 0.889043419927159 0.600000000000000 + 3.414547795931857 0.914925324437411 0.600000000000000 + 3.511140378560763 0.940807228947663 0.600000000000000 + 3.607732961189670 0.966689133457915 0.600000000000000 + 3.704325543818577 0.992571037968167 0.600000000000000 + 3.800918126447484 1.018452942478419 0.600000000000000 + 3.897510709076391 1.044334846988671 0.600000000000000 + 3.994103291705299 1.070216751498923 0.600000000000000 + 4.090695874334204 1.096098656009175 0.600000000000000 + 4.187288456963111 1.121980560519428 0.600000000000000 + 4.283881039592019 1.147862465029680 0.600000000000000 + 4.380473622220926 1.173744369539932 0.600000000000000 + 4.477066204849833 1.199626274050184 0.600000000000000 + 4.573658787478739 1.225508178560436 0.600000000000000 + 4.670251370107646 1.251390083070688 0.600000000000000 + 4.766843952736553 1.277271987580940 0.600000000000000 + 4.863436535365460 1.303153892091192 0.600000000000000 + 4.960029117994367 1.329035796601444 0.600000000000000 + 0.135000000000000 0.000000000000000 0.700000000000000 + 0.235000000000000 0.000000000000000 0.700000000000000 + 0.335000000000000 0.000000000000000 0.700000000000000 + 0.435000000000000 0.000000000000000 0.700000000000000 + 0.535000000000000 0.000000000000000 0.700000000000000 + 0.635000000000000 0.000000000000000 0.700000000000000 + 0.735000000000000 0.000000000000000 0.700000000000000 + 0.835000000000000 0.000000000000000 0.700000000000000 + 0.935000000000000 0.000000000000000 0.700000000000000 + 1.035000000000000 0.000000000000000 0.700000000000000 + 1.135000000000000 0.000000000000000 0.700000000000000 + 1.235000000000000 0.000000000000000 0.700000000000000 + 1.335000000000000 0.000000000000000 0.700000000000000 + 1.435000000000000 0.000000000000000 0.700000000000000 + 1.535000000000000 0.000000000000000 0.700000000000000 + 1.635000000000000 0.000000000000000 0.700000000000000 + 1.735000000000000 0.000000000000000 0.700000000000000 + 1.835000000000000 0.000000000000000 0.700000000000000 + 1.935000000000000 0.000000000000000 0.700000000000000 + 2.035000000000000 0.000000000000000 0.700000000000000 + 2.135000000000000 0.000000000000000 0.700000000000000 + 2.235000000000000 0.000000000000000 0.700000000000000 + 2.335000000000000 0.000000000000000 0.700000000000000 + 2.435000000000000 0.000000000000000 0.700000000000000 + 2.535000000000000 0.000000000000000 0.700000000000000 + 2.635000000000000 0.000000000000000 0.700000000000000 + 2.735000000000000 0.000000000000000 0.700000000000000 + 2.835000000000000 0.000000000000000 0.700000000000000 + 2.935000000000000 0.000000000000000 0.700000000000000 + 3.035000000000000 0.000000000000000 0.700000000000000 + 3.135000000000000 0.000000000000000 0.700000000000000 + 3.235000000000000 0.000000000000000 0.700000000000000 + 3.335000000000000 0.000000000000000 0.700000000000000 + 3.435000000000000 0.000000000000000 0.700000000000000 + 3.535000000000000 0.000000000000000 0.700000000000000 + 3.635000000000000 0.000000000000000 0.700000000000000 + 3.735000000000000 0.000000000000000 0.700000000000000 + 3.835000000000000 0.000000000000000 0.700000000000000 + 3.935000000000000 0.000000000000000 0.700000000000000 + 4.035000000000000 0.000000000000000 0.700000000000000 + 4.135000000000001 0.000000000000000 0.700000000000000 + 4.235000000000000 0.000000000000000 0.700000000000000 + 4.335000000000000 0.000000000000000 0.700000000000000 + 4.435000000000000 0.000000000000000 0.700000000000000 + 4.535000000000000 0.000000000000000 0.700000000000000 + 4.635000000000001 0.000000000000000 0.700000000000000 + 4.735000000000000 0.000000000000000 0.700000000000000 + 4.835000000000001 0.000000000000000 0.700000000000000 + 4.935000000000000 0.000000000000000 0.700000000000000 + 5.035000000000000 0.000000000000000 0.700000000000000 + 5.135000000000001 0.000000000000000 0.700000000000000 + 0.133845056285464 0.017621035949707 0.700000000000000 + 0.232989542422845 0.030673655171712 0.700000000000000 + 0.332134028560227 0.043726274393717 0.700000000000000 + 0.431278514697608 0.056778893615722 0.700000000000000 + 0.530423000834989 0.069831512837728 0.700000000000000 + 0.629567486972370 0.082884132059733 0.700000000000000 + 0.728711973109751 0.095936751281738 0.700000000000000 + 0.827856459247132 0.108989370503743 0.700000000000000 + 0.927000945384513 0.122041989725748 0.700000000000000 + 1.026145431521894 0.135094608947753 0.700000000000000 + 1.125289917659275 0.148147228169759 0.700000000000000 + 1.224434403796656 0.161199847391764 0.700000000000000 + 1.323578889934037 0.174252466613769 0.700000000000000 + 1.422723376071418 0.187305085835774 0.700000000000000 + 1.521867862208799 0.200357705057779 0.700000000000000 + 1.621012348346180 0.213410324279784 0.700000000000000 + 1.720156834483561 0.226462943501789 0.700000000000000 + 1.819301320620942 0.239515562723795 0.700000000000000 + 1.918445806758323 0.252568181945800 0.700000000000000 + 2.017590292895704 0.265620801167805 0.700000000000000 + 2.116734779033085 0.278673420389810 0.700000000000000 + 2.215879265170466 0.291726039611815 0.700000000000000 + 2.315023751307847 0.304778658833820 0.700000000000000 + 2.414168237445228 0.317831278055826 0.700000000000000 + 2.513312723582609 0.330883897277831 0.700000000000000 + 2.612457209719990 0.343936516499836 0.700000000000000 + 2.711601695857371 0.356989135721841 0.700000000000000 + 2.810746181994753 0.370041754943846 0.700000000000000 + 2.909890668132133 0.383094374165851 0.700000000000000 + 3.009035154269514 0.396146993387857 0.700000000000000 + 3.108179640406895 0.409199612609862 0.700000000000000 + 3.207324126544277 0.422252231831867 0.700000000000000 + 3.306468612681658 0.435304851053872 0.700000000000000 + 3.405613098819039 0.448357470275877 0.700000000000000 + 3.504757584956419 0.461410089497882 0.700000000000000 + 3.603902071093801 0.474462708719887 0.700000000000000 + 3.703046557231182 0.487515327941893 0.700000000000000 + 3.802191043368563 0.500567947163898 0.700000000000000 + 3.901335529505944 0.513620566385903 0.700000000000000 + 4.000480015643325 0.526673185607908 0.700000000000000 + 4.099624501780707 0.539725804829913 0.700000000000000 + 4.198768987918087 0.552778424051918 0.700000000000000 + 4.297913474055468 0.565831043273924 0.700000000000000 + 4.397057960192850 0.578883662495929 0.700000000000000 + 4.496202446330230 0.591936281717934 0.700000000000000 + 4.595346932467612 0.604988900939939 0.700000000000000 + 4.694491418604993 0.618041520161944 0.700000000000000 + 4.793635904742374 0.631094139383950 0.700000000000000 + 4.892780390879754 0.644146758605955 0.700000000000000 + 4.991924877017135 0.657199377827960 0.700000000000000 + 5.091069363154517 0.670251997049965 0.700000000000000 + 0.130399986549024 0.034940571088840 0.700000000000000 + 0.226992569177931 0.060822475599092 0.700000000000000 + 0.323585151806838 0.086704380109344 0.700000000000000 + 0.420177734435745 0.112586284619597 0.700000000000000 + 0.516770317064652 0.138468189129849 0.700000000000000 + 0.613362899693559 0.164350093640101 0.700000000000000 + 0.709955482322465 0.190231998150353 0.700000000000000 + 0.806548064951372 0.216113902660605 0.700000000000000 + 0.903140647580279 0.241995807170857 0.700000000000000 + 0.999733230209186 0.267877711681109 0.700000000000000 + 1.096325812838093 0.293759616191361 0.700000000000000 + 1.192918395467000 0.319641520701613 0.700000000000000 + 1.289510978095906 0.345523425211865 0.700000000000000 + 1.386103560724813 0.371405329722117 0.700000000000000 + 1.482696143353720 0.397287234232369 0.700000000000000 + 1.579288725982627 0.423169138742621 0.700000000000000 + 1.675881308611534 0.449051043252873 0.700000000000000 + 1.772473891240440 0.474932947763126 0.700000000000000 + 1.869066473869347 0.500814852273378 0.700000000000000 + 1.965659056498254 0.526696756783630 0.700000000000000 + 2.062251639127161 0.552578661293882 0.700000000000000 + 2.158844221756068 0.578460565804134 0.700000000000000 + 2.255436804384975 0.604342470314386 0.700000000000000 + 2.352029387013882 0.630224374824638 0.700000000000000 + 2.448621969642788 0.656106279334890 0.700000000000000 + 2.545214552271695 0.681988183845142 0.700000000000000 + 2.641807134900602 0.707870088355394 0.700000000000000 + 2.738399717529509 0.733751992865646 0.700000000000000 + 2.834992300158416 0.759633897375898 0.700000000000000 + 2.931584882787322 0.785515801886150 0.700000000000000 + 3.028177465416229 0.811397706396403 0.700000000000000 + 3.124770048045136 0.837279610906655 0.700000000000000 + 3.221362630674043 0.863161515416907 0.700000000000000 + 3.317955213302950 0.889043419927159 0.700000000000000 + 3.414547795931857 0.914925324437411 0.700000000000000 + 3.511140378560763 0.940807228947663 0.700000000000000 + 3.607732961189670 0.966689133457915 0.700000000000000 + 3.704325543818577 0.992571037968167 0.700000000000000 + 3.800918126447484 1.018452942478419 0.700000000000000 + 3.897510709076391 1.044334846988671 0.700000000000000 + 3.994103291705299 1.070216751498923 0.700000000000000 + 4.090695874334204 1.096098656009175 0.700000000000000 + 4.187288456963111 1.121980560519428 0.700000000000000 + 4.283881039592019 1.147862465029680 0.700000000000000 + 4.380473622220926 1.173744369539932 0.700000000000000 + 4.477066204849833 1.199626274050184 0.700000000000000 + 4.573658787478739 1.225508178560436 0.700000000000000 + 4.670251370107646 1.251390083070688 0.700000000000000 + 4.766843952736553 1.277271987580940 0.700000000000000 + 4.863436535365460 1.303153892091192 0.700000000000000 + 4.960029117994367 1.329035796601444 0.700000000000000 + 0.135000000000000 0.000000000000000 0.800000000000000 + 0.235000000000000 0.000000000000000 0.800000000000000 + 0.335000000000000 0.000000000000000 0.800000000000000 + 0.435000000000000 0.000000000000000 0.800000000000000 + 0.535000000000000 0.000000000000000 0.800000000000000 + 0.635000000000000 0.000000000000000 0.800000000000000 + 0.735000000000000 0.000000000000000 0.800000000000000 + 0.835000000000000 0.000000000000000 0.800000000000000 + 0.935000000000000 0.000000000000000 0.800000000000000 + 1.035000000000000 0.000000000000000 0.800000000000000 + 1.135000000000000 0.000000000000000 0.800000000000000 + 1.235000000000000 0.000000000000000 0.800000000000000 + 1.335000000000000 0.000000000000000 0.800000000000000 + 1.435000000000000 0.000000000000000 0.800000000000000 + 1.535000000000000 0.000000000000000 0.800000000000000 + 1.635000000000000 0.000000000000000 0.800000000000000 + 1.735000000000000 0.000000000000000 0.800000000000000 + 1.835000000000000 0.000000000000000 0.800000000000000 + 1.935000000000000 0.000000000000000 0.800000000000000 + 2.035000000000000 0.000000000000000 0.800000000000000 + 2.135000000000000 0.000000000000000 0.800000000000000 + 2.235000000000000 0.000000000000000 0.800000000000000 + 2.335000000000000 0.000000000000000 0.800000000000000 + 2.435000000000000 0.000000000000000 0.800000000000000 + 2.535000000000000 0.000000000000000 0.800000000000000 + 2.635000000000000 0.000000000000000 0.800000000000000 + 2.735000000000000 0.000000000000000 0.800000000000000 + 2.835000000000000 0.000000000000000 0.800000000000000 + 2.935000000000000 0.000000000000000 0.800000000000000 + 3.035000000000000 0.000000000000000 0.800000000000000 + 3.135000000000000 0.000000000000000 0.800000000000000 + 3.235000000000000 0.000000000000000 0.800000000000000 + 3.335000000000000 0.000000000000000 0.800000000000000 + 3.435000000000000 0.000000000000000 0.800000000000000 + 3.535000000000000 0.000000000000000 0.800000000000000 + 3.635000000000000 0.000000000000000 0.800000000000000 + 3.735000000000000 0.000000000000000 0.800000000000000 + 3.835000000000000 0.000000000000000 0.800000000000000 + 3.935000000000000 0.000000000000000 0.800000000000000 + 4.035000000000000 0.000000000000000 0.800000000000000 + 4.135000000000001 0.000000000000000 0.800000000000000 + 4.235000000000000 0.000000000000000 0.800000000000000 + 4.335000000000000 0.000000000000000 0.800000000000000 + 4.435000000000000 0.000000000000000 0.800000000000000 + 4.535000000000000 0.000000000000000 0.800000000000000 + 4.635000000000001 0.000000000000000 0.800000000000000 + 4.735000000000000 0.000000000000000 0.800000000000000 + 4.835000000000001 0.000000000000000 0.800000000000000 + 4.935000000000000 0.000000000000000 0.800000000000000 + 5.035000000000000 0.000000000000000 0.800000000000000 + 5.135000000000001 0.000000000000000 0.800000000000000 + 0.133845056285464 0.017621035949707 0.800000000000000 + 0.232989542422845 0.030673655171712 0.800000000000000 + 0.332134028560227 0.043726274393717 0.800000000000000 + 0.431278514697608 0.056778893615722 0.800000000000000 + 0.530423000834989 0.069831512837728 0.800000000000000 + 0.629567486972370 0.082884132059733 0.800000000000000 + 0.728711973109751 0.095936751281738 0.800000000000000 + 0.827856459247132 0.108989370503743 0.800000000000000 + 0.927000945384513 0.122041989725748 0.800000000000000 + 1.026145431521894 0.135094608947753 0.800000000000000 + 1.125289917659275 0.148147228169759 0.800000000000000 + 1.224434403796656 0.161199847391764 0.800000000000000 + 1.323578889934037 0.174252466613769 0.800000000000000 + 1.422723376071418 0.187305085835774 0.800000000000000 + 1.521867862208799 0.200357705057779 0.800000000000000 + 1.621012348346180 0.213410324279784 0.800000000000000 + 1.720156834483561 0.226462943501789 0.800000000000000 + 1.819301320620942 0.239515562723795 0.800000000000000 + 1.918445806758323 0.252568181945800 0.800000000000000 + 2.017590292895704 0.265620801167805 0.800000000000000 + 2.116734779033085 0.278673420389810 0.800000000000000 + 2.215879265170466 0.291726039611815 0.800000000000000 + 2.315023751307847 0.304778658833820 0.800000000000000 + 2.414168237445228 0.317831278055826 0.800000000000000 + 2.513312723582609 0.330883897277831 0.800000000000000 + 2.612457209719990 0.343936516499836 0.800000000000000 + 2.711601695857371 0.356989135721841 0.800000000000000 + 2.810746181994753 0.370041754943846 0.800000000000000 + 2.909890668132133 0.383094374165851 0.800000000000000 + 3.009035154269514 0.396146993387857 0.800000000000000 + 3.108179640406895 0.409199612609862 0.800000000000000 + 3.207324126544277 0.422252231831867 0.800000000000000 + 3.306468612681658 0.435304851053872 0.800000000000000 + 3.405613098819039 0.448357470275877 0.800000000000000 + 3.504757584956419 0.461410089497882 0.800000000000000 + 3.603902071093801 0.474462708719887 0.800000000000000 + 3.703046557231182 0.487515327941893 0.800000000000000 + 3.802191043368563 0.500567947163898 0.800000000000000 + 3.901335529505944 0.513620566385903 0.800000000000000 + 4.000480015643325 0.526673185607908 0.800000000000000 + 4.099624501780707 0.539725804829913 0.800000000000000 + 4.198768987918087 0.552778424051918 0.800000000000000 + 4.297913474055468 0.565831043273924 0.800000000000000 + 4.397057960192850 0.578883662495929 0.800000000000000 + 4.496202446330230 0.591936281717934 0.800000000000000 + 4.595346932467612 0.604988900939939 0.800000000000000 + 4.694491418604993 0.618041520161944 0.800000000000000 + 4.793635904742374 0.631094139383950 0.800000000000000 + 4.892780390879754 0.644146758605955 0.800000000000000 + 4.991924877017135 0.657199377827960 0.800000000000000 + 5.091069363154517 0.670251997049965 0.800000000000000 + 0.130399986549024 0.034940571088840 0.800000000000000 + 0.226992569177931 0.060822475599092 0.800000000000000 + 0.323585151806838 0.086704380109344 0.800000000000000 + 0.420177734435745 0.112586284619597 0.800000000000000 + 0.516770317064652 0.138468189129849 0.800000000000000 + 0.613362899693559 0.164350093640101 0.800000000000000 + 0.709955482322465 0.190231998150353 0.800000000000000 + 0.806548064951372 0.216113902660605 0.800000000000000 + 0.903140647580279 0.241995807170857 0.800000000000000 + 0.999733230209186 0.267877711681109 0.800000000000000 + 1.096325812838093 0.293759616191361 0.800000000000000 + 1.192918395467000 0.319641520701613 0.800000000000000 + 1.289510978095906 0.345523425211865 0.800000000000000 + 1.386103560724813 0.371405329722117 0.800000000000000 + 1.482696143353720 0.397287234232369 0.800000000000000 + 1.579288725982627 0.423169138742621 0.800000000000000 + 1.675881308611534 0.449051043252873 0.800000000000000 + 1.772473891240440 0.474932947763126 0.800000000000000 + 1.869066473869347 0.500814852273378 0.800000000000000 + 1.965659056498254 0.526696756783630 0.800000000000000 + 2.062251639127161 0.552578661293882 0.800000000000000 + 2.158844221756068 0.578460565804134 0.800000000000000 + 2.255436804384975 0.604342470314386 0.800000000000000 + 2.352029387013882 0.630224374824638 0.800000000000000 + 2.448621969642788 0.656106279334890 0.800000000000000 + 2.545214552271695 0.681988183845142 0.800000000000000 + 2.641807134900602 0.707870088355394 0.800000000000000 + 2.738399717529509 0.733751992865646 0.800000000000000 + 2.834992300158416 0.759633897375898 0.800000000000000 + 2.931584882787322 0.785515801886150 0.800000000000000 + 3.028177465416229 0.811397706396403 0.800000000000000 + 3.124770048045136 0.837279610906655 0.800000000000000 + 3.221362630674043 0.863161515416907 0.800000000000000 + 3.317955213302950 0.889043419927159 0.800000000000000 + 3.414547795931857 0.914925324437411 0.800000000000000 + 3.511140378560763 0.940807228947663 0.800000000000000 + 3.607732961189670 0.966689133457915 0.800000000000000 + 3.704325543818577 0.992571037968167 0.800000000000000 + 3.800918126447484 1.018452942478419 0.800000000000000 + 3.897510709076391 1.044334846988671 0.800000000000000 + 3.994103291705299 1.070216751498923 0.800000000000000 + 4.090695874334204 1.096098656009175 0.800000000000000 + 4.187288456963111 1.121980560519428 0.800000000000000 + 4.283881039592019 1.147862465029680 0.800000000000000 + 4.380473622220926 1.173744369539932 0.800000000000000 + 4.477066204849833 1.199626274050184 0.800000000000000 + 4.573658787478739 1.225508178560436 0.800000000000000 + 4.670251370107646 1.251390083070688 0.800000000000000 + 4.766843952736553 1.277271987580940 0.800000000000000 + 4.863436535365460 1.303153892091192 0.800000000000000 + 4.960029117994367 1.329035796601444 0.800000000000000 + 0.135000000000000 0.000000000000000 0.900000000000000 + 0.235000000000000 0.000000000000000 0.900000000000000 + 0.335000000000000 0.000000000000000 0.900000000000000 + 0.435000000000000 0.000000000000000 0.900000000000000 + 0.535000000000000 0.000000000000000 0.900000000000000 + 0.635000000000000 0.000000000000000 0.900000000000000 + 0.735000000000000 0.000000000000000 0.900000000000000 + 0.835000000000000 0.000000000000000 0.900000000000000 + 0.935000000000000 0.000000000000000 0.900000000000000 + 1.035000000000000 0.000000000000000 0.900000000000000 + 1.135000000000000 0.000000000000000 0.900000000000000 + 1.235000000000000 0.000000000000000 0.900000000000000 + 1.335000000000000 0.000000000000000 0.900000000000000 + 1.435000000000000 0.000000000000000 0.900000000000000 + 1.535000000000000 0.000000000000000 0.900000000000000 + 1.635000000000000 0.000000000000000 0.900000000000000 + 1.735000000000000 0.000000000000000 0.900000000000000 + 1.835000000000000 0.000000000000000 0.900000000000000 + 1.935000000000000 0.000000000000000 0.900000000000000 + 2.035000000000000 0.000000000000000 0.900000000000000 + 2.135000000000000 0.000000000000000 0.900000000000000 + 2.235000000000000 0.000000000000000 0.900000000000000 + 2.335000000000000 0.000000000000000 0.900000000000000 + 2.435000000000000 0.000000000000000 0.900000000000000 + 2.535000000000000 0.000000000000000 0.900000000000000 + 2.635000000000000 0.000000000000000 0.900000000000000 + 2.735000000000000 0.000000000000000 0.900000000000000 + 2.835000000000000 0.000000000000000 0.900000000000000 + 2.935000000000000 0.000000000000000 0.900000000000000 + 3.035000000000000 0.000000000000000 0.900000000000000 + 3.135000000000000 0.000000000000000 0.900000000000000 + 3.235000000000000 0.000000000000000 0.900000000000000 + 3.335000000000000 0.000000000000000 0.900000000000000 + 3.435000000000000 0.000000000000000 0.900000000000000 + 3.535000000000000 0.000000000000000 0.900000000000000 + 3.635000000000000 0.000000000000000 0.900000000000000 + 3.735000000000000 0.000000000000000 0.900000000000000 + 3.835000000000000 0.000000000000000 0.900000000000000 + 3.935000000000000 0.000000000000000 0.900000000000000 + 4.035000000000000 0.000000000000000 0.900000000000000 + 4.135000000000001 0.000000000000000 0.900000000000000 + 4.235000000000000 0.000000000000000 0.900000000000000 + 4.335000000000000 0.000000000000000 0.900000000000000 + 4.435000000000000 0.000000000000000 0.900000000000000 + 4.535000000000000 0.000000000000000 0.900000000000000 + 4.635000000000001 0.000000000000000 0.900000000000000 + 4.735000000000000 0.000000000000000 0.900000000000000 + 4.835000000000001 0.000000000000000 0.900000000000000 + 4.935000000000000 0.000000000000000 0.900000000000000 + 5.035000000000000 0.000000000000000 0.900000000000000 + 5.135000000000001 0.000000000000000 0.900000000000000 + 0.133845056285464 0.017621035949707 0.900000000000000 + 0.232989542422845 0.030673655171712 0.900000000000000 + 0.332134028560227 0.043726274393717 0.900000000000000 + 0.431278514697608 0.056778893615722 0.900000000000000 + 0.530423000834989 0.069831512837728 0.900000000000000 + 0.629567486972370 0.082884132059733 0.900000000000000 + 0.728711973109751 0.095936751281738 0.900000000000000 + 0.827856459247132 0.108989370503743 0.900000000000000 + 0.927000945384513 0.122041989725748 0.900000000000000 + 1.026145431521894 0.135094608947753 0.900000000000000 + 1.125289917659275 0.148147228169759 0.900000000000000 + 1.224434403796656 0.161199847391764 0.900000000000000 + 1.323578889934037 0.174252466613769 0.900000000000000 + 1.422723376071418 0.187305085835774 0.900000000000000 + 1.521867862208799 0.200357705057779 0.900000000000000 + 1.621012348346180 0.213410324279784 0.900000000000000 + 1.720156834483561 0.226462943501789 0.900000000000000 + 1.819301320620942 0.239515562723795 0.900000000000000 + 1.918445806758323 0.252568181945800 0.900000000000000 + 2.017590292895704 0.265620801167805 0.900000000000000 + 2.116734779033085 0.278673420389810 0.900000000000000 + 2.215879265170466 0.291726039611815 0.900000000000000 + 2.315023751307847 0.304778658833820 0.900000000000000 + 2.414168237445228 0.317831278055826 0.900000000000000 + 2.513312723582609 0.330883897277831 0.900000000000000 + 2.612457209719990 0.343936516499836 0.900000000000000 + 2.711601695857371 0.356989135721841 0.900000000000000 + 2.810746181994753 0.370041754943846 0.900000000000000 + 2.909890668132133 0.383094374165851 0.900000000000000 + 3.009035154269514 0.396146993387857 0.900000000000000 + 3.108179640406895 0.409199612609862 0.900000000000000 + 3.207324126544277 0.422252231831867 0.900000000000000 + 3.306468612681658 0.435304851053872 0.900000000000000 + 3.405613098819039 0.448357470275877 0.900000000000000 + 3.504757584956419 0.461410089497882 0.900000000000000 + 3.603902071093801 0.474462708719887 0.900000000000000 + 3.703046557231182 0.487515327941893 0.900000000000000 + 3.802191043368563 0.500567947163898 0.900000000000000 + 3.901335529505944 0.513620566385903 0.900000000000000 + 4.000480015643325 0.526673185607908 0.900000000000000 + 4.099624501780707 0.539725804829913 0.900000000000000 + 4.198768987918087 0.552778424051918 0.900000000000000 + 4.297913474055468 0.565831043273924 0.900000000000000 + 4.397057960192850 0.578883662495929 0.900000000000000 + 4.496202446330230 0.591936281717934 0.900000000000000 + 4.595346932467612 0.604988900939939 0.900000000000000 + 4.694491418604993 0.618041520161944 0.900000000000000 + 4.793635904742374 0.631094139383950 0.900000000000000 + 4.892780390879754 0.644146758605955 0.900000000000000 + 4.991924877017135 0.657199377827960 0.900000000000000 + 5.091069363154517 0.670251997049965 0.900000000000000 + 0.130399986549024 0.034940571088840 0.900000000000000 + 0.226992569177931 0.060822475599092 0.900000000000000 + 0.323585151806838 0.086704380109344 0.900000000000000 + 0.420177734435745 0.112586284619597 0.900000000000000 + 0.516770317064652 0.138468189129849 0.900000000000000 + 0.613362899693559 0.164350093640101 0.900000000000000 + 0.709955482322465 0.190231998150353 0.900000000000000 + 0.806548064951372 0.216113902660605 0.900000000000000 + 0.903140647580279 0.241995807170857 0.900000000000000 + 0.999733230209186 0.267877711681109 0.900000000000000 + 1.096325812838093 0.293759616191361 0.900000000000000 + 1.192918395467000 0.319641520701613 0.900000000000000 + 1.289510978095906 0.345523425211865 0.900000000000000 + 1.386103560724813 0.371405329722117 0.900000000000000 + 1.482696143353720 0.397287234232369 0.900000000000000 + 1.579288725982627 0.423169138742621 0.900000000000000 + 1.675881308611534 0.449051043252873 0.900000000000000 + 1.772473891240440 0.474932947763126 0.900000000000000 + 1.869066473869347 0.500814852273378 0.900000000000000 + 1.965659056498254 0.526696756783630 0.900000000000000 + 2.062251639127161 0.552578661293882 0.900000000000000 + 2.158844221756068 0.578460565804134 0.900000000000000 + 2.255436804384975 0.604342470314386 0.900000000000000 + 2.352029387013882 0.630224374824638 0.900000000000000 + 2.448621969642788 0.656106279334890 0.900000000000000 + 2.545214552271695 0.681988183845142 0.900000000000000 + 2.641807134900602 0.707870088355394 0.900000000000000 + 2.738399717529509 0.733751992865646 0.900000000000000 + 2.834992300158416 0.759633897375898 0.900000000000000 + 2.931584882787322 0.785515801886150 0.900000000000000 + 3.028177465416229 0.811397706396403 0.900000000000000 + 3.124770048045136 0.837279610906655 0.900000000000000 + 3.221362630674043 0.863161515416907 0.900000000000000 + 3.317955213302950 0.889043419927159 0.900000000000000 + 3.414547795931857 0.914925324437411 0.900000000000000 + 3.511140378560763 0.940807228947663 0.900000000000000 + 3.607732961189670 0.966689133457915 0.900000000000000 + 3.704325543818577 0.992571037968167 0.900000000000000 + 3.800918126447484 1.018452942478419 0.900000000000000 + 3.897510709076391 1.044334846988671 0.900000000000000 + 3.994103291705299 1.070216751498923 0.900000000000000 + 4.090695874334204 1.096098656009175 0.900000000000000 + 4.187288456963111 1.121980560519428 0.900000000000000 + 4.283881039592019 1.147862465029680 0.900000000000000 + 4.380473622220926 1.173744369539932 0.900000000000000 + 4.477066204849833 1.199626274050184 0.900000000000000 + 4.573658787478739 1.225508178560436 0.900000000000000 + 4.670251370107646 1.251390083070688 0.900000000000000 + 4.766843952736553 1.277271987580940 0.900000000000000 + 4.863436535365460 1.303153892091192 0.900000000000000 + 4.960029117994367 1.329035796601444 0.900000000000000 + 0.135000000000000 0.000000000000000 1.000000000000000 + 0.235000000000000 0.000000000000000 1.000000000000000 + 0.335000000000000 0.000000000000000 1.000000000000000 + 0.435000000000000 0.000000000000000 1.000000000000000 + 0.535000000000000 0.000000000000000 1.000000000000000 + 0.635000000000000 0.000000000000000 1.000000000000000 + 0.735000000000000 0.000000000000000 1.000000000000000 + 0.835000000000000 0.000000000000000 1.000000000000000 + 0.935000000000000 0.000000000000000 1.000000000000000 + 1.035000000000000 0.000000000000000 1.000000000000000 + 1.135000000000000 0.000000000000000 1.000000000000000 + 1.235000000000000 0.000000000000000 1.000000000000000 + 1.335000000000000 0.000000000000000 1.000000000000000 + 1.435000000000000 0.000000000000000 1.000000000000000 + 1.535000000000000 0.000000000000000 1.000000000000000 + 1.635000000000000 0.000000000000000 1.000000000000000 + 1.735000000000000 0.000000000000000 1.000000000000000 + 1.835000000000000 0.000000000000000 1.000000000000000 + 1.935000000000000 0.000000000000000 1.000000000000000 + 2.035000000000000 0.000000000000000 1.000000000000000 + 2.135000000000000 0.000000000000000 1.000000000000000 + 2.235000000000000 0.000000000000000 1.000000000000000 + 2.335000000000000 0.000000000000000 1.000000000000000 + 2.435000000000000 0.000000000000000 1.000000000000000 + 2.535000000000000 0.000000000000000 1.000000000000000 + 2.635000000000000 0.000000000000000 1.000000000000000 + 2.735000000000000 0.000000000000000 1.000000000000000 + 2.835000000000000 0.000000000000000 1.000000000000000 + 2.935000000000000 0.000000000000000 1.000000000000000 + 3.035000000000000 0.000000000000000 1.000000000000000 + 3.135000000000000 0.000000000000000 1.000000000000000 + 3.235000000000000 0.000000000000000 1.000000000000000 + 3.335000000000000 0.000000000000000 1.000000000000000 + 3.435000000000000 0.000000000000000 1.000000000000000 + 3.535000000000000 0.000000000000000 1.000000000000000 + 3.635000000000000 0.000000000000000 1.000000000000000 + 3.735000000000000 0.000000000000000 1.000000000000000 + 3.835000000000000 0.000000000000000 1.000000000000000 + 3.935000000000000 0.000000000000000 1.000000000000000 + 4.035000000000000 0.000000000000000 1.000000000000000 + 4.135000000000001 0.000000000000000 1.000000000000000 + 4.235000000000000 0.000000000000000 1.000000000000000 + 4.335000000000000 0.000000000000000 1.000000000000000 + 4.435000000000000 0.000000000000000 1.000000000000000 + 4.535000000000000 0.000000000000000 1.000000000000000 + 4.635000000000001 0.000000000000000 1.000000000000000 + 4.735000000000000 0.000000000000000 1.000000000000000 + 4.835000000000001 0.000000000000000 1.000000000000000 + 4.935000000000000 0.000000000000000 1.000000000000000 + 5.035000000000000 0.000000000000000 1.000000000000000 + 5.135000000000001 0.000000000000000 1.000000000000000 + 0.133845056285464 0.017621035949707 1.000000000000000 + 0.232989542422845 0.030673655171712 1.000000000000000 + 0.332134028560227 0.043726274393717 1.000000000000000 + 0.431278514697608 0.056778893615722 1.000000000000000 + 0.530423000834989 0.069831512837728 1.000000000000000 + 0.629567486972370 0.082884132059733 1.000000000000000 + 0.728711973109751 0.095936751281738 1.000000000000000 + 0.827856459247132 0.108989370503743 1.000000000000000 + 0.927000945384513 0.122041989725748 1.000000000000000 + 1.026145431521894 0.135094608947753 1.000000000000000 + 1.125289917659275 0.148147228169759 1.000000000000000 + 1.224434403796656 0.161199847391764 1.000000000000000 + 1.323578889934037 0.174252466613769 1.000000000000000 + 1.422723376071418 0.187305085835774 1.000000000000000 + 1.521867862208799 0.200357705057779 1.000000000000000 + 1.621012348346180 0.213410324279784 1.000000000000000 + 1.720156834483561 0.226462943501789 1.000000000000000 + 1.819301320620942 0.239515562723795 1.000000000000000 + 1.918445806758323 0.252568181945800 1.000000000000000 + 2.017590292895704 0.265620801167805 1.000000000000000 + 2.116734779033085 0.278673420389810 1.000000000000000 + 2.215879265170466 0.291726039611815 1.000000000000000 + 2.315023751307847 0.304778658833820 1.000000000000000 + 2.414168237445228 0.317831278055826 1.000000000000000 + 2.513312723582609 0.330883897277831 1.000000000000000 + 2.612457209719990 0.343936516499836 1.000000000000000 + 2.711601695857371 0.356989135721841 1.000000000000000 + 2.810746181994753 0.370041754943846 1.000000000000000 + 2.909890668132133 0.383094374165851 1.000000000000000 + 3.009035154269514 0.396146993387857 1.000000000000000 + 3.108179640406895 0.409199612609862 1.000000000000000 + 3.207324126544277 0.422252231831867 1.000000000000000 + 3.306468612681658 0.435304851053872 1.000000000000000 + 3.405613098819039 0.448357470275877 1.000000000000000 + 3.504757584956419 0.461410089497882 1.000000000000000 + 3.603902071093801 0.474462708719887 1.000000000000000 + 3.703046557231182 0.487515327941893 1.000000000000000 + 3.802191043368563 0.500567947163898 1.000000000000000 + 3.901335529505944 0.513620566385903 1.000000000000000 + 4.000480015643325 0.526673185607908 1.000000000000000 + 4.099624501780707 0.539725804829913 1.000000000000000 + 4.198768987918087 0.552778424051918 1.000000000000000 + 4.297913474055468 0.565831043273924 1.000000000000000 + 4.397057960192850 0.578883662495929 1.000000000000000 + 4.496202446330230 0.591936281717934 1.000000000000000 + 4.595346932467612 0.604988900939939 1.000000000000000 + 4.694491418604993 0.618041520161944 1.000000000000000 + 4.793635904742374 0.631094139383950 1.000000000000000 + 4.892780390879754 0.644146758605955 1.000000000000000 + 4.991924877017135 0.657199377827960 1.000000000000000 + 5.091069363154517 0.670251997049965 1.000000000000000 + 0.130399986549024 0.034940571088840 1.000000000000000 + 0.226992569177931 0.060822475599092 1.000000000000000 + 0.323585151806838 0.086704380109344 1.000000000000000 + 0.420177734435745 0.112586284619597 1.000000000000000 + 0.516770317064652 0.138468189129849 1.000000000000000 + 0.613362899693559 0.164350093640101 1.000000000000000 + 0.709955482322465 0.190231998150353 1.000000000000000 + 0.806548064951372 0.216113902660605 1.000000000000000 + 0.903140647580279 0.241995807170857 1.000000000000000 + 0.999733230209186 0.267877711681109 1.000000000000000 + 1.096325812838093 0.293759616191361 1.000000000000000 + 1.192918395467000 0.319641520701613 1.000000000000000 + 1.289510978095906 0.345523425211865 1.000000000000000 + 1.386103560724813 0.371405329722117 1.000000000000000 + 1.482696143353720 0.397287234232369 1.000000000000000 + 1.579288725982627 0.423169138742621 1.000000000000000 + 1.675881308611534 0.449051043252873 1.000000000000000 + 1.772473891240440 0.474932947763126 1.000000000000000 + 1.869066473869347 0.500814852273378 1.000000000000000 + 1.965659056498254 0.526696756783630 1.000000000000000 + 2.062251639127161 0.552578661293882 1.000000000000000 + 2.158844221756068 0.578460565804134 1.000000000000000 + 2.255436804384975 0.604342470314386 1.000000000000000 + 2.352029387013882 0.630224374824638 1.000000000000000 + 2.448621969642788 0.656106279334890 1.000000000000000 + 2.545214552271695 0.681988183845142 1.000000000000000 + 2.641807134900602 0.707870088355394 1.000000000000000 + 2.738399717529509 0.733751992865646 1.000000000000000 + 2.834992300158416 0.759633897375898 1.000000000000000 + 2.931584882787322 0.785515801886150 1.000000000000000 + 3.028177465416229 0.811397706396403 1.000000000000000 + 3.124770048045136 0.837279610906655 1.000000000000000 + 3.221362630674043 0.863161515416907 1.000000000000000 + 3.317955213302950 0.889043419927159 1.000000000000000 + 3.414547795931857 0.914925324437411 1.000000000000000 + 3.511140378560763 0.940807228947663 1.000000000000000 + 3.607732961189670 0.966689133457915 1.000000000000000 + 3.704325543818577 0.992571037968167 1.000000000000000 + 3.800918126447484 1.018452942478419 1.000000000000000 + 3.897510709076391 1.044334846988671 1.000000000000000 + 3.994103291705299 1.070216751498923 1.000000000000000 + 4.090695874334204 1.096098656009175 1.000000000000000 + 4.187288456963111 1.121980560519428 1.000000000000000 + 4.283881039592019 1.147862465029680 1.000000000000000 + 4.380473622220926 1.173744369539932 1.000000000000000 + 4.477066204849833 1.199626274050184 1.000000000000000 + 4.573658787478739 1.225508178560436 1.000000000000000 + 4.670251370107646 1.251390083070688 1.000000000000000 + 4.766843952736553 1.277271987580940 1.000000000000000 + 4.863436535365460 1.303153892091192 1.000000000000000 + 4.960029117994367 1.329035796601444 1.000000000000000 + 0.135000000000000 0.000000000000000 1.100000000000000 + 0.235000000000000 0.000000000000000 1.100000000000000 + 0.335000000000000 0.000000000000000 1.100000000000000 + 0.435000000000000 0.000000000000000 1.100000000000000 + 0.535000000000000 0.000000000000000 1.100000000000000 + 0.635000000000000 0.000000000000000 1.100000000000000 + 0.735000000000000 0.000000000000000 1.100000000000000 + 0.835000000000000 0.000000000000000 1.100000000000000 + 0.935000000000000 0.000000000000000 1.100000000000000 + 1.035000000000000 0.000000000000000 1.100000000000000 + 1.135000000000000 0.000000000000000 1.100000000000000 + 1.235000000000000 0.000000000000000 1.100000000000000 + 1.335000000000000 0.000000000000000 1.100000000000000 + 1.435000000000000 0.000000000000000 1.100000000000000 + 1.535000000000000 0.000000000000000 1.100000000000000 + 1.635000000000000 0.000000000000000 1.100000000000000 + 1.735000000000000 0.000000000000000 1.100000000000000 + 1.835000000000000 0.000000000000000 1.100000000000000 + 1.935000000000000 0.000000000000000 1.100000000000000 + 2.035000000000000 0.000000000000000 1.100000000000000 + 2.135000000000000 0.000000000000000 1.100000000000000 + 2.235000000000000 0.000000000000000 1.100000000000000 + 2.335000000000000 0.000000000000000 1.100000000000000 + 2.435000000000000 0.000000000000000 1.100000000000000 + 2.535000000000000 0.000000000000000 1.100000000000000 + 2.635000000000000 0.000000000000000 1.100000000000000 + 2.735000000000000 0.000000000000000 1.100000000000000 + 2.835000000000000 0.000000000000000 1.100000000000000 + 2.935000000000000 0.000000000000000 1.100000000000000 + 3.035000000000000 0.000000000000000 1.100000000000000 + 3.135000000000000 0.000000000000000 1.100000000000000 + 3.235000000000000 0.000000000000000 1.100000000000000 + 3.335000000000000 0.000000000000000 1.100000000000000 + 3.435000000000000 0.000000000000000 1.100000000000000 + 3.535000000000000 0.000000000000000 1.100000000000000 + 3.635000000000000 0.000000000000000 1.100000000000000 + 3.735000000000000 0.000000000000000 1.100000000000000 + 3.835000000000000 0.000000000000000 1.100000000000000 + 3.935000000000000 0.000000000000000 1.100000000000000 + 4.035000000000000 0.000000000000000 1.100000000000000 + 4.135000000000001 0.000000000000000 1.100000000000000 + 4.235000000000000 0.000000000000000 1.100000000000000 + 4.335000000000000 0.000000000000000 1.100000000000000 + 4.435000000000000 0.000000000000000 1.100000000000000 + 4.535000000000000 0.000000000000000 1.100000000000000 + 4.635000000000001 0.000000000000000 1.100000000000000 + 4.735000000000000 0.000000000000000 1.100000000000000 + 4.835000000000001 0.000000000000000 1.100000000000000 + 4.935000000000000 0.000000000000000 1.100000000000000 + 5.035000000000000 0.000000000000000 1.100000000000000 + 5.135000000000001 0.000000000000000 1.100000000000000 + 0.133845056285464 0.017621035949707 1.100000000000000 + 0.232989542422845 0.030673655171712 1.100000000000000 + 0.332134028560227 0.043726274393717 1.100000000000000 + 0.431278514697608 0.056778893615722 1.100000000000000 + 0.530423000834989 0.069831512837728 1.100000000000000 + 0.629567486972370 0.082884132059733 1.100000000000000 + 0.728711973109751 0.095936751281738 1.100000000000000 + 0.827856459247132 0.108989370503743 1.100000000000000 + 0.927000945384513 0.122041989725748 1.100000000000000 + 1.026145431521894 0.135094608947753 1.100000000000000 + 1.125289917659275 0.148147228169759 1.100000000000000 + 1.224434403796656 0.161199847391764 1.100000000000000 + 1.323578889934037 0.174252466613769 1.100000000000000 + 1.422723376071418 0.187305085835774 1.100000000000000 + 1.521867862208799 0.200357705057779 1.100000000000000 + 1.621012348346180 0.213410324279784 1.100000000000000 + 1.720156834483561 0.226462943501789 1.100000000000000 + 1.819301320620942 0.239515562723795 1.100000000000000 + 1.918445806758323 0.252568181945800 1.100000000000000 + 2.017590292895704 0.265620801167805 1.100000000000000 + 2.116734779033085 0.278673420389810 1.100000000000000 + 2.215879265170466 0.291726039611815 1.100000000000000 + 2.315023751307847 0.304778658833820 1.100000000000000 + 2.414168237445228 0.317831278055826 1.100000000000000 + 2.513312723582609 0.330883897277831 1.100000000000000 + 2.612457209719990 0.343936516499836 1.100000000000000 + 2.711601695857371 0.356989135721841 1.100000000000000 + 2.810746181994753 0.370041754943846 1.100000000000000 + 2.909890668132133 0.383094374165851 1.100000000000000 + 3.009035154269514 0.396146993387857 1.100000000000000 + 3.108179640406895 0.409199612609862 1.100000000000000 + 3.207324126544277 0.422252231831867 1.100000000000000 + 3.306468612681658 0.435304851053872 1.100000000000000 + 3.405613098819039 0.448357470275877 1.100000000000000 + 3.504757584956419 0.461410089497882 1.100000000000000 + 3.603902071093801 0.474462708719887 1.100000000000000 + 3.703046557231182 0.487515327941893 1.100000000000000 + 3.802191043368563 0.500567947163898 1.100000000000000 + 3.901335529505944 0.513620566385903 1.100000000000000 + 4.000480015643325 0.526673185607908 1.100000000000000 + 4.099624501780707 0.539725804829913 1.100000000000000 + 4.198768987918087 0.552778424051918 1.100000000000000 + 4.297913474055468 0.565831043273924 1.100000000000000 + 4.397057960192850 0.578883662495929 1.100000000000000 + 4.496202446330230 0.591936281717934 1.100000000000000 + 4.595346932467612 0.604988900939939 1.100000000000000 + 4.694491418604993 0.618041520161944 1.100000000000000 + 4.793635904742374 0.631094139383950 1.100000000000000 + 4.892780390879754 0.644146758605955 1.100000000000000 + 4.991924877017135 0.657199377827960 1.100000000000000 + 5.091069363154517 0.670251997049965 1.100000000000000 + 0.130399986549024 0.034940571088840 1.100000000000000 + 0.226992569177931 0.060822475599092 1.100000000000000 + 0.323585151806838 0.086704380109344 1.100000000000000 + 0.420177734435745 0.112586284619597 1.100000000000000 + 0.516770317064652 0.138468189129849 1.100000000000000 + 0.613362899693559 0.164350093640101 1.100000000000000 + 0.709955482322465 0.190231998150353 1.100000000000000 + 0.806548064951372 0.216113902660605 1.100000000000000 + 0.903140647580279 0.241995807170857 1.100000000000000 + 0.999733230209186 0.267877711681109 1.100000000000000 + 1.096325812838093 0.293759616191361 1.100000000000000 + 1.192918395467000 0.319641520701613 1.100000000000000 + 1.289510978095906 0.345523425211865 1.100000000000000 + 1.386103560724813 0.371405329722117 1.100000000000000 + 1.482696143353720 0.397287234232369 1.100000000000000 + 1.579288725982627 0.423169138742621 1.100000000000000 + 1.675881308611534 0.449051043252873 1.100000000000000 + 1.772473891240440 0.474932947763126 1.100000000000000 + 1.869066473869347 0.500814852273378 1.100000000000000 + 1.965659056498254 0.526696756783630 1.100000000000000 + 2.062251639127161 0.552578661293882 1.100000000000000 + 2.158844221756068 0.578460565804134 1.100000000000000 + 2.255436804384975 0.604342470314386 1.100000000000000 + 2.352029387013882 0.630224374824638 1.100000000000000 + 2.448621969642788 0.656106279334890 1.100000000000000 + 2.545214552271695 0.681988183845142 1.100000000000000 + 2.641807134900602 0.707870088355394 1.100000000000000 + 2.738399717529509 0.733751992865646 1.100000000000000 + 2.834992300158416 0.759633897375898 1.100000000000000 + 2.931584882787322 0.785515801886150 1.100000000000000 + 3.028177465416229 0.811397706396403 1.100000000000000 + 3.124770048045136 0.837279610906655 1.100000000000000 + 3.221362630674043 0.863161515416907 1.100000000000000 + 3.317955213302950 0.889043419927159 1.100000000000000 + 3.414547795931857 0.914925324437411 1.100000000000000 + 3.511140378560763 0.940807228947663 1.100000000000000 + 3.607732961189670 0.966689133457915 1.100000000000000 + 3.704325543818577 0.992571037968167 1.100000000000000 + 3.800918126447484 1.018452942478419 1.100000000000000 + 3.897510709076391 1.044334846988671 1.100000000000000 + 3.994103291705299 1.070216751498923 1.100000000000000 + 4.090695874334204 1.096098656009175 1.100000000000000 + 4.187288456963111 1.121980560519428 1.100000000000000 + 4.283881039592019 1.147862465029680 1.100000000000000 + 4.380473622220926 1.173744369539932 1.100000000000000 + 4.477066204849833 1.199626274050184 1.100000000000000 + 4.573658787478739 1.225508178560436 1.100000000000000 + 4.670251370107646 1.251390083070688 1.100000000000000 + 4.766843952736553 1.277271987580940 1.100000000000000 + 4.863436535365460 1.303153892091192 1.100000000000000 + 4.960029117994367 1.329035796601444 1.100000000000000 + 0.135000000000000 0.000000000000000 1.200000000000000 + 0.235000000000000 0.000000000000000 1.200000000000000 + 0.335000000000000 0.000000000000000 1.200000000000000 + 0.435000000000000 0.000000000000000 1.200000000000000 + 0.535000000000000 0.000000000000000 1.200000000000000 + 0.635000000000000 0.000000000000000 1.200000000000000 + 0.735000000000000 0.000000000000000 1.200000000000000 + 0.835000000000000 0.000000000000000 1.200000000000000 + 0.935000000000000 0.000000000000000 1.200000000000000 + 1.035000000000000 0.000000000000000 1.200000000000000 + 1.135000000000000 0.000000000000000 1.200000000000000 + 1.235000000000000 0.000000000000000 1.200000000000000 + 1.335000000000000 0.000000000000000 1.200000000000000 + 1.435000000000000 0.000000000000000 1.200000000000000 + 1.535000000000000 0.000000000000000 1.200000000000000 + 1.635000000000000 0.000000000000000 1.200000000000000 + 1.735000000000000 0.000000000000000 1.200000000000000 + 1.835000000000000 0.000000000000000 1.200000000000000 + 1.935000000000000 0.000000000000000 1.200000000000000 + 2.035000000000000 0.000000000000000 1.200000000000000 + 2.135000000000000 0.000000000000000 1.200000000000000 + 2.235000000000000 0.000000000000000 1.200000000000000 + 2.335000000000000 0.000000000000000 1.200000000000000 + 2.435000000000000 0.000000000000000 1.200000000000000 + 2.535000000000000 0.000000000000000 1.200000000000000 + 2.635000000000000 0.000000000000000 1.200000000000000 + 2.735000000000000 0.000000000000000 1.200000000000000 + 2.835000000000000 0.000000000000000 1.200000000000000 + 2.935000000000000 0.000000000000000 1.200000000000000 + 3.035000000000000 0.000000000000000 1.200000000000000 + 3.135000000000000 0.000000000000000 1.200000000000000 + 3.235000000000000 0.000000000000000 1.200000000000000 + 3.335000000000000 0.000000000000000 1.200000000000000 + 3.435000000000000 0.000000000000000 1.200000000000000 + 3.535000000000000 0.000000000000000 1.200000000000000 + 3.635000000000000 0.000000000000000 1.200000000000000 + 3.735000000000000 0.000000000000000 1.200000000000000 + 3.835000000000000 0.000000000000000 1.200000000000000 + 3.935000000000000 0.000000000000000 1.200000000000000 + 4.035000000000000 0.000000000000000 1.200000000000000 + 4.135000000000001 0.000000000000000 1.200000000000000 + 4.235000000000000 0.000000000000000 1.200000000000000 + 4.335000000000000 0.000000000000000 1.200000000000000 + 4.435000000000000 0.000000000000000 1.200000000000000 + 4.535000000000000 0.000000000000000 1.200000000000000 + 4.635000000000001 0.000000000000000 1.200000000000000 + 4.735000000000000 0.000000000000000 1.200000000000000 + 4.835000000000001 0.000000000000000 1.200000000000000 + 4.935000000000000 0.000000000000000 1.200000000000000 + 5.035000000000000 0.000000000000000 1.200000000000000 + 5.135000000000001 0.000000000000000 1.200000000000000 + 0.133845056285464 0.017621035949707 1.200000000000000 + 0.232989542422845 0.030673655171712 1.200000000000000 + 0.332134028560227 0.043726274393717 1.200000000000000 + 0.431278514697608 0.056778893615722 1.200000000000000 + 0.530423000834989 0.069831512837728 1.200000000000000 + 0.629567486972370 0.082884132059733 1.200000000000000 + 0.728711973109751 0.095936751281738 1.200000000000000 + 0.827856459247132 0.108989370503743 1.200000000000000 + 0.927000945384513 0.122041989725748 1.200000000000000 + 1.026145431521894 0.135094608947753 1.200000000000000 + 1.125289917659275 0.148147228169759 1.200000000000000 + 1.224434403796656 0.161199847391764 1.200000000000000 + 1.323578889934037 0.174252466613769 1.200000000000000 + 1.422723376071418 0.187305085835774 1.200000000000000 + 1.521867862208799 0.200357705057779 1.200000000000000 + 1.621012348346180 0.213410324279784 1.200000000000000 + 1.720156834483561 0.226462943501789 1.200000000000000 + 1.819301320620942 0.239515562723795 1.200000000000000 + 1.918445806758323 0.252568181945800 1.200000000000000 + 2.017590292895704 0.265620801167805 1.200000000000000 + 2.116734779033085 0.278673420389810 1.200000000000000 + 2.215879265170466 0.291726039611815 1.200000000000000 + 2.315023751307847 0.304778658833820 1.200000000000000 + 2.414168237445228 0.317831278055826 1.200000000000000 + 2.513312723582609 0.330883897277831 1.200000000000000 + 2.612457209719990 0.343936516499836 1.200000000000000 + 2.711601695857371 0.356989135721841 1.200000000000000 + 2.810746181994753 0.370041754943846 1.200000000000000 + 2.909890668132133 0.383094374165851 1.200000000000000 + 3.009035154269514 0.396146993387857 1.200000000000000 + 3.108179640406895 0.409199612609862 1.200000000000000 + 3.207324126544277 0.422252231831867 1.200000000000000 + 3.306468612681658 0.435304851053872 1.200000000000000 + 3.405613098819039 0.448357470275877 1.200000000000000 + 3.504757584956419 0.461410089497882 1.200000000000000 + 3.603902071093801 0.474462708719887 1.200000000000000 + 3.703046557231182 0.487515327941893 1.200000000000000 + 3.802191043368563 0.500567947163898 1.200000000000000 + 3.901335529505944 0.513620566385903 1.200000000000000 + 4.000480015643325 0.526673185607908 1.200000000000000 + 4.099624501780707 0.539725804829913 1.200000000000000 + 4.198768987918087 0.552778424051918 1.200000000000000 + 4.297913474055468 0.565831043273924 1.200000000000000 + 4.397057960192850 0.578883662495929 1.200000000000000 + 4.496202446330230 0.591936281717934 1.200000000000000 + 4.595346932467612 0.604988900939939 1.200000000000000 + 4.694491418604993 0.618041520161944 1.200000000000000 + 4.793635904742374 0.631094139383950 1.200000000000000 + 4.892780390879754 0.644146758605955 1.200000000000000 + 4.991924877017135 0.657199377827960 1.200000000000000 + 5.091069363154517 0.670251997049965 1.200000000000000 + 0.130399986549024 0.034940571088840 1.200000000000000 + 0.226992569177931 0.060822475599092 1.200000000000000 + 0.323585151806838 0.086704380109344 1.200000000000000 + 0.420177734435745 0.112586284619597 1.200000000000000 + 0.516770317064652 0.138468189129849 1.200000000000000 + 0.613362899693559 0.164350093640101 1.200000000000000 + 0.709955482322465 0.190231998150353 1.200000000000000 + 0.806548064951372 0.216113902660605 1.200000000000000 + 0.903140647580279 0.241995807170857 1.200000000000000 + 0.999733230209186 0.267877711681109 1.200000000000000 + 1.096325812838093 0.293759616191361 1.200000000000000 + 1.192918395467000 0.319641520701613 1.200000000000000 + 1.289510978095906 0.345523425211865 1.200000000000000 + 1.386103560724813 0.371405329722117 1.200000000000000 + 1.482696143353720 0.397287234232369 1.200000000000000 + 1.579288725982627 0.423169138742621 1.200000000000000 + 1.675881308611534 0.449051043252873 1.200000000000000 + 1.772473891240440 0.474932947763126 1.200000000000000 + 1.869066473869347 0.500814852273378 1.200000000000000 + 1.965659056498254 0.526696756783630 1.200000000000000 + 2.062251639127161 0.552578661293882 1.200000000000000 + 2.158844221756068 0.578460565804134 1.200000000000000 + 2.255436804384975 0.604342470314386 1.200000000000000 + 2.352029387013882 0.630224374824638 1.200000000000000 + 2.448621969642788 0.656106279334890 1.200000000000000 + 2.545214552271695 0.681988183845142 1.200000000000000 + 2.641807134900602 0.707870088355394 1.200000000000000 + 2.738399717529509 0.733751992865646 1.200000000000000 + 2.834992300158416 0.759633897375898 1.200000000000000 + 2.931584882787322 0.785515801886150 1.200000000000000 + 3.028177465416229 0.811397706396403 1.200000000000000 + 3.124770048045136 0.837279610906655 1.200000000000000 + 3.221362630674043 0.863161515416907 1.200000000000000 + 3.317955213302950 0.889043419927159 1.200000000000000 + 3.414547795931857 0.914925324437411 1.200000000000000 + 3.511140378560763 0.940807228947663 1.200000000000000 + 3.607732961189670 0.966689133457915 1.200000000000000 + 3.704325543818577 0.992571037968167 1.200000000000000 + 3.800918126447484 1.018452942478419 1.200000000000000 + 3.897510709076391 1.044334846988671 1.200000000000000 + 3.994103291705299 1.070216751498923 1.200000000000000 + 4.090695874334204 1.096098656009175 1.200000000000000 + 4.187288456963111 1.121980560519428 1.200000000000000 + 4.283881039592019 1.147862465029680 1.200000000000000 + 4.380473622220926 1.173744369539932 1.200000000000000 + 4.477066204849833 1.199626274050184 1.200000000000000 + 4.573658787478739 1.225508178560436 1.200000000000000 + 4.670251370107646 1.251390083070688 1.200000000000000 + 4.766843952736553 1.277271987580940 1.200000000000000 + 4.863436535365460 1.303153892091192 1.200000000000000 + 4.960029117994367 1.329035796601444 1.200000000000000 + 0.135000000000000 0.000000000000000 1.300000000000000 + 0.235000000000000 0.000000000000000 1.300000000000000 + 0.335000000000000 0.000000000000000 1.300000000000000 + 0.435000000000000 0.000000000000000 1.300000000000000 + 0.535000000000000 0.000000000000000 1.300000000000000 + 0.635000000000000 0.000000000000000 1.300000000000000 + 0.735000000000000 0.000000000000000 1.300000000000000 + 0.835000000000000 0.000000000000000 1.300000000000000 + 0.935000000000000 0.000000000000000 1.300000000000000 + 1.035000000000000 0.000000000000000 1.300000000000000 + 1.135000000000000 0.000000000000000 1.300000000000000 + 1.235000000000000 0.000000000000000 1.300000000000000 + 1.335000000000000 0.000000000000000 1.300000000000000 + 1.435000000000000 0.000000000000000 1.300000000000000 + 1.535000000000000 0.000000000000000 1.300000000000000 + 1.635000000000000 0.000000000000000 1.300000000000000 + 1.735000000000000 0.000000000000000 1.300000000000000 + 1.835000000000000 0.000000000000000 1.300000000000000 + 1.935000000000000 0.000000000000000 1.300000000000000 + 2.035000000000000 0.000000000000000 1.300000000000000 + 2.135000000000000 0.000000000000000 1.300000000000000 + 2.235000000000000 0.000000000000000 1.300000000000000 + 2.335000000000000 0.000000000000000 1.300000000000000 + 2.435000000000000 0.000000000000000 1.300000000000000 + 2.535000000000000 0.000000000000000 1.300000000000000 + 2.635000000000000 0.000000000000000 1.300000000000000 + 2.735000000000000 0.000000000000000 1.300000000000000 + 2.835000000000000 0.000000000000000 1.300000000000000 + 2.935000000000000 0.000000000000000 1.300000000000000 + 3.035000000000000 0.000000000000000 1.300000000000000 + 3.135000000000000 0.000000000000000 1.300000000000000 + 3.235000000000000 0.000000000000000 1.300000000000000 + 3.335000000000000 0.000000000000000 1.300000000000000 + 3.435000000000000 0.000000000000000 1.300000000000000 + 3.535000000000000 0.000000000000000 1.300000000000000 + 3.635000000000000 0.000000000000000 1.300000000000000 + 3.735000000000000 0.000000000000000 1.300000000000000 + 3.835000000000000 0.000000000000000 1.300000000000000 + 3.935000000000000 0.000000000000000 1.300000000000000 + 4.035000000000000 0.000000000000000 1.300000000000000 + 4.135000000000001 0.000000000000000 1.300000000000000 + 4.235000000000000 0.000000000000000 1.300000000000000 + 4.335000000000000 0.000000000000000 1.300000000000000 + 4.435000000000000 0.000000000000000 1.300000000000000 + 4.535000000000000 0.000000000000000 1.300000000000000 + 4.635000000000001 0.000000000000000 1.300000000000000 + 4.735000000000000 0.000000000000000 1.300000000000000 + 4.835000000000001 0.000000000000000 1.300000000000000 + 4.935000000000000 0.000000000000000 1.300000000000000 + 5.035000000000000 0.000000000000000 1.300000000000000 + 5.135000000000001 0.000000000000000 1.300000000000000 + 0.133845056285464 0.017621035949707 1.300000000000000 + 0.232989542422845 0.030673655171712 1.300000000000000 + 0.332134028560227 0.043726274393717 1.300000000000000 + 0.431278514697608 0.056778893615722 1.300000000000000 + 0.530423000834989 0.069831512837728 1.300000000000000 + 0.629567486972370 0.082884132059733 1.300000000000000 + 0.728711973109751 0.095936751281738 1.300000000000000 + 0.827856459247132 0.108989370503743 1.300000000000000 + 0.927000945384513 0.122041989725748 1.300000000000000 + 1.026145431521894 0.135094608947753 1.300000000000000 + 1.125289917659275 0.148147228169759 1.300000000000000 + 1.224434403796656 0.161199847391764 1.300000000000000 + 1.323578889934037 0.174252466613769 1.300000000000000 + 1.422723376071418 0.187305085835774 1.300000000000000 + 1.521867862208799 0.200357705057779 1.300000000000000 + 1.621012348346180 0.213410324279784 1.300000000000000 + 1.720156834483561 0.226462943501789 1.300000000000000 + 1.819301320620942 0.239515562723795 1.300000000000000 + 1.918445806758323 0.252568181945800 1.300000000000000 + 2.017590292895704 0.265620801167805 1.300000000000000 + 2.116734779033085 0.278673420389810 1.300000000000000 + 2.215879265170466 0.291726039611815 1.300000000000000 + 2.315023751307847 0.304778658833820 1.300000000000000 + 2.414168237445228 0.317831278055826 1.300000000000000 + 2.513312723582609 0.330883897277831 1.300000000000000 + 2.612457209719990 0.343936516499836 1.300000000000000 + 2.711601695857371 0.356989135721841 1.300000000000000 + 2.810746181994753 0.370041754943846 1.300000000000000 + 2.909890668132133 0.383094374165851 1.300000000000000 + 3.009035154269514 0.396146993387857 1.300000000000000 + 3.108179640406895 0.409199612609862 1.300000000000000 + 3.207324126544277 0.422252231831867 1.300000000000000 + 3.306468612681658 0.435304851053872 1.300000000000000 + 3.405613098819039 0.448357470275877 1.300000000000000 + 3.504757584956419 0.461410089497882 1.300000000000000 + 3.603902071093801 0.474462708719887 1.300000000000000 + 3.703046557231182 0.487515327941893 1.300000000000000 + 3.802191043368563 0.500567947163898 1.300000000000000 + 3.901335529505944 0.513620566385903 1.300000000000000 + 4.000480015643325 0.526673185607908 1.300000000000000 + 4.099624501780707 0.539725804829913 1.300000000000000 + 4.198768987918087 0.552778424051918 1.300000000000000 + 4.297913474055468 0.565831043273924 1.300000000000000 + 4.397057960192850 0.578883662495929 1.300000000000000 + 4.496202446330230 0.591936281717934 1.300000000000000 + 4.595346932467612 0.604988900939939 1.300000000000000 + 4.694491418604993 0.618041520161944 1.300000000000000 + 4.793635904742374 0.631094139383950 1.300000000000000 + 4.892780390879754 0.644146758605955 1.300000000000000 + 4.991924877017135 0.657199377827960 1.300000000000000 + 5.091069363154517 0.670251997049965 1.300000000000000 + 0.130399986549024 0.034940571088840 1.300000000000000 + 0.226992569177931 0.060822475599092 1.300000000000000 + 0.323585151806838 0.086704380109344 1.300000000000000 + 0.420177734435745 0.112586284619597 1.300000000000000 + 0.516770317064652 0.138468189129849 1.300000000000000 + 0.613362899693559 0.164350093640101 1.300000000000000 + 0.709955482322465 0.190231998150353 1.300000000000000 + 0.806548064951372 0.216113902660605 1.300000000000000 + 0.903140647580279 0.241995807170857 1.300000000000000 + 0.999733230209186 0.267877711681109 1.300000000000000 + 1.096325812838093 0.293759616191361 1.300000000000000 + 1.192918395467000 0.319641520701613 1.300000000000000 + 1.289510978095906 0.345523425211865 1.300000000000000 + 1.386103560724813 0.371405329722117 1.300000000000000 + 1.482696143353720 0.397287234232369 1.300000000000000 + 1.579288725982627 0.423169138742621 1.300000000000000 + 1.675881308611534 0.449051043252873 1.300000000000000 + 1.772473891240440 0.474932947763126 1.300000000000000 + 1.869066473869347 0.500814852273378 1.300000000000000 + 1.965659056498254 0.526696756783630 1.300000000000000 + 2.062251639127161 0.552578661293882 1.300000000000000 + 2.158844221756068 0.578460565804134 1.300000000000000 + 2.255436804384975 0.604342470314386 1.300000000000000 + 2.352029387013882 0.630224374824638 1.300000000000000 + 2.448621969642788 0.656106279334890 1.300000000000000 + 2.545214552271695 0.681988183845142 1.300000000000000 + 2.641807134900602 0.707870088355394 1.300000000000000 + 2.738399717529509 0.733751992865646 1.300000000000000 + 2.834992300158416 0.759633897375898 1.300000000000000 + 2.931584882787322 0.785515801886150 1.300000000000000 + 3.028177465416229 0.811397706396403 1.300000000000000 + 3.124770048045136 0.837279610906655 1.300000000000000 + 3.221362630674043 0.863161515416907 1.300000000000000 + 3.317955213302950 0.889043419927159 1.300000000000000 + 3.414547795931857 0.914925324437411 1.300000000000000 + 3.511140378560763 0.940807228947663 1.300000000000000 + 3.607732961189670 0.966689133457915 1.300000000000000 + 3.704325543818577 0.992571037968167 1.300000000000000 + 3.800918126447484 1.018452942478419 1.300000000000000 + 3.897510709076391 1.044334846988671 1.300000000000000 + 3.994103291705299 1.070216751498923 1.300000000000000 + 4.090695874334204 1.096098656009175 1.300000000000000 + 4.187288456963111 1.121980560519428 1.300000000000000 + 4.283881039592019 1.147862465029680 1.300000000000000 + 4.380473622220926 1.173744369539932 1.300000000000000 + 4.477066204849833 1.199626274050184 1.300000000000000 + 4.573658787478739 1.225508178560436 1.300000000000000 + 4.670251370107646 1.251390083070688 1.300000000000000 + 4.766843952736553 1.277271987580940 1.300000000000000 + 4.863436535365460 1.303153892091192 1.300000000000000 + 4.960029117994367 1.329035796601444 1.300000000000000 + 0.135000000000000 0.000000000000000 1.400000000000000 + 0.235000000000000 0.000000000000000 1.400000000000000 + 0.335000000000000 0.000000000000000 1.400000000000000 + 0.435000000000000 0.000000000000000 1.400000000000000 + 0.535000000000000 0.000000000000000 1.400000000000000 + 0.635000000000000 0.000000000000000 1.400000000000000 + 0.735000000000000 0.000000000000000 1.400000000000000 + 0.835000000000000 0.000000000000000 1.400000000000000 + 0.935000000000000 0.000000000000000 1.400000000000000 + 1.035000000000000 0.000000000000000 1.400000000000000 + 1.135000000000000 0.000000000000000 1.400000000000000 + 1.235000000000000 0.000000000000000 1.400000000000000 + 1.335000000000000 0.000000000000000 1.400000000000000 + 1.435000000000000 0.000000000000000 1.400000000000000 + 1.535000000000000 0.000000000000000 1.400000000000000 + 1.635000000000000 0.000000000000000 1.400000000000000 + 1.735000000000000 0.000000000000000 1.400000000000000 + 1.835000000000000 0.000000000000000 1.400000000000000 + 1.935000000000000 0.000000000000000 1.400000000000000 + 2.035000000000000 0.000000000000000 1.400000000000000 + 2.135000000000000 0.000000000000000 1.400000000000000 + 2.235000000000000 0.000000000000000 1.400000000000000 + 2.335000000000000 0.000000000000000 1.400000000000000 + 2.435000000000000 0.000000000000000 1.400000000000000 + 2.535000000000000 0.000000000000000 1.400000000000000 + 2.635000000000000 0.000000000000000 1.400000000000000 + 2.735000000000000 0.000000000000000 1.400000000000000 + 2.835000000000000 0.000000000000000 1.400000000000000 + 2.935000000000000 0.000000000000000 1.400000000000000 + 3.035000000000000 0.000000000000000 1.400000000000000 + 3.135000000000000 0.000000000000000 1.400000000000000 + 3.235000000000000 0.000000000000000 1.400000000000000 + 3.335000000000000 0.000000000000000 1.400000000000000 + 3.435000000000000 0.000000000000000 1.400000000000000 + 3.535000000000000 0.000000000000000 1.400000000000000 + 3.635000000000000 0.000000000000000 1.400000000000000 + 3.735000000000000 0.000000000000000 1.400000000000000 + 3.835000000000000 0.000000000000000 1.400000000000000 + 3.935000000000000 0.000000000000000 1.400000000000000 + 4.035000000000000 0.000000000000000 1.400000000000000 + 4.135000000000001 0.000000000000000 1.400000000000000 + 4.235000000000000 0.000000000000000 1.400000000000000 + 4.335000000000000 0.000000000000000 1.400000000000000 + 4.435000000000000 0.000000000000000 1.400000000000000 + 4.535000000000000 0.000000000000000 1.400000000000000 + 4.635000000000001 0.000000000000000 1.400000000000000 + 4.735000000000000 0.000000000000000 1.400000000000000 + 4.835000000000001 0.000000000000000 1.400000000000000 + 4.935000000000000 0.000000000000000 1.400000000000000 + 5.035000000000000 0.000000000000000 1.400000000000000 + 5.135000000000001 0.000000000000000 1.400000000000000 + 0.133845056285464 0.017621035949707 1.400000000000000 + 0.232989542422845 0.030673655171712 1.400000000000000 + 0.332134028560227 0.043726274393717 1.400000000000000 + 0.431278514697608 0.056778893615722 1.400000000000000 + 0.530423000834989 0.069831512837728 1.400000000000000 + 0.629567486972370 0.082884132059733 1.400000000000000 + 0.728711973109751 0.095936751281738 1.400000000000000 + 0.827856459247132 0.108989370503743 1.400000000000000 + 0.927000945384513 0.122041989725748 1.400000000000000 + 1.026145431521894 0.135094608947753 1.400000000000000 + 1.125289917659275 0.148147228169759 1.400000000000000 + 1.224434403796656 0.161199847391764 1.400000000000000 + 1.323578889934037 0.174252466613769 1.400000000000000 + 1.422723376071418 0.187305085835774 1.400000000000000 + 1.521867862208799 0.200357705057779 1.400000000000000 + 1.621012348346180 0.213410324279784 1.400000000000000 + 1.720156834483561 0.226462943501789 1.400000000000000 + 1.819301320620942 0.239515562723795 1.400000000000000 + 1.918445806758323 0.252568181945800 1.400000000000000 + 2.017590292895704 0.265620801167805 1.400000000000000 + 2.116734779033085 0.278673420389810 1.400000000000000 + 2.215879265170466 0.291726039611815 1.400000000000000 + 2.315023751307847 0.304778658833820 1.400000000000000 + 2.414168237445228 0.317831278055826 1.400000000000000 + 2.513312723582609 0.330883897277831 1.400000000000000 + 2.612457209719990 0.343936516499836 1.400000000000000 + 2.711601695857371 0.356989135721841 1.400000000000000 + 2.810746181994753 0.370041754943846 1.400000000000000 + 2.909890668132133 0.383094374165851 1.400000000000000 + 3.009035154269514 0.396146993387857 1.400000000000000 + 3.108179640406895 0.409199612609862 1.400000000000000 + 3.207324126544277 0.422252231831867 1.400000000000000 + 3.306468612681658 0.435304851053872 1.400000000000000 + 3.405613098819039 0.448357470275877 1.400000000000000 + 3.504757584956419 0.461410089497882 1.400000000000000 + 3.603902071093801 0.474462708719887 1.400000000000000 + 3.703046557231182 0.487515327941893 1.400000000000000 + 3.802191043368563 0.500567947163898 1.400000000000000 + 3.901335529505944 0.513620566385903 1.400000000000000 + 4.000480015643325 0.526673185607908 1.400000000000000 + 4.099624501780707 0.539725804829913 1.400000000000000 + 4.198768987918087 0.552778424051918 1.400000000000000 + 4.297913474055468 0.565831043273924 1.400000000000000 + 4.397057960192850 0.578883662495929 1.400000000000000 + 4.496202446330230 0.591936281717934 1.400000000000000 + 4.595346932467612 0.604988900939939 1.400000000000000 + 4.694491418604993 0.618041520161944 1.400000000000000 + 4.793635904742374 0.631094139383950 1.400000000000000 + 4.892780390879754 0.644146758605955 1.400000000000000 + 4.991924877017135 0.657199377827960 1.400000000000000 + 5.091069363154517 0.670251997049965 1.400000000000000 + 0.130399986549024 0.034940571088840 1.400000000000000 + 0.226992569177931 0.060822475599092 1.400000000000000 + 0.323585151806838 0.086704380109344 1.400000000000000 + 0.420177734435745 0.112586284619597 1.400000000000000 + 0.516770317064652 0.138468189129849 1.400000000000000 + 0.613362899693559 0.164350093640101 1.400000000000000 + 0.709955482322465 0.190231998150353 1.400000000000000 + 0.806548064951372 0.216113902660605 1.400000000000000 + 0.903140647580279 0.241995807170857 1.400000000000000 + 0.999733230209186 0.267877711681109 1.400000000000000 + 1.096325812838093 0.293759616191361 1.400000000000000 + 1.192918395467000 0.319641520701613 1.400000000000000 + 1.289510978095906 0.345523425211865 1.400000000000000 + 1.386103560724813 0.371405329722117 1.400000000000000 + 1.482696143353720 0.397287234232369 1.400000000000000 + 1.579288725982627 0.423169138742621 1.400000000000000 + 1.675881308611534 0.449051043252873 1.400000000000000 + 1.772473891240440 0.474932947763126 1.400000000000000 + 1.869066473869347 0.500814852273378 1.400000000000000 + 1.965659056498254 0.526696756783630 1.400000000000000 + 2.062251639127161 0.552578661293882 1.400000000000000 + 2.158844221756068 0.578460565804134 1.400000000000000 + 2.255436804384975 0.604342470314386 1.400000000000000 + 2.352029387013882 0.630224374824638 1.400000000000000 + 2.448621969642788 0.656106279334890 1.400000000000000 + 2.545214552271695 0.681988183845142 1.400000000000000 + 2.641807134900602 0.707870088355394 1.400000000000000 + 2.738399717529509 0.733751992865646 1.400000000000000 + 2.834992300158416 0.759633897375898 1.400000000000000 + 2.931584882787322 0.785515801886150 1.400000000000000 + 3.028177465416229 0.811397706396403 1.400000000000000 + 3.124770048045136 0.837279610906655 1.400000000000000 + 3.221362630674043 0.863161515416907 1.400000000000000 + 3.317955213302950 0.889043419927159 1.400000000000000 + 3.414547795931857 0.914925324437411 1.400000000000000 + 3.511140378560763 0.940807228947663 1.400000000000000 + 3.607732961189670 0.966689133457915 1.400000000000000 + 3.704325543818577 0.992571037968167 1.400000000000000 + 3.800918126447484 1.018452942478419 1.400000000000000 + 3.897510709076391 1.044334846988671 1.400000000000000 + 3.994103291705299 1.070216751498923 1.400000000000000 + 4.090695874334204 1.096098656009175 1.400000000000000 + 4.187288456963111 1.121980560519428 1.400000000000000 + 4.283881039592019 1.147862465029680 1.400000000000000 + 4.380473622220926 1.173744369539932 1.400000000000000 + 4.477066204849833 1.199626274050184 1.400000000000000 + 4.573658787478739 1.225508178560436 1.400000000000000 + 4.670251370107646 1.251390083070688 1.400000000000000 + 4.766843952736553 1.277271987580940 1.400000000000000 + 4.863436535365460 1.303153892091192 1.400000000000000 + 4.960029117994367 1.329035796601444 1.400000000000000 + 0.135000000000000 0.000000000000000 1.500000000000000 + 0.235000000000000 0.000000000000000 1.500000000000000 + 0.335000000000000 0.000000000000000 1.500000000000000 + 0.435000000000000 0.000000000000000 1.500000000000000 + 0.535000000000000 0.000000000000000 1.500000000000000 + 0.635000000000000 0.000000000000000 1.500000000000000 + 0.735000000000000 0.000000000000000 1.500000000000000 + 0.835000000000000 0.000000000000000 1.500000000000000 + 0.935000000000000 0.000000000000000 1.500000000000000 + 1.035000000000000 0.000000000000000 1.500000000000000 + 1.135000000000000 0.000000000000000 1.500000000000000 + 1.235000000000000 0.000000000000000 1.500000000000000 + 1.335000000000000 0.000000000000000 1.500000000000000 + 1.435000000000000 0.000000000000000 1.500000000000000 + 1.535000000000000 0.000000000000000 1.500000000000000 + 1.635000000000000 0.000000000000000 1.500000000000000 + 1.735000000000000 0.000000000000000 1.500000000000000 + 1.835000000000000 0.000000000000000 1.500000000000000 + 1.935000000000000 0.000000000000000 1.500000000000000 + 2.035000000000000 0.000000000000000 1.500000000000000 + 2.135000000000000 0.000000000000000 1.500000000000000 + 2.235000000000000 0.000000000000000 1.500000000000000 + 2.335000000000000 0.000000000000000 1.500000000000000 + 2.435000000000000 0.000000000000000 1.500000000000000 + 2.535000000000000 0.000000000000000 1.500000000000000 + 2.635000000000000 0.000000000000000 1.500000000000000 + 2.735000000000000 0.000000000000000 1.500000000000000 + 2.835000000000000 0.000000000000000 1.500000000000000 + 2.935000000000000 0.000000000000000 1.500000000000000 + 3.035000000000000 0.000000000000000 1.500000000000000 + 3.135000000000000 0.000000000000000 1.500000000000000 + 3.235000000000000 0.000000000000000 1.500000000000000 + 3.335000000000000 0.000000000000000 1.500000000000000 + 3.435000000000000 0.000000000000000 1.500000000000000 + 3.535000000000000 0.000000000000000 1.500000000000000 + 3.635000000000000 0.000000000000000 1.500000000000000 + 3.735000000000000 0.000000000000000 1.500000000000000 + 3.835000000000000 0.000000000000000 1.500000000000000 + 3.935000000000000 0.000000000000000 1.500000000000000 + 4.035000000000000 0.000000000000000 1.500000000000000 + 4.135000000000001 0.000000000000000 1.500000000000000 + 4.235000000000000 0.000000000000000 1.500000000000000 + 4.335000000000000 0.000000000000000 1.500000000000000 + 4.435000000000000 0.000000000000000 1.500000000000000 + 4.535000000000000 0.000000000000000 1.500000000000000 + 4.635000000000001 0.000000000000000 1.500000000000000 + 4.735000000000000 0.000000000000000 1.500000000000000 + 4.835000000000001 0.000000000000000 1.500000000000000 + 4.935000000000000 0.000000000000000 1.500000000000000 + 5.035000000000000 0.000000000000000 1.500000000000000 + 5.135000000000001 0.000000000000000 1.500000000000000 + 0.133845056285464 0.017621035949707 1.500000000000000 + 0.232989542422845 0.030673655171712 1.500000000000000 + 0.332134028560227 0.043726274393717 1.500000000000000 + 0.431278514697608 0.056778893615722 1.500000000000000 + 0.530423000834989 0.069831512837728 1.500000000000000 + 0.629567486972370 0.082884132059733 1.500000000000000 + 0.728711973109751 0.095936751281738 1.500000000000000 + 0.827856459247132 0.108989370503743 1.500000000000000 + 0.927000945384513 0.122041989725748 1.500000000000000 + 1.026145431521894 0.135094608947753 1.500000000000000 + 1.125289917659275 0.148147228169759 1.500000000000000 + 1.224434403796656 0.161199847391764 1.500000000000000 + 1.323578889934037 0.174252466613769 1.500000000000000 + 1.422723376071418 0.187305085835774 1.500000000000000 + 1.521867862208799 0.200357705057779 1.500000000000000 + 1.621012348346180 0.213410324279784 1.500000000000000 + 1.720156834483561 0.226462943501789 1.500000000000000 + 1.819301320620942 0.239515562723795 1.500000000000000 + 1.918445806758323 0.252568181945800 1.500000000000000 + 2.017590292895704 0.265620801167805 1.500000000000000 + 2.116734779033085 0.278673420389810 1.500000000000000 + 2.215879265170466 0.291726039611815 1.500000000000000 + 2.315023751307847 0.304778658833820 1.500000000000000 + 2.414168237445228 0.317831278055826 1.500000000000000 + 2.513312723582609 0.330883897277831 1.500000000000000 + 2.612457209719990 0.343936516499836 1.500000000000000 + 2.711601695857371 0.356989135721841 1.500000000000000 + 2.810746181994753 0.370041754943846 1.500000000000000 + 2.909890668132133 0.383094374165851 1.500000000000000 + 3.009035154269514 0.396146993387857 1.500000000000000 + 3.108179640406895 0.409199612609862 1.500000000000000 + 3.207324126544277 0.422252231831867 1.500000000000000 + 3.306468612681658 0.435304851053872 1.500000000000000 + 3.405613098819039 0.448357470275877 1.500000000000000 + 3.504757584956419 0.461410089497882 1.500000000000000 + 3.603902071093801 0.474462708719887 1.500000000000000 + 3.703046557231182 0.487515327941893 1.500000000000000 + 3.802191043368563 0.500567947163898 1.500000000000000 + 3.901335529505944 0.513620566385903 1.500000000000000 + 4.000480015643325 0.526673185607908 1.500000000000000 + 4.099624501780707 0.539725804829913 1.500000000000000 + 4.198768987918087 0.552778424051918 1.500000000000000 + 4.297913474055468 0.565831043273924 1.500000000000000 + 4.397057960192850 0.578883662495929 1.500000000000000 + 4.496202446330230 0.591936281717934 1.500000000000000 + 4.595346932467612 0.604988900939939 1.500000000000000 + 4.694491418604993 0.618041520161944 1.500000000000000 + 4.793635904742374 0.631094139383950 1.500000000000000 + 4.892780390879754 0.644146758605955 1.500000000000000 + 4.991924877017135 0.657199377827960 1.500000000000000 + 5.091069363154517 0.670251997049965 1.500000000000000 + 0.130399986549024 0.034940571088840 1.500000000000000 + 0.226992569177931 0.060822475599092 1.500000000000000 + 0.323585151806838 0.086704380109344 1.500000000000000 + 0.420177734435745 0.112586284619597 1.500000000000000 + 0.516770317064652 0.138468189129849 1.500000000000000 + 0.613362899693559 0.164350093640101 1.500000000000000 + 0.709955482322465 0.190231998150353 1.500000000000000 + 0.806548064951372 0.216113902660605 1.500000000000000 + 0.903140647580279 0.241995807170857 1.500000000000000 + 0.999733230209186 0.267877711681109 1.500000000000000 + 1.096325812838093 0.293759616191361 1.500000000000000 + 1.192918395467000 0.319641520701613 1.500000000000000 + 1.289510978095906 0.345523425211865 1.500000000000000 + 1.386103560724813 0.371405329722117 1.500000000000000 + 1.482696143353720 0.397287234232369 1.500000000000000 + 1.579288725982627 0.423169138742621 1.500000000000000 + 1.675881308611534 0.449051043252873 1.500000000000000 + 1.772473891240440 0.474932947763126 1.500000000000000 + 1.869066473869347 0.500814852273378 1.500000000000000 + 1.965659056498254 0.526696756783630 1.500000000000000 + 2.062251639127161 0.552578661293882 1.500000000000000 + 2.158844221756068 0.578460565804134 1.500000000000000 + 2.255436804384975 0.604342470314386 1.500000000000000 + 2.352029387013882 0.630224374824638 1.500000000000000 + 2.448621969642788 0.656106279334890 1.500000000000000 + 2.545214552271695 0.681988183845142 1.500000000000000 + 2.641807134900602 0.707870088355394 1.500000000000000 + 2.738399717529509 0.733751992865646 1.500000000000000 + 2.834992300158416 0.759633897375898 1.500000000000000 + 2.931584882787322 0.785515801886150 1.500000000000000 + 3.028177465416229 0.811397706396403 1.500000000000000 + 3.124770048045136 0.837279610906655 1.500000000000000 + 3.221362630674043 0.863161515416907 1.500000000000000 + 3.317955213302950 0.889043419927159 1.500000000000000 + 3.414547795931857 0.914925324437411 1.500000000000000 + 3.511140378560763 0.940807228947663 1.500000000000000 + 3.607732961189670 0.966689133457915 1.500000000000000 + 3.704325543818577 0.992571037968167 1.500000000000000 + 3.800918126447484 1.018452942478419 1.500000000000000 + 3.897510709076391 1.044334846988671 1.500000000000000 + 3.994103291705299 1.070216751498923 1.500000000000000 + 4.090695874334204 1.096098656009175 1.500000000000000 + 4.187288456963111 1.121980560519428 1.500000000000000 + 4.283881039592019 1.147862465029680 1.500000000000000 + 4.380473622220926 1.173744369539932 1.500000000000000 + 4.477066204849833 1.199626274050184 1.500000000000000 + 4.573658787478739 1.225508178560436 1.500000000000000 + 4.670251370107646 1.251390083070688 1.500000000000000 + 4.766843952736553 1.277271987580940 1.500000000000000 + 4.863436535365460 1.303153892091192 1.500000000000000 + 4.960029117994367 1.329035796601444 1.500000000000000 + 0.135000000000000 0.000000000000000 1.600000000000000 + 0.235000000000000 0.000000000000000 1.600000000000000 + 0.335000000000000 0.000000000000000 1.600000000000000 + 0.435000000000000 0.000000000000000 1.600000000000000 + 0.535000000000000 0.000000000000000 1.600000000000000 + 0.635000000000000 0.000000000000000 1.600000000000000 + 0.735000000000000 0.000000000000000 1.600000000000000 + 0.835000000000000 0.000000000000000 1.600000000000000 + 0.935000000000000 0.000000000000000 1.600000000000000 + 1.035000000000000 0.000000000000000 1.600000000000000 + 1.135000000000000 0.000000000000000 1.600000000000000 + 1.235000000000000 0.000000000000000 1.600000000000000 + 1.335000000000000 0.000000000000000 1.600000000000000 + 1.435000000000000 0.000000000000000 1.600000000000000 + 1.535000000000000 0.000000000000000 1.600000000000000 + 1.635000000000000 0.000000000000000 1.600000000000000 + 1.735000000000000 0.000000000000000 1.600000000000000 + 1.835000000000000 0.000000000000000 1.600000000000000 + 1.935000000000000 0.000000000000000 1.600000000000000 + 2.035000000000000 0.000000000000000 1.600000000000000 + 2.135000000000000 0.000000000000000 1.600000000000000 + 2.235000000000000 0.000000000000000 1.600000000000000 + 2.335000000000000 0.000000000000000 1.600000000000000 + 2.435000000000000 0.000000000000000 1.600000000000000 + 2.535000000000000 0.000000000000000 1.600000000000000 + 2.635000000000000 0.000000000000000 1.600000000000000 + 2.735000000000000 0.000000000000000 1.600000000000000 + 2.835000000000000 0.000000000000000 1.600000000000000 + 2.935000000000000 0.000000000000000 1.600000000000000 + 3.035000000000000 0.000000000000000 1.600000000000000 + 3.135000000000000 0.000000000000000 1.600000000000000 + 3.235000000000000 0.000000000000000 1.600000000000000 + 3.335000000000000 0.000000000000000 1.600000000000000 + 3.435000000000000 0.000000000000000 1.600000000000000 + 3.535000000000000 0.000000000000000 1.600000000000000 + 3.635000000000000 0.000000000000000 1.600000000000000 + 3.735000000000000 0.000000000000000 1.600000000000000 + 3.835000000000000 0.000000000000000 1.600000000000000 + 3.935000000000000 0.000000000000000 1.600000000000000 + 4.035000000000000 0.000000000000000 1.600000000000000 + 4.135000000000001 0.000000000000000 1.600000000000000 + 4.235000000000000 0.000000000000000 1.600000000000000 + 4.335000000000000 0.000000000000000 1.600000000000000 + 4.435000000000000 0.000000000000000 1.600000000000000 + 4.535000000000000 0.000000000000000 1.600000000000000 + 4.635000000000001 0.000000000000000 1.600000000000000 + 4.735000000000000 0.000000000000000 1.600000000000000 + 4.835000000000001 0.000000000000000 1.600000000000000 + 4.935000000000000 0.000000000000000 1.600000000000000 + 5.035000000000000 0.000000000000000 1.600000000000000 + 5.135000000000001 0.000000000000000 1.600000000000000 + 0.133845056285464 0.017621035949707 1.600000000000000 + 0.232989542422845 0.030673655171712 1.600000000000000 + 0.332134028560227 0.043726274393717 1.600000000000000 + 0.431278514697608 0.056778893615722 1.600000000000000 + 0.530423000834989 0.069831512837728 1.600000000000000 + 0.629567486972370 0.082884132059733 1.600000000000000 + 0.728711973109751 0.095936751281738 1.600000000000000 + 0.827856459247132 0.108989370503743 1.600000000000000 + 0.927000945384513 0.122041989725748 1.600000000000000 + 1.026145431521894 0.135094608947753 1.600000000000000 + 1.125289917659275 0.148147228169759 1.600000000000000 + 1.224434403796656 0.161199847391764 1.600000000000000 + 1.323578889934037 0.174252466613769 1.600000000000000 + 1.422723376071418 0.187305085835774 1.600000000000000 + 1.521867862208799 0.200357705057779 1.600000000000000 + 1.621012348346180 0.213410324279784 1.600000000000000 + 1.720156834483561 0.226462943501789 1.600000000000000 + 1.819301320620942 0.239515562723795 1.600000000000000 + 1.918445806758323 0.252568181945800 1.600000000000000 + 2.017590292895704 0.265620801167805 1.600000000000000 + 2.116734779033085 0.278673420389810 1.600000000000000 + 2.215879265170466 0.291726039611815 1.600000000000000 + 2.315023751307847 0.304778658833820 1.600000000000000 + 2.414168237445228 0.317831278055826 1.600000000000000 + 2.513312723582609 0.330883897277831 1.600000000000000 + 2.612457209719990 0.343936516499836 1.600000000000000 + 2.711601695857371 0.356989135721841 1.600000000000000 + 2.810746181994753 0.370041754943846 1.600000000000000 + 2.909890668132133 0.383094374165851 1.600000000000000 + 3.009035154269514 0.396146993387857 1.600000000000000 + 3.108179640406895 0.409199612609862 1.600000000000000 + 3.207324126544277 0.422252231831867 1.600000000000000 + 3.306468612681658 0.435304851053872 1.600000000000000 + 3.405613098819039 0.448357470275877 1.600000000000000 + 3.504757584956419 0.461410089497882 1.600000000000000 + 3.603902071093801 0.474462708719887 1.600000000000000 + 3.703046557231182 0.487515327941893 1.600000000000000 + 3.802191043368563 0.500567947163898 1.600000000000000 + 3.901335529505944 0.513620566385903 1.600000000000000 + 4.000480015643325 0.526673185607908 1.600000000000000 + 4.099624501780707 0.539725804829913 1.600000000000000 + 4.198768987918087 0.552778424051918 1.600000000000000 + 4.297913474055468 0.565831043273924 1.600000000000000 + 4.397057960192850 0.578883662495929 1.600000000000000 + 4.496202446330230 0.591936281717934 1.600000000000000 + 4.595346932467612 0.604988900939939 1.600000000000000 + 4.694491418604993 0.618041520161944 1.600000000000000 + 4.793635904742374 0.631094139383950 1.600000000000000 + 4.892780390879754 0.644146758605955 1.600000000000000 + 4.991924877017135 0.657199377827960 1.600000000000000 + 5.091069363154517 0.670251997049965 1.600000000000000 + 0.130399986549024 0.034940571088840 1.600000000000000 + 0.226992569177931 0.060822475599092 1.600000000000000 + 0.323585151806838 0.086704380109344 1.600000000000000 + 0.420177734435745 0.112586284619597 1.600000000000000 + 0.516770317064652 0.138468189129849 1.600000000000000 + 0.613362899693559 0.164350093640101 1.600000000000000 + 0.709955482322465 0.190231998150353 1.600000000000000 + 0.806548064951372 0.216113902660605 1.600000000000000 + 0.903140647580279 0.241995807170857 1.600000000000000 + 0.999733230209186 0.267877711681109 1.600000000000000 + 1.096325812838093 0.293759616191361 1.600000000000000 + 1.192918395467000 0.319641520701613 1.600000000000000 + 1.289510978095906 0.345523425211865 1.600000000000000 + 1.386103560724813 0.371405329722117 1.600000000000000 + 1.482696143353720 0.397287234232369 1.600000000000000 + 1.579288725982627 0.423169138742621 1.600000000000000 + 1.675881308611534 0.449051043252873 1.600000000000000 + 1.772473891240440 0.474932947763126 1.600000000000000 + 1.869066473869347 0.500814852273378 1.600000000000000 + 1.965659056498254 0.526696756783630 1.600000000000000 + 2.062251639127161 0.552578661293882 1.600000000000000 + 2.158844221756068 0.578460565804134 1.600000000000000 + 2.255436804384975 0.604342470314386 1.600000000000000 + 2.352029387013882 0.630224374824638 1.600000000000000 + 2.448621969642788 0.656106279334890 1.600000000000000 + 2.545214552271695 0.681988183845142 1.600000000000000 + 2.641807134900602 0.707870088355394 1.600000000000000 + 2.738399717529509 0.733751992865646 1.600000000000000 + 2.834992300158416 0.759633897375898 1.600000000000000 + 2.931584882787322 0.785515801886150 1.600000000000000 + 3.028177465416229 0.811397706396403 1.600000000000000 + 3.124770048045136 0.837279610906655 1.600000000000000 + 3.221362630674043 0.863161515416907 1.600000000000000 + 3.317955213302950 0.889043419927159 1.600000000000000 + 3.414547795931857 0.914925324437411 1.600000000000000 + 3.511140378560763 0.940807228947663 1.600000000000000 + 3.607732961189670 0.966689133457915 1.600000000000000 + 3.704325543818577 0.992571037968167 1.600000000000000 + 3.800918126447484 1.018452942478419 1.600000000000000 + 3.897510709076391 1.044334846988671 1.600000000000000 + 3.994103291705299 1.070216751498923 1.600000000000000 + 4.090695874334204 1.096098656009175 1.600000000000000 + 4.187288456963111 1.121980560519428 1.600000000000000 + 4.283881039592019 1.147862465029680 1.600000000000000 + 4.380473622220926 1.173744369539932 1.600000000000000 + 4.477066204849833 1.199626274050184 1.600000000000000 + 4.573658787478739 1.225508178560436 1.600000000000000 + 4.670251370107646 1.251390083070688 1.600000000000000 + 4.766843952736553 1.277271987580940 1.600000000000000 + 4.863436535365460 1.303153892091192 1.600000000000000 + 4.960029117994367 1.329035796601444 1.600000000000000 + 0.135000000000000 0.000000000000000 1.700000000000000 + 0.235000000000000 0.000000000000000 1.700000000000000 + 0.335000000000000 0.000000000000000 1.700000000000000 + 0.435000000000000 0.000000000000000 1.700000000000000 + 0.535000000000000 0.000000000000000 1.700000000000000 + 0.635000000000000 0.000000000000000 1.700000000000000 + 0.735000000000000 0.000000000000000 1.700000000000000 + 0.835000000000000 0.000000000000000 1.700000000000000 + 0.935000000000000 0.000000000000000 1.700000000000000 + 1.035000000000000 0.000000000000000 1.700000000000000 + 1.135000000000000 0.000000000000000 1.700000000000000 + 1.235000000000000 0.000000000000000 1.700000000000000 + 1.335000000000000 0.000000000000000 1.700000000000000 + 1.435000000000000 0.000000000000000 1.700000000000000 + 1.535000000000000 0.000000000000000 1.700000000000000 + 1.635000000000000 0.000000000000000 1.700000000000000 + 1.735000000000000 0.000000000000000 1.700000000000000 + 1.835000000000000 0.000000000000000 1.700000000000000 + 1.935000000000000 0.000000000000000 1.700000000000000 + 2.035000000000000 0.000000000000000 1.700000000000000 + 2.135000000000000 0.000000000000000 1.700000000000000 + 2.235000000000000 0.000000000000000 1.700000000000000 + 2.335000000000000 0.000000000000000 1.700000000000000 + 2.435000000000000 0.000000000000000 1.700000000000000 + 2.535000000000000 0.000000000000000 1.700000000000000 + 2.635000000000000 0.000000000000000 1.700000000000000 + 2.735000000000000 0.000000000000000 1.700000000000000 + 2.835000000000000 0.000000000000000 1.700000000000000 + 2.935000000000000 0.000000000000000 1.700000000000000 + 3.035000000000000 0.000000000000000 1.700000000000000 + 3.135000000000000 0.000000000000000 1.700000000000000 + 3.235000000000000 0.000000000000000 1.700000000000000 + 3.335000000000000 0.000000000000000 1.700000000000000 + 3.435000000000000 0.000000000000000 1.700000000000000 + 3.535000000000000 0.000000000000000 1.700000000000000 + 3.635000000000000 0.000000000000000 1.700000000000000 + 3.735000000000000 0.000000000000000 1.700000000000000 + 3.835000000000000 0.000000000000000 1.700000000000000 + 3.935000000000000 0.000000000000000 1.700000000000000 + 4.035000000000000 0.000000000000000 1.700000000000000 + 4.135000000000001 0.000000000000000 1.700000000000000 + 4.235000000000000 0.000000000000000 1.700000000000000 + 4.335000000000000 0.000000000000000 1.700000000000000 + 4.435000000000000 0.000000000000000 1.700000000000000 + 4.535000000000000 0.000000000000000 1.700000000000000 + 4.635000000000001 0.000000000000000 1.700000000000000 + 4.735000000000000 0.000000000000000 1.700000000000000 + 4.835000000000001 0.000000000000000 1.700000000000000 + 4.935000000000000 0.000000000000000 1.700000000000000 + 5.035000000000000 0.000000000000000 1.700000000000000 + 5.135000000000001 0.000000000000000 1.700000000000000 + 0.133845056285464 0.017621035949707 1.700000000000000 + 0.232989542422845 0.030673655171712 1.700000000000000 + 0.332134028560227 0.043726274393717 1.700000000000000 + 0.431278514697608 0.056778893615722 1.700000000000000 + 0.530423000834989 0.069831512837728 1.700000000000000 + 0.629567486972370 0.082884132059733 1.700000000000000 + 0.728711973109751 0.095936751281738 1.700000000000000 + 0.827856459247132 0.108989370503743 1.700000000000000 + 0.927000945384513 0.122041989725748 1.700000000000000 + 1.026145431521894 0.135094608947753 1.700000000000000 + 1.125289917659275 0.148147228169759 1.700000000000000 + 1.224434403796656 0.161199847391764 1.700000000000000 + 1.323578889934037 0.174252466613769 1.700000000000000 + 1.422723376071418 0.187305085835774 1.700000000000000 + 1.521867862208799 0.200357705057779 1.700000000000000 + 1.621012348346180 0.213410324279784 1.700000000000000 + 1.720156834483561 0.226462943501789 1.700000000000000 + 1.819301320620942 0.239515562723795 1.700000000000000 + 1.918445806758323 0.252568181945800 1.700000000000000 + 2.017590292895704 0.265620801167805 1.700000000000000 + 2.116734779033085 0.278673420389810 1.700000000000000 + 2.215879265170466 0.291726039611815 1.700000000000000 + 2.315023751307847 0.304778658833820 1.700000000000000 + 2.414168237445228 0.317831278055826 1.700000000000000 + 2.513312723582609 0.330883897277831 1.700000000000000 + 2.612457209719990 0.343936516499836 1.700000000000000 + 2.711601695857371 0.356989135721841 1.700000000000000 + 2.810746181994753 0.370041754943846 1.700000000000000 + 2.909890668132133 0.383094374165851 1.700000000000000 + 3.009035154269514 0.396146993387857 1.700000000000000 + 3.108179640406895 0.409199612609862 1.700000000000000 + 3.207324126544277 0.422252231831867 1.700000000000000 + 3.306468612681658 0.435304851053872 1.700000000000000 + 3.405613098819039 0.448357470275877 1.700000000000000 + 3.504757584956419 0.461410089497882 1.700000000000000 + 3.603902071093801 0.474462708719887 1.700000000000000 + 3.703046557231182 0.487515327941893 1.700000000000000 + 3.802191043368563 0.500567947163898 1.700000000000000 + 3.901335529505944 0.513620566385903 1.700000000000000 + 4.000480015643325 0.526673185607908 1.700000000000000 + 4.099624501780707 0.539725804829913 1.700000000000000 + 4.198768987918087 0.552778424051918 1.700000000000000 + 4.297913474055468 0.565831043273924 1.700000000000000 + 4.397057960192850 0.578883662495929 1.700000000000000 + 4.496202446330230 0.591936281717934 1.700000000000000 + 4.595346932467612 0.604988900939939 1.700000000000000 + 4.694491418604993 0.618041520161944 1.700000000000000 + 4.793635904742374 0.631094139383950 1.700000000000000 + 4.892780390879754 0.644146758605955 1.700000000000000 + 4.991924877017135 0.657199377827960 1.700000000000000 + 5.091069363154517 0.670251997049965 1.700000000000000 + 0.130399986549024 0.034940571088840 1.700000000000000 + 0.226992569177931 0.060822475599092 1.700000000000000 + 0.323585151806838 0.086704380109344 1.700000000000000 + 0.420177734435745 0.112586284619597 1.700000000000000 + 0.516770317064652 0.138468189129849 1.700000000000000 + 0.613362899693559 0.164350093640101 1.700000000000000 + 0.709955482322465 0.190231998150353 1.700000000000000 + 0.806548064951372 0.216113902660605 1.700000000000000 + 0.903140647580279 0.241995807170857 1.700000000000000 + 0.999733230209186 0.267877711681109 1.700000000000000 + 1.096325812838093 0.293759616191361 1.700000000000000 + 1.192918395467000 0.319641520701613 1.700000000000000 + 1.289510978095906 0.345523425211865 1.700000000000000 + 1.386103560724813 0.371405329722117 1.700000000000000 + 1.482696143353720 0.397287234232369 1.700000000000000 + 1.579288725982627 0.423169138742621 1.700000000000000 + 1.675881308611534 0.449051043252873 1.700000000000000 + 1.772473891240440 0.474932947763126 1.700000000000000 + 1.869066473869347 0.500814852273378 1.700000000000000 + 1.965659056498254 0.526696756783630 1.700000000000000 + 2.062251639127161 0.552578661293882 1.700000000000000 + 2.158844221756068 0.578460565804134 1.700000000000000 + 2.255436804384975 0.604342470314386 1.700000000000000 + 2.352029387013882 0.630224374824638 1.700000000000000 + 2.448621969642788 0.656106279334890 1.700000000000000 + 2.545214552271695 0.681988183845142 1.700000000000000 + 2.641807134900602 0.707870088355394 1.700000000000000 + 2.738399717529509 0.733751992865646 1.700000000000000 + 2.834992300158416 0.759633897375898 1.700000000000000 + 2.931584882787322 0.785515801886150 1.700000000000000 + 3.028177465416229 0.811397706396403 1.700000000000000 + 3.124770048045136 0.837279610906655 1.700000000000000 + 3.221362630674043 0.863161515416907 1.700000000000000 + 3.317955213302950 0.889043419927159 1.700000000000000 + 3.414547795931857 0.914925324437411 1.700000000000000 + 3.511140378560763 0.940807228947663 1.700000000000000 + 3.607732961189670 0.966689133457915 1.700000000000000 + 3.704325543818577 0.992571037968167 1.700000000000000 + 3.800918126447484 1.018452942478419 1.700000000000000 + 3.897510709076391 1.044334846988671 1.700000000000000 + 3.994103291705299 1.070216751498923 1.700000000000000 + 4.090695874334204 1.096098656009175 1.700000000000000 + 4.187288456963111 1.121980560519428 1.700000000000000 + 4.283881039592019 1.147862465029680 1.700000000000000 + 4.380473622220926 1.173744369539932 1.700000000000000 + 4.477066204849833 1.199626274050184 1.700000000000000 + 4.573658787478739 1.225508178560436 1.700000000000000 + 4.670251370107646 1.251390083070688 1.700000000000000 + 4.766843952736553 1.277271987580940 1.700000000000000 + 4.863436535365460 1.303153892091192 1.700000000000000 + 4.960029117994367 1.329035796601444 1.700000000000000 + 0.135000000000000 0.000000000000000 1.800000000000000 + 0.235000000000000 0.000000000000000 1.800000000000000 + 0.335000000000000 0.000000000000000 1.800000000000000 + 0.435000000000000 0.000000000000000 1.800000000000000 + 0.535000000000000 0.000000000000000 1.800000000000000 + 0.635000000000000 0.000000000000000 1.800000000000000 + 0.735000000000000 0.000000000000000 1.800000000000000 + 0.835000000000000 0.000000000000000 1.800000000000000 + 0.935000000000000 0.000000000000000 1.800000000000000 + 1.035000000000000 0.000000000000000 1.800000000000000 + 1.135000000000000 0.000000000000000 1.800000000000000 + 1.235000000000000 0.000000000000000 1.800000000000000 + 1.335000000000000 0.000000000000000 1.800000000000000 + 1.435000000000000 0.000000000000000 1.800000000000000 + 1.535000000000000 0.000000000000000 1.800000000000000 + 1.635000000000000 0.000000000000000 1.800000000000000 + 1.735000000000000 0.000000000000000 1.800000000000000 + 1.835000000000000 0.000000000000000 1.800000000000000 + 1.935000000000000 0.000000000000000 1.800000000000000 + 2.035000000000000 0.000000000000000 1.800000000000000 + 2.135000000000000 0.000000000000000 1.800000000000000 + 2.235000000000000 0.000000000000000 1.800000000000000 + 2.335000000000000 0.000000000000000 1.800000000000000 + 2.435000000000000 0.000000000000000 1.800000000000000 + 2.535000000000000 0.000000000000000 1.800000000000000 + 2.635000000000000 0.000000000000000 1.800000000000000 + 2.735000000000000 0.000000000000000 1.800000000000000 + 2.835000000000000 0.000000000000000 1.800000000000000 + 2.935000000000000 0.000000000000000 1.800000000000000 + 3.035000000000000 0.000000000000000 1.800000000000000 + 3.135000000000000 0.000000000000000 1.800000000000000 + 3.235000000000000 0.000000000000000 1.800000000000000 + 3.335000000000000 0.000000000000000 1.800000000000000 + 3.435000000000000 0.000000000000000 1.800000000000000 + 3.535000000000000 0.000000000000000 1.800000000000000 + 3.635000000000000 0.000000000000000 1.800000000000000 + 3.735000000000000 0.000000000000000 1.800000000000000 + 3.835000000000000 0.000000000000000 1.800000000000000 + 3.935000000000000 0.000000000000000 1.800000000000000 + 4.035000000000000 0.000000000000000 1.800000000000000 + 4.135000000000001 0.000000000000000 1.800000000000000 + 4.235000000000000 0.000000000000000 1.800000000000000 + 4.335000000000000 0.000000000000000 1.800000000000000 + 4.435000000000000 0.000000000000000 1.800000000000000 + 4.535000000000000 0.000000000000000 1.800000000000000 + 4.635000000000001 0.000000000000000 1.800000000000000 + 4.735000000000000 0.000000000000000 1.800000000000000 + 4.835000000000001 0.000000000000000 1.800000000000000 + 4.935000000000000 0.000000000000000 1.800000000000000 + 5.035000000000000 0.000000000000000 1.800000000000000 + 5.135000000000001 0.000000000000000 1.800000000000000 + 0.133845056285464 0.017621035949707 1.800000000000000 + 0.232989542422845 0.030673655171712 1.800000000000000 + 0.332134028560227 0.043726274393717 1.800000000000000 + 0.431278514697608 0.056778893615722 1.800000000000000 + 0.530423000834989 0.069831512837728 1.800000000000000 + 0.629567486972370 0.082884132059733 1.800000000000000 + 0.728711973109751 0.095936751281738 1.800000000000000 + 0.827856459247132 0.108989370503743 1.800000000000000 + 0.927000945384513 0.122041989725748 1.800000000000000 + 1.026145431521894 0.135094608947753 1.800000000000000 + 1.125289917659275 0.148147228169759 1.800000000000000 + 1.224434403796656 0.161199847391764 1.800000000000000 + 1.323578889934037 0.174252466613769 1.800000000000000 + 1.422723376071418 0.187305085835774 1.800000000000000 + 1.521867862208799 0.200357705057779 1.800000000000000 + 1.621012348346180 0.213410324279784 1.800000000000000 + 1.720156834483561 0.226462943501789 1.800000000000000 + 1.819301320620942 0.239515562723795 1.800000000000000 + 1.918445806758323 0.252568181945800 1.800000000000000 + 2.017590292895704 0.265620801167805 1.800000000000000 + 2.116734779033085 0.278673420389810 1.800000000000000 + 2.215879265170466 0.291726039611815 1.800000000000000 + 2.315023751307847 0.304778658833820 1.800000000000000 + 2.414168237445228 0.317831278055826 1.800000000000000 + 2.513312723582609 0.330883897277831 1.800000000000000 + 2.612457209719990 0.343936516499836 1.800000000000000 + 2.711601695857371 0.356989135721841 1.800000000000000 + 2.810746181994753 0.370041754943846 1.800000000000000 + 2.909890668132133 0.383094374165851 1.800000000000000 + 3.009035154269514 0.396146993387857 1.800000000000000 + 3.108179640406895 0.409199612609862 1.800000000000000 + 3.207324126544277 0.422252231831867 1.800000000000000 + 3.306468612681658 0.435304851053872 1.800000000000000 + 3.405613098819039 0.448357470275877 1.800000000000000 + 3.504757584956419 0.461410089497882 1.800000000000000 + 3.603902071093801 0.474462708719887 1.800000000000000 + 3.703046557231182 0.487515327941893 1.800000000000000 + 3.802191043368563 0.500567947163898 1.800000000000000 + 3.901335529505944 0.513620566385903 1.800000000000000 + 4.000480015643325 0.526673185607908 1.800000000000000 + 4.099624501780707 0.539725804829913 1.800000000000000 + 4.198768987918087 0.552778424051918 1.800000000000000 + 4.297913474055468 0.565831043273924 1.800000000000000 + 4.397057960192850 0.578883662495929 1.800000000000000 + 4.496202446330230 0.591936281717934 1.800000000000000 + 4.595346932467612 0.604988900939939 1.800000000000000 + 4.694491418604993 0.618041520161944 1.800000000000000 + 4.793635904742374 0.631094139383950 1.800000000000000 + 4.892780390879754 0.644146758605955 1.800000000000000 + 4.991924877017135 0.657199377827960 1.800000000000000 + 5.091069363154517 0.670251997049965 1.800000000000000 + 0.130399986549024 0.034940571088840 1.800000000000000 + 0.226992569177931 0.060822475599092 1.800000000000000 + 0.323585151806838 0.086704380109344 1.800000000000000 + 0.420177734435745 0.112586284619597 1.800000000000000 + 0.516770317064652 0.138468189129849 1.800000000000000 + 0.613362899693559 0.164350093640101 1.800000000000000 + 0.709955482322465 0.190231998150353 1.800000000000000 + 0.806548064951372 0.216113902660605 1.800000000000000 + 0.903140647580279 0.241995807170857 1.800000000000000 + 0.999733230209186 0.267877711681109 1.800000000000000 + 1.096325812838093 0.293759616191361 1.800000000000000 + 1.192918395467000 0.319641520701613 1.800000000000000 + 1.289510978095906 0.345523425211865 1.800000000000000 + 1.386103560724813 0.371405329722117 1.800000000000000 + 1.482696143353720 0.397287234232369 1.800000000000000 + 1.579288725982627 0.423169138742621 1.800000000000000 + 1.675881308611534 0.449051043252873 1.800000000000000 + 1.772473891240440 0.474932947763126 1.800000000000000 + 1.869066473869347 0.500814852273378 1.800000000000000 + 1.965659056498254 0.526696756783630 1.800000000000000 + 2.062251639127161 0.552578661293882 1.800000000000000 + 2.158844221756068 0.578460565804134 1.800000000000000 + 2.255436804384975 0.604342470314386 1.800000000000000 + 2.352029387013882 0.630224374824638 1.800000000000000 + 2.448621969642788 0.656106279334890 1.800000000000000 + 2.545214552271695 0.681988183845142 1.800000000000000 + 2.641807134900602 0.707870088355394 1.800000000000000 + 2.738399717529509 0.733751992865646 1.800000000000000 + 2.834992300158416 0.759633897375898 1.800000000000000 + 2.931584882787322 0.785515801886150 1.800000000000000 + 3.028177465416229 0.811397706396403 1.800000000000000 + 3.124770048045136 0.837279610906655 1.800000000000000 + 3.221362630674043 0.863161515416907 1.800000000000000 + 3.317955213302950 0.889043419927159 1.800000000000000 + 3.414547795931857 0.914925324437411 1.800000000000000 + 3.511140378560763 0.940807228947663 1.800000000000000 + 3.607732961189670 0.966689133457915 1.800000000000000 + 3.704325543818577 0.992571037968167 1.800000000000000 + 3.800918126447484 1.018452942478419 1.800000000000000 + 3.897510709076391 1.044334846988671 1.800000000000000 + 3.994103291705299 1.070216751498923 1.800000000000000 + 4.090695874334204 1.096098656009175 1.800000000000000 + 4.187288456963111 1.121980560519428 1.800000000000000 + 4.283881039592019 1.147862465029680 1.800000000000000 + 4.380473622220926 1.173744369539932 1.800000000000000 + 4.477066204849833 1.199626274050184 1.800000000000000 + 4.573658787478739 1.225508178560436 1.800000000000000 + 4.670251370107646 1.251390083070688 1.800000000000000 + 4.766843952736553 1.277271987580940 1.800000000000000 + 4.863436535365460 1.303153892091192 1.800000000000000 + 4.960029117994367 1.329035796601444 1.800000000000000 + 0.135000000000000 0.000000000000000 1.900000000000000 + 0.235000000000000 0.000000000000000 1.900000000000000 + 0.335000000000000 0.000000000000000 1.900000000000000 + 0.435000000000000 0.000000000000000 1.900000000000000 + 0.535000000000000 0.000000000000000 1.900000000000000 + 0.635000000000000 0.000000000000000 1.900000000000000 + 0.735000000000000 0.000000000000000 1.900000000000000 + 0.835000000000000 0.000000000000000 1.900000000000000 + 0.935000000000000 0.000000000000000 1.900000000000000 + 1.035000000000000 0.000000000000000 1.900000000000000 + 1.135000000000000 0.000000000000000 1.900000000000000 + 1.235000000000000 0.000000000000000 1.900000000000000 + 1.335000000000000 0.000000000000000 1.900000000000000 + 1.435000000000000 0.000000000000000 1.900000000000000 + 1.535000000000000 0.000000000000000 1.900000000000000 + 1.635000000000000 0.000000000000000 1.900000000000000 + 1.735000000000000 0.000000000000000 1.900000000000000 + 1.835000000000000 0.000000000000000 1.900000000000000 + 1.935000000000000 0.000000000000000 1.900000000000000 + 2.035000000000000 0.000000000000000 1.900000000000000 + 2.135000000000000 0.000000000000000 1.900000000000000 + 2.235000000000000 0.000000000000000 1.900000000000000 + 2.335000000000000 0.000000000000000 1.900000000000000 + 2.435000000000000 0.000000000000000 1.900000000000000 + 2.535000000000000 0.000000000000000 1.900000000000000 + 2.635000000000000 0.000000000000000 1.900000000000000 + 2.735000000000000 0.000000000000000 1.900000000000000 + 2.835000000000000 0.000000000000000 1.900000000000000 + 2.935000000000000 0.000000000000000 1.900000000000000 + 3.035000000000000 0.000000000000000 1.900000000000000 + 3.135000000000000 0.000000000000000 1.900000000000000 + 3.235000000000000 0.000000000000000 1.900000000000000 + 3.335000000000000 0.000000000000000 1.900000000000000 + 3.435000000000000 0.000000000000000 1.900000000000000 + 3.535000000000000 0.000000000000000 1.900000000000000 + 3.635000000000000 0.000000000000000 1.900000000000000 + 3.735000000000000 0.000000000000000 1.900000000000000 + 3.835000000000000 0.000000000000000 1.900000000000000 + 3.935000000000000 0.000000000000000 1.900000000000000 + 4.035000000000000 0.000000000000000 1.900000000000000 + 4.135000000000001 0.000000000000000 1.900000000000000 + 4.235000000000000 0.000000000000000 1.900000000000000 + 4.335000000000000 0.000000000000000 1.900000000000000 + 4.435000000000000 0.000000000000000 1.900000000000000 + 4.535000000000000 0.000000000000000 1.900000000000000 + 4.635000000000001 0.000000000000000 1.900000000000000 + 4.735000000000000 0.000000000000000 1.900000000000000 + 4.835000000000001 0.000000000000000 1.900000000000000 + 4.935000000000000 0.000000000000000 1.900000000000000 + 5.035000000000000 0.000000000000000 1.900000000000000 + 5.135000000000001 0.000000000000000 1.900000000000000 + 0.133845056285464 0.017621035949707 1.900000000000000 + 0.232989542422845 0.030673655171712 1.900000000000000 + 0.332134028560227 0.043726274393717 1.900000000000000 + 0.431278514697608 0.056778893615722 1.900000000000000 + 0.530423000834989 0.069831512837728 1.900000000000000 + 0.629567486972370 0.082884132059733 1.900000000000000 + 0.728711973109751 0.095936751281738 1.900000000000000 + 0.827856459247132 0.108989370503743 1.900000000000000 + 0.927000945384513 0.122041989725748 1.900000000000000 + 1.026145431521894 0.135094608947753 1.900000000000000 + 1.125289917659275 0.148147228169759 1.900000000000000 + 1.224434403796656 0.161199847391764 1.900000000000000 + 1.323578889934037 0.174252466613769 1.900000000000000 + 1.422723376071418 0.187305085835774 1.900000000000000 + 1.521867862208799 0.200357705057779 1.900000000000000 + 1.621012348346180 0.213410324279784 1.900000000000000 + 1.720156834483561 0.226462943501789 1.900000000000000 + 1.819301320620942 0.239515562723795 1.900000000000000 + 1.918445806758323 0.252568181945800 1.900000000000000 + 2.017590292895704 0.265620801167805 1.900000000000000 + 2.116734779033085 0.278673420389810 1.900000000000000 + 2.215879265170466 0.291726039611815 1.900000000000000 + 2.315023751307847 0.304778658833820 1.900000000000000 + 2.414168237445228 0.317831278055826 1.900000000000000 + 2.513312723582609 0.330883897277831 1.900000000000000 + 2.612457209719990 0.343936516499836 1.900000000000000 + 2.711601695857371 0.356989135721841 1.900000000000000 + 2.810746181994753 0.370041754943846 1.900000000000000 + 2.909890668132133 0.383094374165851 1.900000000000000 + 3.009035154269514 0.396146993387857 1.900000000000000 + 3.108179640406895 0.409199612609862 1.900000000000000 + 3.207324126544277 0.422252231831867 1.900000000000000 + 3.306468612681658 0.435304851053872 1.900000000000000 + 3.405613098819039 0.448357470275877 1.900000000000000 + 3.504757584956419 0.461410089497882 1.900000000000000 + 3.603902071093801 0.474462708719887 1.900000000000000 + 3.703046557231182 0.487515327941893 1.900000000000000 + 3.802191043368563 0.500567947163898 1.900000000000000 + 3.901335529505944 0.513620566385903 1.900000000000000 + 4.000480015643325 0.526673185607908 1.900000000000000 + 4.099624501780707 0.539725804829913 1.900000000000000 + 4.198768987918087 0.552778424051918 1.900000000000000 + 4.297913474055468 0.565831043273924 1.900000000000000 + 4.397057960192850 0.578883662495929 1.900000000000000 + 4.496202446330230 0.591936281717934 1.900000000000000 + 4.595346932467612 0.604988900939939 1.900000000000000 + 4.694491418604993 0.618041520161944 1.900000000000000 + 4.793635904742374 0.631094139383950 1.900000000000000 + 4.892780390879754 0.644146758605955 1.900000000000000 + 4.991924877017135 0.657199377827960 1.900000000000000 + 5.091069363154517 0.670251997049965 1.900000000000000 + 0.130399986549024 0.034940571088840 1.900000000000000 + 0.226992569177931 0.060822475599092 1.900000000000000 + 0.323585151806838 0.086704380109344 1.900000000000000 + 0.420177734435745 0.112586284619597 1.900000000000000 + 0.516770317064652 0.138468189129849 1.900000000000000 + 0.613362899693559 0.164350093640101 1.900000000000000 + 0.709955482322465 0.190231998150353 1.900000000000000 + 0.806548064951372 0.216113902660605 1.900000000000000 + 0.903140647580279 0.241995807170857 1.900000000000000 + 0.999733230209186 0.267877711681109 1.900000000000000 + 1.096325812838093 0.293759616191361 1.900000000000000 + 1.192918395467000 0.319641520701613 1.900000000000000 + 1.289510978095906 0.345523425211865 1.900000000000000 + 1.386103560724813 0.371405329722117 1.900000000000000 + 1.482696143353720 0.397287234232369 1.900000000000000 + 1.579288725982627 0.423169138742621 1.900000000000000 + 1.675881308611534 0.449051043252873 1.900000000000000 + 1.772473891240440 0.474932947763126 1.900000000000000 + 1.869066473869347 0.500814852273378 1.900000000000000 + 1.965659056498254 0.526696756783630 1.900000000000000 + 2.062251639127161 0.552578661293882 1.900000000000000 + 2.158844221756068 0.578460565804134 1.900000000000000 + 2.255436804384975 0.604342470314386 1.900000000000000 + 2.352029387013882 0.630224374824638 1.900000000000000 + 2.448621969642788 0.656106279334890 1.900000000000000 + 2.545214552271695 0.681988183845142 1.900000000000000 + 2.641807134900602 0.707870088355394 1.900000000000000 + 2.738399717529509 0.733751992865646 1.900000000000000 + 2.834992300158416 0.759633897375898 1.900000000000000 + 2.931584882787322 0.785515801886150 1.900000000000000 + 3.028177465416229 0.811397706396403 1.900000000000000 + 3.124770048045136 0.837279610906655 1.900000000000000 + 3.221362630674043 0.863161515416907 1.900000000000000 + 3.317955213302950 0.889043419927159 1.900000000000000 + 3.414547795931857 0.914925324437411 1.900000000000000 + 3.511140378560763 0.940807228947663 1.900000000000000 + 3.607732961189670 0.966689133457915 1.900000000000000 + 3.704325543818577 0.992571037968167 1.900000000000000 + 3.800918126447484 1.018452942478419 1.900000000000000 + 3.897510709076391 1.044334846988671 1.900000000000000 + 3.994103291705299 1.070216751498923 1.900000000000000 + 4.090695874334204 1.096098656009175 1.900000000000000 + 4.187288456963111 1.121980560519428 1.900000000000000 + 4.283881039592019 1.147862465029680 1.900000000000000 + 4.380473622220926 1.173744369539932 1.900000000000000 + 4.477066204849833 1.199626274050184 1.900000000000000 + 4.573658787478739 1.225508178560436 1.900000000000000 + 4.670251370107646 1.251390083070688 1.900000000000000 + 4.766843952736553 1.277271987580940 1.900000000000000 + 4.863436535365460 1.303153892091192 1.900000000000000 + 4.960029117994367 1.329035796601444 1.900000000000000 + 0.135000000000000 0.000000000000000 2.000000000000000 + 0.235000000000000 0.000000000000000 2.000000000000000 + 0.335000000000000 0.000000000000000 2.000000000000000 + 0.435000000000000 0.000000000000000 2.000000000000000 + 0.535000000000000 0.000000000000000 2.000000000000000 + 0.635000000000000 0.000000000000000 2.000000000000000 + 0.735000000000000 0.000000000000000 2.000000000000000 + 0.835000000000000 0.000000000000000 2.000000000000000 + 0.935000000000000 0.000000000000000 2.000000000000000 + 1.035000000000000 0.000000000000000 2.000000000000000 + 1.135000000000000 0.000000000000000 2.000000000000000 + 1.235000000000000 0.000000000000000 2.000000000000000 + 1.335000000000000 0.000000000000000 2.000000000000000 + 1.435000000000000 0.000000000000000 2.000000000000000 + 1.535000000000000 0.000000000000000 2.000000000000000 + 1.635000000000000 0.000000000000000 2.000000000000000 + 1.735000000000000 0.000000000000000 2.000000000000000 + 1.835000000000000 0.000000000000000 2.000000000000000 + 1.935000000000000 0.000000000000000 2.000000000000000 + 2.035000000000000 0.000000000000000 2.000000000000000 + 2.135000000000000 0.000000000000000 2.000000000000000 + 2.235000000000000 0.000000000000000 2.000000000000000 + 2.335000000000000 0.000000000000000 2.000000000000000 + 2.435000000000000 0.000000000000000 2.000000000000000 + 2.535000000000000 0.000000000000000 2.000000000000000 + 2.635000000000000 0.000000000000000 2.000000000000000 + 2.735000000000000 0.000000000000000 2.000000000000000 + 2.835000000000000 0.000000000000000 2.000000000000000 + 2.935000000000000 0.000000000000000 2.000000000000000 + 3.035000000000000 0.000000000000000 2.000000000000000 + 3.135000000000000 0.000000000000000 2.000000000000000 + 3.235000000000000 0.000000000000000 2.000000000000000 + 3.335000000000000 0.000000000000000 2.000000000000000 + 3.435000000000000 0.000000000000000 2.000000000000000 + 3.535000000000000 0.000000000000000 2.000000000000000 + 3.635000000000000 0.000000000000000 2.000000000000000 + 3.735000000000000 0.000000000000000 2.000000000000000 + 3.835000000000000 0.000000000000000 2.000000000000000 + 3.935000000000000 0.000000000000000 2.000000000000000 + 4.035000000000000 0.000000000000000 2.000000000000000 + 4.135000000000001 0.000000000000000 2.000000000000000 + 4.235000000000000 0.000000000000000 2.000000000000000 + 4.335000000000000 0.000000000000000 2.000000000000000 + 4.435000000000000 0.000000000000000 2.000000000000000 + 4.535000000000000 0.000000000000000 2.000000000000000 + 4.635000000000001 0.000000000000000 2.000000000000000 + 4.735000000000000 0.000000000000000 2.000000000000000 + 4.835000000000001 0.000000000000000 2.000000000000000 + 4.935000000000000 0.000000000000000 2.000000000000000 + 5.035000000000000 0.000000000000000 2.000000000000000 + 5.135000000000001 0.000000000000000 2.000000000000000 + 0.133845056285464 0.017621035949707 2.000000000000000 + 0.232989542422845 0.030673655171712 2.000000000000000 + 0.332134028560227 0.043726274393717 2.000000000000000 + 0.431278514697608 0.056778893615722 2.000000000000000 + 0.530423000834989 0.069831512837728 2.000000000000000 + 0.629567486972370 0.082884132059733 2.000000000000000 + 0.728711973109751 0.095936751281738 2.000000000000000 + 0.827856459247132 0.108989370503743 2.000000000000000 + 0.927000945384513 0.122041989725748 2.000000000000000 + 1.026145431521894 0.135094608947753 2.000000000000000 + 1.125289917659275 0.148147228169759 2.000000000000000 + 1.224434403796656 0.161199847391764 2.000000000000000 + 1.323578889934037 0.174252466613769 2.000000000000000 + 1.422723376071418 0.187305085835774 2.000000000000000 + 1.521867862208799 0.200357705057779 2.000000000000000 + 1.621012348346180 0.213410324279784 2.000000000000000 + 1.720156834483561 0.226462943501789 2.000000000000000 + 1.819301320620942 0.239515562723795 2.000000000000000 + 1.918445806758323 0.252568181945800 2.000000000000000 + 2.017590292895704 0.265620801167805 2.000000000000000 + 2.116734779033085 0.278673420389810 2.000000000000000 + 2.215879265170466 0.291726039611815 2.000000000000000 + 2.315023751307847 0.304778658833820 2.000000000000000 + 2.414168237445228 0.317831278055826 2.000000000000000 + 2.513312723582609 0.330883897277831 2.000000000000000 + 2.612457209719990 0.343936516499836 2.000000000000000 + 2.711601695857371 0.356989135721841 2.000000000000000 + 2.810746181994753 0.370041754943846 2.000000000000000 + 2.909890668132133 0.383094374165851 2.000000000000000 + 3.009035154269514 0.396146993387857 2.000000000000000 + 3.108179640406895 0.409199612609862 2.000000000000000 + 3.207324126544277 0.422252231831867 2.000000000000000 + 3.306468612681658 0.435304851053872 2.000000000000000 + 3.405613098819039 0.448357470275877 2.000000000000000 + 3.504757584956419 0.461410089497882 2.000000000000000 + 3.603902071093801 0.474462708719887 2.000000000000000 + 3.703046557231182 0.487515327941893 2.000000000000000 + 3.802191043368563 0.500567947163898 2.000000000000000 + 3.901335529505944 0.513620566385903 2.000000000000000 + 4.000480015643325 0.526673185607908 2.000000000000000 + 4.099624501780707 0.539725804829913 2.000000000000000 + 4.198768987918087 0.552778424051918 2.000000000000000 + 4.297913474055468 0.565831043273924 2.000000000000000 + 4.397057960192850 0.578883662495929 2.000000000000000 + 4.496202446330230 0.591936281717934 2.000000000000000 + 4.595346932467612 0.604988900939939 2.000000000000000 + 4.694491418604993 0.618041520161944 2.000000000000000 + 4.793635904742374 0.631094139383950 2.000000000000000 + 4.892780390879754 0.644146758605955 2.000000000000000 + 4.991924877017135 0.657199377827960 2.000000000000000 + 5.091069363154517 0.670251997049965 2.000000000000000 + 0.130399986549024 0.034940571088840 2.000000000000000 + 0.226992569177931 0.060822475599092 2.000000000000000 + 0.323585151806838 0.086704380109344 2.000000000000000 + 0.420177734435745 0.112586284619597 2.000000000000000 + 0.516770317064652 0.138468189129849 2.000000000000000 + 0.613362899693559 0.164350093640101 2.000000000000000 + 0.709955482322465 0.190231998150353 2.000000000000000 + 0.806548064951372 0.216113902660605 2.000000000000000 + 0.903140647580279 0.241995807170857 2.000000000000000 + 0.999733230209186 0.267877711681109 2.000000000000000 + 1.096325812838093 0.293759616191361 2.000000000000000 + 1.192918395467000 0.319641520701613 2.000000000000000 + 1.289510978095906 0.345523425211865 2.000000000000000 + 1.386103560724813 0.371405329722117 2.000000000000000 + 1.482696143353720 0.397287234232369 2.000000000000000 + 1.579288725982627 0.423169138742621 2.000000000000000 + 1.675881308611534 0.449051043252873 2.000000000000000 + 1.772473891240440 0.474932947763126 2.000000000000000 + 1.869066473869347 0.500814852273378 2.000000000000000 + 1.965659056498254 0.526696756783630 2.000000000000000 + 2.062251639127161 0.552578661293882 2.000000000000000 + 2.158844221756068 0.578460565804134 2.000000000000000 + 2.255436804384975 0.604342470314386 2.000000000000000 + 2.352029387013882 0.630224374824638 2.000000000000000 + 2.448621969642788 0.656106279334890 2.000000000000000 + 2.545214552271695 0.681988183845142 2.000000000000000 + 2.641807134900602 0.707870088355394 2.000000000000000 + 2.738399717529509 0.733751992865646 2.000000000000000 + 2.834992300158416 0.759633897375898 2.000000000000000 + 2.931584882787322 0.785515801886150 2.000000000000000 + 3.028177465416229 0.811397706396403 2.000000000000000 + 3.124770048045136 0.837279610906655 2.000000000000000 + 3.221362630674043 0.863161515416907 2.000000000000000 + 3.317955213302950 0.889043419927159 2.000000000000000 + 3.414547795931857 0.914925324437411 2.000000000000000 + 3.511140378560763 0.940807228947663 2.000000000000000 + 3.607732961189670 0.966689133457915 2.000000000000000 + 3.704325543818577 0.992571037968167 2.000000000000000 + 3.800918126447484 1.018452942478419 2.000000000000000 + 3.897510709076391 1.044334846988671 2.000000000000000 + 3.994103291705299 1.070216751498923 2.000000000000000 + 4.090695874334204 1.096098656009175 2.000000000000000 + 4.187288456963111 1.121980560519428 2.000000000000000 + 4.283881039592019 1.147862465029680 2.000000000000000 + 4.380473622220926 1.173744369539932 2.000000000000000 + 4.477066204849833 1.199626274050184 2.000000000000000 + 4.573658787478739 1.225508178560436 2.000000000000000 + 4.670251370107646 1.251390083070688 2.000000000000000 + 4.766843952736553 1.277271987580940 2.000000000000000 + 4.863436535365460 1.303153892091192 2.000000000000000 + 4.960029117994367 1.329035796601444 2.000000000000000 + 0.135000000000000 0.000000000000000 2.100000000000000 + 0.235000000000000 0.000000000000000 2.100000000000000 + 0.335000000000000 0.000000000000000 2.100000000000000 + 0.435000000000000 0.000000000000000 2.100000000000000 + 0.535000000000000 0.000000000000000 2.100000000000000 + 0.635000000000000 0.000000000000000 2.100000000000000 + 0.735000000000000 0.000000000000000 2.100000000000000 + 0.835000000000000 0.000000000000000 2.100000000000000 + 0.935000000000000 0.000000000000000 2.100000000000000 + 1.035000000000000 0.000000000000000 2.100000000000000 + 1.135000000000000 0.000000000000000 2.100000000000000 + 1.235000000000000 0.000000000000000 2.100000000000000 + 1.335000000000000 0.000000000000000 2.100000000000000 + 1.435000000000000 0.000000000000000 2.100000000000000 + 1.535000000000000 0.000000000000000 2.100000000000000 + 1.635000000000000 0.000000000000000 2.100000000000000 + 1.735000000000000 0.000000000000000 2.100000000000000 + 1.835000000000000 0.000000000000000 2.100000000000000 + 1.935000000000000 0.000000000000000 2.100000000000000 + 2.035000000000000 0.000000000000000 2.100000000000000 + 2.135000000000000 0.000000000000000 2.100000000000000 + 2.235000000000000 0.000000000000000 2.100000000000000 + 2.335000000000000 0.000000000000000 2.100000000000000 + 2.435000000000000 0.000000000000000 2.100000000000000 + 2.535000000000000 0.000000000000000 2.100000000000000 + 2.635000000000000 0.000000000000000 2.100000000000000 + 2.735000000000000 0.000000000000000 2.100000000000000 + 2.835000000000000 0.000000000000000 2.100000000000000 + 2.935000000000000 0.000000000000000 2.100000000000000 + 3.035000000000000 0.000000000000000 2.100000000000000 + 3.135000000000000 0.000000000000000 2.100000000000000 + 3.235000000000000 0.000000000000000 2.100000000000000 + 3.335000000000000 0.000000000000000 2.100000000000000 + 3.435000000000000 0.000000000000000 2.100000000000000 + 3.535000000000000 0.000000000000000 2.100000000000000 + 3.635000000000000 0.000000000000000 2.100000000000000 + 3.735000000000000 0.000000000000000 2.100000000000000 + 3.835000000000000 0.000000000000000 2.100000000000000 + 3.935000000000000 0.000000000000000 2.100000000000000 + 4.035000000000000 0.000000000000000 2.100000000000000 + 4.135000000000001 0.000000000000000 2.100000000000000 + 4.235000000000000 0.000000000000000 2.100000000000000 + 4.335000000000000 0.000000000000000 2.100000000000000 + 4.435000000000000 0.000000000000000 2.100000000000000 + 4.535000000000000 0.000000000000000 2.100000000000000 + 4.635000000000001 0.000000000000000 2.100000000000000 + 4.735000000000000 0.000000000000000 2.100000000000000 + 4.835000000000001 0.000000000000000 2.100000000000000 + 4.935000000000000 0.000000000000000 2.100000000000000 + 5.035000000000000 0.000000000000000 2.100000000000000 + 5.135000000000001 0.000000000000000 2.100000000000000 + 0.133845056285464 0.017621035949707 2.100000000000000 + 0.232989542422845 0.030673655171712 2.100000000000000 + 0.332134028560227 0.043726274393717 2.100000000000000 + 0.431278514697608 0.056778893615722 2.100000000000000 + 0.530423000834989 0.069831512837728 2.100000000000000 + 0.629567486972370 0.082884132059733 2.100000000000000 + 0.728711973109751 0.095936751281738 2.100000000000000 + 0.827856459247132 0.108989370503743 2.100000000000000 + 0.927000945384513 0.122041989725748 2.100000000000000 + 1.026145431521894 0.135094608947753 2.100000000000000 + 1.125289917659275 0.148147228169759 2.100000000000000 + 1.224434403796656 0.161199847391764 2.100000000000000 + 1.323578889934037 0.174252466613769 2.100000000000000 + 1.422723376071418 0.187305085835774 2.100000000000000 + 1.521867862208799 0.200357705057779 2.100000000000000 + 1.621012348346180 0.213410324279784 2.100000000000000 + 1.720156834483561 0.226462943501789 2.100000000000000 + 1.819301320620942 0.239515562723795 2.100000000000000 + 1.918445806758323 0.252568181945800 2.100000000000000 + 2.017590292895704 0.265620801167805 2.100000000000000 + 2.116734779033085 0.278673420389810 2.100000000000000 + 2.215879265170466 0.291726039611815 2.100000000000000 + 2.315023751307847 0.304778658833820 2.100000000000000 + 2.414168237445228 0.317831278055826 2.100000000000000 + 2.513312723582609 0.330883897277831 2.100000000000000 + 2.612457209719990 0.343936516499836 2.100000000000000 + 2.711601695857371 0.356989135721841 2.100000000000000 + 2.810746181994753 0.370041754943846 2.100000000000000 + 2.909890668132133 0.383094374165851 2.100000000000000 + 3.009035154269514 0.396146993387857 2.100000000000000 + 3.108179640406895 0.409199612609862 2.100000000000000 + 3.207324126544277 0.422252231831867 2.100000000000000 + 3.306468612681658 0.435304851053872 2.100000000000000 + 3.405613098819039 0.448357470275877 2.100000000000000 + 3.504757584956419 0.461410089497882 2.100000000000000 + 3.603902071093801 0.474462708719887 2.100000000000000 + 3.703046557231182 0.487515327941893 2.100000000000000 + 3.802191043368563 0.500567947163898 2.100000000000000 + 3.901335529505944 0.513620566385903 2.100000000000000 + 4.000480015643325 0.526673185607908 2.100000000000000 + 4.099624501780707 0.539725804829913 2.100000000000000 + 4.198768987918087 0.552778424051918 2.100000000000000 + 4.297913474055468 0.565831043273924 2.100000000000000 + 4.397057960192850 0.578883662495929 2.100000000000000 + 4.496202446330230 0.591936281717934 2.100000000000000 + 4.595346932467612 0.604988900939939 2.100000000000000 + 4.694491418604993 0.618041520161944 2.100000000000000 + 4.793635904742374 0.631094139383950 2.100000000000000 + 4.892780390879754 0.644146758605955 2.100000000000000 + 4.991924877017135 0.657199377827960 2.100000000000000 + 5.091069363154517 0.670251997049965 2.100000000000000 + 0.130399986549024 0.034940571088840 2.100000000000000 + 0.226992569177931 0.060822475599092 2.100000000000000 + 0.323585151806838 0.086704380109344 2.100000000000000 + 0.420177734435745 0.112586284619597 2.100000000000000 + 0.516770317064652 0.138468189129849 2.100000000000000 + 0.613362899693559 0.164350093640101 2.100000000000000 + 0.709955482322465 0.190231998150353 2.100000000000000 + 0.806548064951372 0.216113902660605 2.100000000000000 + 0.903140647580279 0.241995807170857 2.100000000000000 + 0.999733230209186 0.267877711681109 2.100000000000000 + 1.096325812838093 0.293759616191361 2.100000000000000 + 1.192918395467000 0.319641520701613 2.100000000000000 + 1.289510978095906 0.345523425211865 2.100000000000000 + 1.386103560724813 0.371405329722117 2.100000000000000 + 1.482696143353720 0.397287234232369 2.100000000000000 + 1.579288725982627 0.423169138742621 2.100000000000000 + 1.675881308611534 0.449051043252873 2.100000000000000 + 1.772473891240440 0.474932947763126 2.100000000000000 + 1.869066473869347 0.500814852273378 2.100000000000000 + 1.965659056498254 0.526696756783630 2.100000000000000 + 2.062251639127161 0.552578661293882 2.100000000000000 + 2.158844221756068 0.578460565804134 2.100000000000000 + 2.255436804384975 0.604342470314386 2.100000000000000 + 2.352029387013882 0.630224374824638 2.100000000000000 + 2.448621969642788 0.656106279334890 2.100000000000000 + 2.545214552271695 0.681988183845142 2.100000000000000 + 2.641807134900602 0.707870088355394 2.100000000000000 + 2.738399717529509 0.733751992865646 2.100000000000000 + 2.834992300158416 0.759633897375898 2.100000000000000 + 2.931584882787322 0.785515801886150 2.100000000000000 + 3.028177465416229 0.811397706396403 2.100000000000000 + 3.124770048045136 0.837279610906655 2.100000000000000 + 3.221362630674043 0.863161515416907 2.100000000000000 + 3.317955213302950 0.889043419927159 2.100000000000000 + 3.414547795931857 0.914925324437411 2.100000000000000 + 3.511140378560763 0.940807228947663 2.100000000000000 + 3.607732961189670 0.966689133457915 2.100000000000000 + 3.704325543818577 0.992571037968167 2.100000000000000 + 3.800918126447484 1.018452942478419 2.100000000000000 + 3.897510709076391 1.044334846988671 2.100000000000000 + 3.994103291705299 1.070216751498923 2.100000000000000 + 4.090695874334204 1.096098656009175 2.100000000000000 + 4.187288456963111 1.121980560519428 2.100000000000000 + 4.283881039592019 1.147862465029680 2.100000000000000 + 4.380473622220926 1.173744369539932 2.100000000000000 + 4.477066204849833 1.199626274050184 2.100000000000000 + 4.573658787478739 1.225508178560436 2.100000000000000 + 4.670251370107646 1.251390083070688 2.100000000000000 + 4.766843952736553 1.277271987580940 2.100000000000000 + 4.863436535365460 1.303153892091192 2.100000000000000 + 4.960029117994367 1.329035796601444 2.100000000000000 + 0.135000000000000 0.000000000000000 2.200000000000000 + 0.235000000000000 0.000000000000000 2.200000000000000 + 0.335000000000000 0.000000000000000 2.200000000000000 + 0.435000000000000 0.000000000000000 2.200000000000000 + 0.535000000000000 0.000000000000000 2.200000000000000 + 0.635000000000000 0.000000000000000 2.200000000000000 + 0.735000000000000 0.000000000000000 2.200000000000000 + 0.835000000000000 0.000000000000000 2.200000000000000 + 0.935000000000000 0.000000000000000 2.200000000000000 + 1.035000000000000 0.000000000000000 2.200000000000000 + 1.135000000000000 0.000000000000000 2.200000000000000 + 1.235000000000000 0.000000000000000 2.200000000000000 + 1.335000000000000 0.000000000000000 2.200000000000000 + 1.435000000000000 0.000000000000000 2.200000000000000 + 1.535000000000000 0.000000000000000 2.200000000000000 + 1.635000000000000 0.000000000000000 2.200000000000000 + 1.735000000000000 0.000000000000000 2.200000000000000 + 1.835000000000000 0.000000000000000 2.200000000000000 + 1.935000000000000 0.000000000000000 2.200000000000000 + 2.035000000000000 0.000000000000000 2.200000000000000 + 2.135000000000000 0.000000000000000 2.200000000000000 + 2.235000000000000 0.000000000000000 2.200000000000000 + 2.335000000000000 0.000000000000000 2.200000000000000 + 2.435000000000000 0.000000000000000 2.200000000000000 + 2.535000000000000 0.000000000000000 2.200000000000000 + 2.635000000000000 0.000000000000000 2.200000000000000 + 2.735000000000000 0.000000000000000 2.200000000000000 + 2.835000000000000 0.000000000000000 2.200000000000000 + 2.935000000000000 0.000000000000000 2.200000000000000 + 3.035000000000000 0.000000000000000 2.200000000000000 + 3.135000000000000 0.000000000000000 2.200000000000000 + 3.235000000000000 0.000000000000000 2.200000000000000 + 3.335000000000000 0.000000000000000 2.200000000000000 + 3.435000000000000 0.000000000000000 2.200000000000000 + 3.535000000000000 0.000000000000000 2.200000000000000 + 3.635000000000000 0.000000000000000 2.200000000000000 + 3.735000000000000 0.000000000000000 2.200000000000000 + 3.835000000000000 0.000000000000000 2.200000000000000 + 3.935000000000000 0.000000000000000 2.200000000000000 + 4.035000000000000 0.000000000000000 2.200000000000000 + 4.135000000000001 0.000000000000000 2.200000000000000 + 4.235000000000000 0.000000000000000 2.200000000000000 + 4.335000000000000 0.000000000000000 2.200000000000000 + 4.435000000000000 0.000000000000000 2.200000000000000 + 4.535000000000000 0.000000000000000 2.200000000000000 + 4.635000000000001 0.000000000000000 2.200000000000000 + 4.735000000000000 0.000000000000000 2.200000000000000 + 4.835000000000001 0.000000000000000 2.200000000000000 + 4.935000000000000 0.000000000000000 2.200000000000000 + 5.035000000000000 0.000000000000000 2.200000000000000 + 5.135000000000001 0.000000000000000 2.200000000000000 + 0.133845056285464 0.017621035949707 2.200000000000000 + 0.232989542422845 0.030673655171712 2.200000000000000 + 0.332134028560227 0.043726274393717 2.200000000000000 + 0.431278514697608 0.056778893615722 2.200000000000000 + 0.530423000834989 0.069831512837728 2.200000000000000 + 0.629567486972370 0.082884132059733 2.200000000000000 + 0.728711973109751 0.095936751281738 2.200000000000000 + 0.827856459247132 0.108989370503743 2.200000000000000 + 0.927000945384513 0.122041989725748 2.200000000000000 + 1.026145431521894 0.135094608947753 2.200000000000000 + 1.125289917659275 0.148147228169759 2.200000000000000 + 1.224434403796656 0.161199847391764 2.200000000000000 + 1.323578889934037 0.174252466613769 2.200000000000000 + 1.422723376071418 0.187305085835774 2.200000000000000 + 1.521867862208799 0.200357705057779 2.200000000000000 + 1.621012348346180 0.213410324279784 2.200000000000000 + 1.720156834483561 0.226462943501789 2.200000000000000 + 1.819301320620942 0.239515562723795 2.200000000000000 + 1.918445806758323 0.252568181945800 2.200000000000000 + 2.017590292895704 0.265620801167805 2.200000000000000 + 2.116734779033085 0.278673420389810 2.200000000000000 + 2.215879265170466 0.291726039611815 2.200000000000000 + 2.315023751307847 0.304778658833820 2.200000000000000 + 2.414168237445228 0.317831278055826 2.200000000000000 + 2.513312723582609 0.330883897277831 2.200000000000000 + 2.612457209719990 0.343936516499836 2.200000000000000 + 2.711601695857371 0.356989135721841 2.200000000000000 + 2.810746181994753 0.370041754943846 2.200000000000000 + 2.909890668132133 0.383094374165851 2.200000000000000 + 3.009035154269514 0.396146993387857 2.200000000000000 + 3.108179640406895 0.409199612609862 2.200000000000000 + 3.207324126544277 0.422252231831867 2.200000000000000 + 3.306468612681658 0.435304851053872 2.200000000000000 + 3.405613098819039 0.448357470275877 2.200000000000000 + 3.504757584956419 0.461410089497882 2.200000000000000 + 3.603902071093801 0.474462708719887 2.200000000000000 + 3.703046557231182 0.487515327941893 2.200000000000000 + 3.802191043368563 0.500567947163898 2.200000000000000 + 3.901335529505944 0.513620566385903 2.200000000000000 + 4.000480015643325 0.526673185607908 2.200000000000000 + 4.099624501780707 0.539725804829913 2.200000000000000 + 4.198768987918087 0.552778424051918 2.200000000000000 + 4.297913474055468 0.565831043273924 2.200000000000000 + 4.397057960192850 0.578883662495929 2.200000000000000 + 4.496202446330230 0.591936281717934 2.200000000000000 + 4.595346932467612 0.604988900939939 2.200000000000000 + 4.694491418604993 0.618041520161944 2.200000000000000 + 4.793635904742374 0.631094139383950 2.200000000000000 + 4.892780390879754 0.644146758605955 2.200000000000000 + 4.991924877017135 0.657199377827960 2.200000000000000 + 5.091069363154517 0.670251997049965 2.200000000000000 + 0.130399986549024 0.034940571088840 2.200000000000000 + 0.226992569177931 0.060822475599092 2.200000000000000 + 0.323585151806838 0.086704380109344 2.200000000000000 + 0.420177734435745 0.112586284619597 2.200000000000000 + 0.516770317064652 0.138468189129849 2.200000000000000 + 0.613362899693559 0.164350093640101 2.200000000000000 + 0.709955482322465 0.190231998150353 2.200000000000000 + 0.806548064951372 0.216113902660605 2.200000000000000 + 0.903140647580279 0.241995807170857 2.200000000000000 + 0.999733230209186 0.267877711681109 2.200000000000000 + 1.096325812838093 0.293759616191361 2.200000000000000 + 1.192918395467000 0.319641520701613 2.200000000000000 + 1.289510978095906 0.345523425211865 2.200000000000000 + 1.386103560724813 0.371405329722117 2.200000000000000 + 1.482696143353720 0.397287234232369 2.200000000000000 + 1.579288725982627 0.423169138742621 2.200000000000000 + 1.675881308611534 0.449051043252873 2.200000000000000 + 1.772473891240440 0.474932947763126 2.200000000000000 + 1.869066473869347 0.500814852273378 2.200000000000000 + 1.965659056498254 0.526696756783630 2.200000000000000 + 2.062251639127161 0.552578661293882 2.200000000000000 + 2.158844221756068 0.578460565804134 2.200000000000000 + 2.255436804384975 0.604342470314386 2.200000000000000 + 2.352029387013882 0.630224374824638 2.200000000000000 + 2.448621969642788 0.656106279334890 2.200000000000000 + 2.545214552271695 0.681988183845142 2.200000000000000 + 2.641807134900602 0.707870088355394 2.200000000000000 + 2.738399717529509 0.733751992865646 2.200000000000000 + 2.834992300158416 0.759633897375898 2.200000000000000 + 2.931584882787322 0.785515801886150 2.200000000000000 + 3.028177465416229 0.811397706396403 2.200000000000000 + 3.124770048045136 0.837279610906655 2.200000000000000 + 3.221362630674043 0.863161515416907 2.200000000000000 + 3.317955213302950 0.889043419927159 2.200000000000000 + 3.414547795931857 0.914925324437411 2.200000000000000 + 3.511140378560763 0.940807228947663 2.200000000000000 + 3.607732961189670 0.966689133457915 2.200000000000000 + 3.704325543818577 0.992571037968167 2.200000000000000 + 3.800918126447484 1.018452942478419 2.200000000000000 + 3.897510709076391 1.044334846988671 2.200000000000000 + 3.994103291705299 1.070216751498923 2.200000000000000 + 4.090695874334204 1.096098656009175 2.200000000000000 + 4.187288456963111 1.121980560519428 2.200000000000000 + 4.283881039592019 1.147862465029680 2.200000000000000 + 4.380473622220926 1.173744369539932 2.200000000000000 + 4.477066204849833 1.199626274050184 2.200000000000000 + 4.573658787478739 1.225508178560436 2.200000000000000 + 4.670251370107646 1.251390083070688 2.200000000000000 + 4.766843952736553 1.277271987580940 2.200000000000000 + 4.863436535365460 1.303153892091192 2.200000000000000 + 4.960029117994367 1.329035796601444 2.200000000000000 + 0.135000000000000 0.000000000000000 2.300000000000000 + 0.235000000000000 0.000000000000000 2.300000000000000 + 0.335000000000000 0.000000000000000 2.300000000000000 + 0.435000000000000 0.000000000000000 2.300000000000000 + 0.535000000000000 0.000000000000000 2.300000000000000 + 0.635000000000000 0.000000000000000 2.300000000000000 + 0.735000000000000 0.000000000000000 2.300000000000000 + 0.835000000000000 0.000000000000000 2.300000000000000 + 0.935000000000000 0.000000000000000 2.300000000000000 + 1.035000000000000 0.000000000000000 2.300000000000000 + 1.135000000000000 0.000000000000000 2.300000000000000 + 1.235000000000000 0.000000000000000 2.300000000000000 + 1.335000000000000 0.000000000000000 2.300000000000000 + 1.435000000000000 0.000000000000000 2.300000000000000 + 1.535000000000000 0.000000000000000 2.300000000000000 + 1.635000000000000 0.000000000000000 2.300000000000000 + 1.735000000000000 0.000000000000000 2.300000000000000 + 1.835000000000000 0.000000000000000 2.300000000000000 + 1.935000000000000 0.000000000000000 2.300000000000000 + 2.035000000000000 0.000000000000000 2.300000000000000 + 2.135000000000000 0.000000000000000 2.300000000000000 + 2.235000000000000 0.000000000000000 2.300000000000000 + 2.335000000000000 0.000000000000000 2.300000000000000 + 2.435000000000000 0.000000000000000 2.300000000000000 + 2.535000000000000 0.000000000000000 2.300000000000000 + 2.635000000000000 0.000000000000000 2.300000000000000 + 2.735000000000000 0.000000000000000 2.300000000000000 + 2.835000000000000 0.000000000000000 2.300000000000000 + 2.935000000000000 0.000000000000000 2.300000000000000 + 3.035000000000000 0.000000000000000 2.300000000000000 + 3.135000000000000 0.000000000000000 2.300000000000000 + 3.235000000000000 0.000000000000000 2.300000000000000 + 3.335000000000000 0.000000000000000 2.300000000000000 + 3.435000000000000 0.000000000000000 2.300000000000000 + 3.535000000000000 0.000000000000000 2.300000000000000 + 3.635000000000000 0.000000000000000 2.300000000000000 + 3.735000000000000 0.000000000000000 2.300000000000000 + 3.835000000000000 0.000000000000000 2.300000000000000 + 3.935000000000000 0.000000000000000 2.300000000000000 + 4.035000000000000 0.000000000000000 2.300000000000000 + 4.135000000000001 0.000000000000000 2.300000000000000 + 4.235000000000000 0.000000000000000 2.300000000000000 + 4.335000000000000 0.000000000000000 2.300000000000000 + 4.435000000000000 0.000000000000000 2.300000000000000 + 4.535000000000000 0.000000000000000 2.300000000000000 + 4.635000000000001 0.000000000000000 2.300000000000000 + 4.735000000000000 0.000000000000000 2.300000000000000 + 4.835000000000001 0.000000000000000 2.300000000000000 + 4.935000000000000 0.000000000000000 2.300000000000000 + 5.035000000000000 0.000000000000000 2.300000000000000 + 5.135000000000001 0.000000000000000 2.300000000000000 + 0.133845056285464 0.017621035949707 2.300000000000000 + 0.232989542422845 0.030673655171712 2.300000000000000 + 0.332134028560227 0.043726274393717 2.300000000000000 + 0.431278514697608 0.056778893615722 2.300000000000000 + 0.530423000834989 0.069831512837728 2.300000000000000 + 0.629567486972370 0.082884132059733 2.300000000000000 + 0.728711973109751 0.095936751281738 2.300000000000000 + 0.827856459247132 0.108989370503743 2.300000000000000 + 0.927000945384513 0.122041989725748 2.300000000000000 + 1.026145431521894 0.135094608947753 2.300000000000000 + 1.125289917659275 0.148147228169759 2.300000000000000 + 1.224434403796656 0.161199847391764 2.300000000000000 + 1.323578889934037 0.174252466613769 2.300000000000000 + 1.422723376071418 0.187305085835774 2.300000000000000 + 1.521867862208799 0.200357705057779 2.300000000000000 + 1.621012348346180 0.213410324279784 2.300000000000000 + 1.720156834483561 0.226462943501789 2.300000000000000 + 1.819301320620942 0.239515562723795 2.300000000000000 + 1.918445806758323 0.252568181945800 2.300000000000000 + 2.017590292895704 0.265620801167805 2.300000000000000 + 2.116734779033085 0.278673420389810 2.300000000000000 + 2.215879265170466 0.291726039611815 2.300000000000000 + 2.315023751307847 0.304778658833820 2.300000000000000 + 2.414168237445228 0.317831278055826 2.300000000000000 + 2.513312723582609 0.330883897277831 2.300000000000000 + 2.612457209719990 0.343936516499836 2.300000000000000 + 2.711601695857371 0.356989135721841 2.300000000000000 + 2.810746181994753 0.370041754943846 2.300000000000000 + 2.909890668132133 0.383094374165851 2.300000000000000 + 3.009035154269514 0.396146993387857 2.300000000000000 + 3.108179640406895 0.409199612609862 2.300000000000000 + 3.207324126544277 0.422252231831867 2.300000000000000 + 3.306468612681658 0.435304851053872 2.300000000000000 + 3.405613098819039 0.448357470275877 2.300000000000000 + 3.504757584956419 0.461410089497882 2.300000000000000 + 3.603902071093801 0.474462708719887 2.300000000000000 + 3.703046557231182 0.487515327941893 2.300000000000000 + 3.802191043368563 0.500567947163898 2.300000000000000 + 3.901335529505944 0.513620566385903 2.300000000000000 + 4.000480015643325 0.526673185607908 2.300000000000000 + 4.099624501780707 0.539725804829913 2.300000000000000 + 4.198768987918087 0.552778424051918 2.300000000000000 + 4.297913474055468 0.565831043273924 2.300000000000000 + 4.397057960192850 0.578883662495929 2.300000000000000 + 4.496202446330230 0.591936281717934 2.300000000000000 + 4.595346932467612 0.604988900939939 2.300000000000000 + 4.694491418604993 0.618041520161944 2.300000000000000 + 4.793635904742374 0.631094139383950 2.300000000000000 + 4.892780390879754 0.644146758605955 2.300000000000000 + 4.991924877017135 0.657199377827960 2.300000000000000 + 5.091069363154517 0.670251997049965 2.300000000000000 + 0.130399986549024 0.034940571088840 2.300000000000000 + 0.226992569177931 0.060822475599092 2.300000000000000 + 0.323585151806838 0.086704380109344 2.300000000000000 + 0.420177734435745 0.112586284619597 2.300000000000000 + 0.516770317064652 0.138468189129849 2.300000000000000 + 0.613362899693559 0.164350093640101 2.300000000000000 + 0.709955482322465 0.190231998150353 2.300000000000000 + 0.806548064951372 0.216113902660605 2.300000000000000 + 0.903140647580279 0.241995807170857 2.300000000000000 + 0.999733230209186 0.267877711681109 2.300000000000000 + 1.096325812838093 0.293759616191361 2.300000000000000 + 1.192918395467000 0.319641520701613 2.300000000000000 + 1.289510978095906 0.345523425211865 2.300000000000000 + 1.386103560724813 0.371405329722117 2.300000000000000 + 1.482696143353720 0.397287234232369 2.300000000000000 + 1.579288725982627 0.423169138742621 2.300000000000000 + 1.675881308611534 0.449051043252873 2.300000000000000 + 1.772473891240440 0.474932947763126 2.300000000000000 + 1.869066473869347 0.500814852273378 2.300000000000000 + 1.965659056498254 0.526696756783630 2.300000000000000 + 2.062251639127161 0.552578661293882 2.300000000000000 + 2.158844221756068 0.578460565804134 2.300000000000000 + 2.255436804384975 0.604342470314386 2.300000000000000 + 2.352029387013882 0.630224374824638 2.300000000000000 + 2.448621969642788 0.656106279334890 2.300000000000000 + 2.545214552271695 0.681988183845142 2.300000000000000 + 2.641807134900602 0.707870088355394 2.300000000000000 + 2.738399717529509 0.733751992865646 2.300000000000000 + 2.834992300158416 0.759633897375898 2.300000000000000 + 2.931584882787322 0.785515801886150 2.300000000000000 + 3.028177465416229 0.811397706396403 2.300000000000000 + 3.124770048045136 0.837279610906655 2.300000000000000 + 3.221362630674043 0.863161515416907 2.300000000000000 + 3.317955213302950 0.889043419927159 2.300000000000000 + 3.414547795931857 0.914925324437411 2.300000000000000 + 3.511140378560763 0.940807228947663 2.300000000000000 + 3.607732961189670 0.966689133457915 2.300000000000000 + 3.704325543818577 0.992571037968167 2.300000000000000 + 3.800918126447484 1.018452942478419 2.300000000000000 + 3.897510709076391 1.044334846988671 2.300000000000000 + 3.994103291705299 1.070216751498923 2.300000000000000 + 4.090695874334204 1.096098656009175 2.300000000000000 + 4.187288456963111 1.121980560519428 2.300000000000000 + 4.283881039592019 1.147862465029680 2.300000000000000 + 4.380473622220926 1.173744369539932 2.300000000000000 + 4.477066204849833 1.199626274050184 2.300000000000000 + 4.573658787478739 1.225508178560436 2.300000000000000 + 4.670251370107646 1.251390083070688 2.300000000000000 + 4.766843952736553 1.277271987580940 2.300000000000000 + 4.863436535365460 1.303153892091192 2.300000000000000 + 4.960029117994367 1.329035796601444 2.300000000000000 + 0.135000000000000 0.000000000000000 2.400000000000000 + 0.235000000000000 0.000000000000000 2.400000000000000 + 0.335000000000000 0.000000000000000 2.400000000000000 + 0.435000000000000 0.000000000000000 2.400000000000000 + 0.535000000000000 0.000000000000000 2.400000000000000 + 0.635000000000000 0.000000000000000 2.400000000000000 + 0.735000000000000 0.000000000000000 2.400000000000000 + 0.835000000000000 0.000000000000000 2.400000000000000 + 0.935000000000000 0.000000000000000 2.400000000000000 + 1.035000000000000 0.000000000000000 2.400000000000000 + 1.135000000000000 0.000000000000000 2.400000000000000 + 1.235000000000000 0.000000000000000 2.400000000000000 + 1.335000000000000 0.000000000000000 2.400000000000000 + 1.435000000000000 0.000000000000000 2.400000000000000 + 1.535000000000000 0.000000000000000 2.400000000000000 + 1.635000000000000 0.000000000000000 2.400000000000000 + 1.735000000000000 0.000000000000000 2.400000000000000 + 1.835000000000000 0.000000000000000 2.400000000000000 + 1.935000000000000 0.000000000000000 2.400000000000000 + 2.035000000000000 0.000000000000000 2.400000000000000 + 2.135000000000000 0.000000000000000 2.400000000000000 + 2.235000000000000 0.000000000000000 2.400000000000000 + 2.335000000000000 0.000000000000000 2.400000000000000 + 2.435000000000000 0.000000000000000 2.400000000000000 + 2.535000000000000 0.000000000000000 2.400000000000000 + 2.635000000000000 0.000000000000000 2.400000000000000 + 2.735000000000000 0.000000000000000 2.400000000000000 + 2.835000000000000 0.000000000000000 2.400000000000000 + 2.935000000000000 0.000000000000000 2.400000000000000 + 3.035000000000000 0.000000000000000 2.400000000000000 + 3.135000000000000 0.000000000000000 2.400000000000000 + 3.235000000000000 0.000000000000000 2.400000000000000 + 3.335000000000000 0.000000000000000 2.400000000000000 + 3.435000000000000 0.000000000000000 2.400000000000000 + 3.535000000000000 0.000000000000000 2.400000000000000 + 3.635000000000000 0.000000000000000 2.400000000000000 + 3.735000000000000 0.000000000000000 2.400000000000000 + 3.835000000000000 0.000000000000000 2.400000000000000 + 3.935000000000000 0.000000000000000 2.400000000000000 + 4.035000000000000 0.000000000000000 2.400000000000000 + 4.135000000000001 0.000000000000000 2.400000000000000 + 4.235000000000000 0.000000000000000 2.400000000000000 + 4.335000000000000 0.000000000000000 2.400000000000000 + 4.435000000000000 0.000000000000000 2.400000000000000 + 4.535000000000000 0.000000000000000 2.400000000000000 + 4.635000000000001 0.000000000000000 2.400000000000000 + 4.735000000000000 0.000000000000000 2.400000000000000 + 4.835000000000001 0.000000000000000 2.400000000000000 + 4.935000000000000 0.000000000000000 2.400000000000000 + 5.035000000000000 0.000000000000000 2.400000000000000 + 5.135000000000001 0.000000000000000 2.400000000000000 + 0.133845056285464 0.017621035949707 2.400000000000000 + 0.232989542422845 0.030673655171712 2.400000000000000 + 0.332134028560227 0.043726274393717 2.400000000000000 + 0.431278514697608 0.056778893615722 2.400000000000000 + 0.530423000834989 0.069831512837728 2.400000000000000 + 0.629567486972370 0.082884132059733 2.400000000000000 + 0.728711973109751 0.095936751281738 2.400000000000000 + 0.827856459247132 0.108989370503743 2.400000000000000 + 0.927000945384513 0.122041989725748 2.400000000000000 + 1.026145431521894 0.135094608947753 2.400000000000000 + 1.125289917659275 0.148147228169759 2.400000000000000 + 1.224434403796656 0.161199847391764 2.400000000000000 + 1.323578889934037 0.174252466613769 2.400000000000000 + 1.422723376071418 0.187305085835774 2.400000000000000 + 1.521867862208799 0.200357705057779 2.400000000000000 + 1.621012348346180 0.213410324279784 2.400000000000000 + 1.720156834483561 0.226462943501789 2.400000000000000 + 1.819301320620942 0.239515562723795 2.400000000000000 + 1.918445806758323 0.252568181945800 2.400000000000000 + 2.017590292895704 0.265620801167805 2.400000000000000 + 2.116734779033085 0.278673420389810 2.400000000000000 + 2.215879265170466 0.291726039611815 2.400000000000000 + 2.315023751307847 0.304778658833820 2.400000000000000 + 2.414168237445228 0.317831278055826 2.400000000000000 + 2.513312723582609 0.330883897277831 2.400000000000000 + 2.612457209719990 0.343936516499836 2.400000000000000 + 2.711601695857371 0.356989135721841 2.400000000000000 + 2.810746181994753 0.370041754943846 2.400000000000000 + 2.909890668132133 0.383094374165851 2.400000000000000 + 3.009035154269514 0.396146993387857 2.400000000000000 + 3.108179640406895 0.409199612609862 2.400000000000000 + 3.207324126544277 0.422252231831867 2.400000000000000 + 3.306468612681658 0.435304851053872 2.400000000000000 + 3.405613098819039 0.448357470275877 2.400000000000000 + 3.504757584956419 0.461410089497882 2.400000000000000 + 3.603902071093801 0.474462708719887 2.400000000000000 + 3.703046557231182 0.487515327941893 2.400000000000000 + 3.802191043368563 0.500567947163898 2.400000000000000 + 3.901335529505944 0.513620566385903 2.400000000000000 + 4.000480015643325 0.526673185607908 2.400000000000000 + 4.099624501780707 0.539725804829913 2.400000000000000 + 4.198768987918087 0.552778424051918 2.400000000000000 + 4.297913474055468 0.565831043273924 2.400000000000000 + 4.397057960192850 0.578883662495929 2.400000000000000 + 4.496202446330230 0.591936281717934 2.400000000000000 + 4.595346932467612 0.604988900939939 2.400000000000000 + 4.694491418604993 0.618041520161944 2.400000000000000 + 4.793635904742374 0.631094139383950 2.400000000000000 + 4.892780390879754 0.644146758605955 2.400000000000000 + 4.991924877017135 0.657199377827960 2.400000000000000 + 5.091069363154517 0.670251997049965 2.400000000000000 + 0.130399986549024 0.034940571088840 2.400000000000000 + 0.226992569177931 0.060822475599092 2.400000000000000 + 0.323585151806838 0.086704380109344 2.400000000000000 + 0.420177734435745 0.112586284619597 2.400000000000000 + 0.516770317064652 0.138468189129849 2.400000000000000 + 0.613362899693559 0.164350093640101 2.400000000000000 + 0.709955482322465 0.190231998150353 2.400000000000000 + 0.806548064951372 0.216113902660605 2.400000000000000 + 0.903140647580279 0.241995807170857 2.400000000000000 + 0.999733230209186 0.267877711681109 2.400000000000000 + 1.096325812838093 0.293759616191361 2.400000000000000 + 1.192918395467000 0.319641520701613 2.400000000000000 + 1.289510978095906 0.345523425211865 2.400000000000000 + 1.386103560724813 0.371405329722117 2.400000000000000 + 1.482696143353720 0.397287234232369 2.400000000000000 + 1.579288725982627 0.423169138742621 2.400000000000000 + 1.675881308611534 0.449051043252873 2.400000000000000 + 1.772473891240440 0.474932947763126 2.400000000000000 + 1.869066473869347 0.500814852273378 2.400000000000000 + 1.965659056498254 0.526696756783630 2.400000000000000 + 2.062251639127161 0.552578661293882 2.400000000000000 + 2.158844221756068 0.578460565804134 2.400000000000000 + 2.255436804384975 0.604342470314386 2.400000000000000 + 2.352029387013882 0.630224374824638 2.400000000000000 + 2.448621969642788 0.656106279334890 2.400000000000000 + 2.545214552271695 0.681988183845142 2.400000000000000 + 2.641807134900602 0.707870088355394 2.400000000000000 + 2.738399717529509 0.733751992865646 2.400000000000000 + 2.834992300158416 0.759633897375898 2.400000000000000 + 2.931584882787322 0.785515801886150 2.400000000000000 + 3.028177465416229 0.811397706396403 2.400000000000000 + 3.124770048045136 0.837279610906655 2.400000000000000 + 3.221362630674043 0.863161515416907 2.400000000000000 + 3.317955213302950 0.889043419927159 2.400000000000000 + 3.414547795931857 0.914925324437411 2.400000000000000 + 3.511140378560763 0.940807228947663 2.400000000000000 + 3.607732961189670 0.966689133457915 2.400000000000000 + 3.704325543818577 0.992571037968167 2.400000000000000 + 3.800918126447484 1.018452942478419 2.400000000000000 + 3.897510709076391 1.044334846988671 2.400000000000000 + 3.994103291705299 1.070216751498923 2.400000000000000 + 4.090695874334204 1.096098656009175 2.400000000000000 + 4.187288456963111 1.121980560519428 2.400000000000000 + 4.283881039592019 1.147862465029680 2.400000000000000 + 4.380473622220926 1.173744369539932 2.400000000000000 + 4.477066204849833 1.199626274050184 2.400000000000000 + 4.573658787478739 1.225508178560436 2.400000000000000 + 4.670251370107646 1.251390083070688 2.400000000000000 + 4.766843952736553 1.277271987580940 2.400000000000000 + 4.863436535365460 1.303153892091192 2.400000000000000 + 4.960029117994367 1.329035796601444 2.400000000000000 + 0.135000000000000 0.000000000000000 2.500000000000000 + 0.235000000000000 0.000000000000000 2.500000000000000 + 0.335000000000000 0.000000000000000 2.500000000000000 + 0.435000000000000 0.000000000000000 2.500000000000000 + 0.535000000000000 0.000000000000000 2.500000000000000 + 0.635000000000000 0.000000000000000 2.500000000000000 + 0.735000000000000 0.000000000000000 2.500000000000000 + 0.835000000000000 0.000000000000000 2.500000000000000 + 0.935000000000000 0.000000000000000 2.500000000000000 + 1.035000000000000 0.000000000000000 2.500000000000000 + 1.135000000000000 0.000000000000000 2.500000000000000 + 1.235000000000000 0.000000000000000 2.500000000000000 + 1.335000000000000 0.000000000000000 2.500000000000000 + 1.435000000000000 0.000000000000000 2.500000000000000 + 1.535000000000000 0.000000000000000 2.500000000000000 + 1.635000000000000 0.000000000000000 2.500000000000000 + 1.735000000000000 0.000000000000000 2.500000000000000 + 1.835000000000000 0.000000000000000 2.500000000000000 + 1.935000000000000 0.000000000000000 2.500000000000000 + 2.035000000000000 0.000000000000000 2.500000000000000 + 2.135000000000000 0.000000000000000 2.500000000000000 + 2.235000000000000 0.000000000000000 2.500000000000000 + 2.335000000000000 0.000000000000000 2.500000000000000 + 2.435000000000000 0.000000000000000 2.500000000000000 + 2.535000000000000 0.000000000000000 2.500000000000000 + 2.635000000000000 0.000000000000000 2.500000000000000 + 2.735000000000000 0.000000000000000 2.500000000000000 + 2.835000000000000 0.000000000000000 2.500000000000000 + 2.935000000000000 0.000000000000000 2.500000000000000 + 3.035000000000000 0.000000000000000 2.500000000000000 + 3.135000000000000 0.000000000000000 2.500000000000000 + 3.235000000000000 0.000000000000000 2.500000000000000 + 3.335000000000000 0.000000000000000 2.500000000000000 + 3.435000000000000 0.000000000000000 2.500000000000000 + 3.535000000000000 0.000000000000000 2.500000000000000 + 3.635000000000000 0.000000000000000 2.500000000000000 + 3.735000000000000 0.000000000000000 2.500000000000000 + 3.835000000000000 0.000000000000000 2.500000000000000 + 3.935000000000000 0.000000000000000 2.500000000000000 + 4.035000000000000 0.000000000000000 2.500000000000000 + 4.135000000000001 0.000000000000000 2.500000000000000 + 4.235000000000000 0.000000000000000 2.500000000000000 + 4.335000000000000 0.000000000000000 2.500000000000000 + 4.435000000000000 0.000000000000000 2.500000000000000 + 4.535000000000000 0.000000000000000 2.500000000000000 + 4.635000000000001 0.000000000000000 2.500000000000000 + 4.735000000000000 0.000000000000000 2.500000000000000 + 4.835000000000001 0.000000000000000 2.500000000000000 + 4.935000000000000 0.000000000000000 2.500000000000000 + 5.035000000000000 0.000000000000000 2.500000000000000 + 5.135000000000001 0.000000000000000 2.500000000000000 + 0.133845056285464 0.017621035949707 2.500000000000000 + 0.232989542422845 0.030673655171712 2.500000000000000 + 0.332134028560227 0.043726274393717 2.500000000000000 + 0.431278514697608 0.056778893615722 2.500000000000000 + 0.530423000834989 0.069831512837728 2.500000000000000 + 0.629567486972370 0.082884132059733 2.500000000000000 + 0.728711973109751 0.095936751281738 2.500000000000000 + 0.827856459247132 0.108989370503743 2.500000000000000 + 0.927000945384513 0.122041989725748 2.500000000000000 + 1.026145431521894 0.135094608947753 2.500000000000000 + 1.125289917659275 0.148147228169759 2.500000000000000 + 1.224434403796656 0.161199847391764 2.500000000000000 + 1.323578889934037 0.174252466613769 2.500000000000000 + 1.422723376071418 0.187305085835774 2.500000000000000 + 1.521867862208799 0.200357705057779 2.500000000000000 + 1.621012348346180 0.213410324279784 2.500000000000000 + 1.720156834483561 0.226462943501789 2.500000000000000 + 1.819301320620942 0.239515562723795 2.500000000000000 + 1.918445806758323 0.252568181945800 2.500000000000000 + 2.017590292895704 0.265620801167805 2.500000000000000 + 2.116734779033085 0.278673420389810 2.500000000000000 + 2.215879265170466 0.291726039611815 2.500000000000000 + 2.315023751307847 0.304778658833820 2.500000000000000 + 2.414168237445228 0.317831278055826 2.500000000000000 + 2.513312723582609 0.330883897277831 2.500000000000000 + 2.612457209719990 0.343936516499836 2.500000000000000 + 2.711601695857371 0.356989135721841 2.500000000000000 + 2.810746181994753 0.370041754943846 2.500000000000000 + 2.909890668132133 0.383094374165851 2.500000000000000 + 3.009035154269514 0.396146993387857 2.500000000000000 + 3.108179640406895 0.409199612609862 2.500000000000000 + 3.207324126544277 0.422252231831867 2.500000000000000 + 3.306468612681658 0.435304851053872 2.500000000000000 + 3.405613098819039 0.448357470275877 2.500000000000000 + 3.504757584956419 0.461410089497882 2.500000000000000 + 3.603902071093801 0.474462708719887 2.500000000000000 + 3.703046557231182 0.487515327941893 2.500000000000000 + 3.802191043368563 0.500567947163898 2.500000000000000 + 3.901335529505944 0.513620566385903 2.500000000000000 + 4.000480015643325 0.526673185607908 2.500000000000000 + 4.099624501780707 0.539725804829913 2.500000000000000 + 4.198768987918087 0.552778424051918 2.500000000000000 + 4.297913474055468 0.565831043273924 2.500000000000000 + 4.397057960192850 0.578883662495929 2.500000000000000 + 4.496202446330230 0.591936281717934 2.500000000000000 + 4.595346932467612 0.604988900939939 2.500000000000000 + 4.694491418604993 0.618041520161944 2.500000000000000 + 4.793635904742374 0.631094139383950 2.500000000000000 + 4.892780390879754 0.644146758605955 2.500000000000000 + 4.991924877017135 0.657199377827960 2.500000000000000 + 5.091069363154517 0.670251997049965 2.500000000000000 + 0.130399986549024 0.034940571088840 2.500000000000000 + 0.226992569177931 0.060822475599092 2.500000000000000 + 0.323585151806838 0.086704380109344 2.500000000000000 + 0.420177734435745 0.112586284619597 2.500000000000000 + 0.516770317064652 0.138468189129849 2.500000000000000 + 0.613362899693559 0.164350093640101 2.500000000000000 + 0.709955482322465 0.190231998150353 2.500000000000000 + 0.806548064951372 0.216113902660605 2.500000000000000 + 0.903140647580279 0.241995807170857 2.500000000000000 + 0.999733230209186 0.267877711681109 2.500000000000000 + 1.096325812838093 0.293759616191361 2.500000000000000 + 1.192918395467000 0.319641520701613 2.500000000000000 + 1.289510978095906 0.345523425211865 2.500000000000000 + 1.386103560724813 0.371405329722117 2.500000000000000 + 1.482696143353720 0.397287234232369 2.500000000000000 + 1.579288725982627 0.423169138742621 2.500000000000000 + 1.675881308611534 0.449051043252873 2.500000000000000 + 1.772473891240440 0.474932947763126 2.500000000000000 + 1.869066473869347 0.500814852273378 2.500000000000000 + 1.965659056498254 0.526696756783630 2.500000000000000 + 2.062251639127161 0.552578661293882 2.500000000000000 + 2.158844221756068 0.578460565804134 2.500000000000000 + 2.255436804384975 0.604342470314386 2.500000000000000 + 2.352029387013882 0.630224374824638 2.500000000000000 + 2.448621969642788 0.656106279334890 2.500000000000000 + 2.545214552271695 0.681988183845142 2.500000000000000 + 2.641807134900602 0.707870088355394 2.500000000000000 + 2.738399717529509 0.733751992865646 2.500000000000000 + 2.834992300158416 0.759633897375898 2.500000000000000 + 2.931584882787322 0.785515801886150 2.500000000000000 + 3.028177465416229 0.811397706396403 2.500000000000000 + 3.124770048045136 0.837279610906655 2.500000000000000 + 3.221362630674043 0.863161515416907 2.500000000000000 + 3.317955213302950 0.889043419927159 2.500000000000000 + 3.414547795931857 0.914925324437411 2.500000000000000 + 3.511140378560763 0.940807228947663 2.500000000000000 + 3.607732961189670 0.966689133457915 2.500000000000000 + 3.704325543818577 0.992571037968167 2.500000000000000 + 3.800918126447484 1.018452942478419 2.500000000000000 + 3.897510709076391 1.044334846988671 2.500000000000000 + 3.994103291705299 1.070216751498923 2.500000000000000 + 4.090695874334204 1.096098656009175 2.500000000000000 + 4.187288456963111 1.121980560519428 2.500000000000000 + 4.283881039592019 1.147862465029680 2.500000000000000 + 4.380473622220926 1.173744369539932 2.500000000000000 + 4.477066204849833 1.199626274050184 2.500000000000000 + 4.573658787478739 1.225508178560436 2.500000000000000 + 4.670251370107646 1.251390083070688 2.500000000000000 + 4.766843952736553 1.277271987580940 2.500000000000000 + 4.863436535365460 1.303153892091192 2.500000000000000 + 4.960029117994367 1.329035796601444 2.500000000000000 + 0.135000000000000 0.000000000000000 2.600000000000000 + 0.235000000000000 0.000000000000000 2.600000000000000 + 0.335000000000000 0.000000000000000 2.600000000000000 + 0.435000000000000 0.000000000000000 2.600000000000000 + 0.535000000000000 0.000000000000000 2.600000000000000 + 0.635000000000000 0.000000000000000 2.600000000000000 + 0.735000000000000 0.000000000000000 2.600000000000000 + 0.835000000000000 0.000000000000000 2.600000000000000 + 0.935000000000000 0.000000000000000 2.600000000000000 + 1.035000000000000 0.000000000000000 2.600000000000000 + 1.135000000000000 0.000000000000000 2.600000000000000 + 1.235000000000000 0.000000000000000 2.600000000000000 + 1.335000000000000 0.000000000000000 2.600000000000000 + 1.435000000000000 0.000000000000000 2.600000000000000 + 1.535000000000000 0.000000000000000 2.600000000000000 + 1.635000000000000 0.000000000000000 2.600000000000000 + 1.735000000000000 0.000000000000000 2.600000000000000 + 1.835000000000000 0.000000000000000 2.600000000000000 + 1.935000000000000 0.000000000000000 2.600000000000000 + 2.035000000000000 0.000000000000000 2.600000000000000 + 2.135000000000000 0.000000000000000 2.600000000000000 + 2.235000000000000 0.000000000000000 2.600000000000000 + 2.335000000000000 0.000000000000000 2.600000000000000 + 2.435000000000000 0.000000000000000 2.600000000000000 + 2.535000000000000 0.000000000000000 2.600000000000000 + 2.635000000000000 0.000000000000000 2.600000000000000 + 2.735000000000000 0.000000000000000 2.600000000000000 + 2.835000000000000 0.000000000000000 2.600000000000000 + 2.935000000000000 0.000000000000000 2.600000000000000 + 3.035000000000000 0.000000000000000 2.600000000000000 + 3.135000000000000 0.000000000000000 2.600000000000000 + 3.235000000000000 0.000000000000000 2.600000000000000 + 3.335000000000000 0.000000000000000 2.600000000000000 + 3.435000000000000 0.000000000000000 2.600000000000000 + 3.535000000000000 0.000000000000000 2.600000000000000 + 3.635000000000000 0.000000000000000 2.600000000000000 + 3.735000000000000 0.000000000000000 2.600000000000000 + 3.835000000000000 0.000000000000000 2.600000000000000 + 3.935000000000000 0.000000000000000 2.600000000000000 + 4.035000000000000 0.000000000000000 2.600000000000000 + 4.135000000000001 0.000000000000000 2.600000000000000 + 4.235000000000000 0.000000000000000 2.600000000000000 + 4.335000000000000 0.000000000000000 2.600000000000000 + 4.435000000000000 0.000000000000000 2.600000000000000 + 4.535000000000000 0.000000000000000 2.600000000000000 + 4.635000000000001 0.000000000000000 2.600000000000000 + 4.735000000000000 0.000000000000000 2.600000000000000 + 4.835000000000001 0.000000000000000 2.600000000000000 + 4.935000000000000 0.000000000000000 2.600000000000000 + 5.035000000000000 0.000000000000000 2.600000000000000 + 5.135000000000001 0.000000000000000 2.600000000000000 + 0.133845056285464 0.017621035949707 2.600000000000000 + 0.232989542422845 0.030673655171712 2.600000000000000 + 0.332134028560227 0.043726274393717 2.600000000000000 + 0.431278514697608 0.056778893615722 2.600000000000000 + 0.530423000834989 0.069831512837728 2.600000000000000 + 0.629567486972370 0.082884132059733 2.600000000000000 + 0.728711973109751 0.095936751281738 2.600000000000000 + 0.827856459247132 0.108989370503743 2.600000000000000 + 0.927000945384513 0.122041989725748 2.600000000000000 + 1.026145431521894 0.135094608947753 2.600000000000000 + 1.125289917659275 0.148147228169759 2.600000000000000 + 1.224434403796656 0.161199847391764 2.600000000000000 + 1.323578889934037 0.174252466613769 2.600000000000000 + 1.422723376071418 0.187305085835774 2.600000000000000 + 1.521867862208799 0.200357705057779 2.600000000000000 + 1.621012348346180 0.213410324279784 2.600000000000000 + 1.720156834483561 0.226462943501789 2.600000000000000 + 1.819301320620942 0.239515562723795 2.600000000000000 + 1.918445806758323 0.252568181945800 2.600000000000000 + 2.017590292895704 0.265620801167805 2.600000000000000 + 2.116734779033085 0.278673420389810 2.600000000000000 + 2.215879265170466 0.291726039611815 2.600000000000000 + 2.315023751307847 0.304778658833820 2.600000000000000 + 2.414168237445228 0.317831278055826 2.600000000000000 + 2.513312723582609 0.330883897277831 2.600000000000000 + 2.612457209719990 0.343936516499836 2.600000000000000 + 2.711601695857371 0.356989135721841 2.600000000000000 + 2.810746181994753 0.370041754943846 2.600000000000000 + 2.909890668132133 0.383094374165851 2.600000000000000 + 3.009035154269514 0.396146993387857 2.600000000000000 + 3.108179640406895 0.409199612609862 2.600000000000000 + 3.207324126544277 0.422252231831867 2.600000000000000 + 3.306468612681658 0.435304851053872 2.600000000000000 + 3.405613098819039 0.448357470275877 2.600000000000000 + 3.504757584956419 0.461410089497882 2.600000000000000 + 3.603902071093801 0.474462708719887 2.600000000000000 + 3.703046557231182 0.487515327941893 2.600000000000000 + 3.802191043368563 0.500567947163898 2.600000000000000 + 3.901335529505944 0.513620566385903 2.600000000000000 + 4.000480015643325 0.526673185607908 2.600000000000000 + 4.099624501780707 0.539725804829913 2.600000000000000 + 4.198768987918087 0.552778424051918 2.600000000000000 + 4.297913474055468 0.565831043273924 2.600000000000000 + 4.397057960192850 0.578883662495929 2.600000000000000 + 4.496202446330230 0.591936281717934 2.600000000000000 + 4.595346932467612 0.604988900939939 2.600000000000000 + 4.694491418604993 0.618041520161944 2.600000000000000 + 4.793635904742374 0.631094139383950 2.600000000000000 + 4.892780390879754 0.644146758605955 2.600000000000000 + 4.991924877017135 0.657199377827960 2.600000000000000 + 5.091069363154517 0.670251997049965 2.600000000000000 + 0.130399986549024 0.034940571088840 2.600000000000000 + 0.226992569177931 0.060822475599092 2.600000000000000 + 0.323585151806838 0.086704380109344 2.600000000000000 + 0.420177734435745 0.112586284619597 2.600000000000000 + 0.516770317064652 0.138468189129849 2.600000000000000 + 0.613362899693559 0.164350093640101 2.600000000000000 + 0.709955482322465 0.190231998150353 2.600000000000000 + 0.806548064951372 0.216113902660605 2.600000000000000 + 0.903140647580279 0.241995807170857 2.600000000000000 + 0.999733230209186 0.267877711681109 2.600000000000000 + 1.096325812838093 0.293759616191361 2.600000000000000 + 1.192918395467000 0.319641520701613 2.600000000000000 + 1.289510978095906 0.345523425211865 2.600000000000000 + 1.386103560724813 0.371405329722117 2.600000000000000 + 1.482696143353720 0.397287234232369 2.600000000000000 + 1.579288725982627 0.423169138742621 2.600000000000000 + 1.675881308611534 0.449051043252873 2.600000000000000 + 1.772473891240440 0.474932947763126 2.600000000000000 + 1.869066473869347 0.500814852273378 2.600000000000000 + 1.965659056498254 0.526696756783630 2.600000000000000 + 2.062251639127161 0.552578661293882 2.600000000000000 + 2.158844221756068 0.578460565804134 2.600000000000000 + 2.255436804384975 0.604342470314386 2.600000000000000 + 2.352029387013882 0.630224374824638 2.600000000000000 + 2.448621969642788 0.656106279334890 2.600000000000000 + 2.545214552271695 0.681988183845142 2.600000000000000 + 2.641807134900602 0.707870088355394 2.600000000000000 + 2.738399717529509 0.733751992865646 2.600000000000000 + 2.834992300158416 0.759633897375898 2.600000000000000 + 2.931584882787322 0.785515801886150 2.600000000000000 + 3.028177465416229 0.811397706396403 2.600000000000000 + 3.124770048045136 0.837279610906655 2.600000000000000 + 3.221362630674043 0.863161515416907 2.600000000000000 + 3.317955213302950 0.889043419927159 2.600000000000000 + 3.414547795931857 0.914925324437411 2.600000000000000 + 3.511140378560763 0.940807228947663 2.600000000000000 + 3.607732961189670 0.966689133457915 2.600000000000000 + 3.704325543818577 0.992571037968167 2.600000000000000 + 3.800918126447484 1.018452942478419 2.600000000000000 + 3.897510709076391 1.044334846988671 2.600000000000000 + 3.994103291705299 1.070216751498923 2.600000000000000 + 4.090695874334204 1.096098656009175 2.600000000000000 + 4.187288456963111 1.121980560519428 2.600000000000000 + 4.283881039592019 1.147862465029680 2.600000000000000 + 4.380473622220926 1.173744369539932 2.600000000000000 + 4.477066204849833 1.199626274050184 2.600000000000000 + 4.573658787478739 1.225508178560436 2.600000000000000 + 4.670251370107646 1.251390083070688 2.600000000000000 + 4.766843952736553 1.277271987580940 2.600000000000000 + 4.863436535365460 1.303153892091192 2.600000000000000 + 4.960029117994367 1.329035796601444 2.600000000000000 + 0.135000000000000 0.000000000000000 2.700000000000000 + 0.235000000000000 0.000000000000000 2.700000000000000 + 0.335000000000000 0.000000000000000 2.700000000000000 + 0.435000000000000 0.000000000000000 2.700000000000000 + 0.535000000000000 0.000000000000000 2.700000000000000 + 0.635000000000000 0.000000000000000 2.700000000000000 + 0.735000000000000 0.000000000000000 2.700000000000000 + 0.835000000000000 0.000000000000000 2.700000000000000 + 0.935000000000000 0.000000000000000 2.700000000000000 + 1.035000000000000 0.000000000000000 2.700000000000000 + 1.135000000000000 0.000000000000000 2.700000000000000 + 1.235000000000000 0.000000000000000 2.700000000000000 + 1.335000000000000 0.000000000000000 2.700000000000000 + 1.435000000000000 0.000000000000000 2.700000000000000 + 1.535000000000000 0.000000000000000 2.700000000000000 + 1.635000000000000 0.000000000000000 2.700000000000000 + 1.735000000000000 0.000000000000000 2.700000000000000 + 1.835000000000000 0.000000000000000 2.700000000000000 + 1.935000000000000 0.000000000000000 2.700000000000000 + 2.035000000000000 0.000000000000000 2.700000000000000 + 2.135000000000000 0.000000000000000 2.700000000000000 + 2.235000000000000 0.000000000000000 2.700000000000000 + 2.335000000000000 0.000000000000000 2.700000000000000 + 2.435000000000000 0.000000000000000 2.700000000000000 + 2.535000000000000 0.000000000000000 2.700000000000000 + 2.635000000000000 0.000000000000000 2.700000000000000 + 2.735000000000000 0.000000000000000 2.700000000000000 + 2.835000000000000 0.000000000000000 2.700000000000000 + 2.935000000000000 0.000000000000000 2.700000000000000 + 3.035000000000000 0.000000000000000 2.700000000000000 + 3.135000000000000 0.000000000000000 2.700000000000000 + 3.235000000000000 0.000000000000000 2.700000000000000 + 3.335000000000000 0.000000000000000 2.700000000000000 + 3.435000000000000 0.000000000000000 2.700000000000000 + 3.535000000000000 0.000000000000000 2.700000000000000 + 3.635000000000000 0.000000000000000 2.700000000000000 + 3.735000000000000 0.000000000000000 2.700000000000000 + 3.835000000000000 0.000000000000000 2.700000000000000 + 3.935000000000000 0.000000000000000 2.700000000000000 + 4.035000000000000 0.000000000000000 2.700000000000000 + 4.135000000000001 0.000000000000000 2.700000000000000 + 4.235000000000000 0.000000000000000 2.700000000000000 + 4.335000000000000 0.000000000000000 2.700000000000000 + 4.435000000000000 0.000000000000000 2.700000000000000 + 4.535000000000000 0.000000000000000 2.700000000000000 + 4.635000000000001 0.000000000000000 2.700000000000000 + 4.735000000000000 0.000000000000000 2.700000000000000 + 4.835000000000001 0.000000000000000 2.700000000000000 + 4.935000000000000 0.000000000000000 2.700000000000000 + 5.035000000000000 0.000000000000000 2.700000000000000 + 5.135000000000001 0.000000000000000 2.700000000000000 + 0.133845056285464 0.017621035949707 2.700000000000000 + 0.232989542422845 0.030673655171712 2.700000000000000 + 0.332134028560227 0.043726274393717 2.700000000000000 + 0.431278514697608 0.056778893615722 2.700000000000000 + 0.530423000834989 0.069831512837728 2.700000000000000 + 0.629567486972370 0.082884132059733 2.700000000000000 + 0.728711973109751 0.095936751281738 2.700000000000000 + 0.827856459247132 0.108989370503743 2.700000000000000 + 0.927000945384513 0.122041989725748 2.700000000000000 + 1.026145431521894 0.135094608947753 2.700000000000000 + 1.125289917659275 0.148147228169759 2.700000000000000 + 1.224434403796656 0.161199847391764 2.700000000000000 + 1.323578889934037 0.174252466613769 2.700000000000000 + 1.422723376071418 0.187305085835774 2.700000000000000 + 1.521867862208799 0.200357705057779 2.700000000000000 + 1.621012348346180 0.213410324279784 2.700000000000000 + 1.720156834483561 0.226462943501789 2.700000000000000 + 1.819301320620942 0.239515562723795 2.700000000000000 + 1.918445806758323 0.252568181945800 2.700000000000000 + 2.017590292895704 0.265620801167805 2.700000000000000 + 2.116734779033085 0.278673420389810 2.700000000000000 + 2.215879265170466 0.291726039611815 2.700000000000000 + 2.315023751307847 0.304778658833820 2.700000000000000 + 2.414168237445228 0.317831278055826 2.700000000000000 + 2.513312723582609 0.330883897277831 2.700000000000000 + 2.612457209719990 0.343936516499836 2.700000000000000 + 2.711601695857371 0.356989135721841 2.700000000000000 + 2.810746181994753 0.370041754943846 2.700000000000000 + 2.909890668132133 0.383094374165851 2.700000000000000 + 3.009035154269514 0.396146993387857 2.700000000000000 + 3.108179640406895 0.409199612609862 2.700000000000000 + 3.207324126544277 0.422252231831867 2.700000000000000 + 3.306468612681658 0.435304851053872 2.700000000000000 + 3.405613098819039 0.448357470275877 2.700000000000000 + 3.504757584956419 0.461410089497882 2.700000000000000 + 3.603902071093801 0.474462708719887 2.700000000000000 + 3.703046557231182 0.487515327941893 2.700000000000000 + 3.802191043368563 0.500567947163898 2.700000000000000 + 3.901335529505944 0.513620566385903 2.700000000000000 + 4.000480015643325 0.526673185607908 2.700000000000000 + 4.099624501780707 0.539725804829913 2.700000000000000 + 4.198768987918087 0.552778424051918 2.700000000000000 + 4.297913474055468 0.565831043273924 2.700000000000000 + 4.397057960192850 0.578883662495929 2.700000000000000 + 4.496202446330230 0.591936281717934 2.700000000000000 + 4.595346932467612 0.604988900939939 2.700000000000000 + 4.694491418604993 0.618041520161944 2.700000000000000 + 4.793635904742374 0.631094139383950 2.700000000000000 + 4.892780390879754 0.644146758605955 2.700000000000000 + 4.991924877017135 0.657199377827960 2.700000000000000 + 5.091069363154517 0.670251997049965 2.700000000000000 + 0.130399986549024 0.034940571088840 2.700000000000000 + 0.226992569177931 0.060822475599092 2.700000000000000 + 0.323585151806838 0.086704380109344 2.700000000000000 + 0.420177734435745 0.112586284619597 2.700000000000000 + 0.516770317064652 0.138468189129849 2.700000000000000 + 0.613362899693559 0.164350093640101 2.700000000000000 + 0.709955482322465 0.190231998150353 2.700000000000000 + 0.806548064951372 0.216113902660605 2.700000000000000 + 0.903140647580279 0.241995807170857 2.700000000000000 + 0.999733230209186 0.267877711681109 2.700000000000000 + 1.096325812838093 0.293759616191361 2.700000000000000 + 1.192918395467000 0.319641520701613 2.700000000000000 + 1.289510978095906 0.345523425211865 2.700000000000000 + 1.386103560724813 0.371405329722117 2.700000000000000 + 1.482696143353720 0.397287234232369 2.700000000000000 + 1.579288725982627 0.423169138742621 2.700000000000000 + 1.675881308611534 0.449051043252873 2.700000000000000 + 1.772473891240440 0.474932947763126 2.700000000000000 + 1.869066473869347 0.500814852273378 2.700000000000000 + 1.965659056498254 0.526696756783630 2.700000000000000 + 2.062251639127161 0.552578661293882 2.700000000000000 + 2.158844221756068 0.578460565804134 2.700000000000000 + 2.255436804384975 0.604342470314386 2.700000000000000 + 2.352029387013882 0.630224374824638 2.700000000000000 + 2.448621969642788 0.656106279334890 2.700000000000000 + 2.545214552271695 0.681988183845142 2.700000000000000 + 2.641807134900602 0.707870088355394 2.700000000000000 + 2.738399717529509 0.733751992865646 2.700000000000000 + 2.834992300158416 0.759633897375898 2.700000000000000 + 2.931584882787322 0.785515801886150 2.700000000000000 + 3.028177465416229 0.811397706396403 2.700000000000000 + 3.124770048045136 0.837279610906655 2.700000000000000 + 3.221362630674043 0.863161515416907 2.700000000000000 + 3.317955213302950 0.889043419927159 2.700000000000000 + 3.414547795931857 0.914925324437411 2.700000000000000 + 3.511140378560763 0.940807228947663 2.700000000000000 + 3.607732961189670 0.966689133457915 2.700000000000000 + 3.704325543818577 0.992571037968167 2.700000000000000 + 3.800918126447484 1.018452942478419 2.700000000000000 + 3.897510709076391 1.044334846988671 2.700000000000000 + 3.994103291705299 1.070216751498923 2.700000000000000 + 4.090695874334204 1.096098656009175 2.700000000000000 + 4.187288456963111 1.121980560519428 2.700000000000000 + 4.283881039592019 1.147862465029680 2.700000000000000 + 4.380473622220926 1.173744369539932 2.700000000000000 + 4.477066204849833 1.199626274050184 2.700000000000000 + 4.573658787478739 1.225508178560436 2.700000000000000 + 4.670251370107646 1.251390083070688 2.700000000000000 + 4.766843952736553 1.277271987580940 2.700000000000000 + 4.863436535365460 1.303153892091192 2.700000000000000 + 4.960029117994367 1.329035796601444 2.700000000000000 + 0.135000000000000 0.000000000000000 2.800000000000000 + 0.235000000000000 0.000000000000000 2.800000000000000 + 0.335000000000000 0.000000000000000 2.800000000000000 + 0.435000000000000 0.000000000000000 2.800000000000000 + 0.535000000000000 0.000000000000000 2.800000000000000 + 0.635000000000000 0.000000000000000 2.800000000000000 + 0.735000000000000 0.000000000000000 2.800000000000000 + 0.835000000000000 0.000000000000000 2.800000000000000 + 0.935000000000000 0.000000000000000 2.800000000000000 + 1.035000000000000 0.000000000000000 2.800000000000000 + 1.135000000000000 0.000000000000000 2.800000000000000 + 1.235000000000000 0.000000000000000 2.800000000000000 + 1.335000000000000 0.000000000000000 2.800000000000000 + 1.435000000000000 0.000000000000000 2.800000000000000 + 1.535000000000000 0.000000000000000 2.800000000000000 + 1.635000000000000 0.000000000000000 2.800000000000000 + 1.735000000000000 0.000000000000000 2.800000000000000 + 1.835000000000000 0.000000000000000 2.800000000000000 + 1.935000000000000 0.000000000000000 2.800000000000000 + 2.035000000000000 0.000000000000000 2.800000000000000 + 2.135000000000000 0.000000000000000 2.800000000000000 + 2.235000000000000 0.000000000000000 2.800000000000000 + 2.335000000000000 0.000000000000000 2.800000000000000 + 2.435000000000000 0.000000000000000 2.800000000000000 + 2.535000000000000 0.000000000000000 2.800000000000000 + 2.635000000000000 0.000000000000000 2.800000000000000 + 2.735000000000000 0.000000000000000 2.800000000000000 + 2.835000000000000 0.000000000000000 2.800000000000000 + 2.935000000000000 0.000000000000000 2.800000000000000 + 3.035000000000000 0.000000000000000 2.800000000000000 + 3.135000000000000 0.000000000000000 2.800000000000000 + 3.235000000000000 0.000000000000000 2.800000000000000 + 3.335000000000000 0.000000000000000 2.800000000000000 + 3.435000000000000 0.000000000000000 2.800000000000000 + 3.535000000000000 0.000000000000000 2.800000000000000 + 3.635000000000000 0.000000000000000 2.800000000000000 + 3.735000000000000 0.000000000000000 2.800000000000000 + 3.835000000000000 0.000000000000000 2.800000000000000 + 3.935000000000000 0.000000000000000 2.800000000000000 + 4.035000000000000 0.000000000000000 2.800000000000000 + 4.135000000000001 0.000000000000000 2.800000000000000 + 4.235000000000000 0.000000000000000 2.800000000000000 + 4.335000000000000 0.000000000000000 2.800000000000000 + 4.435000000000000 0.000000000000000 2.800000000000000 + 4.535000000000000 0.000000000000000 2.800000000000000 + 4.635000000000001 0.000000000000000 2.800000000000000 + 4.735000000000000 0.000000000000000 2.800000000000000 + 4.835000000000001 0.000000000000000 2.800000000000000 + 4.935000000000000 0.000000000000000 2.800000000000000 + 5.035000000000000 0.000000000000000 2.800000000000000 + 5.135000000000001 0.000000000000000 2.800000000000000 + 0.133845056285464 0.017621035949707 2.800000000000000 + 0.232989542422845 0.030673655171712 2.800000000000000 + 0.332134028560227 0.043726274393717 2.800000000000000 + 0.431278514697608 0.056778893615722 2.800000000000000 + 0.530423000834989 0.069831512837728 2.800000000000000 + 0.629567486972370 0.082884132059733 2.800000000000000 + 0.728711973109751 0.095936751281738 2.800000000000000 + 0.827856459247132 0.108989370503743 2.800000000000000 + 0.927000945384513 0.122041989725748 2.800000000000000 + 1.026145431521894 0.135094608947753 2.800000000000000 + 1.125289917659275 0.148147228169759 2.800000000000000 + 1.224434403796656 0.161199847391764 2.800000000000000 + 1.323578889934037 0.174252466613769 2.800000000000000 + 1.422723376071418 0.187305085835774 2.800000000000000 + 1.521867862208799 0.200357705057779 2.800000000000000 + 1.621012348346180 0.213410324279784 2.800000000000000 + 1.720156834483561 0.226462943501789 2.800000000000000 + 1.819301320620942 0.239515562723795 2.800000000000000 + 1.918445806758323 0.252568181945800 2.800000000000000 + 2.017590292895704 0.265620801167805 2.800000000000000 + 2.116734779033085 0.278673420389810 2.800000000000000 + 2.215879265170466 0.291726039611815 2.800000000000000 + 2.315023751307847 0.304778658833820 2.800000000000000 + 2.414168237445228 0.317831278055826 2.800000000000000 + 2.513312723582609 0.330883897277831 2.800000000000000 + 2.612457209719990 0.343936516499836 2.800000000000000 + 2.711601695857371 0.356989135721841 2.800000000000000 + 2.810746181994753 0.370041754943846 2.800000000000000 + 2.909890668132133 0.383094374165851 2.800000000000000 + 3.009035154269514 0.396146993387857 2.800000000000000 + 3.108179640406895 0.409199612609862 2.800000000000000 + 3.207324126544277 0.422252231831867 2.800000000000000 + 3.306468612681658 0.435304851053872 2.800000000000000 + 3.405613098819039 0.448357470275877 2.800000000000000 + 3.504757584956419 0.461410089497882 2.800000000000000 + 3.603902071093801 0.474462708719887 2.800000000000000 + 3.703046557231182 0.487515327941893 2.800000000000000 + 3.802191043368563 0.500567947163898 2.800000000000000 + 3.901335529505944 0.513620566385903 2.800000000000000 + 4.000480015643325 0.526673185607908 2.800000000000000 + 4.099624501780707 0.539725804829913 2.800000000000000 + 4.198768987918087 0.552778424051918 2.800000000000000 + 4.297913474055468 0.565831043273924 2.800000000000000 + 4.397057960192850 0.578883662495929 2.800000000000000 + 4.496202446330230 0.591936281717934 2.800000000000000 + 4.595346932467612 0.604988900939939 2.800000000000000 + 4.694491418604993 0.618041520161944 2.800000000000000 + 4.793635904742374 0.631094139383950 2.800000000000000 + 4.892780390879754 0.644146758605955 2.800000000000000 + 4.991924877017135 0.657199377827960 2.800000000000000 + 5.091069363154517 0.670251997049965 2.800000000000000 + 0.130399986549024 0.034940571088840 2.800000000000000 + 0.226992569177931 0.060822475599092 2.800000000000000 + 0.323585151806838 0.086704380109344 2.800000000000000 + 0.420177734435745 0.112586284619597 2.800000000000000 + 0.516770317064652 0.138468189129849 2.800000000000000 + 0.613362899693559 0.164350093640101 2.800000000000000 + 0.709955482322465 0.190231998150353 2.800000000000000 + 0.806548064951372 0.216113902660605 2.800000000000000 + 0.903140647580279 0.241995807170857 2.800000000000000 + 0.999733230209186 0.267877711681109 2.800000000000000 + 1.096325812838093 0.293759616191361 2.800000000000000 + 1.192918395467000 0.319641520701613 2.800000000000000 + 1.289510978095906 0.345523425211865 2.800000000000000 + 1.386103560724813 0.371405329722117 2.800000000000000 + 1.482696143353720 0.397287234232369 2.800000000000000 + 1.579288725982627 0.423169138742621 2.800000000000000 + 1.675881308611534 0.449051043252873 2.800000000000000 + 1.772473891240440 0.474932947763126 2.800000000000000 + 1.869066473869347 0.500814852273378 2.800000000000000 + 1.965659056498254 0.526696756783630 2.800000000000000 + 2.062251639127161 0.552578661293882 2.800000000000000 + 2.158844221756068 0.578460565804134 2.800000000000000 + 2.255436804384975 0.604342470314386 2.800000000000000 + 2.352029387013882 0.630224374824638 2.800000000000000 + 2.448621969642788 0.656106279334890 2.800000000000000 + 2.545214552271695 0.681988183845142 2.800000000000000 + 2.641807134900602 0.707870088355394 2.800000000000000 + 2.738399717529509 0.733751992865646 2.800000000000000 + 2.834992300158416 0.759633897375898 2.800000000000000 + 2.931584882787322 0.785515801886150 2.800000000000000 + 3.028177465416229 0.811397706396403 2.800000000000000 + 3.124770048045136 0.837279610906655 2.800000000000000 + 3.221362630674043 0.863161515416907 2.800000000000000 + 3.317955213302950 0.889043419927159 2.800000000000000 + 3.414547795931857 0.914925324437411 2.800000000000000 + 3.511140378560763 0.940807228947663 2.800000000000000 + 3.607732961189670 0.966689133457915 2.800000000000000 + 3.704325543818577 0.992571037968167 2.800000000000000 + 3.800918126447484 1.018452942478419 2.800000000000000 + 3.897510709076391 1.044334846988671 2.800000000000000 + 3.994103291705299 1.070216751498923 2.800000000000000 + 4.090695874334204 1.096098656009175 2.800000000000000 + 4.187288456963111 1.121980560519428 2.800000000000000 + 4.283881039592019 1.147862465029680 2.800000000000000 + 4.380473622220926 1.173744369539932 2.800000000000000 + 4.477066204849833 1.199626274050184 2.800000000000000 + 4.573658787478739 1.225508178560436 2.800000000000000 + 4.670251370107646 1.251390083070688 2.800000000000000 + 4.766843952736553 1.277271987580940 2.800000000000000 + 4.863436535365460 1.303153892091192 2.800000000000000 + 4.960029117994367 1.329035796601444 2.800000000000000 + 0.135000000000000 0.000000000000000 2.900000000000000 + 0.235000000000000 0.000000000000000 2.900000000000000 + 0.335000000000000 0.000000000000000 2.900000000000000 + 0.435000000000000 0.000000000000000 2.900000000000000 + 0.535000000000000 0.000000000000000 2.900000000000000 + 0.635000000000000 0.000000000000000 2.900000000000000 + 0.735000000000000 0.000000000000000 2.900000000000000 + 0.835000000000000 0.000000000000000 2.900000000000000 + 0.935000000000000 0.000000000000000 2.900000000000000 + 1.035000000000000 0.000000000000000 2.900000000000000 + 1.135000000000000 0.000000000000000 2.900000000000000 + 1.235000000000000 0.000000000000000 2.900000000000000 + 1.335000000000000 0.000000000000000 2.900000000000000 + 1.435000000000000 0.000000000000000 2.900000000000000 + 1.535000000000000 0.000000000000000 2.900000000000000 + 1.635000000000000 0.000000000000000 2.900000000000000 + 1.735000000000000 0.000000000000000 2.900000000000000 + 1.835000000000000 0.000000000000000 2.900000000000000 + 1.935000000000000 0.000000000000000 2.900000000000000 + 2.035000000000000 0.000000000000000 2.900000000000000 + 2.135000000000000 0.000000000000000 2.900000000000000 + 2.235000000000000 0.000000000000000 2.900000000000000 + 2.335000000000000 0.000000000000000 2.900000000000000 + 2.435000000000000 0.000000000000000 2.900000000000000 + 2.535000000000000 0.000000000000000 2.900000000000000 + 2.635000000000000 0.000000000000000 2.900000000000000 + 2.735000000000000 0.000000000000000 2.900000000000000 + 2.835000000000000 0.000000000000000 2.900000000000000 + 2.935000000000000 0.000000000000000 2.900000000000000 + 3.035000000000000 0.000000000000000 2.900000000000000 + 3.135000000000000 0.000000000000000 2.900000000000000 + 3.235000000000000 0.000000000000000 2.900000000000000 + 3.335000000000000 0.000000000000000 2.900000000000000 + 3.435000000000000 0.000000000000000 2.900000000000000 + 3.535000000000000 0.000000000000000 2.900000000000000 + 3.635000000000000 0.000000000000000 2.900000000000000 + 3.735000000000000 0.000000000000000 2.900000000000000 + 3.835000000000000 0.000000000000000 2.900000000000000 + 3.935000000000000 0.000000000000000 2.900000000000000 + 4.035000000000000 0.000000000000000 2.900000000000000 + 4.135000000000001 0.000000000000000 2.900000000000000 + 4.235000000000000 0.000000000000000 2.900000000000000 + 4.335000000000000 0.000000000000000 2.900000000000000 + 4.435000000000000 0.000000000000000 2.900000000000000 + 4.535000000000000 0.000000000000000 2.900000000000000 + 4.635000000000001 0.000000000000000 2.900000000000000 + 4.735000000000000 0.000000000000000 2.900000000000000 + 4.835000000000001 0.000000000000000 2.900000000000000 + 4.935000000000000 0.000000000000000 2.900000000000000 + 5.035000000000000 0.000000000000000 2.900000000000000 + 5.135000000000001 0.000000000000000 2.900000000000000 + 0.133845056285464 0.017621035949707 2.900000000000000 + 0.232989542422845 0.030673655171712 2.900000000000000 + 0.332134028560227 0.043726274393717 2.900000000000000 + 0.431278514697608 0.056778893615722 2.900000000000000 + 0.530423000834989 0.069831512837728 2.900000000000000 + 0.629567486972370 0.082884132059733 2.900000000000000 + 0.728711973109751 0.095936751281738 2.900000000000000 + 0.827856459247132 0.108989370503743 2.900000000000000 + 0.927000945384513 0.122041989725748 2.900000000000000 + 1.026145431521894 0.135094608947753 2.900000000000000 + 1.125289917659275 0.148147228169759 2.900000000000000 + 1.224434403796656 0.161199847391764 2.900000000000000 + 1.323578889934037 0.174252466613769 2.900000000000000 + 1.422723376071418 0.187305085835774 2.900000000000000 + 1.521867862208799 0.200357705057779 2.900000000000000 + 1.621012348346180 0.213410324279784 2.900000000000000 + 1.720156834483561 0.226462943501789 2.900000000000000 + 1.819301320620942 0.239515562723795 2.900000000000000 + 1.918445806758323 0.252568181945800 2.900000000000000 + 2.017590292895704 0.265620801167805 2.900000000000000 + 2.116734779033085 0.278673420389810 2.900000000000000 + 2.215879265170466 0.291726039611815 2.900000000000000 + 2.315023751307847 0.304778658833820 2.900000000000000 + 2.414168237445228 0.317831278055826 2.900000000000000 + 2.513312723582609 0.330883897277831 2.900000000000000 + 2.612457209719990 0.343936516499836 2.900000000000000 + 2.711601695857371 0.356989135721841 2.900000000000000 + 2.810746181994753 0.370041754943846 2.900000000000000 + 2.909890668132133 0.383094374165851 2.900000000000000 + 3.009035154269514 0.396146993387857 2.900000000000000 + 3.108179640406895 0.409199612609862 2.900000000000000 + 3.207324126544277 0.422252231831867 2.900000000000000 + 3.306468612681658 0.435304851053872 2.900000000000000 + 3.405613098819039 0.448357470275877 2.900000000000000 + 3.504757584956419 0.461410089497882 2.900000000000000 + 3.603902071093801 0.474462708719887 2.900000000000000 + 3.703046557231182 0.487515327941893 2.900000000000000 + 3.802191043368563 0.500567947163898 2.900000000000000 + 3.901335529505944 0.513620566385903 2.900000000000000 + 4.000480015643325 0.526673185607908 2.900000000000000 + 4.099624501780707 0.539725804829913 2.900000000000000 + 4.198768987918087 0.552778424051918 2.900000000000000 + 4.297913474055468 0.565831043273924 2.900000000000000 + 4.397057960192850 0.578883662495929 2.900000000000000 + 4.496202446330230 0.591936281717934 2.900000000000000 + 4.595346932467612 0.604988900939939 2.900000000000000 + 4.694491418604993 0.618041520161944 2.900000000000000 + 4.793635904742374 0.631094139383950 2.900000000000000 + 4.892780390879754 0.644146758605955 2.900000000000000 + 4.991924877017135 0.657199377827960 2.900000000000000 + 5.091069363154517 0.670251997049965 2.900000000000000 + 0.130399986549024 0.034940571088840 2.900000000000000 + 0.226992569177931 0.060822475599092 2.900000000000000 + 0.323585151806838 0.086704380109344 2.900000000000000 + 0.420177734435745 0.112586284619597 2.900000000000000 + 0.516770317064652 0.138468189129849 2.900000000000000 + 0.613362899693559 0.164350093640101 2.900000000000000 + 0.709955482322465 0.190231998150353 2.900000000000000 + 0.806548064951372 0.216113902660605 2.900000000000000 + 0.903140647580279 0.241995807170857 2.900000000000000 + 0.999733230209186 0.267877711681109 2.900000000000000 + 1.096325812838093 0.293759616191361 2.900000000000000 + 1.192918395467000 0.319641520701613 2.900000000000000 + 1.289510978095906 0.345523425211865 2.900000000000000 + 1.386103560724813 0.371405329722117 2.900000000000000 + 1.482696143353720 0.397287234232369 2.900000000000000 + 1.579288725982627 0.423169138742621 2.900000000000000 + 1.675881308611534 0.449051043252873 2.900000000000000 + 1.772473891240440 0.474932947763126 2.900000000000000 + 1.869066473869347 0.500814852273378 2.900000000000000 + 1.965659056498254 0.526696756783630 2.900000000000000 + 2.062251639127161 0.552578661293882 2.900000000000000 + 2.158844221756068 0.578460565804134 2.900000000000000 + 2.255436804384975 0.604342470314386 2.900000000000000 + 2.352029387013882 0.630224374824638 2.900000000000000 + 2.448621969642788 0.656106279334890 2.900000000000000 + 2.545214552271695 0.681988183845142 2.900000000000000 + 2.641807134900602 0.707870088355394 2.900000000000000 + 2.738399717529509 0.733751992865646 2.900000000000000 + 2.834992300158416 0.759633897375898 2.900000000000000 + 2.931584882787322 0.785515801886150 2.900000000000000 + 3.028177465416229 0.811397706396403 2.900000000000000 + 3.124770048045136 0.837279610906655 2.900000000000000 + 3.221362630674043 0.863161515416907 2.900000000000000 + 3.317955213302950 0.889043419927159 2.900000000000000 + 3.414547795931857 0.914925324437411 2.900000000000000 + 3.511140378560763 0.940807228947663 2.900000000000000 + 3.607732961189670 0.966689133457915 2.900000000000000 + 3.704325543818577 0.992571037968167 2.900000000000000 + 3.800918126447484 1.018452942478419 2.900000000000000 + 3.897510709076391 1.044334846988671 2.900000000000000 + 3.994103291705299 1.070216751498923 2.900000000000000 + 4.090695874334204 1.096098656009175 2.900000000000000 + 4.187288456963111 1.121980560519428 2.900000000000000 + 4.283881039592019 1.147862465029680 2.900000000000000 + 4.380473622220926 1.173744369539932 2.900000000000000 + 4.477066204849833 1.199626274050184 2.900000000000000 + 4.573658787478739 1.225508178560436 2.900000000000000 + 4.670251370107646 1.251390083070688 2.900000000000000 + 4.766843952736553 1.277271987580940 2.900000000000000 + 4.863436535365460 1.303153892091192 2.900000000000000 + 4.960029117994367 1.329035796601444 2.900000000000000 + 0.135000000000000 0.000000000000000 3.000000000000000 + 0.235000000000000 0.000000000000000 3.000000000000000 + 0.335000000000000 0.000000000000000 3.000000000000000 + 0.435000000000000 0.000000000000000 3.000000000000000 + 0.535000000000000 0.000000000000000 3.000000000000000 + 0.635000000000000 0.000000000000000 3.000000000000000 + 0.735000000000000 0.000000000000000 3.000000000000000 + 0.835000000000000 0.000000000000000 3.000000000000000 + 0.935000000000000 0.000000000000000 3.000000000000000 + 1.035000000000000 0.000000000000000 3.000000000000000 + 1.135000000000000 0.000000000000000 3.000000000000000 + 1.235000000000000 0.000000000000000 3.000000000000000 + 1.335000000000000 0.000000000000000 3.000000000000000 + 1.435000000000000 0.000000000000000 3.000000000000000 + 1.535000000000000 0.000000000000000 3.000000000000000 + 1.635000000000000 0.000000000000000 3.000000000000000 + 1.735000000000000 0.000000000000000 3.000000000000000 + 1.835000000000000 0.000000000000000 3.000000000000000 + 1.935000000000000 0.000000000000000 3.000000000000000 + 2.035000000000000 0.000000000000000 3.000000000000000 + 2.135000000000000 0.000000000000000 3.000000000000000 + 2.235000000000000 0.000000000000000 3.000000000000000 + 2.335000000000000 0.000000000000000 3.000000000000000 + 2.435000000000000 0.000000000000000 3.000000000000000 + 2.535000000000000 0.000000000000000 3.000000000000000 + 2.635000000000000 0.000000000000000 3.000000000000000 + 2.735000000000000 0.000000000000000 3.000000000000000 + 2.835000000000000 0.000000000000000 3.000000000000000 + 2.935000000000000 0.000000000000000 3.000000000000000 + 3.035000000000000 0.000000000000000 3.000000000000000 + 3.135000000000000 0.000000000000000 3.000000000000000 + 3.235000000000000 0.000000000000000 3.000000000000000 + 3.335000000000000 0.000000000000000 3.000000000000000 + 3.435000000000000 0.000000000000000 3.000000000000000 + 3.535000000000000 0.000000000000000 3.000000000000000 + 3.635000000000000 0.000000000000000 3.000000000000000 + 3.735000000000000 0.000000000000000 3.000000000000000 + 3.835000000000000 0.000000000000000 3.000000000000000 + 3.935000000000000 0.000000000000000 3.000000000000000 + 4.035000000000000 0.000000000000000 3.000000000000000 + 4.135000000000001 0.000000000000000 3.000000000000000 + 4.235000000000000 0.000000000000000 3.000000000000000 + 4.335000000000000 0.000000000000000 3.000000000000000 + 4.435000000000000 0.000000000000000 3.000000000000000 + 4.535000000000000 0.000000000000000 3.000000000000000 + 4.635000000000001 0.000000000000000 3.000000000000000 + 4.735000000000000 0.000000000000000 3.000000000000000 + 4.835000000000001 0.000000000000000 3.000000000000000 + 4.935000000000000 0.000000000000000 3.000000000000000 + 5.035000000000000 0.000000000000000 3.000000000000000 + 5.135000000000001 0.000000000000000 3.000000000000000 + 0.133845056285464 0.017621035949707 3.000000000000000 + 0.232989542422845 0.030673655171712 3.000000000000000 + 0.332134028560227 0.043726274393717 3.000000000000000 + 0.431278514697608 0.056778893615722 3.000000000000000 + 0.530423000834989 0.069831512837728 3.000000000000000 + 0.629567486972370 0.082884132059733 3.000000000000000 + 0.728711973109751 0.095936751281738 3.000000000000000 + 0.827856459247132 0.108989370503743 3.000000000000000 + 0.927000945384513 0.122041989725748 3.000000000000000 + 1.026145431521894 0.135094608947753 3.000000000000000 + 1.125289917659275 0.148147228169759 3.000000000000000 + 1.224434403796656 0.161199847391764 3.000000000000000 + 1.323578889934037 0.174252466613769 3.000000000000000 + 1.422723376071418 0.187305085835774 3.000000000000000 + 1.521867862208799 0.200357705057779 3.000000000000000 + 1.621012348346180 0.213410324279784 3.000000000000000 + 1.720156834483561 0.226462943501789 3.000000000000000 + 1.819301320620942 0.239515562723795 3.000000000000000 + 1.918445806758323 0.252568181945800 3.000000000000000 + 2.017590292895704 0.265620801167805 3.000000000000000 + 2.116734779033085 0.278673420389810 3.000000000000000 + 2.215879265170466 0.291726039611815 3.000000000000000 + 2.315023751307847 0.304778658833820 3.000000000000000 + 2.414168237445228 0.317831278055826 3.000000000000000 + 2.513312723582609 0.330883897277831 3.000000000000000 + 2.612457209719990 0.343936516499836 3.000000000000000 + 2.711601695857371 0.356989135721841 3.000000000000000 + 2.810746181994753 0.370041754943846 3.000000000000000 + 2.909890668132133 0.383094374165851 3.000000000000000 + 3.009035154269514 0.396146993387857 3.000000000000000 + 3.108179640406895 0.409199612609862 3.000000000000000 + 3.207324126544277 0.422252231831867 3.000000000000000 + 3.306468612681658 0.435304851053872 3.000000000000000 + 3.405613098819039 0.448357470275877 3.000000000000000 + 3.504757584956419 0.461410089497882 3.000000000000000 + 3.603902071093801 0.474462708719887 3.000000000000000 + 3.703046557231182 0.487515327941893 3.000000000000000 + 3.802191043368563 0.500567947163898 3.000000000000000 + 3.901335529505944 0.513620566385903 3.000000000000000 + 4.000480015643325 0.526673185607908 3.000000000000000 + 4.099624501780707 0.539725804829913 3.000000000000000 + 4.198768987918087 0.552778424051918 3.000000000000000 + 4.297913474055468 0.565831043273924 3.000000000000000 + 4.397057960192850 0.578883662495929 3.000000000000000 + 4.496202446330230 0.591936281717934 3.000000000000000 + 4.595346932467612 0.604988900939939 3.000000000000000 + 4.694491418604993 0.618041520161944 3.000000000000000 + 4.793635904742374 0.631094139383950 3.000000000000000 + 4.892780390879754 0.644146758605955 3.000000000000000 + 4.991924877017135 0.657199377827960 3.000000000000000 + 5.091069363154517 0.670251997049965 3.000000000000000 + 0.130399986549024 0.034940571088840 3.000000000000000 + 0.226992569177931 0.060822475599092 3.000000000000000 + 0.323585151806838 0.086704380109344 3.000000000000000 + 0.420177734435745 0.112586284619597 3.000000000000000 + 0.516770317064652 0.138468189129849 3.000000000000000 + 0.613362899693559 0.164350093640101 3.000000000000000 + 0.709955482322465 0.190231998150353 3.000000000000000 + 0.806548064951372 0.216113902660605 3.000000000000000 + 0.903140647580279 0.241995807170857 3.000000000000000 + 0.999733230209186 0.267877711681109 3.000000000000000 + 1.096325812838093 0.293759616191361 3.000000000000000 + 1.192918395467000 0.319641520701613 3.000000000000000 + 1.289510978095906 0.345523425211865 3.000000000000000 + 1.386103560724813 0.371405329722117 3.000000000000000 + 1.482696143353720 0.397287234232369 3.000000000000000 + 1.579288725982627 0.423169138742621 3.000000000000000 + 1.675881308611534 0.449051043252873 3.000000000000000 + 1.772473891240440 0.474932947763126 3.000000000000000 + 1.869066473869347 0.500814852273378 3.000000000000000 + 1.965659056498254 0.526696756783630 3.000000000000000 + 2.062251639127161 0.552578661293882 3.000000000000000 + 2.158844221756068 0.578460565804134 3.000000000000000 + 2.255436804384975 0.604342470314386 3.000000000000000 + 2.352029387013882 0.630224374824638 3.000000000000000 + 2.448621969642788 0.656106279334890 3.000000000000000 + 2.545214552271695 0.681988183845142 3.000000000000000 + 2.641807134900602 0.707870088355394 3.000000000000000 + 2.738399717529509 0.733751992865646 3.000000000000000 + 2.834992300158416 0.759633897375898 3.000000000000000 + 2.931584882787322 0.785515801886150 3.000000000000000 + 3.028177465416229 0.811397706396403 3.000000000000000 + 3.124770048045136 0.837279610906655 3.000000000000000 + 3.221362630674043 0.863161515416907 3.000000000000000 + 3.317955213302950 0.889043419927159 3.000000000000000 + 3.414547795931857 0.914925324437411 3.000000000000000 + 3.511140378560763 0.940807228947663 3.000000000000000 + 3.607732961189670 0.966689133457915 3.000000000000000 + 3.704325543818577 0.992571037968167 3.000000000000000 + 3.800918126447484 1.018452942478419 3.000000000000000 + 3.897510709076391 1.044334846988671 3.000000000000000 + 3.994103291705299 1.070216751498923 3.000000000000000 + 4.090695874334204 1.096098656009175 3.000000000000000 + 4.187288456963111 1.121980560519428 3.000000000000000 + 4.283881039592019 1.147862465029680 3.000000000000000 + 4.380473622220926 1.173744369539932 3.000000000000000 + 4.477066204849833 1.199626274050184 3.000000000000000 + 4.573658787478739 1.225508178560436 3.000000000000000 + 4.670251370107646 1.251390083070688 3.000000000000000 + 4.766843952736553 1.277271987580940 3.000000000000000 + 4.863436535365460 1.303153892091192 3.000000000000000 + 4.960029117994367 1.329035796601444 3.000000000000000 + 0.135000000000000 0.000000000000000 3.100000000000000 + 0.235000000000000 0.000000000000000 3.100000000000000 + 0.335000000000000 0.000000000000000 3.100000000000000 + 0.435000000000000 0.000000000000000 3.100000000000000 + 0.535000000000000 0.000000000000000 3.100000000000000 + 0.635000000000000 0.000000000000000 3.100000000000000 + 0.735000000000000 0.000000000000000 3.100000000000000 + 0.835000000000000 0.000000000000000 3.100000000000000 + 0.935000000000000 0.000000000000000 3.100000000000000 + 1.035000000000000 0.000000000000000 3.100000000000000 + 1.135000000000000 0.000000000000000 3.100000000000000 + 1.235000000000000 0.000000000000000 3.100000000000000 + 1.335000000000000 0.000000000000000 3.100000000000000 + 1.435000000000000 0.000000000000000 3.100000000000000 + 1.535000000000000 0.000000000000000 3.100000000000000 + 1.635000000000000 0.000000000000000 3.100000000000000 + 1.735000000000000 0.000000000000000 3.100000000000000 + 1.835000000000000 0.000000000000000 3.100000000000000 + 1.935000000000000 0.000000000000000 3.100000000000000 + 2.035000000000000 0.000000000000000 3.100000000000000 + 2.135000000000000 0.000000000000000 3.100000000000000 + 2.235000000000000 0.000000000000000 3.100000000000000 + 2.335000000000000 0.000000000000000 3.100000000000000 + 2.435000000000000 0.000000000000000 3.100000000000000 + 2.535000000000000 0.000000000000000 3.100000000000000 + 2.635000000000000 0.000000000000000 3.100000000000000 + 2.735000000000000 0.000000000000000 3.100000000000000 + 2.835000000000000 0.000000000000000 3.100000000000000 + 2.935000000000000 0.000000000000000 3.100000000000000 + 3.035000000000000 0.000000000000000 3.100000000000000 + 3.135000000000000 0.000000000000000 3.100000000000000 + 3.235000000000000 0.000000000000000 3.100000000000000 + 3.335000000000000 0.000000000000000 3.100000000000000 + 3.435000000000000 0.000000000000000 3.100000000000000 + 3.535000000000000 0.000000000000000 3.100000000000000 + 3.635000000000000 0.000000000000000 3.100000000000000 + 3.735000000000000 0.000000000000000 3.100000000000000 + 3.835000000000000 0.000000000000000 3.100000000000000 + 3.935000000000000 0.000000000000000 3.100000000000000 + 4.035000000000000 0.000000000000000 3.100000000000000 + 4.135000000000001 0.000000000000000 3.100000000000000 + 4.235000000000000 0.000000000000000 3.100000000000000 + 4.335000000000000 0.000000000000000 3.100000000000000 + 4.435000000000000 0.000000000000000 3.100000000000000 + 4.535000000000000 0.000000000000000 3.100000000000000 + 4.635000000000001 0.000000000000000 3.100000000000000 + 4.735000000000000 0.000000000000000 3.100000000000000 + 4.835000000000001 0.000000000000000 3.100000000000000 + 4.935000000000000 0.000000000000000 3.100000000000000 + 5.035000000000000 0.000000000000000 3.100000000000000 + 5.135000000000001 0.000000000000000 3.100000000000000 + 0.133845056285464 0.017621035949707 3.100000000000000 + 0.232989542422845 0.030673655171712 3.100000000000000 + 0.332134028560227 0.043726274393717 3.100000000000000 + 0.431278514697608 0.056778893615722 3.100000000000000 + 0.530423000834989 0.069831512837728 3.100000000000000 + 0.629567486972370 0.082884132059733 3.100000000000000 + 0.728711973109751 0.095936751281738 3.100000000000000 + 0.827856459247132 0.108989370503743 3.100000000000000 + 0.927000945384513 0.122041989725748 3.100000000000000 + 1.026145431521894 0.135094608947753 3.100000000000000 + 1.125289917659275 0.148147228169759 3.100000000000000 + 1.224434403796656 0.161199847391764 3.100000000000000 + 1.323578889934037 0.174252466613769 3.100000000000000 + 1.422723376071418 0.187305085835774 3.100000000000000 + 1.521867862208799 0.200357705057779 3.100000000000000 + 1.621012348346180 0.213410324279784 3.100000000000000 + 1.720156834483561 0.226462943501789 3.100000000000000 + 1.819301320620942 0.239515562723795 3.100000000000000 + 1.918445806758323 0.252568181945800 3.100000000000000 + 2.017590292895704 0.265620801167805 3.100000000000000 + 2.116734779033085 0.278673420389810 3.100000000000000 + 2.215879265170466 0.291726039611815 3.100000000000000 + 2.315023751307847 0.304778658833820 3.100000000000000 + 2.414168237445228 0.317831278055826 3.100000000000000 + 2.513312723582609 0.330883897277831 3.100000000000000 + 2.612457209719990 0.343936516499836 3.100000000000000 + 2.711601695857371 0.356989135721841 3.100000000000000 + 2.810746181994753 0.370041754943846 3.100000000000000 + 2.909890668132133 0.383094374165851 3.100000000000000 + 3.009035154269514 0.396146993387857 3.100000000000000 + 3.108179640406895 0.409199612609862 3.100000000000000 + 3.207324126544277 0.422252231831867 3.100000000000000 + 3.306468612681658 0.435304851053872 3.100000000000000 + 3.405613098819039 0.448357470275877 3.100000000000000 + 3.504757584956419 0.461410089497882 3.100000000000000 + 3.603902071093801 0.474462708719887 3.100000000000000 + 3.703046557231182 0.487515327941893 3.100000000000000 + 3.802191043368563 0.500567947163898 3.100000000000000 + 3.901335529505944 0.513620566385903 3.100000000000000 + 4.000480015643325 0.526673185607908 3.100000000000000 + 4.099624501780707 0.539725804829913 3.100000000000000 + 4.198768987918087 0.552778424051918 3.100000000000000 + 4.297913474055468 0.565831043273924 3.100000000000000 + 4.397057960192850 0.578883662495929 3.100000000000000 + 4.496202446330230 0.591936281717934 3.100000000000000 + 4.595346932467612 0.604988900939939 3.100000000000000 + 4.694491418604993 0.618041520161944 3.100000000000000 + 4.793635904742374 0.631094139383950 3.100000000000000 + 4.892780390879754 0.644146758605955 3.100000000000000 + 4.991924877017135 0.657199377827960 3.100000000000000 + 5.091069363154517 0.670251997049965 3.100000000000000 + 0.130399986549024 0.034940571088840 3.100000000000000 + 0.226992569177931 0.060822475599092 3.100000000000000 + 0.323585151806838 0.086704380109344 3.100000000000000 + 0.420177734435745 0.112586284619597 3.100000000000000 + 0.516770317064652 0.138468189129849 3.100000000000000 + 0.613362899693559 0.164350093640101 3.100000000000000 + 0.709955482322465 0.190231998150353 3.100000000000000 + 0.806548064951372 0.216113902660605 3.100000000000000 + 0.903140647580279 0.241995807170857 3.100000000000000 + 0.999733230209186 0.267877711681109 3.100000000000000 + 1.096325812838093 0.293759616191361 3.100000000000000 + 1.192918395467000 0.319641520701613 3.100000000000000 + 1.289510978095906 0.345523425211865 3.100000000000000 + 1.386103560724813 0.371405329722117 3.100000000000000 + 1.482696143353720 0.397287234232369 3.100000000000000 + 1.579288725982627 0.423169138742621 3.100000000000000 + 1.675881308611534 0.449051043252873 3.100000000000000 + 1.772473891240440 0.474932947763126 3.100000000000000 + 1.869066473869347 0.500814852273378 3.100000000000000 + 1.965659056498254 0.526696756783630 3.100000000000000 + 2.062251639127161 0.552578661293882 3.100000000000000 + 2.158844221756068 0.578460565804134 3.100000000000000 + 2.255436804384975 0.604342470314386 3.100000000000000 + 2.352029387013882 0.630224374824638 3.100000000000000 + 2.448621969642788 0.656106279334890 3.100000000000000 + 2.545214552271695 0.681988183845142 3.100000000000000 + 2.641807134900602 0.707870088355394 3.100000000000000 + 2.738399717529509 0.733751992865646 3.100000000000000 + 2.834992300158416 0.759633897375898 3.100000000000000 + 2.931584882787322 0.785515801886150 3.100000000000000 + 3.028177465416229 0.811397706396403 3.100000000000000 + 3.124770048045136 0.837279610906655 3.100000000000000 + 3.221362630674043 0.863161515416907 3.100000000000000 + 3.317955213302950 0.889043419927159 3.100000000000000 + 3.414547795931857 0.914925324437411 3.100000000000000 + 3.511140378560763 0.940807228947663 3.100000000000000 + 3.607732961189670 0.966689133457915 3.100000000000000 + 3.704325543818577 0.992571037968167 3.100000000000000 + 3.800918126447484 1.018452942478419 3.100000000000000 + 3.897510709076391 1.044334846988671 3.100000000000000 + 3.994103291705299 1.070216751498923 3.100000000000000 + 4.090695874334204 1.096098656009175 3.100000000000000 + 4.187288456963111 1.121980560519428 3.100000000000000 + 4.283881039592019 1.147862465029680 3.100000000000000 + 4.380473622220926 1.173744369539932 3.100000000000000 + 4.477066204849833 1.199626274050184 3.100000000000000 + 4.573658787478739 1.225508178560436 3.100000000000000 + 4.670251370107646 1.251390083070688 3.100000000000000 + 4.766843952736553 1.277271987580940 3.100000000000000 + 4.863436535365460 1.303153892091192 3.100000000000000 + 4.960029117994367 1.329035796601444 3.100000000000000 + 0.135000000000000 0.000000000000000 3.200000000000000 + 0.235000000000000 0.000000000000000 3.200000000000000 + 0.335000000000000 0.000000000000000 3.200000000000000 + 0.435000000000000 0.000000000000000 3.200000000000000 + 0.535000000000000 0.000000000000000 3.200000000000000 + 0.635000000000000 0.000000000000000 3.200000000000000 + 0.735000000000000 0.000000000000000 3.200000000000000 + 0.835000000000000 0.000000000000000 3.200000000000000 + 0.935000000000000 0.000000000000000 3.200000000000000 + 1.035000000000000 0.000000000000000 3.200000000000000 + 1.135000000000000 0.000000000000000 3.200000000000000 + 1.235000000000000 0.000000000000000 3.200000000000000 + 1.335000000000000 0.000000000000000 3.200000000000000 + 1.435000000000000 0.000000000000000 3.200000000000000 + 1.535000000000000 0.000000000000000 3.200000000000000 + 1.635000000000000 0.000000000000000 3.200000000000000 + 1.735000000000000 0.000000000000000 3.200000000000000 + 1.835000000000000 0.000000000000000 3.200000000000000 + 1.935000000000000 0.000000000000000 3.200000000000000 + 2.035000000000000 0.000000000000000 3.200000000000000 + 2.135000000000000 0.000000000000000 3.200000000000000 + 2.235000000000000 0.000000000000000 3.200000000000000 + 2.335000000000000 0.000000000000000 3.200000000000000 + 2.435000000000000 0.000000000000000 3.200000000000000 + 2.535000000000000 0.000000000000000 3.200000000000000 + 2.635000000000000 0.000000000000000 3.200000000000000 + 2.735000000000000 0.000000000000000 3.200000000000000 + 2.835000000000000 0.000000000000000 3.200000000000000 + 2.935000000000000 0.000000000000000 3.200000000000000 + 3.035000000000000 0.000000000000000 3.200000000000000 + 3.135000000000000 0.000000000000000 3.200000000000000 + 3.235000000000000 0.000000000000000 3.200000000000000 + 3.335000000000000 0.000000000000000 3.200000000000000 + 3.435000000000000 0.000000000000000 3.200000000000000 + 3.535000000000000 0.000000000000000 3.200000000000000 + 3.635000000000000 0.000000000000000 3.200000000000000 + 3.735000000000000 0.000000000000000 3.200000000000000 + 3.835000000000000 0.000000000000000 3.200000000000000 + 3.935000000000000 0.000000000000000 3.200000000000000 + 4.035000000000000 0.000000000000000 3.200000000000000 + 4.135000000000001 0.000000000000000 3.200000000000000 + 4.235000000000000 0.000000000000000 3.200000000000000 + 4.335000000000000 0.000000000000000 3.200000000000000 + 4.435000000000000 0.000000000000000 3.200000000000000 + 4.535000000000000 0.000000000000000 3.200000000000000 + 4.635000000000001 0.000000000000000 3.200000000000000 + 4.735000000000000 0.000000000000000 3.200000000000000 + 4.835000000000001 0.000000000000000 3.200000000000000 + 4.935000000000000 0.000000000000000 3.200000000000000 + 5.035000000000000 0.000000000000000 3.200000000000000 + 5.135000000000001 0.000000000000000 3.200000000000000 + 0.133845056285464 0.017621035949707 3.200000000000000 + 0.232989542422845 0.030673655171712 3.200000000000000 + 0.332134028560227 0.043726274393717 3.200000000000000 + 0.431278514697608 0.056778893615722 3.200000000000000 + 0.530423000834989 0.069831512837728 3.200000000000000 + 0.629567486972370 0.082884132059733 3.200000000000000 + 0.728711973109751 0.095936751281738 3.200000000000000 + 0.827856459247132 0.108989370503743 3.200000000000000 + 0.927000945384513 0.122041989725748 3.200000000000000 + 1.026145431521894 0.135094608947753 3.200000000000000 + 1.125289917659275 0.148147228169759 3.200000000000000 + 1.224434403796656 0.161199847391764 3.200000000000000 + 1.323578889934037 0.174252466613769 3.200000000000000 + 1.422723376071418 0.187305085835774 3.200000000000000 + 1.521867862208799 0.200357705057779 3.200000000000000 + 1.621012348346180 0.213410324279784 3.200000000000000 + 1.720156834483561 0.226462943501789 3.200000000000000 + 1.819301320620942 0.239515562723795 3.200000000000000 + 1.918445806758323 0.252568181945800 3.200000000000000 + 2.017590292895704 0.265620801167805 3.200000000000000 + 2.116734779033085 0.278673420389810 3.200000000000000 + 2.215879265170466 0.291726039611815 3.200000000000000 + 2.315023751307847 0.304778658833820 3.200000000000000 + 2.414168237445228 0.317831278055826 3.200000000000000 + 2.513312723582609 0.330883897277831 3.200000000000000 + 2.612457209719990 0.343936516499836 3.200000000000000 + 2.711601695857371 0.356989135721841 3.200000000000000 + 2.810746181994753 0.370041754943846 3.200000000000000 + 2.909890668132133 0.383094374165851 3.200000000000000 + 3.009035154269514 0.396146993387857 3.200000000000000 + 3.108179640406895 0.409199612609862 3.200000000000000 + 3.207324126544277 0.422252231831867 3.200000000000000 + 3.306468612681658 0.435304851053872 3.200000000000000 + 3.405613098819039 0.448357470275877 3.200000000000000 + 3.504757584956419 0.461410089497882 3.200000000000000 + 3.603902071093801 0.474462708719887 3.200000000000000 + 3.703046557231182 0.487515327941893 3.200000000000000 + 3.802191043368563 0.500567947163898 3.200000000000000 + 3.901335529505944 0.513620566385903 3.200000000000000 + 4.000480015643325 0.526673185607908 3.200000000000000 + 4.099624501780707 0.539725804829913 3.200000000000000 + 4.198768987918087 0.552778424051918 3.200000000000000 + 4.297913474055468 0.565831043273924 3.200000000000000 + 4.397057960192850 0.578883662495929 3.200000000000000 + 4.496202446330230 0.591936281717934 3.200000000000000 + 4.595346932467612 0.604988900939939 3.200000000000000 + 4.694491418604993 0.618041520161944 3.200000000000000 + 4.793635904742374 0.631094139383950 3.200000000000000 + 4.892780390879754 0.644146758605955 3.200000000000000 + 4.991924877017135 0.657199377827960 3.200000000000000 + 5.091069363154517 0.670251997049965 3.200000000000000 + 0.130399986549024 0.034940571088840 3.200000000000000 + 0.226992569177931 0.060822475599092 3.200000000000000 + 0.323585151806838 0.086704380109344 3.200000000000000 + 0.420177734435745 0.112586284619597 3.200000000000000 + 0.516770317064652 0.138468189129849 3.200000000000000 + 0.613362899693559 0.164350093640101 3.200000000000000 + 0.709955482322465 0.190231998150353 3.200000000000000 + 0.806548064951372 0.216113902660605 3.200000000000000 + 0.903140647580279 0.241995807170857 3.200000000000000 + 0.999733230209186 0.267877711681109 3.200000000000000 + 1.096325812838093 0.293759616191361 3.200000000000000 + 1.192918395467000 0.319641520701613 3.200000000000000 + 1.289510978095906 0.345523425211865 3.200000000000000 + 1.386103560724813 0.371405329722117 3.200000000000000 + 1.482696143353720 0.397287234232369 3.200000000000000 + 1.579288725982627 0.423169138742621 3.200000000000000 + 1.675881308611534 0.449051043252873 3.200000000000000 + 1.772473891240440 0.474932947763126 3.200000000000000 + 1.869066473869347 0.500814852273378 3.200000000000000 + 1.965659056498254 0.526696756783630 3.200000000000000 + 2.062251639127161 0.552578661293882 3.200000000000000 + 2.158844221756068 0.578460565804134 3.200000000000000 + 2.255436804384975 0.604342470314386 3.200000000000000 + 2.352029387013882 0.630224374824638 3.200000000000000 + 2.448621969642788 0.656106279334890 3.200000000000000 + 2.545214552271695 0.681988183845142 3.200000000000000 + 2.641807134900602 0.707870088355394 3.200000000000000 + 2.738399717529509 0.733751992865646 3.200000000000000 + 2.834992300158416 0.759633897375898 3.200000000000000 + 2.931584882787322 0.785515801886150 3.200000000000000 + 3.028177465416229 0.811397706396403 3.200000000000000 + 3.124770048045136 0.837279610906655 3.200000000000000 + 3.221362630674043 0.863161515416907 3.200000000000000 + 3.317955213302950 0.889043419927159 3.200000000000000 + 3.414547795931857 0.914925324437411 3.200000000000000 + 3.511140378560763 0.940807228947663 3.200000000000000 + 3.607732961189670 0.966689133457915 3.200000000000000 + 3.704325543818577 0.992571037968167 3.200000000000000 + 3.800918126447484 1.018452942478419 3.200000000000000 + 3.897510709076391 1.044334846988671 3.200000000000000 + 3.994103291705299 1.070216751498923 3.200000000000000 + 4.090695874334204 1.096098656009175 3.200000000000000 + 4.187288456963111 1.121980560519428 3.200000000000000 + 4.283881039592019 1.147862465029680 3.200000000000000 + 4.380473622220926 1.173744369539932 3.200000000000000 + 4.477066204849833 1.199626274050184 3.200000000000000 + 4.573658787478739 1.225508178560436 3.200000000000000 + 4.670251370107646 1.251390083070688 3.200000000000000 + 4.766843952736553 1.277271987580940 3.200000000000000 + 4.863436535365460 1.303153892091192 3.200000000000000 + 4.960029117994367 1.329035796601444 3.200000000000000 + 0.135000000000000 0.000000000000000 3.300000000000000 + 0.235000000000000 0.000000000000000 3.300000000000000 + 0.335000000000000 0.000000000000000 3.300000000000000 + 0.435000000000000 0.000000000000000 3.300000000000000 + 0.535000000000000 0.000000000000000 3.300000000000000 + 0.635000000000000 0.000000000000000 3.300000000000000 + 0.735000000000000 0.000000000000000 3.300000000000000 + 0.835000000000000 0.000000000000000 3.300000000000000 + 0.935000000000000 0.000000000000000 3.300000000000000 + 1.035000000000000 0.000000000000000 3.300000000000000 + 1.135000000000000 0.000000000000000 3.300000000000000 + 1.235000000000000 0.000000000000000 3.300000000000000 + 1.335000000000000 0.000000000000000 3.300000000000000 + 1.435000000000000 0.000000000000000 3.300000000000000 + 1.535000000000000 0.000000000000000 3.300000000000000 + 1.635000000000000 0.000000000000000 3.300000000000000 + 1.735000000000000 0.000000000000000 3.300000000000000 + 1.835000000000000 0.000000000000000 3.300000000000000 + 1.935000000000000 0.000000000000000 3.300000000000000 + 2.035000000000000 0.000000000000000 3.300000000000000 + 2.135000000000000 0.000000000000000 3.300000000000000 + 2.235000000000000 0.000000000000000 3.300000000000000 + 2.335000000000000 0.000000000000000 3.300000000000000 + 2.435000000000000 0.000000000000000 3.300000000000000 + 2.535000000000000 0.000000000000000 3.300000000000000 + 2.635000000000000 0.000000000000000 3.300000000000000 + 2.735000000000000 0.000000000000000 3.300000000000000 + 2.835000000000000 0.000000000000000 3.300000000000000 + 2.935000000000000 0.000000000000000 3.300000000000000 + 3.035000000000000 0.000000000000000 3.300000000000000 + 3.135000000000000 0.000000000000000 3.300000000000000 + 3.235000000000000 0.000000000000000 3.300000000000000 + 3.335000000000000 0.000000000000000 3.300000000000000 + 3.435000000000000 0.000000000000000 3.300000000000000 + 3.535000000000000 0.000000000000000 3.300000000000000 + 3.635000000000000 0.000000000000000 3.300000000000000 + 3.735000000000000 0.000000000000000 3.300000000000000 + 3.835000000000000 0.000000000000000 3.300000000000000 + 3.935000000000000 0.000000000000000 3.300000000000000 + 4.035000000000000 0.000000000000000 3.300000000000000 + 4.135000000000001 0.000000000000000 3.300000000000000 + 4.235000000000000 0.000000000000000 3.300000000000000 + 4.335000000000000 0.000000000000000 3.300000000000000 + 4.435000000000000 0.000000000000000 3.300000000000000 + 4.535000000000000 0.000000000000000 3.300000000000000 + 4.635000000000001 0.000000000000000 3.300000000000000 + 4.735000000000000 0.000000000000000 3.300000000000000 + 4.835000000000001 0.000000000000000 3.300000000000000 + 4.935000000000000 0.000000000000000 3.300000000000000 + 5.035000000000000 0.000000000000000 3.300000000000000 + 5.135000000000001 0.000000000000000 3.300000000000000 + 0.133845056285464 0.017621035949707 3.300000000000000 + 0.232989542422845 0.030673655171712 3.300000000000000 + 0.332134028560227 0.043726274393717 3.300000000000000 + 0.431278514697608 0.056778893615722 3.300000000000000 + 0.530423000834989 0.069831512837728 3.300000000000000 + 0.629567486972370 0.082884132059733 3.300000000000000 + 0.728711973109751 0.095936751281738 3.300000000000000 + 0.827856459247132 0.108989370503743 3.300000000000000 + 0.927000945384513 0.122041989725748 3.300000000000000 + 1.026145431521894 0.135094608947753 3.300000000000000 + 1.125289917659275 0.148147228169759 3.300000000000000 + 1.224434403796656 0.161199847391764 3.300000000000000 + 1.323578889934037 0.174252466613769 3.300000000000000 + 1.422723376071418 0.187305085835774 3.300000000000000 + 1.521867862208799 0.200357705057779 3.300000000000000 + 1.621012348346180 0.213410324279784 3.300000000000000 + 1.720156834483561 0.226462943501789 3.300000000000000 + 1.819301320620942 0.239515562723795 3.300000000000000 + 1.918445806758323 0.252568181945800 3.300000000000000 + 2.017590292895704 0.265620801167805 3.300000000000000 + 2.116734779033085 0.278673420389810 3.300000000000000 + 2.215879265170466 0.291726039611815 3.300000000000000 + 2.315023751307847 0.304778658833820 3.300000000000000 + 2.414168237445228 0.317831278055826 3.300000000000000 + 2.513312723582609 0.330883897277831 3.300000000000000 + 2.612457209719990 0.343936516499836 3.300000000000000 + 2.711601695857371 0.356989135721841 3.300000000000000 + 2.810746181994753 0.370041754943846 3.300000000000000 + 2.909890668132133 0.383094374165851 3.300000000000000 + 3.009035154269514 0.396146993387857 3.300000000000000 + 3.108179640406895 0.409199612609862 3.300000000000000 + 3.207324126544277 0.422252231831867 3.300000000000000 + 3.306468612681658 0.435304851053872 3.300000000000000 + 3.405613098819039 0.448357470275877 3.300000000000000 + 3.504757584956419 0.461410089497882 3.300000000000000 + 3.603902071093801 0.474462708719887 3.300000000000000 + 3.703046557231182 0.487515327941893 3.300000000000000 + 3.802191043368563 0.500567947163898 3.300000000000000 + 3.901335529505944 0.513620566385903 3.300000000000000 + 4.000480015643325 0.526673185607908 3.300000000000000 + 4.099624501780707 0.539725804829913 3.300000000000000 + 4.198768987918087 0.552778424051918 3.300000000000000 + 4.297913474055468 0.565831043273924 3.300000000000000 + 4.397057960192850 0.578883662495929 3.300000000000000 + 4.496202446330230 0.591936281717934 3.300000000000000 + 4.595346932467612 0.604988900939939 3.300000000000000 + 4.694491418604993 0.618041520161944 3.300000000000000 + 4.793635904742374 0.631094139383950 3.300000000000000 + 4.892780390879754 0.644146758605955 3.300000000000000 + 4.991924877017135 0.657199377827960 3.300000000000000 + 5.091069363154517 0.670251997049965 3.300000000000000 + 0.130399986549024 0.034940571088840 3.300000000000000 + 0.226992569177931 0.060822475599092 3.300000000000000 + 0.323585151806838 0.086704380109344 3.300000000000000 + 0.420177734435745 0.112586284619597 3.300000000000000 + 0.516770317064652 0.138468189129849 3.300000000000000 + 0.613362899693559 0.164350093640101 3.300000000000000 + 0.709955482322465 0.190231998150353 3.300000000000000 + 0.806548064951372 0.216113902660605 3.300000000000000 + 0.903140647580279 0.241995807170857 3.300000000000000 + 0.999733230209186 0.267877711681109 3.300000000000000 + 1.096325812838093 0.293759616191361 3.300000000000000 + 1.192918395467000 0.319641520701613 3.300000000000000 + 1.289510978095906 0.345523425211865 3.300000000000000 + 1.386103560724813 0.371405329722117 3.300000000000000 + 1.482696143353720 0.397287234232369 3.300000000000000 + 1.579288725982627 0.423169138742621 3.300000000000000 + 1.675881308611534 0.449051043252873 3.300000000000000 + 1.772473891240440 0.474932947763126 3.300000000000000 + 1.869066473869347 0.500814852273378 3.300000000000000 + 1.965659056498254 0.526696756783630 3.300000000000000 + 2.062251639127161 0.552578661293882 3.300000000000000 + 2.158844221756068 0.578460565804134 3.300000000000000 + 2.255436804384975 0.604342470314386 3.300000000000000 + 2.352029387013882 0.630224374824638 3.300000000000000 + 2.448621969642788 0.656106279334890 3.300000000000000 + 2.545214552271695 0.681988183845142 3.300000000000000 + 2.641807134900602 0.707870088355394 3.300000000000000 + 2.738399717529509 0.733751992865646 3.300000000000000 + 2.834992300158416 0.759633897375898 3.300000000000000 + 2.931584882787322 0.785515801886150 3.300000000000000 + 3.028177465416229 0.811397706396403 3.300000000000000 + 3.124770048045136 0.837279610906655 3.300000000000000 + 3.221362630674043 0.863161515416907 3.300000000000000 + 3.317955213302950 0.889043419927159 3.300000000000000 + 3.414547795931857 0.914925324437411 3.300000000000000 + 3.511140378560763 0.940807228947663 3.300000000000000 + 3.607732961189670 0.966689133457915 3.300000000000000 + 3.704325543818577 0.992571037968167 3.300000000000000 + 3.800918126447484 1.018452942478419 3.300000000000000 + 3.897510709076391 1.044334846988671 3.300000000000000 + 3.994103291705299 1.070216751498923 3.300000000000000 + 4.090695874334204 1.096098656009175 3.300000000000000 + 4.187288456963111 1.121980560519428 3.300000000000000 + 4.283881039592019 1.147862465029680 3.300000000000000 + 4.380473622220926 1.173744369539932 3.300000000000000 + 4.477066204849833 1.199626274050184 3.300000000000000 + 4.573658787478739 1.225508178560436 3.300000000000000 + 4.670251370107646 1.251390083070688 3.300000000000000 + 4.766843952736553 1.277271987580940 3.300000000000000 + 4.863436535365460 1.303153892091192 3.300000000000000 + 4.960029117994367 1.329035796601444 3.300000000000000 + 0.135000000000000 0.000000000000000 3.400000000000000 + 0.235000000000000 0.000000000000000 3.400000000000000 + 0.335000000000000 0.000000000000000 3.400000000000000 + 0.435000000000000 0.000000000000000 3.400000000000000 + 0.535000000000000 0.000000000000000 3.400000000000000 + 0.635000000000000 0.000000000000000 3.400000000000000 + 0.735000000000000 0.000000000000000 3.400000000000000 + 0.835000000000000 0.000000000000000 3.400000000000000 + 0.935000000000000 0.000000000000000 3.400000000000000 + 1.035000000000000 0.000000000000000 3.400000000000000 + 1.135000000000000 0.000000000000000 3.400000000000000 + 1.235000000000000 0.000000000000000 3.400000000000000 + 1.335000000000000 0.000000000000000 3.400000000000000 + 1.435000000000000 0.000000000000000 3.400000000000000 + 1.535000000000000 0.000000000000000 3.400000000000000 + 1.635000000000000 0.000000000000000 3.400000000000000 + 1.735000000000000 0.000000000000000 3.400000000000000 + 1.835000000000000 0.000000000000000 3.400000000000000 + 1.935000000000000 0.000000000000000 3.400000000000000 + 2.035000000000000 0.000000000000000 3.400000000000000 + 2.135000000000000 0.000000000000000 3.400000000000000 + 2.235000000000000 0.000000000000000 3.400000000000000 + 2.335000000000000 0.000000000000000 3.400000000000000 + 2.435000000000000 0.000000000000000 3.400000000000000 + 2.535000000000000 0.000000000000000 3.400000000000000 + 2.635000000000000 0.000000000000000 3.400000000000000 + 2.735000000000000 0.000000000000000 3.400000000000000 + 2.835000000000000 0.000000000000000 3.400000000000000 + 2.935000000000000 0.000000000000000 3.400000000000000 + 3.035000000000000 0.000000000000000 3.400000000000000 + 3.135000000000000 0.000000000000000 3.400000000000000 + 3.235000000000000 0.000000000000000 3.400000000000000 + 3.335000000000000 0.000000000000000 3.400000000000000 + 3.435000000000000 0.000000000000000 3.400000000000000 + 3.535000000000000 0.000000000000000 3.400000000000000 + 3.635000000000000 0.000000000000000 3.400000000000000 + 3.735000000000000 0.000000000000000 3.400000000000000 + 3.835000000000000 0.000000000000000 3.400000000000000 + 3.935000000000000 0.000000000000000 3.400000000000000 + 4.035000000000000 0.000000000000000 3.400000000000000 + 4.135000000000001 0.000000000000000 3.400000000000000 + 4.235000000000000 0.000000000000000 3.400000000000000 + 4.335000000000000 0.000000000000000 3.400000000000000 + 4.435000000000000 0.000000000000000 3.400000000000000 + 4.535000000000000 0.000000000000000 3.400000000000000 + 4.635000000000001 0.000000000000000 3.400000000000000 + 4.735000000000000 0.000000000000000 3.400000000000000 + 4.835000000000001 0.000000000000000 3.400000000000000 + 4.935000000000000 0.000000000000000 3.400000000000000 + 5.035000000000000 0.000000000000000 3.400000000000000 + 5.135000000000001 0.000000000000000 3.400000000000000 + 0.133845056285464 0.017621035949707 3.400000000000000 + 0.232989542422845 0.030673655171712 3.400000000000000 + 0.332134028560227 0.043726274393717 3.400000000000000 + 0.431278514697608 0.056778893615722 3.400000000000000 + 0.530423000834989 0.069831512837728 3.400000000000000 + 0.629567486972370 0.082884132059733 3.400000000000000 + 0.728711973109751 0.095936751281738 3.400000000000000 + 0.827856459247132 0.108989370503743 3.400000000000000 + 0.927000945384513 0.122041989725748 3.400000000000000 + 1.026145431521894 0.135094608947753 3.400000000000000 + 1.125289917659275 0.148147228169759 3.400000000000000 + 1.224434403796656 0.161199847391764 3.400000000000000 + 1.323578889934037 0.174252466613769 3.400000000000000 + 1.422723376071418 0.187305085835774 3.400000000000000 + 1.521867862208799 0.200357705057779 3.400000000000000 + 1.621012348346180 0.213410324279784 3.400000000000000 + 1.720156834483561 0.226462943501789 3.400000000000000 + 1.819301320620942 0.239515562723795 3.400000000000000 + 1.918445806758323 0.252568181945800 3.400000000000000 + 2.017590292895704 0.265620801167805 3.400000000000000 + 2.116734779033085 0.278673420389810 3.400000000000000 + 2.215879265170466 0.291726039611815 3.400000000000000 + 2.315023751307847 0.304778658833820 3.400000000000000 + 2.414168237445228 0.317831278055826 3.400000000000000 + 2.513312723582609 0.330883897277831 3.400000000000000 + 2.612457209719990 0.343936516499836 3.400000000000000 + 2.711601695857371 0.356989135721841 3.400000000000000 + 2.810746181994753 0.370041754943846 3.400000000000000 + 2.909890668132133 0.383094374165851 3.400000000000000 + 3.009035154269514 0.396146993387857 3.400000000000000 + 3.108179640406895 0.409199612609862 3.400000000000000 + 3.207324126544277 0.422252231831867 3.400000000000000 + 3.306468612681658 0.435304851053872 3.400000000000000 + 3.405613098819039 0.448357470275877 3.400000000000000 + 3.504757584956419 0.461410089497882 3.400000000000000 + 3.603902071093801 0.474462708719887 3.400000000000000 + 3.703046557231182 0.487515327941893 3.400000000000000 + 3.802191043368563 0.500567947163898 3.400000000000000 + 3.901335529505944 0.513620566385903 3.400000000000000 + 4.000480015643325 0.526673185607908 3.400000000000000 + 4.099624501780707 0.539725804829913 3.400000000000000 + 4.198768987918087 0.552778424051918 3.400000000000000 + 4.297913474055468 0.565831043273924 3.400000000000000 + 4.397057960192850 0.578883662495929 3.400000000000000 + 4.496202446330230 0.591936281717934 3.400000000000000 + 4.595346932467612 0.604988900939939 3.400000000000000 + 4.694491418604993 0.618041520161944 3.400000000000000 + 4.793635904742374 0.631094139383950 3.400000000000000 + 4.892780390879754 0.644146758605955 3.400000000000000 + 4.991924877017135 0.657199377827960 3.400000000000000 + 5.091069363154517 0.670251997049965 3.400000000000000 + 0.130399986549024 0.034940571088840 3.400000000000000 + 0.226992569177931 0.060822475599092 3.400000000000000 + 0.323585151806838 0.086704380109344 3.400000000000000 + 0.420177734435745 0.112586284619597 3.400000000000000 + 0.516770317064652 0.138468189129849 3.400000000000000 + 0.613362899693559 0.164350093640101 3.400000000000000 + 0.709955482322465 0.190231998150353 3.400000000000000 + 0.806548064951372 0.216113902660605 3.400000000000000 + 0.903140647580279 0.241995807170857 3.400000000000000 + 0.999733230209186 0.267877711681109 3.400000000000000 + 1.096325812838093 0.293759616191361 3.400000000000000 + 1.192918395467000 0.319641520701613 3.400000000000000 + 1.289510978095906 0.345523425211865 3.400000000000000 + 1.386103560724813 0.371405329722117 3.400000000000000 + 1.482696143353720 0.397287234232369 3.400000000000000 + 1.579288725982627 0.423169138742621 3.400000000000000 + 1.675881308611534 0.449051043252873 3.400000000000000 + 1.772473891240440 0.474932947763126 3.400000000000000 + 1.869066473869347 0.500814852273378 3.400000000000000 + 1.965659056498254 0.526696756783630 3.400000000000000 + 2.062251639127161 0.552578661293882 3.400000000000000 + 2.158844221756068 0.578460565804134 3.400000000000000 + 2.255436804384975 0.604342470314386 3.400000000000000 + 2.352029387013882 0.630224374824638 3.400000000000000 + 2.448621969642788 0.656106279334890 3.400000000000000 + 2.545214552271695 0.681988183845142 3.400000000000000 + 2.641807134900602 0.707870088355394 3.400000000000000 + 2.738399717529509 0.733751992865646 3.400000000000000 + 2.834992300158416 0.759633897375898 3.400000000000000 + 2.931584882787322 0.785515801886150 3.400000000000000 + 3.028177465416229 0.811397706396403 3.400000000000000 + 3.124770048045136 0.837279610906655 3.400000000000000 + 3.221362630674043 0.863161515416907 3.400000000000000 + 3.317955213302950 0.889043419927159 3.400000000000000 + 3.414547795931857 0.914925324437411 3.400000000000000 + 3.511140378560763 0.940807228947663 3.400000000000000 + 3.607732961189670 0.966689133457915 3.400000000000000 + 3.704325543818577 0.992571037968167 3.400000000000000 + 3.800918126447484 1.018452942478419 3.400000000000000 + 3.897510709076391 1.044334846988671 3.400000000000000 + 3.994103291705299 1.070216751498923 3.400000000000000 + 4.090695874334204 1.096098656009175 3.400000000000000 + 4.187288456963111 1.121980560519428 3.400000000000000 + 4.283881039592019 1.147862465029680 3.400000000000000 + 4.380473622220926 1.173744369539932 3.400000000000000 + 4.477066204849833 1.199626274050184 3.400000000000000 + 4.573658787478739 1.225508178560436 3.400000000000000 + 4.670251370107646 1.251390083070688 3.400000000000000 + 4.766843952736553 1.277271987580940 3.400000000000000 + 4.863436535365460 1.303153892091192 3.400000000000000 + 4.960029117994367 1.329035796601444 3.400000000000000 + 0.135000000000000 0.000000000000000 3.500000000000000 + 0.235000000000000 0.000000000000000 3.500000000000000 + 0.335000000000000 0.000000000000000 3.500000000000000 + 0.435000000000000 0.000000000000000 3.500000000000000 + 0.535000000000000 0.000000000000000 3.500000000000000 + 0.635000000000000 0.000000000000000 3.500000000000000 + 0.735000000000000 0.000000000000000 3.500000000000000 + 0.835000000000000 0.000000000000000 3.500000000000000 + 0.935000000000000 0.000000000000000 3.500000000000000 + 1.035000000000000 0.000000000000000 3.500000000000000 + 1.135000000000000 0.000000000000000 3.500000000000000 + 1.235000000000000 0.000000000000000 3.500000000000000 + 1.335000000000000 0.000000000000000 3.500000000000000 + 1.435000000000000 0.000000000000000 3.500000000000000 + 1.535000000000000 0.000000000000000 3.500000000000000 + 1.635000000000000 0.000000000000000 3.500000000000000 + 1.735000000000000 0.000000000000000 3.500000000000000 + 1.835000000000000 0.000000000000000 3.500000000000000 + 1.935000000000000 0.000000000000000 3.500000000000000 + 2.035000000000000 0.000000000000000 3.500000000000000 + 2.135000000000000 0.000000000000000 3.500000000000000 + 2.235000000000000 0.000000000000000 3.500000000000000 + 2.335000000000000 0.000000000000000 3.500000000000000 + 2.435000000000000 0.000000000000000 3.500000000000000 + 2.535000000000000 0.000000000000000 3.500000000000000 + 2.635000000000000 0.000000000000000 3.500000000000000 + 2.735000000000000 0.000000000000000 3.500000000000000 + 2.835000000000000 0.000000000000000 3.500000000000000 + 2.935000000000000 0.000000000000000 3.500000000000000 + 3.035000000000000 0.000000000000000 3.500000000000000 + 3.135000000000000 0.000000000000000 3.500000000000000 + 3.235000000000000 0.000000000000000 3.500000000000000 + 3.335000000000000 0.000000000000000 3.500000000000000 + 3.435000000000000 0.000000000000000 3.500000000000000 + 3.535000000000000 0.000000000000000 3.500000000000000 + 3.635000000000000 0.000000000000000 3.500000000000000 + 3.735000000000000 0.000000000000000 3.500000000000000 + 3.835000000000000 0.000000000000000 3.500000000000000 + 3.935000000000000 0.000000000000000 3.500000000000000 + 4.035000000000000 0.000000000000000 3.500000000000000 + 4.135000000000001 0.000000000000000 3.500000000000000 + 4.235000000000000 0.000000000000000 3.500000000000000 + 4.335000000000000 0.000000000000000 3.500000000000000 + 4.435000000000000 0.000000000000000 3.500000000000000 + 4.535000000000000 0.000000000000000 3.500000000000000 + 4.635000000000001 0.000000000000000 3.500000000000000 + 4.735000000000000 0.000000000000000 3.500000000000000 + 4.835000000000001 0.000000000000000 3.500000000000000 + 4.935000000000000 0.000000000000000 3.500000000000000 + 5.035000000000000 0.000000000000000 3.500000000000000 + 5.135000000000001 0.000000000000000 3.500000000000000 + 0.133845056285464 0.017621035949707 3.500000000000000 + 0.232989542422845 0.030673655171712 3.500000000000000 + 0.332134028560227 0.043726274393717 3.500000000000000 + 0.431278514697608 0.056778893615722 3.500000000000000 + 0.530423000834989 0.069831512837728 3.500000000000000 + 0.629567486972370 0.082884132059733 3.500000000000000 + 0.728711973109751 0.095936751281738 3.500000000000000 + 0.827856459247132 0.108989370503743 3.500000000000000 + 0.927000945384513 0.122041989725748 3.500000000000000 + 1.026145431521894 0.135094608947753 3.500000000000000 + 1.125289917659275 0.148147228169759 3.500000000000000 + 1.224434403796656 0.161199847391764 3.500000000000000 + 1.323578889934037 0.174252466613769 3.500000000000000 + 1.422723376071418 0.187305085835774 3.500000000000000 + 1.521867862208799 0.200357705057779 3.500000000000000 + 1.621012348346180 0.213410324279784 3.500000000000000 + 1.720156834483561 0.226462943501789 3.500000000000000 + 1.819301320620942 0.239515562723795 3.500000000000000 + 1.918445806758323 0.252568181945800 3.500000000000000 + 2.017590292895704 0.265620801167805 3.500000000000000 + 2.116734779033085 0.278673420389810 3.500000000000000 + 2.215879265170466 0.291726039611815 3.500000000000000 + 2.315023751307847 0.304778658833820 3.500000000000000 + 2.414168237445228 0.317831278055826 3.500000000000000 + 2.513312723582609 0.330883897277831 3.500000000000000 + 2.612457209719990 0.343936516499836 3.500000000000000 + 2.711601695857371 0.356989135721841 3.500000000000000 + 2.810746181994753 0.370041754943846 3.500000000000000 + 2.909890668132133 0.383094374165851 3.500000000000000 + 3.009035154269514 0.396146993387857 3.500000000000000 + 3.108179640406895 0.409199612609862 3.500000000000000 + 3.207324126544277 0.422252231831867 3.500000000000000 + 3.306468612681658 0.435304851053872 3.500000000000000 + 3.405613098819039 0.448357470275877 3.500000000000000 + 3.504757584956419 0.461410089497882 3.500000000000000 + 3.603902071093801 0.474462708719887 3.500000000000000 + 3.703046557231182 0.487515327941893 3.500000000000000 + 3.802191043368563 0.500567947163898 3.500000000000000 + 3.901335529505944 0.513620566385903 3.500000000000000 + 4.000480015643325 0.526673185607908 3.500000000000000 + 4.099624501780707 0.539725804829913 3.500000000000000 + 4.198768987918087 0.552778424051918 3.500000000000000 + 4.297913474055468 0.565831043273924 3.500000000000000 + 4.397057960192850 0.578883662495929 3.500000000000000 + 4.496202446330230 0.591936281717934 3.500000000000000 + 4.595346932467612 0.604988900939939 3.500000000000000 + 4.694491418604993 0.618041520161944 3.500000000000000 + 4.793635904742374 0.631094139383950 3.500000000000000 + 4.892780390879754 0.644146758605955 3.500000000000000 + 4.991924877017135 0.657199377827960 3.500000000000000 + 5.091069363154517 0.670251997049965 3.500000000000000 + 0.130399986549024 0.034940571088840 3.500000000000000 + 0.226992569177931 0.060822475599092 3.500000000000000 + 0.323585151806838 0.086704380109344 3.500000000000000 + 0.420177734435745 0.112586284619597 3.500000000000000 + 0.516770317064652 0.138468189129849 3.500000000000000 + 0.613362899693559 0.164350093640101 3.500000000000000 + 0.709955482322465 0.190231998150353 3.500000000000000 + 0.806548064951372 0.216113902660605 3.500000000000000 + 0.903140647580279 0.241995807170857 3.500000000000000 + 0.999733230209186 0.267877711681109 3.500000000000000 + 1.096325812838093 0.293759616191361 3.500000000000000 + 1.192918395467000 0.319641520701613 3.500000000000000 + 1.289510978095906 0.345523425211865 3.500000000000000 + 1.386103560724813 0.371405329722117 3.500000000000000 + 1.482696143353720 0.397287234232369 3.500000000000000 + 1.579288725982627 0.423169138742621 3.500000000000000 + 1.675881308611534 0.449051043252873 3.500000000000000 + 1.772473891240440 0.474932947763126 3.500000000000000 + 1.869066473869347 0.500814852273378 3.500000000000000 + 1.965659056498254 0.526696756783630 3.500000000000000 + 2.062251639127161 0.552578661293882 3.500000000000000 + 2.158844221756068 0.578460565804134 3.500000000000000 + 2.255436804384975 0.604342470314386 3.500000000000000 + 2.352029387013882 0.630224374824638 3.500000000000000 + 2.448621969642788 0.656106279334890 3.500000000000000 + 2.545214552271695 0.681988183845142 3.500000000000000 + 2.641807134900602 0.707870088355394 3.500000000000000 + 2.738399717529509 0.733751992865646 3.500000000000000 + 2.834992300158416 0.759633897375898 3.500000000000000 + 2.931584882787322 0.785515801886150 3.500000000000000 + 3.028177465416229 0.811397706396403 3.500000000000000 + 3.124770048045136 0.837279610906655 3.500000000000000 + 3.221362630674043 0.863161515416907 3.500000000000000 + 3.317955213302950 0.889043419927159 3.500000000000000 + 3.414547795931857 0.914925324437411 3.500000000000000 + 3.511140378560763 0.940807228947663 3.500000000000000 + 3.607732961189670 0.966689133457915 3.500000000000000 + 3.704325543818577 0.992571037968167 3.500000000000000 + 3.800918126447484 1.018452942478419 3.500000000000000 + 3.897510709076391 1.044334846988671 3.500000000000000 + 3.994103291705299 1.070216751498923 3.500000000000000 + 4.090695874334204 1.096098656009175 3.500000000000000 + 4.187288456963111 1.121980560519428 3.500000000000000 + 4.283881039592019 1.147862465029680 3.500000000000000 + 4.380473622220926 1.173744369539932 3.500000000000000 + 4.477066204849833 1.199626274050184 3.500000000000000 + 4.573658787478739 1.225508178560436 3.500000000000000 + 4.670251370107646 1.251390083070688 3.500000000000000 + 4.766843952736553 1.277271987580940 3.500000000000000 + 4.863436535365460 1.303153892091192 3.500000000000000 + 4.960029117994367 1.329035796601444 3.500000000000000 + 0.135000000000000 0.000000000000000 3.600000000000000 + 0.235000000000000 0.000000000000000 3.600000000000000 + 0.335000000000000 0.000000000000000 3.600000000000000 + 0.435000000000000 0.000000000000000 3.600000000000000 + 0.535000000000000 0.000000000000000 3.600000000000000 + 0.635000000000000 0.000000000000000 3.600000000000000 + 0.735000000000000 0.000000000000000 3.600000000000000 + 0.835000000000000 0.000000000000000 3.600000000000000 + 0.935000000000000 0.000000000000000 3.600000000000000 + 1.035000000000000 0.000000000000000 3.600000000000000 + 1.135000000000000 0.000000000000000 3.600000000000000 + 1.235000000000000 0.000000000000000 3.600000000000000 + 1.335000000000000 0.000000000000000 3.600000000000000 + 1.435000000000000 0.000000000000000 3.600000000000000 + 1.535000000000000 0.000000000000000 3.600000000000000 + 1.635000000000000 0.000000000000000 3.600000000000000 + 1.735000000000000 0.000000000000000 3.600000000000000 + 1.835000000000000 0.000000000000000 3.600000000000000 + 1.935000000000000 0.000000000000000 3.600000000000000 + 2.035000000000000 0.000000000000000 3.600000000000000 + 2.135000000000000 0.000000000000000 3.600000000000000 + 2.235000000000000 0.000000000000000 3.600000000000000 + 2.335000000000000 0.000000000000000 3.600000000000000 + 2.435000000000000 0.000000000000000 3.600000000000000 + 2.535000000000000 0.000000000000000 3.600000000000000 + 2.635000000000000 0.000000000000000 3.600000000000000 + 2.735000000000000 0.000000000000000 3.600000000000000 + 2.835000000000000 0.000000000000000 3.600000000000000 + 2.935000000000000 0.000000000000000 3.600000000000000 + 3.035000000000000 0.000000000000000 3.600000000000000 + 3.135000000000000 0.000000000000000 3.600000000000000 + 3.235000000000000 0.000000000000000 3.600000000000000 + 3.335000000000000 0.000000000000000 3.600000000000000 + 3.435000000000000 0.000000000000000 3.600000000000000 + 3.535000000000000 0.000000000000000 3.600000000000000 + 3.635000000000000 0.000000000000000 3.600000000000000 + 3.735000000000000 0.000000000000000 3.600000000000000 + 3.835000000000000 0.000000000000000 3.600000000000000 + 3.935000000000000 0.000000000000000 3.600000000000000 + 4.035000000000000 0.000000000000000 3.600000000000000 + 4.135000000000001 0.000000000000000 3.600000000000000 + 4.235000000000000 0.000000000000000 3.600000000000000 + 4.335000000000000 0.000000000000000 3.600000000000000 + 4.435000000000000 0.000000000000000 3.600000000000000 + 4.535000000000000 0.000000000000000 3.600000000000000 + 4.635000000000001 0.000000000000000 3.600000000000000 + 4.735000000000000 0.000000000000000 3.600000000000000 + 4.835000000000001 0.000000000000000 3.600000000000000 + 4.935000000000000 0.000000000000000 3.600000000000000 + 5.035000000000000 0.000000000000000 3.600000000000000 + 5.135000000000001 0.000000000000000 3.600000000000000 + 0.133845056285464 0.017621035949707 3.600000000000000 + 0.232989542422845 0.030673655171712 3.600000000000000 + 0.332134028560227 0.043726274393717 3.600000000000000 + 0.431278514697608 0.056778893615722 3.600000000000000 + 0.530423000834989 0.069831512837728 3.600000000000000 + 0.629567486972370 0.082884132059733 3.600000000000000 + 0.728711973109751 0.095936751281738 3.600000000000000 + 0.827856459247132 0.108989370503743 3.600000000000000 + 0.927000945384513 0.122041989725748 3.600000000000000 + 1.026145431521894 0.135094608947753 3.600000000000000 + 1.125289917659275 0.148147228169759 3.600000000000000 + 1.224434403796656 0.161199847391764 3.600000000000000 + 1.323578889934037 0.174252466613769 3.600000000000000 + 1.422723376071418 0.187305085835774 3.600000000000000 + 1.521867862208799 0.200357705057779 3.600000000000000 + 1.621012348346180 0.213410324279784 3.600000000000000 + 1.720156834483561 0.226462943501789 3.600000000000000 + 1.819301320620942 0.239515562723795 3.600000000000000 + 1.918445806758323 0.252568181945800 3.600000000000000 + 2.017590292895704 0.265620801167805 3.600000000000000 + 2.116734779033085 0.278673420389810 3.600000000000000 + 2.215879265170466 0.291726039611815 3.600000000000000 + 2.315023751307847 0.304778658833820 3.600000000000000 + 2.414168237445228 0.317831278055826 3.600000000000000 + 2.513312723582609 0.330883897277831 3.600000000000000 + 2.612457209719990 0.343936516499836 3.600000000000000 + 2.711601695857371 0.356989135721841 3.600000000000000 + 2.810746181994753 0.370041754943846 3.600000000000000 + 2.909890668132133 0.383094374165851 3.600000000000000 + 3.009035154269514 0.396146993387857 3.600000000000000 + 3.108179640406895 0.409199612609862 3.600000000000000 + 3.207324126544277 0.422252231831867 3.600000000000000 + 3.306468612681658 0.435304851053872 3.600000000000000 + 3.405613098819039 0.448357470275877 3.600000000000000 + 3.504757584956419 0.461410089497882 3.600000000000000 + 3.603902071093801 0.474462708719887 3.600000000000000 + 3.703046557231182 0.487515327941893 3.600000000000000 + 3.802191043368563 0.500567947163898 3.600000000000000 + 3.901335529505944 0.513620566385903 3.600000000000000 + 4.000480015643325 0.526673185607908 3.600000000000000 + 4.099624501780707 0.539725804829913 3.600000000000000 + 4.198768987918087 0.552778424051918 3.600000000000000 + 4.297913474055468 0.565831043273924 3.600000000000000 + 4.397057960192850 0.578883662495929 3.600000000000000 + 4.496202446330230 0.591936281717934 3.600000000000000 + 4.595346932467612 0.604988900939939 3.600000000000000 + 4.694491418604993 0.618041520161944 3.600000000000000 + 4.793635904742374 0.631094139383950 3.600000000000000 + 4.892780390879754 0.644146758605955 3.600000000000000 + 4.991924877017135 0.657199377827960 3.600000000000000 + 5.091069363154517 0.670251997049965 3.600000000000000 + 0.130399986549024 0.034940571088840 3.600000000000000 + 0.226992569177931 0.060822475599092 3.600000000000000 + 0.323585151806838 0.086704380109344 3.600000000000000 + 0.420177734435745 0.112586284619597 3.600000000000000 + 0.516770317064652 0.138468189129849 3.600000000000000 + 0.613362899693559 0.164350093640101 3.600000000000000 + 0.709955482322465 0.190231998150353 3.600000000000000 + 0.806548064951372 0.216113902660605 3.600000000000000 + 0.903140647580279 0.241995807170857 3.600000000000000 + 0.999733230209186 0.267877711681109 3.600000000000000 + 1.096325812838093 0.293759616191361 3.600000000000000 + 1.192918395467000 0.319641520701613 3.600000000000000 + 1.289510978095906 0.345523425211865 3.600000000000000 + 1.386103560724813 0.371405329722117 3.600000000000000 + 1.482696143353720 0.397287234232369 3.600000000000000 + 1.579288725982627 0.423169138742621 3.600000000000000 + 1.675881308611534 0.449051043252873 3.600000000000000 + 1.772473891240440 0.474932947763126 3.600000000000000 + 1.869066473869347 0.500814852273378 3.600000000000000 + 1.965659056498254 0.526696756783630 3.600000000000000 + 2.062251639127161 0.552578661293882 3.600000000000000 + 2.158844221756068 0.578460565804134 3.600000000000000 + 2.255436804384975 0.604342470314386 3.600000000000000 + 2.352029387013882 0.630224374824638 3.600000000000000 + 2.448621969642788 0.656106279334890 3.600000000000000 + 2.545214552271695 0.681988183845142 3.600000000000000 + 2.641807134900602 0.707870088355394 3.600000000000000 + 2.738399717529509 0.733751992865646 3.600000000000000 + 2.834992300158416 0.759633897375898 3.600000000000000 + 2.931584882787322 0.785515801886150 3.600000000000000 + 3.028177465416229 0.811397706396403 3.600000000000000 + 3.124770048045136 0.837279610906655 3.600000000000000 + 3.221362630674043 0.863161515416907 3.600000000000000 + 3.317955213302950 0.889043419927159 3.600000000000000 + 3.414547795931857 0.914925324437411 3.600000000000000 + 3.511140378560763 0.940807228947663 3.600000000000000 + 3.607732961189670 0.966689133457915 3.600000000000000 + 3.704325543818577 0.992571037968167 3.600000000000000 + 3.800918126447484 1.018452942478419 3.600000000000000 + 3.897510709076391 1.044334846988671 3.600000000000000 + 3.994103291705299 1.070216751498923 3.600000000000000 + 4.090695874334204 1.096098656009175 3.600000000000000 + 4.187288456963111 1.121980560519428 3.600000000000000 + 4.283881039592019 1.147862465029680 3.600000000000000 + 4.380473622220926 1.173744369539932 3.600000000000000 + 4.477066204849833 1.199626274050184 3.600000000000000 + 4.573658787478739 1.225508178560436 3.600000000000000 + 4.670251370107646 1.251390083070688 3.600000000000000 + 4.766843952736553 1.277271987580940 3.600000000000000 + 4.863436535365460 1.303153892091192 3.600000000000000 + 4.960029117994367 1.329035796601444 3.600000000000000 + 0.135000000000000 0.000000000000000 3.700000000000000 + 0.235000000000000 0.000000000000000 3.700000000000000 + 0.335000000000000 0.000000000000000 3.700000000000000 + 0.435000000000000 0.000000000000000 3.700000000000000 + 0.535000000000000 0.000000000000000 3.700000000000000 + 0.635000000000000 0.000000000000000 3.700000000000000 + 0.735000000000000 0.000000000000000 3.700000000000000 + 0.835000000000000 0.000000000000000 3.700000000000000 + 0.935000000000000 0.000000000000000 3.700000000000000 + 1.035000000000000 0.000000000000000 3.700000000000000 + 1.135000000000000 0.000000000000000 3.700000000000000 + 1.235000000000000 0.000000000000000 3.700000000000000 + 1.335000000000000 0.000000000000000 3.700000000000000 + 1.435000000000000 0.000000000000000 3.700000000000000 + 1.535000000000000 0.000000000000000 3.700000000000000 + 1.635000000000000 0.000000000000000 3.700000000000000 + 1.735000000000000 0.000000000000000 3.700000000000000 + 1.835000000000000 0.000000000000000 3.700000000000000 + 1.935000000000000 0.000000000000000 3.700000000000000 + 2.035000000000000 0.000000000000000 3.700000000000000 + 2.135000000000000 0.000000000000000 3.700000000000000 + 2.235000000000000 0.000000000000000 3.700000000000000 + 2.335000000000000 0.000000000000000 3.700000000000000 + 2.435000000000000 0.000000000000000 3.700000000000000 + 2.535000000000000 0.000000000000000 3.700000000000000 + 2.635000000000000 0.000000000000000 3.700000000000000 + 2.735000000000000 0.000000000000000 3.700000000000000 + 2.835000000000000 0.000000000000000 3.700000000000000 + 2.935000000000000 0.000000000000000 3.700000000000000 + 3.035000000000000 0.000000000000000 3.700000000000000 + 3.135000000000000 0.000000000000000 3.700000000000000 + 3.235000000000000 0.000000000000000 3.700000000000000 + 3.335000000000000 0.000000000000000 3.700000000000000 + 3.435000000000000 0.000000000000000 3.700000000000000 + 3.535000000000000 0.000000000000000 3.700000000000000 + 3.635000000000000 0.000000000000000 3.700000000000000 + 3.735000000000000 0.000000000000000 3.700000000000000 + 3.835000000000000 0.000000000000000 3.700000000000000 + 3.935000000000000 0.000000000000000 3.700000000000000 + 4.035000000000000 0.000000000000000 3.700000000000000 + 4.135000000000001 0.000000000000000 3.700000000000000 + 4.235000000000000 0.000000000000000 3.700000000000000 + 4.335000000000000 0.000000000000000 3.700000000000000 + 4.435000000000000 0.000000000000000 3.700000000000000 + 4.535000000000000 0.000000000000000 3.700000000000000 + 4.635000000000001 0.000000000000000 3.700000000000000 + 4.735000000000000 0.000000000000000 3.700000000000000 + 4.835000000000001 0.000000000000000 3.700000000000000 + 4.935000000000000 0.000000000000000 3.700000000000000 + 5.035000000000000 0.000000000000000 3.700000000000000 + 5.135000000000001 0.000000000000000 3.700000000000000 + 0.133845056285464 0.017621035949707 3.700000000000000 + 0.232989542422845 0.030673655171712 3.700000000000000 + 0.332134028560227 0.043726274393717 3.700000000000000 + 0.431278514697608 0.056778893615722 3.700000000000000 + 0.530423000834989 0.069831512837728 3.700000000000000 + 0.629567486972370 0.082884132059733 3.700000000000000 + 0.728711973109751 0.095936751281738 3.700000000000000 + 0.827856459247132 0.108989370503743 3.700000000000000 + 0.927000945384513 0.122041989725748 3.700000000000000 + 1.026145431521894 0.135094608947753 3.700000000000000 + 1.125289917659275 0.148147228169759 3.700000000000000 + 1.224434403796656 0.161199847391764 3.700000000000000 + 1.323578889934037 0.174252466613769 3.700000000000000 + 1.422723376071418 0.187305085835774 3.700000000000000 + 1.521867862208799 0.200357705057779 3.700000000000000 + 1.621012348346180 0.213410324279784 3.700000000000000 + 1.720156834483561 0.226462943501789 3.700000000000000 + 1.819301320620942 0.239515562723795 3.700000000000000 + 1.918445806758323 0.252568181945800 3.700000000000000 + 2.017590292895704 0.265620801167805 3.700000000000000 + 2.116734779033085 0.278673420389810 3.700000000000000 + 2.215879265170466 0.291726039611815 3.700000000000000 + 2.315023751307847 0.304778658833820 3.700000000000000 + 2.414168237445228 0.317831278055826 3.700000000000000 + 2.513312723582609 0.330883897277831 3.700000000000000 + 2.612457209719990 0.343936516499836 3.700000000000000 + 2.711601695857371 0.356989135721841 3.700000000000000 + 2.810746181994753 0.370041754943846 3.700000000000000 + 2.909890668132133 0.383094374165851 3.700000000000000 + 3.009035154269514 0.396146993387857 3.700000000000000 + 3.108179640406895 0.409199612609862 3.700000000000000 + 3.207324126544277 0.422252231831867 3.700000000000000 + 3.306468612681658 0.435304851053872 3.700000000000000 + 3.405613098819039 0.448357470275877 3.700000000000000 + 3.504757584956419 0.461410089497882 3.700000000000000 + 3.603902071093801 0.474462708719887 3.700000000000000 + 3.703046557231182 0.487515327941893 3.700000000000000 + 3.802191043368563 0.500567947163898 3.700000000000000 + 3.901335529505944 0.513620566385903 3.700000000000000 + 4.000480015643325 0.526673185607908 3.700000000000000 + 4.099624501780707 0.539725804829913 3.700000000000000 + 4.198768987918087 0.552778424051918 3.700000000000000 + 4.297913474055468 0.565831043273924 3.700000000000000 + 4.397057960192850 0.578883662495929 3.700000000000000 + 4.496202446330230 0.591936281717934 3.700000000000000 + 4.595346932467612 0.604988900939939 3.700000000000000 + 4.694491418604993 0.618041520161944 3.700000000000000 + 4.793635904742374 0.631094139383950 3.700000000000000 + 4.892780390879754 0.644146758605955 3.700000000000000 + 4.991924877017135 0.657199377827960 3.700000000000000 + 5.091069363154517 0.670251997049965 3.700000000000000 + 0.130399986549024 0.034940571088840 3.700000000000000 + 0.226992569177931 0.060822475599092 3.700000000000000 + 0.323585151806838 0.086704380109344 3.700000000000000 + 0.420177734435745 0.112586284619597 3.700000000000000 + 0.516770317064652 0.138468189129849 3.700000000000000 + 0.613362899693559 0.164350093640101 3.700000000000000 + 0.709955482322465 0.190231998150353 3.700000000000000 + 0.806548064951372 0.216113902660605 3.700000000000000 + 0.903140647580279 0.241995807170857 3.700000000000000 + 0.999733230209186 0.267877711681109 3.700000000000000 + 1.096325812838093 0.293759616191361 3.700000000000000 + 1.192918395467000 0.319641520701613 3.700000000000000 + 1.289510978095906 0.345523425211865 3.700000000000000 + 1.386103560724813 0.371405329722117 3.700000000000000 + 1.482696143353720 0.397287234232369 3.700000000000000 + 1.579288725982627 0.423169138742621 3.700000000000000 + 1.675881308611534 0.449051043252873 3.700000000000000 + 1.772473891240440 0.474932947763126 3.700000000000000 + 1.869066473869347 0.500814852273378 3.700000000000000 + 1.965659056498254 0.526696756783630 3.700000000000000 + 2.062251639127161 0.552578661293882 3.700000000000000 + 2.158844221756068 0.578460565804134 3.700000000000000 + 2.255436804384975 0.604342470314386 3.700000000000000 + 2.352029387013882 0.630224374824638 3.700000000000000 + 2.448621969642788 0.656106279334890 3.700000000000000 + 2.545214552271695 0.681988183845142 3.700000000000000 + 2.641807134900602 0.707870088355394 3.700000000000000 + 2.738399717529509 0.733751992865646 3.700000000000000 + 2.834992300158416 0.759633897375898 3.700000000000000 + 2.931584882787322 0.785515801886150 3.700000000000000 + 3.028177465416229 0.811397706396403 3.700000000000000 + 3.124770048045136 0.837279610906655 3.700000000000000 + 3.221362630674043 0.863161515416907 3.700000000000000 + 3.317955213302950 0.889043419927159 3.700000000000000 + 3.414547795931857 0.914925324437411 3.700000000000000 + 3.511140378560763 0.940807228947663 3.700000000000000 + 3.607732961189670 0.966689133457915 3.700000000000000 + 3.704325543818577 0.992571037968167 3.700000000000000 + 3.800918126447484 1.018452942478419 3.700000000000000 + 3.897510709076391 1.044334846988671 3.700000000000000 + 3.994103291705299 1.070216751498923 3.700000000000000 + 4.090695874334204 1.096098656009175 3.700000000000000 + 4.187288456963111 1.121980560519428 3.700000000000000 + 4.283881039592019 1.147862465029680 3.700000000000000 + 4.380473622220926 1.173744369539932 3.700000000000000 + 4.477066204849833 1.199626274050184 3.700000000000000 + 4.573658787478739 1.225508178560436 3.700000000000000 + 4.670251370107646 1.251390083070688 3.700000000000000 + 4.766843952736553 1.277271987580940 3.700000000000000 + 4.863436535365460 1.303153892091192 3.700000000000000 + 4.960029117994367 1.329035796601444 3.700000000000000 + 0.135000000000000 0.000000000000000 3.800000000000000 + 0.235000000000000 0.000000000000000 3.800000000000000 + 0.335000000000000 0.000000000000000 3.800000000000000 + 0.435000000000000 0.000000000000000 3.800000000000000 + 0.535000000000000 0.000000000000000 3.800000000000000 + 0.635000000000000 0.000000000000000 3.800000000000000 + 0.735000000000000 0.000000000000000 3.800000000000000 + 0.835000000000000 0.000000000000000 3.800000000000000 + 0.935000000000000 0.000000000000000 3.800000000000000 + 1.035000000000000 0.000000000000000 3.800000000000000 + 1.135000000000000 0.000000000000000 3.800000000000000 + 1.235000000000000 0.000000000000000 3.800000000000000 + 1.335000000000000 0.000000000000000 3.800000000000000 + 1.435000000000000 0.000000000000000 3.800000000000000 + 1.535000000000000 0.000000000000000 3.800000000000000 + 1.635000000000000 0.000000000000000 3.800000000000000 + 1.735000000000000 0.000000000000000 3.800000000000000 + 1.835000000000000 0.000000000000000 3.800000000000000 + 1.935000000000000 0.000000000000000 3.800000000000000 + 2.035000000000000 0.000000000000000 3.800000000000000 + 2.135000000000000 0.000000000000000 3.800000000000000 + 2.235000000000000 0.000000000000000 3.800000000000000 + 2.335000000000000 0.000000000000000 3.800000000000000 + 2.435000000000000 0.000000000000000 3.800000000000000 + 2.535000000000000 0.000000000000000 3.800000000000000 + 2.635000000000000 0.000000000000000 3.800000000000000 + 2.735000000000000 0.000000000000000 3.800000000000000 + 2.835000000000000 0.000000000000000 3.800000000000000 + 2.935000000000000 0.000000000000000 3.800000000000000 + 3.035000000000000 0.000000000000000 3.800000000000000 + 3.135000000000000 0.000000000000000 3.800000000000000 + 3.235000000000000 0.000000000000000 3.800000000000000 + 3.335000000000000 0.000000000000000 3.800000000000000 + 3.435000000000000 0.000000000000000 3.800000000000000 + 3.535000000000000 0.000000000000000 3.800000000000000 + 3.635000000000000 0.000000000000000 3.800000000000000 + 3.735000000000000 0.000000000000000 3.800000000000000 + 3.835000000000000 0.000000000000000 3.800000000000000 + 3.935000000000000 0.000000000000000 3.800000000000000 + 4.035000000000000 0.000000000000000 3.800000000000000 + 4.135000000000001 0.000000000000000 3.800000000000000 + 4.235000000000000 0.000000000000000 3.800000000000000 + 4.335000000000000 0.000000000000000 3.800000000000000 + 4.435000000000000 0.000000000000000 3.800000000000000 + 4.535000000000000 0.000000000000000 3.800000000000000 + 4.635000000000001 0.000000000000000 3.800000000000000 + 4.735000000000000 0.000000000000000 3.800000000000000 + 4.835000000000001 0.000000000000000 3.800000000000000 + 4.935000000000000 0.000000000000000 3.800000000000000 + 5.035000000000000 0.000000000000000 3.800000000000000 + 5.135000000000001 0.000000000000000 3.800000000000000 + 0.133845056285464 0.017621035949707 3.800000000000000 + 0.232989542422845 0.030673655171712 3.800000000000000 + 0.332134028560227 0.043726274393717 3.800000000000000 + 0.431278514697608 0.056778893615722 3.800000000000000 + 0.530423000834989 0.069831512837728 3.800000000000000 + 0.629567486972370 0.082884132059733 3.800000000000000 + 0.728711973109751 0.095936751281738 3.800000000000000 + 0.827856459247132 0.108989370503743 3.800000000000000 + 0.927000945384513 0.122041989725748 3.800000000000000 + 1.026145431521894 0.135094608947753 3.800000000000000 + 1.125289917659275 0.148147228169759 3.800000000000000 + 1.224434403796656 0.161199847391764 3.800000000000000 + 1.323578889934037 0.174252466613769 3.800000000000000 + 1.422723376071418 0.187305085835774 3.800000000000000 + 1.521867862208799 0.200357705057779 3.800000000000000 + 1.621012348346180 0.213410324279784 3.800000000000000 + 1.720156834483561 0.226462943501789 3.800000000000000 + 1.819301320620942 0.239515562723795 3.800000000000000 + 1.918445806758323 0.252568181945800 3.800000000000000 + 2.017590292895704 0.265620801167805 3.800000000000000 + 2.116734779033085 0.278673420389810 3.800000000000000 + 2.215879265170466 0.291726039611815 3.800000000000000 + 2.315023751307847 0.304778658833820 3.800000000000000 + 2.414168237445228 0.317831278055826 3.800000000000000 + 2.513312723582609 0.330883897277831 3.800000000000000 + 2.612457209719990 0.343936516499836 3.800000000000000 + 2.711601695857371 0.356989135721841 3.800000000000000 + 2.810746181994753 0.370041754943846 3.800000000000000 + 2.909890668132133 0.383094374165851 3.800000000000000 + 3.009035154269514 0.396146993387857 3.800000000000000 + 3.108179640406895 0.409199612609862 3.800000000000000 + 3.207324126544277 0.422252231831867 3.800000000000000 + 3.306468612681658 0.435304851053872 3.800000000000000 + 3.405613098819039 0.448357470275877 3.800000000000000 + 3.504757584956419 0.461410089497882 3.800000000000000 + 3.603902071093801 0.474462708719887 3.800000000000000 + 3.703046557231182 0.487515327941893 3.800000000000000 + 3.802191043368563 0.500567947163898 3.800000000000000 + 3.901335529505944 0.513620566385903 3.800000000000000 + 4.000480015643325 0.526673185607908 3.800000000000000 + 4.099624501780707 0.539725804829913 3.800000000000000 + 4.198768987918087 0.552778424051918 3.800000000000000 + 4.297913474055468 0.565831043273924 3.800000000000000 + 4.397057960192850 0.578883662495929 3.800000000000000 + 4.496202446330230 0.591936281717934 3.800000000000000 + 4.595346932467612 0.604988900939939 3.800000000000000 + 4.694491418604993 0.618041520161944 3.800000000000000 + 4.793635904742374 0.631094139383950 3.800000000000000 + 4.892780390879754 0.644146758605955 3.800000000000000 + 4.991924877017135 0.657199377827960 3.800000000000000 + 5.091069363154517 0.670251997049965 3.800000000000000 + 0.130399986549024 0.034940571088840 3.800000000000000 + 0.226992569177931 0.060822475599092 3.800000000000000 + 0.323585151806838 0.086704380109344 3.800000000000000 + 0.420177734435745 0.112586284619597 3.800000000000000 + 0.516770317064652 0.138468189129849 3.800000000000000 + 0.613362899693559 0.164350093640101 3.800000000000000 + 0.709955482322465 0.190231998150353 3.800000000000000 + 0.806548064951372 0.216113902660605 3.800000000000000 + 0.903140647580279 0.241995807170857 3.800000000000000 + 0.999733230209186 0.267877711681109 3.800000000000000 + 1.096325812838093 0.293759616191361 3.800000000000000 + 1.192918395467000 0.319641520701613 3.800000000000000 + 1.289510978095906 0.345523425211865 3.800000000000000 + 1.386103560724813 0.371405329722117 3.800000000000000 + 1.482696143353720 0.397287234232369 3.800000000000000 + 1.579288725982627 0.423169138742621 3.800000000000000 + 1.675881308611534 0.449051043252873 3.800000000000000 + 1.772473891240440 0.474932947763126 3.800000000000000 + 1.869066473869347 0.500814852273378 3.800000000000000 + 1.965659056498254 0.526696756783630 3.800000000000000 + 2.062251639127161 0.552578661293882 3.800000000000000 + 2.158844221756068 0.578460565804134 3.800000000000000 + 2.255436804384975 0.604342470314386 3.800000000000000 + 2.352029387013882 0.630224374824638 3.800000000000000 + 2.448621969642788 0.656106279334890 3.800000000000000 + 2.545214552271695 0.681988183845142 3.800000000000000 + 2.641807134900602 0.707870088355394 3.800000000000000 + 2.738399717529509 0.733751992865646 3.800000000000000 + 2.834992300158416 0.759633897375898 3.800000000000000 + 2.931584882787322 0.785515801886150 3.800000000000000 + 3.028177465416229 0.811397706396403 3.800000000000000 + 3.124770048045136 0.837279610906655 3.800000000000000 + 3.221362630674043 0.863161515416907 3.800000000000000 + 3.317955213302950 0.889043419927159 3.800000000000000 + 3.414547795931857 0.914925324437411 3.800000000000000 + 3.511140378560763 0.940807228947663 3.800000000000000 + 3.607732961189670 0.966689133457915 3.800000000000000 + 3.704325543818577 0.992571037968167 3.800000000000000 + 3.800918126447484 1.018452942478419 3.800000000000000 + 3.897510709076391 1.044334846988671 3.800000000000000 + 3.994103291705299 1.070216751498923 3.800000000000000 + 4.090695874334204 1.096098656009175 3.800000000000000 + 4.187288456963111 1.121980560519428 3.800000000000000 + 4.283881039592019 1.147862465029680 3.800000000000000 + 4.380473622220926 1.173744369539932 3.800000000000000 + 4.477066204849833 1.199626274050184 3.800000000000000 + 4.573658787478739 1.225508178560436 3.800000000000000 + 4.670251370107646 1.251390083070688 3.800000000000000 + 4.766843952736553 1.277271987580940 3.800000000000000 + 4.863436535365460 1.303153892091192 3.800000000000000 + 4.960029117994367 1.329035796601444 3.800000000000000 + 0.135000000000000 0.000000000000000 3.900000000000000 + 0.235000000000000 0.000000000000000 3.900000000000000 + 0.335000000000000 0.000000000000000 3.900000000000000 + 0.435000000000000 0.000000000000000 3.900000000000000 + 0.535000000000000 0.000000000000000 3.900000000000000 + 0.635000000000000 0.000000000000000 3.900000000000000 + 0.735000000000000 0.000000000000000 3.900000000000000 + 0.835000000000000 0.000000000000000 3.900000000000000 + 0.935000000000000 0.000000000000000 3.900000000000000 + 1.035000000000000 0.000000000000000 3.900000000000000 + 1.135000000000000 0.000000000000000 3.900000000000000 + 1.235000000000000 0.000000000000000 3.900000000000000 + 1.335000000000000 0.000000000000000 3.900000000000000 + 1.435000000000000 0.000000000000000 3.900000000000000 + 1.535000000000000 0.000000000000000 3.900000000000000 + 1.635000000000000 0.000000000000000 3.900000000000000 + 1.735000000000000 0.000000000000000 3.900000000000000 + 1.835000000000000 0.000000000000000 3.900000000000000 + 1.935000000000000 0.000000000000000 3.900000000000000 + 2.035000000000000 0.000000000000000 3.900000000000000 + 2.135000000000000 0.000000000000000 3.900000000000000 + 2.235000000000000 0.000000000000000 3.900000000000000 + 2.335000000000000 0.000000000000000 3.900000000000000 + 2.435000000000000 0.000000000000000 3.900000000000000 + 2.535000000000000 0.000000000000000 3.900000000000000 + 2.635000000000000 0.000000000000000 3.900000000000000 + 2.735000000000000 0.000000000000000 3.900000000000000 + 2.835000000000000 0.000000000000000 3.900000000000000 + 2.935000000000000 0.000000000000000 3.900000000000000 + 3.035000000000000 0.000000000000000 3.900000000000000 + 3.135000000000000 0.000000000000000 3.900000000000000 + 3.235000000000000 0.000000000000000 3.900000000000000 + 3.335000000000000 0.000000000000000 3.900000000000000 + 3.435000000000000 0.000000000000000 3.900000000000000 + 3.535000000000000 0.000000000000000 3.900000000000000 + 3.635000000000000 0.000000000000000 3.900000000000000 + 3.735000000000000 0.000000000000000 3.900000000000000 + 3.835000000000000 0.000000000000000 3.900000000000000 + 3.935000000000000 0.000000000000000 3.900000000000000 + 4.035000000000000 0.000000000000000 3.900000000000000 + 4.135000000000001 0.000000000000000 3.900000000000000 + 4.235000000000000 0.000000000000000 3.900000000000000 + 4.335000000000000 0.000000000000000 3.900000000000000 + 4.435000000000000 0.000000000000000 3.900000000000000 + 4.535000000000000 0.000000000000000 3.900000000000000 + 4.635000000000001 0.000000000000000 3.900000000000000 + 4.735000000000000 0.000000000000000 3.900000000000000 + 4.835000000000001 0.000000000000000 3.900000000000000 + 4.935000000000000 0.000000000000000 3.900000000000000 + 5.035000000000000 0.000000000000000 3.900000000000000 + 5.135000000000001 0.000000000000000 3.900000000000000 + 0.133845056285464 0.017621035949707 3.900000000000000 + 0.232989542422845 0.030673655171712 3.900000000000000 + 0.332134028560227 0.043726274393717 3.900000000000000 + 0.431278514697608 0.056778893615722 3.900000000000000 + 0.530423000834989 0.069831512837728 3.900000000000000 + 0.629567486972370 0.082884132059733 3.900000000000000 + 0.728711973109751 0.095936751281738 3.900000000000000 + 0.827856459247132 0.108989370503743 3.900000000000000 + 0.927000945384513 0.122041989725748 3.900000000000000 + 1.026145431521894 0.135094608947753 3.900000000000000 + 1.125289917659275 0.148147228169759 3.900000000000000 + 1.224434403796656 0.161199847391764 3.900000000000000 + 1.323578889934037 0.174252466613769 3.900000000000000 + 1.422723376071418 0.187305085835774 3.900000000000000 + 1.521867862208799 0.200357705057779 3.900000000000000 + 1.621012348346180 0.213410324279784 3.900000000000000 + 1.720156834483561 0.226462943501789 3.900000000000000 + 1.819301320620942 0.239515562723795 3.900000000000000 + 1.918445806758323 0.252568181945800 3.900000000000000 + 2.017590292895704 0.265620801167805 3.900000000000000 + 2.116734779033085 0.278673420389810 3.900000000000000 + 2.215879265170466 0.291726039611815 3.900000000000000 + 2.315023751307847 0.304778658833820 3.900000000000000 + 2.414168237445228 0.317831278055826 3.900000000000000 + 2.513312723582609 0.330883897277831 3.900000000000000 + 2.612457209719990 0.343936516499836 3.900000000000000 + 2.711601695857371 0.356989135721841 3.900000000000000 + 2.810746181994753 0.370041754943846 3.900000000000000 + 2.909890668132133 0.383094374165851 3.900000000000000 + 3.009035154269514 0.396146993387857 3.900000000000000 + 3.108179640406895 0.409199612609862 3.900000000000000 + 3.207324126544277 0.422252231831867 3.900000000000000 + 3.306468612681658 0.435304851053872 3.900000000000000 + 3.405613098819039 0.448357470275877 3.900000000000000 + 3.504757584956419 0.461410089497882 3.900000000000000 + 3.603902071093801 0.474462708719887 3.900000000000000 + 3.703046557231182 0.487515327941893 3.900000000000000 + 3.802191043368563 0.500567947163898 3.900000000000000 + 3.901335529505944 0.513620566385903 3.900000000000000 + 4.000480015643325 0.526673185607908 3.900000000000000 + 4.099624501780707 0.539725804829913 3.900000000000000 + 4.198768987918087 0.552778424051918 3.900000000000000 + 4.297913474055468 0.565831043273924 3.900000000000000 + 4.397057960192850 0.578883662495929 3.900000000000000 + 4.496202446330230 0.591936281717934 3.900000000000000 + 4.595346932467612 0.604988900939939 3.900000000000000 + 4.694491418604993 0.618041520161944 3.900000000000000 + 4.793635904742374 0.631094139383950 3.900000000000000 + 4.892780390879754 0.644146758605955 3.900000000000000 + 4.991924877017135 0.657199377827960 3.900000000000000 + 5.091069363154517 0.670251997049965 3.900000000000000 + 0.130399986549024 0.034940571088840 3.900000000000000 + 0.226992569177931 0.060822475599092 3.900000000000000 + 0.323585151806838 0.086704380109344 3.900000000000000 + 0.420177734435745 0.112586284619597 3.900000000000000 + 0.516770317064652 0.138468189129849 3.900000000000000 + 0.613362899693559 0.164350093640101 3.900000000000000 + 0.709955482322465 0.190231998150353 3.900000000000000 + 0.806548064951372 0.216113902660605 3.900000000000000 + 0.903140647580279 0.241995807170857 3.900000000000000 + 0.999733230209186 0.267877711681109 3.900000000000000 + 1.096325812838093 0.293759616191361 3.900000000000000 + 1.192918395467000 0.319641520701613 3.900000000000000 + 1.289510978095906 0.345523425211865 3.900000000000000 + 1.386103560724813 0.371405329722117 3.900000000000000 + 1.482696143353720 0.397287234232369 3.900000000000000 + 1.579288725982627 0.423169138742621 3.900000000000000 + 1.675881308611534 0.449051043252873 3.900000000000000 + 1.772473891240440 0.474932947763126 3.900000000000000 + 1.869066473869347 0.500814852273378 3.900000000000000 + 1.965659056498254 0.526696756783630 3.900000000000000 + 2.062251639127161 0.552578661293882 3.900000000000000 + 2.158844221756068 0.578460565804134 3.900000000000000 + 2.255436804384975 0.604342470314386 3.900000000000000 + 2.352029387013882 0.630224374824638 3.900000000000000 + 2.448621969642788 0.656106279334890 3.900000000000000 + 2.545214552271695 0.681988183845142 3.900000000000000 + 2.641807134900602 0.707870088355394 3.900000000000000 + 2.738399717529509 0.733751992865646 3.900000000000000 + 2.834992300158416 0.759633897375898 3.900000000000000 + 2.931584882787322 0.785515801886150 3.900000000000000 + 3.028177465416229 0.811397706396403 3.900000000000000 + 3.124770048045136 0.837279610906655 3.900000000000000 + 3.221362630674043 0.863161515416907 3.900000000000000 + 3.317955213302950 0.889043419927159 3.900000000000000 + 3.414547795931857 0.914925324437411 3.900000000000000 + 3.511140378560763 0.940807228947663 3.900000000000000 + 3.607732961189670 0.966689133457915 3.900000000000000 + 3.704325543818577 0.992571037968167 3.900000000000000 + 3.800918126447484 1.018452942478419 3.900000000000000 + 3.897510709076391 1.044334846988671 3.900000000000000 + 3.994103291705299 1.070216751498923 3.900000000000000 + 4.090695874334204 1.096098656009175 3.900000000000000 + 4.187288456963111 1.121980560519428 3.900000000000000 + 4.283881039592019 1.147862465029680 3.900000000000000 + 4.380473622220926 1.173744369539932 3.900000000000000 + 4.477066204849833 1.199626274050184 3.900000000000000 + 4.573658787478739 1.225508178560436 3.900000000000000 + 4.670251370107646 1.251390083070688 3.900000000000000 + 4.766843952736553 1.277271987580940 3.900000000000000 + 4.863436535365460 1.303153892091192 3.900000000000000 + 4.960029117994367 1.329035796601444 3.900000000000000 + 0.135000000000000 0.000000000000000 4.000000000000000 + 0.235000000000000 0.000000000000000 4.000000000000000 + 0.335000000000000 0.000000000000000 4.000000000000000 + 0.435000000000000 0.000000000000000 4.000000000000000 + 0.535000000000000 0.000000000000000 4.000000000000000 + 0.635000000000000 0.000000000000000 4.000000000000000 + 0.735000000000000 0.000000000000000 4.000000000000000 + 0.835000000000000 0.000000000000000 4.000000000000000 + 0.935000000000000 0.000000000000000 4.000000000000000 + 1.035000000000000 0.000000000000000 4.000000000000000 + 1.135000000000000 0.000000000000000 4.000000000000000 + 1.235000000000000 0.000000000000000 4.000000000000000 + 1.335000000000000 0.000000000000000 4.000000000000000 + 1.435000000000000 0.000000000000000 4.000000000000000 + 1.535000000000000 0.000000000000000 4.000000000000000 + 1.635000000000000 0.000000000000000 4.000000000000000 + 1.735000000000000 0.000000000000000 4.000000000000000 + 1.835000000000000 0.000000000000000 4.000000000000000 + 1.935000000000000 0.000000000000000 4.000000000000000 + 2.035000000000000 0.000000000000000 4.000000000000000 + 2.135000000000000 0.000000000000000 4.000000000000000 + 2.235000000000000 0.000000000000000 4.000000000000000 + 2.335000000000000 0.000000000000000 4.000000000000000 + 2.435000000000000 0.000000000000000 4.000000000000000 + 2.535000000000000 0.000000000000000 4.000000000000000 + 2.635000000000000 0.000000000000000 4.000000000000000 + 2.735000000000000 0.000000000000000 4.000000000000000 + 2.835000000000000 0.000000000000000 4.000000000000000 + 2.935000000000000 0.000000000000000 4.000000000000000 + 3.035000000000000 0.000000000000000 4.000000000000000 + 3.135000000000000 0.000000000000000 4.000000000000000 + 3.235000000000000 0.000000000000000 4.000000000000000 + 3.335000000000000 0.000000000000000 4.000000000000000 + 3.435000000000000 0.000000000000000 4.000000000000000 + 3.535000000000000 0.000000000000000 4.000000000000000 + 3.635000000000000 0.000000000000000 4.000000000000000 + 3.735000000000000 0.000000000000000 4.000000000000000 + 3.835000000000000 0.000000000000000 4.000000000000000 + 3.935000000000000 0.000000000000000 4.000000000000000 + 4.035000000000000 0.000000000000000 4.000000000000000 + 4.135000000000001 0.000000000000000 4.000000000000000 + 4.235000000000000 0.000000000000000 4.000000000000000 + 4.335000000000000 0.000000000000000 4.000000000000000 + 4.435000000000000 0.000000000000000 4.000000000000000 + 4.535000000000000 0.000000000000000 4.000000000000000 + 4.635000000000001 0.000000000000000 4.000000000000000 + 4.735000000000000 0.000000000000000 4.000000000000000 + 4.835000000000001 0.000000000000000 4.000000000000000 + 4.935000000000000 0.000000000000000 4.000000000000000 + 5.035000000000000 0.000000000000000 4.000000000000000 + 5.135000000000001 0.000000000000000 4.000000000000000 + 0.133845056285464 0.017621035949707 4.000000000000000 + 0.232989542422845 0.030673655171712 4.000000000000000 + 0.332134028560227 0.043726274393717 4.000000000000000 + 0.431278514697608 0.056778893615722 4.000000000000000 + 0.530423000834989 0.069831512837728 4.000000000000000 + 0.629567486972370 0.082884132059733 4.000000000000000 + 0.728711973109751 0.095936751281738 4.000000000000000 + 0.827856459247132 0.108989370503743 4.000000000000000 + 0.927000945384513 0.122041989725748 4.000000000000000 + 1.026145431521894 0.135094608947753 4.000000000000000 + 1.125289917659275 0.148147228169759 4.000000000000000 + 1.224434403796656 0.161199847391764 4.000000000000000 + 1.323578889934037 0.174252466613769 4.000000000000000 + 1.422723376071418 0.187305085835774 4.000000000000000 + 1.521867862208799 0.200357705057779 4.000000000000000 + 1.621012348346180 0.213410324279784 4.000000000000000 + 1.720156834483561 0.226462943501789 4.000000000000000 + 1.819301320620942 0.239515562723795 4.000000000000000 + 1.918445806758323 0.252568181945800 4.000000000000000 + 2.017590292895704 0.265620801167805 4.000000000000000 + 2.116734779033085 0.278673420389810 4.000000000000000 + 2.215879265170466 0.291726039611815 4.000000000000000 + 2.315023751307847 0.304778658833820 4.000000000000000 + 2.414168237445228 0.317831278055826 4.000000000000000 + 2.513312723582609 0.330883897277831 4.000000000000000 + 2.612457209719990 0.343936516499836 4.000000000000000 + 2.711601695857371 0.356989135721841 4.000000000000000 + 2.810746181994753 0.370041754943846 4.000000000000000 + 2.909890668132133 0.383094374165851 4.000000000000000 + 3.009035154269514 0.396146993387857 4.000000000000000 + 3.108179640406895 0.409199612609862 4.000000000000000 + 3.207324126544277 0.422252231831867 4.000000000000000 + 3.306468612681658 0.435304851053872 4.000000000000000 + 3.405613098819039 0.448357470275877 4.000000000000000 + 3.504757584956419 0.461410089497882 4.000000000000000 + 3.603902071093801 0.474462708719887 4.000000000000000 + 3.703046557231182 0.487515327941893 4.000000000000000 + 3.802191043368563 0.500567947163898 4.000000000000000 + 3.901335529505944 0.513620566385903 4.000000000000000 + 4.000480015643325 0.526673185607908 4.000000000000000 + 4.099624501780707 0.539725804829913 4.000000000000000 + 4.198768987918087 0.552778424051918 4.000000000000000 + 4.297913474055468 0.565831043273924 4.000000000000000 + 4.397057960192850 0.578883662495929 4.000000000000000 + 4.496202446330230 0.591936281717934 4.000000000000000 + 4.595346932467612 0.604988900939939 4.000000000000000 + 4.694491418604993 0.618041520161944 4.000000000000000 + 4.793635904742374 0.631094139383950 4.000000000000000 + 4.892780390879754 0.644146758605955 4.000000000000000 + 4.991924877017135 0.657199377827960 4.000000000000000 + 5.091069363154517 0.670251997049965 4.000000000000000 + 0.130399986549024 0.034940571088840 4.000000000000000 + 0.226992569177931 0.060822475599092 4.000000000000000 + 0.323585151806838 0.086704380109344 4.000000000000000 + 0.420177734435745 0.112586284619597 4.000000000000000 + 0.516770317064652 0.138468189129849 4.000000000000000 + 0.613362899693559 0.164350093640101 4.000000000000000 + 0.709955482322465 0.190231998150353 4.000000000000000 + 0.806548064951372 0.216113902660605 4.000000000000000 + 0.903140647580279 0.241995807170857 4.000000000000000 + 0.999733230209186 0.267877711681109 4.000000000000000 + 1.096325812838093 0.293759616191361 4.000000000000000 + 1.192918395467000 0.319641520701613 4.000000000000000 + 1.289510978095906 0.345523425211865 4.000000000000000 + 1.386103560724813 0.371405329722117 4.000000000000000 + 1.482696143353720 0.397287234232369 4.000000000000000 + 1.579288725982627 0.423169138742621 4.000000000000000 + 1.675881308611534 0.449051043252873 4.000000000000000 + 1.772473891240440 0.474932947763126 4.000000000000000 + 1.869066473869347 0.500814852273378 4.000000000000000 + 1.965659056498254 0.526696756783630 4.000000000000000 + 2.062251639127161 0.552578661293882 4.000000000000000 + 2.158844221756068 0.578460565804134 4.000000000000000 + 2.255436804384975 0.604342470314386 4.000000000000000 + 2.352029387013882 0.630224374824638 4.000000000000000 + 2.448621969642788 0.656106279334890 4.000000000000000 + 2.545214552271695 0.681988183845142 4.000000000000000 + 2.641807134900602 0.707870088355394 4.000000000000000 + 2.738399717529509 0.733751992865646 4.000000000000000 + 2.834992300158416 0.759633897375898 4.000000000000000 + 2.931584882787322 0.785515801886150 4.000000000000000 + 3.028177465416229 0.811397706396403 4.000000000000000 + 3.124770048045136 0.837279610906655 4.000000000000000 + 3.221362630674043 0.863161515416907 4.000000000000000 + 3.317955213302950 0.889043419927159 4.000000000000000 + 3.414547795931857 0.914925324437411 4.000000000000000 + 3.511140378560763 0.940807228947663 4.000000000000000 + 3.607732961189670 0.966689133457915 4.000000000000000 + 3.704325543818577 0.992571037968167 4.000000000000000 + 3.800918126447484 1.018452942478419 4.000000000000000 + 3.897510709076391 1.044334846988671 4.000000000000000 + 3.994103291705299 1.070216751498923 4.000000000000000 + 4.090695874334204 1.096098656009175 4.000000000000000 + 4.187288456963111 1.121980560519428 4.000000000000000 + 4.283881039592019 1.147862465029680 4.000000000000000 + 4.380473622220926 1.173744369539932 4.000000000000000 + 4.477066204849833 1.199626274050184 4.000000000000000 + 4.573658787478739 1.225508178560436 4.000000000000000 + 4.670251370107646 1.251390083070688 4.000000000000000 + 4.766843952736553 1.277271987580940 4.000000000000000 + 4.863436535365460 1.303153892091192 4.000000000000000 + 4.960029117994367 1.329035796601444 4.000000000000000 + 0.135000000000000 0.000000000000000 4.100000000000000 + 0.235000000000000 0.000000000000000 4.100000000000000 + 0.335000000000000 0.000000000000000 4.100000000000000 + 0.435000000000000 0.000000000000000 4.100000000000000 + 0.535000000000000 0.000000000000000 4.100000000000000 + 0.635000000000000 0.000000000000000 4.100000000000000 + 0.735000000000000 0.000000000000000 4.100000000000000 + 0.835000000000000 0.000000000000000 4.100000000000000 + 0.935000000000000 0.000000000000000 4.100000000000000 + 1.035000000000000 0.000000000000000 4.100000000000000 + 1.135000000000000 0.000000000000000 4.100000000000000 + 1.235000000000000 0.000000000000000 4.100000000000000 + 1.335000000000000 0.000000000000000 4.100000000000000 + 1.435000000000000 0.000000000000000 4.100000000000000 + 1.535000000000000 0.000000000000000 4.100000000000000 + 1.635000000000000 0.000000000000000 4.100000000000000 + 1.735000000000000 0.000000000000000 4.100000000000000 + 1.835000000000000 0.000000000000000 4.100000000000000 + 1.935000000000000 0.000000000000000 4.100000000000000 + 2.035000000000000 0.000000000000000 4.100000000000000 + 2.135000000000000 0.000000000000000 4.100000000000000 + 2.235000000000000 0.000000000000000 4.100000000000000 + 2.335000000000000 0.000000000000000 4.100000000000000 + 2.435000000000000 0.000000000000000 4.100000000000000 + 2.535000000000000 0.000000000000000 4.100000000000000 + 2.635000000000000 0.000000000000000 4.100000000000000 + 2.735000000000000 0.000000000000000 4.100000000000000 + 2.835000000000000 0.000000000000000 4.100000000000000 + 2.935000000000000 0.000000000000000 4.100000000000000 + 3.035000000000000 0.000000000000000 4.100000000000000 + 3.135000000000000 0.000000000000000 4.100000000000000 + 3.235000000000000 0.000000000000000 4.100000000000000 + 3.335000000000000 0.000000000000000 4.100000000000000 + 3.435000000000000 0.000000000000000 4.100000000000000 + 3.535000000000000 0.000000000000000 4.100000000000000 + 3.635000000000000 0.000000000000000 4.100000000000000 + 3.735000000000000 0.000000000000000 4.100000000000000 + 3.835000000000000 0.000000000000000 4.100000000000000 + 3.935000000000000 0.000000000000000 4.100000000000000 + 4.035000000000000 0.000000000000000 4.100000000000000 + 4.135000000000001 0.000000000000000 4.100000000000000 + 4.235000000000000 0.000000000000000 4.100000000000000 + 4.335000000000000 0.000000000000000 4.100000000000000 + 4.435000000000000 0.000000000000000 4.100000000000000 + 4.535000000000000 0.000000000000000 4.100000000000000 + 4.635000000000001 0.000000000000000 4.100000000000000 + 4.735000000000000 0.000000000000000 4.100000000000000 + 4.835000000000001 0.000000000000000 4.100000000000000 + 4.935000000000000 0.000000000000000 4.100000000000000 + 5.035000000000000 0.000000000000000 4.100000000000000 + 5.135000000000001 0.000000000000000 4.100000000000000 + 0.133845056285464 0.017621035949707 4.100000000000000 + 0.232989542422845 0.030673655171712 4.100000000000000 + 0.332134028560227 0.043726274393717 4.100000000000000 + 0.431278514697608 0.056778893615722 4.100000000000000 + 0.530423000834989 0.069831512837728 4.100000000000000 + 0.629567486972370 0.082884132059733 4.100000000000000 + 0.728711973109751 0.095936751281738 4.100000000000000 + 0.827856459247132 0.108989370503743 4.100000000000000 + 0.927000945384513 0.122041989725748 4.100000000000000 + 1.026145431521894 0.135094608947753 4.100000000000000 + 1.125289917659275 0.148147228169759 4.100000000000000 + 1.224434403796656 0.161199847391764 4.100000000000000 + 1.323578889934037 0.174252466613769 4.100000000000000 + 1.422723376071418 0.187305085835774 4.100000000000000 + 1.521867862208799 0.200357705057779 4.100000000000000 + 1.621012348346180 0.213410324279784 4.100000000000000 + 1.720156834483561 0.226462943501789 4.100000000000000 + 1.819301320620942 0.239515562723795 4.100000000000000 + 1.918445806758323 0.252568181945800 4.100000000000000 + 2.017590292895704 0.265620801167805 4.100000000000000 + 2.116734779033085 0.278673420389810 4.100000000000000 + 2.215879265170466 0.291726039611815 4.100000000000000 + 2.315023751307847 0.304778658833820 4.100000000000000 + 2.414168237445228 0.317831278055826 4.100000000000000 + 2.513312723582609 0.330883897277831 4.100000000000000 + 2.612457209719990 0.343936516499836 4.100000000000000 + 2.711601695857371 0.356989135721841 4.100000000000000 + 2.810746181994753 0.370041754943846 4.100000000000000 + 2.909890668132133 0.383094374165851 4.100000000000000 + 3.009035154269514 0.396146993387857 4.100000000000000 + 3.108179640406895 0.409199612609862 4.100000000000000 + 3.207324126544277 0.422252231831867 4.100000000000000 + 3.306468612681658 0.435304851053872 4.100000000000000 + 3.405613098819039 0.448357470275877 4.100000000000000 + 3.504757584956419 0.461410089497882 4.100000000000000 + 3.603902071093801 0.474462708719887 4.100000000000000 + 3.703046557231182 0.487515327941893 4.100000000000000 + 3.802191043368563 0.500567947163898 4.100000000000000 + 3.901335529505944 0.513620566385903 4.100000000000000 + 4.000480015643325 0.526673185607908 4.100000000000000 + 4.099624501780707 0.539725804829913 4.100000000000000 + 4.198768987918087 0.552778424051918 4.100000000000000 + 4.297913474055468 0.565831043273924 4.100000000000000 + 4.397057960192850 0.578883662495929 4.100000000000000 + 4.496202446330230 0.591936281717934 4.100000000000000 + 4.595346932467612 0.604988900939939 4.100000000000000 + 4.694491418604993 0.618041520161944 4.100000000000000 + 4.793635904742374 0.631094139383950 4.100000000000000 + 4.892780390879754 0.644146758605955 4.100000000000000 + 4.991924877017135 0.657199377827960 4.100000000000000 + 5.091069363154517 0.670251997049965 4.100000000000000 + 0.130399986549024 0.034940571088840 4.100000000000000 + 0.226992569177931 0.060822475599092 4.100000000000000 + 0.323585151806838 0.086704380109344 4.100000000000000 + 0.420177734435745 0.112586284619597 4.100000000000000 + 0.516770317064652 0.138468189129849 4.100000000000000 + 0.613362899693559 0.164350093640101 4.100000000000000 + 0.709955482322465 0.190231998150353 4.100000000000000 + 0.806548064951372 0.216113902660605 4.100000000000000 + 0.903140647580279 0.241995807170857 4.100000000000000 + 0.999733230209186 0.267877711681109 4.100000000000000 + 1.096325812838093 0.293759616191361 4.100000000000000 + 1.192918395467000 0.319641520701613 4.100000000000000 + 1.289510978095906 0.345523425211865 4.100000000000000 + 1.386103560724813 0.371405329722117 4.100000000000000 + 1.482696143353720 0.397287234232369 4.100000000000000 + 1.579288725982627 0.423169138742621 4.100000000000000 + 1.675881308611534 0.449051043252873 4.100000000000000 + 1.772473891240440 0.474932947763126 4.100000000000000 + 1.869066473869347 0.500814852273378 4.100000000000000 + 1.965659056498254 0.526696756783630 4.100000000000000 + 2.062251639127161 0.552578661293882 4.100000000000000 + 2.158844221756068 0.578460565804134 4.100000000000000 + 2.255436804384975 0.604342470314386 4.100000000000000 + 2.352029387013882 0.630224374824638 4.100000000000000 + 2.448621969642788 0.656106279334890 4.100000000000000 + 2.545214552271695 0.681988183845142 4.100000000000000 + 2.641807134900602 0.707870088355394 4.100000000000000 + 2.738399717529509 0.733751992865646 4.100000000000000 + 2.834992300158416 0.759633897375898 4.100000000000000 + 2.931584882787322 0.785515801886150 4.100000000000000 + 3.028177465416229 0.811397706396403 4.100000000000000 + 3.124770048045136 0.837279610906655 4.100000000000000 + 3.221362630674043 0.863161515416907 4.100000000000000 + 3.317955213302950 0.889043419927159 4.100000000000000 + 3.414547795931857 0.914925324437411 4.100000000000000 + 3.511140378560763 0.940807228947663 4.100000000000000 + 3.607732961189670 0.966689133457915 4.100000000000000 + 3.704325543818577 0.992571037968167 4.100000000000000 + 3.800918126447484 1.018452942478419 4.100000000000000 + 3.897510709076391 1.044334846988671 4.100000000000000 + 3.994103291705299 1.070216751498923 4.100000000000000 + 4.090695874334204 1.096098656009175 4.100000000000000 + 4.187288456963111 1.121980560519428 4.100000000000000 + 4.283881039592019 1.147862465029680 4.100000000000000 + 4.380473622220926 1.173744369539932 4.100000000000000 + 4.477066204849833 1.199626274050184 4.100000000000000 + 4.573658787478739 1.225508178560436 4.100000000000000 + 4.670251370107646 1.251390083070688 4.100000000000000 + 4.766843952736553 1.277271987580940 4.100000000000000 + 4.863436535365460 1.303153892091192 4.100000000000000 + 4.960029117994367 1.329035796601444 4.100000000000000 + 0.135000000000000 0.000000000000000 4.199999999999999 + 0.235000000000000 0.000000000000000 4.199999999999999 + 0.335000000000000 0.000000000000000 4.199999999999999 + 0.435000000000000 0.000000000000000 4.199999999999999 + 0.535000000000000 0.000000000000000 4.199999999999999 + 0.635000000000000 0.000000000000000 4.199999999999999 + 0.735000000000000 0.000000000000000 4.199999999999999 + 0.835000000000000 0.000000000000000 4.199999999999999 + 0.935000000000000 0.000000000000000 4.199999999999999 + 1.035000000000000 0.000000000000000 4.199999999999999 + 1.135000000000000 0.000000000000000 4.199999999999999 + 1.235000000000000 0.000000000000000 4.199999999999999 + 1.335000000000000 0.000000000000000 4.199999999999999 + 1.435000000000000 0.000000000000000 4.199999999999999 + 1.535000000000000 0.000000000000000 4.199999999999999 + 1.635000000000000 0.000000000000000 4.199999999999999 + 1.735000000000000 0.000000000000000 4.199999999999999 + 1.835000000000000 0.000000000000000 4.199999999999999 + 1.935000000000000 0.000000000000000 4.199999999999999 + 2.035000000000000 0.000000000000000 4.199999999999999 + 2.135000000000000 0.000000000000000 4.199999999999999 + 2.235000000000000 0.000000000000000 4.199999999999999 + 2.335000000000000 0.000000000000000 4.199999999999999 + 2.435000000000000 0.000000000000000 4.199999999999999 + 2.535000000000000 0.000000000000000 4.199999999999999 + 2.635000000000000 0.000000000000000 4.199999999999999 + 2.735000000000000 0.000000000000000 4.199999999999999 + 2.835000000000000 0.000000000000000 4.199999999999999 + 2.935000000000000 0.000000000000000 4.199999999999999 + 3.035000000000000 0.000000000000000 4.199999999999999 + 3.135000000000000 0.000000000000000 4.199999999999999 + 3.235000000000000 0.000000000000000 4.199999999999999 + 3.335000000000000 0.000000000000000 4.199999999999999 + 3.435000000000000 0.000000000000000 4.199999999999999 + 3.535000000000000 0.000000000000000 4.199999999999999 + 3.635000000000000 0.000000000000000 4.199999999999999 + 3.735000000000000 0.000000000000000 4.199999999999999 + 3.835000000000000 0.000000000000000 4.199999999999999 + 3.935000000000000 0.000000000000000 4.199999999999999 + 4.035000000000000 0.000000000000000 4.199999999999999 + 4.135000000000001 0.000000000000000 4.199999999999999 + 4.235000000000000 0.000000000000000 4.199999999999999 + 4.335000000000000 0.000000000000000 4.199999999999999 + 4.435000000000000 0.000000000000000 4.199999999999999 + 4.535000000000000 0.000000000000000 4.199999999999999 + 4.635000000000001 0.000000000000000 4.199999999999999 + 4.735000000000000 0.000000000000000 4.199999999999999 + 4.835000000000001 0.000000000000000 4.199999999999999 + 4.935000000000000 0.000000000000000 4.199999999999999 + 5.035000000000000 0.000000000000000 4.199999999999999 + 5.135000000000001 0.000000000000000 4.199999999999999 + 0.133845056285464 0.017621035949707 4.199999999999999 + 0.232989542422845 0.030673655171712 4.199999999999999 + 0.332134028560227 0.043726274393717 4.199999999999999 + 0.431278514697608 0.056778893615722 4.199999999999999 + 0.530423000834989 0.069831512837728 4.199999999999999 + 0.629567486972370 0.082884132059733 4.199999999999999 + 0.728711973109751 0.095936751281738 4.199999999999999 + 0.827856459247132 0.108989370503743 4.199999999999999 + 0.927000945384513 0.122041989725748 4.199999999999999 + 1.026145431521894 0.135094608947753 4.199999999999999 + 1.125289917659275 0.148147228169759 4.199999999999999 + 1.224434403796656 0.161199847391764 4.199999999999999 + 1.323578889934037 0.174252466613769 4.199999999999999 + 1.422723376071418 0.187305085835774 4.199999999999999 + 1.521867862208799 0.200357705057779 4.199999999999999 + 1.621012348346180 0.213410324279784 4.199999999999999 + 1.720156834483561 0.226462943501789 4.199999999999999 + 1.819301320620942 0.239515562723795 4.199999999999999 + 1.918445806758323 0.252568181945800 4.199999999999999 + 2.017590292895704 0.265620801167805 4.199999999999999 + 2.116734779033085 0.278673420389810 4.199999999999999 + 2.215879265170466 0.291726039611815 4.199999999999999 + 2.315023751307847 0.304778658833820 4.199999999999999 + 2.414168237445228 0.317831278055826 4.199999999999999 + 2.513312723582609 0.330883897277831 4.199999999999999 + 2.612457209719990 0.343936516499836 4.199999999999999 + 2.711601695857371 0.356989135721841 4.199999999999999 + 2.810746181994753 0.370041754943846 4.199999999999999 + 2.909890668132133 0.383094374165851 4.199999999999999 + 3.009035154269514 0.396146993387857 4.199999999999999 + 3.108179640406895 0.409199612609862 4.199999999999999 + 3.207324126544277 0.422252231831867 4.199999999999999 + 3.306468612681658 0.435304851053872 4.199999999999999 + 3.405613098819039 0.448357470275877 4.199999999999999 + 3.504757584956419 0.461410089497882 4.199999999999999 + 3.603902071093801 0.474462708719887 4.199999999999999 + 3.703046557231182 0.487515327941893 4.199999999999999 + 3.802191043368563 0.500567947163898 4.199999999999999 + 3.901335529505944 0.513620566385903 4.199999999999999 + 4.000480015643325 0.526673185607908 4.199999999999999 + 4.099624501780707 0.539725804829913 4.199999999999999 + 4.198768987918087 0.552778424051918 4.199999999999999 + 4.297913474055468 0.565831043273924 4.199999999999999 + 4.397057960192850 0.578883662495929 4.199999999999999 + 4.496202446330230 0.591936281717934 4.199999999999999 + 4.595346932467612 0.604988900939939 4.199999999999999 + 4.694491418604993 0.618041520161944 4.199999999999999 + 4.793635904742374 0.631094139383950 4.199999999999999 + 4.892780390879754 0.644146758605955 4.199999999999999 + 4.991924877017135 0.657199377827960 4.199999999999999 + 5.091069363154517 0.670251997049965 4.199999999999999 + 0.130399986549024 0.034940571088840 4.199999999999999 + 0.226992569177931 0.060822475599092 4.199999999999999 + 0.323585151806838 0.086704380109344 4.199999999999999 + 0.420177734435745 0.112586284619597 4.199999999999999 + 0.516770317064652 0.138468189129849 4.199999999999999 + 0.613362899693559 0.164350093640101 4.199999999999999 + 0.709955482322465 0.190231998150353 4.199999999999999 + 0.806548064951372 0.216113902660605 4.199999999999999 + 0.903140647580279 0.241995807170857 4.199999999999999 + 0.999733230209186 0.267877711681109 4.199999999999999 + 1.096325812838093 0.293759616191361 4.199999999999999 + 1.192918395467000 0.319641520701613 4.199999999999999 + 1.289510978095906 0.345523425211865 4.199999999999999 + 1.386103560724813 0.371405329722117 4.199999999999999 + 1.482696143353720 0.397287234232369 4.199999999999999 + 1.579288725982627 0.423169138742621 4.199999999999999 + 1.675881308611534 0.449051043252873 4.199999999999999 + 1.772473891240440 0.474932947763126 4.199999999999999 + 1.869066473869347 0.500814852273378 4.199999999999999 + 1.965659056498254 0.526696756783630 4.199999999999999 + 2.062251639127161 0.552578661293882 4.199999999999999 + 2.158844221756068 0.578460565804134 4.199999999999999 + 2.255436804384975 0.604342470314386 4.199999999999999 + 2.352029387013882 0.630224374824638 4.199999999999999 + 2.448621969642788 0.656106279334890 4.199999999999999 + 2.545214552271695 0.681988183845142 4.199999999999999 + 2.641807134900602 0.707870088355394 4.199999999999999 + 2.738399717529509 0.733751992865646 4.199999999999999 + 2.834992300158416 0.759633897375898 4.199999999999999 + 2.931584882787322 0.785515801886150 4.199999999999999 + 3.028177465416229 0.811397706396403 4.199999999999999 + 3.124770048045136 0.837279610906655 4.199999999999999 + 3.221362630674043 0.863161515416907 4.199999999999999 + 3.317955213302950 0.889043419927159 4.199999999999999 + 3.414547795931857 0.914925324437411 4.199999999999999 + 3.511140378560763 0.940807228947663 4.199999999999999 + 3.607732961189670 0.966689133457915 4.199999999999999 + 3.704325543818577 0.992571037968167 4.199999999999999 + 3.800918126447484 1.018452942478419 4.199999999999999 + 3.897510709076391 1.044334846988671 4.199999999999999 + 3.994103291705299 1.070216751498923 4.199999999999999 + 4.090695874334204 1.096098656009175 4.199999999999999 + 4.187288456963111 1.121980560519428 4.199999999999999 + 4.283881039592019 1.147862465029680 4.199999999999999 + 4.380473622220926 1.173744369539932 4.199999999999999 + 4.477066204849833 1.199626274050184 4.199999999999999 + 4.573658787478739 1.225508178560436 4.199999999999999 + 4.670251370107646 1.251390083070688 4.199999999999999 + 4.766843952736553 1.277271987580940 4.199999999999999 + 4.863436535365460 1.303153892091192 4.199999999999999 + 4.960029117994367 1.329035796601444 4.199999999999999 + 0.135000000000000 0.000000000000000 4.300000000000000 + 0.235000000000000 0.000000000000000 4.300000000000000 + 0.335000000000000 0.000000000000000 4.300000000000000 + 0.435000000000000 0.000000000000000 4.300000000000000 + 0.535000000000000 0.000000000000000 4.300000000000000 + 0.635000000000000 0.000000000000000 4.300000000000000 + 0.735000000000000 0.000000000000000 4.300000000000000 + 0.835000000000000 0.000000000000000 4.300000000000000 + 0.935000000000000 0.000000000000000 4.300000000000000 + 1.035000000000000 0.000000000000000 4.300000000000000 + 1.135000000000000 0.000000000000000 4.300000000000000 + 1.235000000000000 0.000000000000000 4.300000000000000 + 1.335000000000000 0.000000000000000 4.300000000000000 + 1.435000000000000 0.000000000000000 4.300000000000000 + 1.535000000000000 0.000000000000000 4.300000000000000 + 1.635000000000000 0.000000000000000 4.300000000000000 + 1.735000000000000 0.000000000000000 4.300000000000000 + 1.835000000000000 0.000000000000000 4.300000000000000 + 1.935000000000000 0.000000000000000 4.300000000000000 + 2.035000000000000 0.000000000000000 4.300000000000000 + 2.135000000000000 0.000000000000000 4.300000000000000 + 2.235000000000000 0.000000000000000 4.300000000000000 + 2.335000000000000 0.000000000000000 4.300000000000000 + 2.435000000000000 0.000000000000000 4.300000000000000 + 2.535000000000000 0.000000000000000 4.300000000000000 + 2.635000000000000 0.000000000000000 4.300000000000000 + 2.735000000000000 0.000000000000000 4.300000000000000 + 2.835000000000000 0.000000000000000 4.300000000000000 + 2.935000000000000 0.000000000000000 4.300000000000000 + 3.035000000000000 0.000000000000000 4.300000000000000 + 3.135000000000000 0.000000000000000 4.300000000000000 + 3.235000000000000 0.000000000000000 4.300000000000000 + 3.335000000000000 0.000000000000000 4.300000000000000 + 3.435000000000000 0.000000000000000 4.300000000000000 + 3.535000000000000 0.000000000000000 4.300000000000000 + 3.635000000000000 0.000000000000000 4.300000000000000 + 3.735000000000000 0.000000000000000 4.300000000000000 + 3.835000000000000 0.000000000000000 4.300000000000000 + 3.935000000000000 0.000000000000000 4.300000000000000 + 4.035000000000000 0.000000000000000 4.300000000000000 + 4.135000000000001 0.000000000000000 4.300000000000000 + 4.235000000000000 0.000000000000000 4.300000000000000 + 4.335000000000000 0.000000000000000 4.300000000000000 + 4.435000000000000 0.000000000000000 4.300000000000000 + 4.535000000000000 0.000000000000000 4.300000000000000 + 4.635000000000001 0.000000000000000 4.300000000000000 + 4.735000000000000 0.000000000000000 4.300000000000000 + 4.835000000000001 0.000000000000000 4.300000000000000 + 4.935000000000000 0.000000000000000 4.300000000000000 + 5.035000000000000 0.000000000000000 4.300000000000000 + 5.135000000000001 0.000000000000000 4.300000000000000 + 0.133845056285464 0.017621035949707 4.300000000000000 + 0.232989542422845 0.030673655171712 4.300000000000000 + 0.332134028560227 0.043726274393717 4.300000000000000 + 0.431278514697608 0.056778893615722 4.300000000000000 + 0.530423000834989 0.069831512837728 4.300000000000000 + 0.629567486972370 0.082884132059733 4.300000000000000 + 0.728711973109751 0.095936751281738 4.300000000000000 + 0.827856459247132 0.108989370503743 4.300000000000000 + 0.927000945384513 0.122041989725748 4.300000000000000 + 1.026145431521894 0.135094608947753 4.300000000000000 + 1.125289917659275 0.148147228169759 4.300000000000000 + 1.224434403796656 0.161199847391764 4.300000000000000 + 1.323578889934037 0.174252466613769 4.300000000000000 + 1.422723376071418 0.187305085835774 4.300000000000000 + 1.521867862208799 0.200357705057779 4.300000000000000 + 1.621012348346180 0.213410324279784 4.300000000000000 + 1.720156834483561 0.226462943501789 4.300000000000000 + 1.819301320620942 0.239515562723795 4.300000000000000 + 1.918445806758323 0.252568181945800 4.300000000000000 + 2.017590292895704 0.265620801167805 4.300000000000000 + 2.116734779033085 0.278673420389810 4.300000000000000 + 2.215879265170466 0.291726039611815 4.300000000000000 + 2.315023751307847 0.304778658833820 4.300000000000000 + 2.414168237445228 0.317831278055826 4.300000000000000 + 2.513312723582609 0.330883897277831 4.300000000000000 + 2.612457209719990 0.343936516499836 4.300000000000000 + 2.711601695857371 0.356989135721841 4.300000000000000 + 2.810746181994753 0.370041754943846 4.300000000000000 + 2.909890668132133 0.383094374165851 4.300000000000000 + 3.009035154269514 0.396146993387857 4.300000000000000 + 3.108179640406895 0.409199612609862 4.300000000000000 + 3.207324126544277 0.422252231831867 4.300000000000000 + 3.306468612681658 0.435304851053872 4.300000000000000 + 3.405613098819039 0.448357470275877 4.300000000000000 + 3.504757584956419 0.461410089497882 4.300000000000000 + 3.603902071093801 0.474462708719887 4.300000000000000 + 3.703046557231182 0.487515327941893 4.300000000000000 + 3.802191043368563 0.500567947163898 4.300000000000000 + 3.901335529505944 0.513620566385903 4.300000000000000 + 4.000480015643325 0.526673185607908 4.300000000000000 + 4.099624501780707 0.539725804829913 4.300000000000000 + 4.198768987918087 0.552778424051918 4.300000000000000 + 4.297913474055468 0.565831043273924 4.300000000000000 + 4.397057960192850 0.578883662495929 4.300000000000000 + 4.496202446330230 0.591936281717934 4.300000000000000 + 4.595346932467612 0.604988900939939 4.300000000000000 + 4.694491418604993 0.618041520161944 4.300000000000000 + 4.793635904742374 0.631094139383950 4.300000000000000 + 4.892780390879754 0.644146758605955 4.300000000000000 + 4.991924877017135 0.657199377827960 4.300000000000000 + 5.091069363154517 0.670251997049965 4.300000000000000 + 0.130399986549024 0.034940571088840 4.300000000000000 + 0.226992569177931 0.060822475599092 4.300000000000000 + 0.323585151806838 0.086704380109344 4.300000000000000 + 0.420177734435745 0.112586284619597 4.300000000000000 + 0.516770317064652 0.138468189129849 4.300000000000000 + 0.613362899693559 0.164350093640101 4.300000000000000 + 0.709955482322465 0.190231998150353 4.300000000000000 + 0.806548064951372 0.216113902660605 4.300000000000000 + 0.903140647580279 0.241995807170857 4.300000000000000 + 0.999733230209186 0.267877711681109 4.300000000000000 + 1.096325812838093 0.293759616191361 4.300000000000000 + 1.192918395467000 0.319641520701613 4.300000000000000 + 1.289510978095906 0.345523425211865 4.300000000000000 + 1.386103560724813 0.371405329722117 4.300000000000000 + 1.482696143353720 0.397287234232369 4.300000000000000 + 1.579288725982627 0.423169138742621 4.300000000000000 + 1.675881308611534 0.449051043252873 4.300000000000000 + 1.772473891240440 0.474932947763126 4.300000000000000 + 1.869066473869347 0.500814852273378 4.300000000000000 + 1.965659056498254 0.526696756783630 4.300000000000000 + 2.062251639127161 0.552578661293882 4.300000000000000 + 2.158844221756068 0.578460565804134 4.300000000000000 + 2.255436804384975 0.604342470314386 4.300000000000000 + 2.352029387013882 0.630224374824638 4.300000000000000 + 2.448621969642788 0.656106279334890 4.300000000000000 + 2.545214552271695 0.681988183845142 4.300000000000000 + 2.641807134900602 0.707870088355394 4.300000000000000 + 2.738399717529509 0.733751992865646 4.300000000000000 + 2.834992300158416 0.759633897375898 4.300000000000000 + 2.931584882787322 0.785515801886150 4.300000000000000 + 3.028177465416229 0.811397706396403 4.300000000000000 + 3.124770048045136 0.837279610906655 4.300000000000000 + 3.221362630674043 0.863161515416907 4.300000000000000 + 3.317955213302950 0.889043419927159 4.300000000000000 + 3.414547795931857 0.914925324437411 4.300000000000000 + 3.511140378560763 0.940807228947663 4.300000000000000 + 3.607732961189670 0.966689133457915 4.300000000000000 + 3.704325543818577 0.992571037968167 4.300000000000000 + 3.800918126447484 1.018452942478419 4.300000000000000 + 3.897510709076391 1.044334846988671 4.300000000000000 + 3.994103291705299 1.070216751498923 4.300000000000000 + 4.090695874334204 1.096098656009175 4.300000000000000 + 4.187288456963111 1.121980560519428 4.300000000000000 + 4.283881039592019 1.147862465029680 4.300000000000000 + 4.380473622220926 1.173744369539932 4.300000000000000 + 4.477066204849833 1.199626274050184 4.300000000000000 + 4.573658787478739 1.225508178560436 4.300000000000000 + 4.670251370107646 1.251390083070688 4.300000000000000 + 4.766843952736553 1.277271987580940 4.300000000000000 + 4.863436535365460 1.303153892091192 4.300000000000000 + 4.960029117994367 1.329035796601444 4.300000000000000 + 0.135000000000000 0.000000000000000 4.400000000000000 + 0.235000000000000 0.000000000000000 4.400000000000000 + 0.335000000000000 0.000000000000000 4.400000000000000 + 0.435000000000000 0.000000000000000 4.400000000000000 + 0.535000000000000 0.000000000000000 4.400000000000000 + 0.635000000000000 0.000000000000000 4.400000000000000 + 0.735000000000000 0.000000000000000 4.400000000000000 + 0.835000000000000 0.000000000000000 4.400000000000000 + 0.935000000000000 0.000000000000000 4.400000000000000 + 1.035000000000000 0.000000000000000 4.400000000000000 + 1.135000000000000 0.000000000000000 4.400000000000000 + 1.235000000000000 0.000000000000000 4.400000000000000 + 1.335000000000000 0.000000000000000 4.400000000000000 + 1.435000000000000 0.000000000000000 4.400000000000000 + 1.535000000000000 0.000000000000000 4.400000000000000 + 1.635000000000000 0.000000000000000 4.400000000000000 + 1.735000000000000 0.000000000000000 4.400000000000000 + 1.835000000000000 0.000000000000000 4.400000000000000 + 1.935000000000000 0.000000000000000 4.400000000000000 + 2.035000000000000 0.000000000000000 4.400000000000000 + 2.135000000000000 0.000000000000000 4.400000000000000 + 2.235000000000000 0.000000000000000 4.400000000000000 + 2.335000000000000 0.000000000000000 4.400000000000000 + 2.435000000000000 0.000000000000000 4.400000000000000 + 2.535000000000000 0.000000000000000 4.400000000000000 + 2.635000000000000 0.000000000000000 4.400000000000000 + 2.735000000000000 0.000000000000000 4.400000000000000 + 2.835000000000000 0.000000000000000 4.400000000000000 + 2.935000000000000 0.000000000000000 4.400000000000000 + 3.035000000000000 0.000000000000000 4.400000000000000 + 3.135000000000000 0.000000000000000 4.400000000000000 + 3.235000000000000 0.000000000000000 4.400000000000000 + 3.335000000000000 0.000000000000000 4.400000000000000 + 3.435000000000000 0.000000000000000 4.400000000000000 + 3.535000000000000 0.000000000000000 4.400000000000000 + 3.635000000000000 0.000000000000000 4.400000000000000 + 3.735000000000000 0.000000000000000 4.400000000000000 + 3.835000000000000 0.000000000000000 4.400000000000000 + 3.935000000000000 0.000000000000000 4.400000000000000 + 4.035000000000000 0.000000000000000 4.400000000000000 + 4.135000000000001 0.000000000000000 4.400000000000000 + 4.235000000000000 0.000000000000000 4.400000000000000 + 4.335000000000000 0.000000000000000 4.400000000000000 + 4.435000000000000 0.000000000000000 4.400000000000000 + 4.535000000000000 0.000000000000000 4.400000000000000 + 4.635000000000001 0.000000000000000 4.400000000000000 + 4.735000000000000 0.000000000000000 4.400000000000000 + 4.835000000000001 0.000000000000000 4.400000000000000 + 4.935000000000000 0.000000000000000 4.400000000000000 + 5.035000000000000 0.000000000000000 4.400000000000000 + 5.135000000000001 0.000000000000000 4.400000000000000 + 0.133845056285464 0.017621035949707 4.400000000000000 + 0.232989542422845 0.030673655171712 4.400000000000000 + 0.332134028560227 0.043726274393717 4.400000000000000 + 0.431278514697608 0.056778893615722 4.400000000000000 + 0.530423000834989 0.069831512837728 4.400000000000000 + 0.629567486972370 0.082884132059733 4.400000000000000 + 0.728711973109751 0.095936751281738 4.400000000000000 + 0.827856459247132 0.108989370503743 4.400000000000000 + 0.927000945384513 0.122041989725748 4.400000000000000 + 1.026145431521894 0.135094608947753 4.400000000000000 + 1.125289917659275 0.148147228169759 4.400000000000000 + 1.224434403796656 0.161199847391764 4.400000000000000 + 1.323578889934037 0.174252466613769 4.400000000000000 + 1.422723376071418 0.187305085835774 4.400000000000000 + 1.521867862208799 0.200357705057779 4.400000000000000 + 1.621012348346180 0.213410324279784 4.400000000000000 + 1.720156834483561 0.226462943501789 4.400000000000000 + 1.819301320620942 0.239515562723795 4.400000000000000 + 1.918445806758323 0.252568181945800 4.400000000000000 + 2.017590292895704 0.265620801167805 4.400000000000000 + 2.116734779033085 0.278673420389810 4.400000000000000 + 2.215879265170466 0.291726039611815 4.400000000000000 + 2.315023751307847 0.304778658833820 4.400000000000000 + 2.414168237445228 0.317831278055826 4.400000000000000 + 2.513312723582609 0.330883897277831 4.400000000000000 + 2.612457209719990 0.343936516499836 4.400000000000000 + 2.711601695857371 0.356989135721841 4.400000000000000 + 2.810746181994753 0.370041754943846 4.400000000000000 + 2.909890668132133 0.383094374165851 4.400000000000000 + 3.009035154269514 0.396146993387857 4.400000000000000 + 3.108179640406895 0.409199612609862 4.400000000000000 + 3.207324126544277 0.422252231831867 4.400000000000000 + 3.306468612681658 0.435304851053872 4.400000000000000 + 3.405613098819039 0.448357470275877 4.400000000000000 + 3.504757584956419 0.461410089497882 4.400000000000000 + 3.603902071093801 0.474462708719887 4.400000000000000 + 3.703046557231182 0.487515327941893 4.400000000000000 + 3.802191043368563 0.500567947163898 4.400000000000000 + 3.901335529505944 0.513620566385903 4.400000000000000 + 4.000480015643325 0.526673185607908 4.400000000000000 + 4.099624501780707 0.539725804829913 4.400000000000000 + 4.198768987918087 0.552778424051918 4.400000000000000 + 4.297913474055468 0.565831043273924 4.400000000000000 + 4.397057960192850 0.578883662495929 4.400000000000000 + 4.496202446330230 0.591936281717934 4.400000000000000 + 4.595346932467612 0.604988900939939 4.400000000000000 + 4.694491418604993 0.618041520161944 4.400000000000000 + 4.793635904742374 0.631094139383950 4.400000000000000 + 4.892780390879754 0.644146758605955 4.400000000000000 + 4.991924877017135 0.657199377827960 4.400000000000000 + 5.091069363154517 0.670251997049965 4.400000000000000 + 0.130399986549024 0.034940571088840 4.400000000000000 + 0.226992569177931 0.060822475599092 4.400000000000000 + 0.323585151806838 0.086704380109344 4.400000000000000 + 0.420177734435745 0.112586284619597 4.400000000000000 + 0.516770317064652 0.138468189129849 4.400000000000000 + 0.613362899693559 0.164350093640101 4.400000000000000 + 0.709955482322465 0.190231998150353 4.400000000000000 + 0.806548064951372 0.216113902660605 4.400000000000000 + 0.903140647580279 0.241995807170857 4.400000000000000 + 0.999733230209186 0.267877711681109 4.400000000000000 + 1.096325812838093 0.293759616191361 4.400000000000000 + 1.192918395467000 0.319641520701613 4.400000000000000 + 1.289510978095906 0.345523425211865 4.400000000000000 + 1.386103560724813 0.371405329722117 4.400000000000000 + 1.482696143353720 0.397287234232369 4.400000000000000 + 1.579288725982627 0.423169138742621 4.400000000000000 + 1.675881308611534 0.449051043252873 4.400000000000000 + 1.772473891240440 0.474932947763126 4.400000000000000 + 1.869066473869347 0.500814852273378 4.400000000000000 + 1.965659056498254 0.526696756783630 4.400000000000000 + 2.062251639127161 0.552578661293882 4.400000000000000 + 2.158844221756068 0.578460565804134 4.400000000000000 + 2.255436804384975 0.604342470314386 4.400000000000000 + 2.352029387013882 0.630224374824638 4.400000000000000 + 2.448621969642788 0.656106279334890 4.400000000000000 + 2.545214552271695 0.681988183845142 4.400000000000000 + 2.641807134900602 0.707870088355394 4.400000000000000 + 2.738399717529509 0.733751992865646 4.400000000000000 + 2.834992300158416 0.759633897375898 4.400000000000000 + 2.931584882787322 0.785515801886150 4.400000000000000 + 3.028177465416229 0.811397706396403 4.400000000000000 + 3.124770048045136 0.837279610906655 4.400000000000000 + 3.221362630674043 0.863161515416907 4.400000000000000 + 3.317955213302950 0.889043419927159 4.400000000000000 + 3.414547795931857 0.914925324437411 4.400000000000000 + 3.511140378560763 0.940807228947663 4.400000000000000 + 3.607732961189670 0.966689133457915 4.400000000000000 + 3.704325543818577 0.992571037968167 4.400000000000000 + 3.800918126447484 1.018452942478419 4.400000000000000 + 3.897510709076391 1.044334846988671 4.400000000000000 + 3.994103291705299 1.070216751498923 4.400000000000000 + 4.090695874334204 1.096098656009175 4.400000000000000 + 4.187288456963111 1.121980560519428 4.400000000000000 + 4.283881039592019 1.147862465029680 4.400000000000000 + 4.380473622220926 1.173744369539932 4.400000000000000 + 4.477066204849833 1.199626274050184 4.400000000000000 + 4.573658787478739 1.225508178560436 4.400000000000000 + 4.670251370107646 1.251390083070688 4.400000000000000 + 4.766843952736553 1.277271987580940 4.400000000000000 + 4.863436535365460 1.303153892091192 4.400000000000000 + 4.960029117994367 1.329035796601444 4.400000000000000 + 0.135000000000000 0.000000000000000 4.500000000000000 + 0.235000000000000 0.000000000000000 4.500000000000000 + 0.335000000000000 0.000000000000000 4.500000000000000 + 0.435000000000000 0.000000000000000 4.500000000000000 + 0.535000000000000 0.000000000000000 4.500000000000000 + 0.635000000000000 0.000000000000000 4.500000000000000 + 0.735000000000000 0.000000000000000 4.500000000000000 + 0.835000000000000 0.000000000000000 4.500000000000000 + 0.935000000000000 0.000000000000000 4.500000000000000 + 1.035000000000000 0.000000000000000 4.500000000000000 + 1.135000000000000 0.000000000000000 4.500000000000000 + 1.235000000000000 0.000000000000000 4.500000000000000 + 1.335000000000000 0.000000000000000 4.500000000000000 + 1.435000000000000 0.000000000000000 4.500000000000000 + 1.535000000000000 0.000000000000000 4.500000000000000 + 1.635000000000000 0.000000000000000 4.500000000000000 + 1.735000000000000 0.000000000000000 4.500000000000000 + 1.835000000000000 0.000000000000000 4.500000000000000 + 1.935000000000000 0.000000000000000 4.500000000000000 + 2.035000000000000 0.000000000000000 4.500000000000000 + 2.135000000000000 0.000000000000000 4.500000000000000 + 2.235000000000000 0.000000000000000 4.500000000000000 + 2.335000000000000 0.000000000000000 4.500000000000000 + 2.435000000000000 0.000000000000000 4.500000000000000 + 2.535000000000000 0.000000000000000 4.500000000000000 + 2.635000000000000 0.000000000000000 4.500000000000000 + 2.735000000000000 0.000000000000000 4.500000000000000 + 2.835000000000000 0.000000000000000 4.500000000000000 + 2.935000000000000 0.000000000000000 4.500000000000000 + 3.035000000000000 0.000000000000000 4.500000000000000 + 3.135000000000000 0.000000000000000 4.500000000000000 + 3.235000000000000 0.000000000000000 4.500000000000000 + 3.335000000000000 0.000000000000000 4.500000000000000 + 3.435000000000000 0.000000000000000 4.500000000000000 + 3.535000000000000 0.000000000000000 4.500000000000000 + 3.635000000000000 0.000000000000000 4.500000000000000 + 3.735000000000000 0.000000000000000 4.500000000000000 + 3.835000000000000 0.000000000000000 4.500000000000000 + 3.935000000000000 0.000000000000000 4.500000000000000 + 4.035000000000000 0.000000000000000 4.500000000000000 + 4.135000000000001 0.000000000000000 4.500000000000000 + 4.235000000000000 0.000000000000000 4.500000000000000 + 4.335000000000000 0.000000000000000 4.500000000000000 + 4.435000000000000 0.000000000000000 4.500000000000000 + 4.535000000000000 0.000000000000000 4.500000000000000 + 4.635000000000001 0.000000000000000 4.500000000000000 + 4.735000000000000 0.000000000000000 4.500000000000000 + 4.835000000000001 0.000000000000000 4.500000000000000 + 4.935000000000000 0.000000000000000 4.500000000000000 + 5.035000000000000 0.000000000000000 4.500000000000000 + 5.135000000000001 0.000000000000000 4.500000000000000 + 0.133845056285464 0.017621035949707 4.500000000000000 + 0.232989542422845 0.030673655171712 4.500000000000000 + 0.332134028560227 0.043726274393717 4.500000000000000 + 0.431278514697608 0.056778893615722 4.500000000000000 + 0.530423000834989 0.069831512837728 4.500000000000000 + 0.629567486972370 0.082884132059733 4.500000000000000 + 0.728711973109751 0.095936751281738 4.500000000000000 + 0.827856459247132 0.108989370503743 4.500000000000000 + 0.927000945384513 0.122041989725748 4.500000000000000 + 1.026145431521894 0.135094608947753 4.500000000000000 + 1.125289917659275 0.148147228169759 4.500000000000000 + 1.224434403796656 0.161199847391764 4.500000000000000 + 1.323578889934037 0.174252466613769 4.500000000000000 + 1.422723376071418 0.187305085835774 4.500000000000000 + 1.521867862208799 0.200357705057779 4.500000000000000 + 1.621012348346180 0.213410324279784 4.500000000000000 + 1.720156834483561 0.226462943501789 4.500000000000000 + 1.819301320620942 0.239515562723795 4.500000000000000 + 1.918445806758323 0.252568181945800 4.500000000000000 + 2.017590292895704 0.265620801167805 4.500000000000000 + 2.116734779033085 0.278673420389810 4.500000000000000 + 2.215879265170466 0.291726039611815 4.500000000000000 + 2.315023751307847 0.304778658833820 4.500000000000000 + 2.414168237445228 0.317831278055826 4.500000000000000 + 2.513312723582609 0.330883897277831 4.500000000000000 + 2.612457209719990 0.343936516499836 4.500000000000000 + 2.711601695857371 0.356989135721841 4.500000000000000 + 2.810746181994753 0.370041754943846 4.500000000000000 + 2.909890668132133 0.383094374165851 4.500000000000000 + 3.009035154269514 0.396146993387857 4.500000000000000 + 3.108179640406895 0.409199612609862 4.500000000000000 + 3.207324126544277 0.422252231831867 4.500000000000000 + 3.306468612681658 0.435304851053872 4.500000000000000 + 3.405613098819039 0.448357470275877 4.500000000000000 + 3.504757584956419 0.461410089497882 4.500000000000000 + 3.603902071093801 0.474462708719887 4.500000000000000 + 3.703046557231182 0.487515327941893 4.500000000000000 + 3.802191043368563 0.500567947163898 4.500000000000000 + 3.901335529505944 0.513620566385903 4.500000000000000 + 4.000480015643325 0.526673185607908 4.500000000000000 + 4.099624501780707 0.539725804829913 4.500000000000000 + 4.198768987918087 0.552778424051918 4.500000000000000 + 4.297913474055468 0.565831043273924 4.500000000000000 + 4.397057960192850 0.578883662495929 4.500000000000000 + 4.496202446330230 0.591936281717934 4.500000000000000 + 4.595346932467612 0.604988900939939 4.500000000000000 + 4.694491418604993 0.618041520161944 4.500000000000000 + 4.793635904742374 0.631094139383950 4.500000000000000 + 4.892780390879754 0.644146758605955 4.500000000000000 + 4.991924877017135 0.657199377827960 4.500000000000000 + 5.091069363154517 0.670251997049965 4.500000000000000 + 0.130399986549024 0.034940571088840 4.500000000000000 + 0.226992569177931 0.060822475599092 4.500000000000000 + 0.323585151806838 0.086704380109344 4.500000000000000 + 0.420177734435745 0.112586284619597 4.500000000000000 + 0.516770317064652 0.138468189129849 4.500000000000000 + 0.613362899693559 0.164350093640101 4.500000000000000 + 0.709955482322465 0.190231998150353 4.500000000000000 + 0.806548064951372 0.216113902660605 4.500000000000000 + 0.903140647580279 0.241995807170857 4.500000000000000 + 0.999733230209186 0.267877711681109 4.500000000000000 + 1.096325812838093 0.293759616191361 4.500000000000000 + 1.192918395467000 0.319641520701613 4.500000000000000 + 1.289510978095906 0.345523425211865 4.500000000000000 + 1.386103560724813 0.371405329722117 4.500000000000000 + 1.482696143353720 0.397287234232369 4.500000000000000 + 1.579288725982627 0.423169138742621 4.500000000000000 + 1.675881308611534 0.449051043252873 4.500000000000000 + 1.772473891240440 0.474932947763126 4.500000000000000 + 1.869066473869347 0.500814852273378 4.500000000000000 + 1.965659056498254 0.526696756783630 4.500000000000000 + 2.062251639127161 0.552578661293882 4.500000000000000 + 2.158844221756068 0.578460565804134 4.500000000000000 + 2.255436804384975 0.604342470314386 4.500000000000000 + 2.352029387013882 0.630224374824638 4.500000000000000 + 2.448621969642788 0.656106279334890 4.500000000000000 + 2.545214552271695 0.681988183845142 4.500000000000000 + 2.641807134900602 0.707870088355394 4.500000000000000 + 2.738399717529509 0.733751992865646 4.500000000000000 + 2.834992300158416 0.759633897375898 4.500000000000000 + 2.931584882787322 0.785515801886150 4.500000000000000 + 3.028177465416229 0.811397706396403 4.500000000000000 + 3.124770048045136 0.837279610906655 4.500000000000000 + 3.221362630674043 0.863161515416907 4.500000000000000 + 3.317955213302950 0.889043419927159 4.500000000000000 + 3.414547795931857 0.914925324437411 4.500000000000000 + 3.511140378560763 0.940807228947663 4.500000000000000 + 3.607732961189670 0.966689133457915 4.500000000000000 + 3.704325543818577 0.992571037968167 4.500000000000000 + 3.800918126447484 1.018452942478419 4.500000000000000 + 3.897510709076391 1.044334846988671 4.500000000000000 + 3.994103291705299 1.070216751498923 4.500000000000000 + 4.090695874334204 1.096098656009175 4.500000000000000 + 4.187288456963111 1.121980560519428 4.500000000000000 + 4.283881039592019 1.147862465029680 4.500000000000000 + 4.380473622220926 1.173744369539932 4.500000000000000 + 4.477066204849833 1.199626274050184 4.500000000000000 + 4.573658787478739 1.225508178560436 4.500000000000000 + 4.670251370107646 1.251390083070688 4.500000000000000 + 4.766843952736553 1.277271987580940 4.500000000000000 + 4.863436535365460 1.303153892091192 4.500000000000000 + 4.960029117994367 1.329035796601444 4.500000000000000 + 0.135000000000000 0.000000000000000 4.600000000000000 + 0.235000000000000 0.000000000000000 4.600000000000000 + 0.335000000000000 0.000000000000000 4.600000000000000 + 0.435000000000000 0.000000000000000 4.600000000000000 + 0.535000000000000 0.000000000000000 4.600000000000000 + 0.635000000000000 0.000000000000000 4.600000000000000 + 0.735000000000000 0.000000000000000 4.600000000000000 + 0.835000000000000 0.000000000000000 4.600000000000000 + 0.935000000000000 0.000000000000000 4.600000000000000 + 1.035000000000000 0.000000000000000 4.600000000000000 + 1.135000000000000 0.000000000000000 4.600000000000000 + 1.235000000000000 0.000000000000000 4.600000000000000 + 1.335000000000000 0.000000000000000 4.600000000000000 + 1.435000000000000 0.000000000000000 4.600000000000000 + 1.535000000000000 0.000000000000000 4.600000000000000 + 1.635000000000000 0.000000000000000 4.600000000000000 + 1.735000000000000 0.000000000000000 4.600000000000000 + 1.835000000000000 0.000000000000000 4.600000000000000 + 1.935000000000000 0.000000000000000 4.600000000000000 + 2.035000000000000 0.000000000000000 4.600000000000000 + 2.135000000000000 0.000000000000000 4.600000000000000 + 2.235000000000000 0.000000000000000 4.600000000000000 + 2.335000000000000 0.000000000000000 4.600000000000000 + 2.435000000000000 0.000000000000000 4.600000000000000 + 2.535000000000000 0.000000000000000 4.600000000000000 + 2.635000000000000 0.000000000000000 4.600000000000000 + 2.735000000000000 0.000000000000000 4.600000000000000 + 2.835000000000000 0.000000000000000 4.600000000000000 + 2.935000000000000 0.000000000000000 4.600000000000000 + 3.035000000000000 0.000000000000000 4.600000000000000 + 3.135000000000000 0.000000000000000 4.600000000000000 + 3.235000000000000 0.000000000000000 4.600000000000000 + 3.335000000000000 0.000000000000000 4.600000000000000 + 3.435000000000000 0.000000000000000 4.600000000000000 + 3.535000000000000 0.000000000000000 4.600000000000000 + 3.635000000000000 0.000000000000000 4.600000000000000 + 3.735000000000000 0.000000000000000 4.600000000000000 + 3.835000000000000 0.000000000000000 4.600000000000000 + 3.935000000000000 0.000000000000000 4.600000000000000 + 4.035000000000000 0.000000000000000 4.600000000000000 + 4.135000000000001 0.000000000000000 4.600000000000000 + 4.235000000000000 0.000000000000000 4.600000000000000 + 4.335000000000000 0.000000000000000 4.600000000000000 + 4.435000000000000 0.000000000000000 4.600000000000000 + 4.535000000000000 0.000000000000000 4.600000000000000 + 4.635000000000001 0.000000000000000 4.600000000000000 + 4.735000000000000 0.000000000000000 4.600000000000000 + 4.835000000000001 0.000000000000000 4.600000000000000 + 4.935000000000000 0.000000000000000 4.600000000000000 + 5.035000000000000 0.000000000000000 4.600000000000000 + 5.135000000000001 0.000000000000000 4.600000000000000 + 0.133845056285464 0.017621035949707 4.600000000000000 + 0.232989542422845 0.030673655171712 4.600000000000000 + 0.332134028560227 0.043726274393717 4.600000000000000 + 0.431278514697608 0.056778893615722 4.600000000000000 + 0.530423000834989 0.069831512837728 4.600000000000000 + 0.629567486972370 0.082884132059733 4.600000000000000 + 0.728711973109751 0.095936751281738 4.600000000000000 + 0.827856459247132 0.108989370503743 4.600000000000000 + 0.927000945384513 0.122041989725748 4.600000000000000 + 1.026145431521894 0.135094608947753 4.600000000000000 + 1.125289917659275 0.148147228169759 4.600000000000000 + 1.224434403796656 0.161199847391764 4.600000000000000 + 1.323578889934037 0.174252466613769 4.600000000000000 + 1.422723376071418 0.187305085835774 4.600000000000000 + 1.521867862208799 0.200357705057779 4.600000000000000 + 1.621012348346180 0.213410324279784 4.600000000000000 + 1.720156834483561 0.226462943501789 4.600000000000000 + 1.819301320620942 0.239515562723795 4.600000000000000 + 1.918445806758323 0.252568181945800 4.600000000000000 + 2.017590292895704 0.265620801167805 4.600000000000000 + 2.116734779033085 0.278673420389810 4.600000000000000 + 2.215879265170466 0.291726039611815 4.600000000000000 + 2.315023751307847 0.304778658833820 4.600000000000000 + 2.414168237445228 0.317831278055826 4.600000000000000 + 2.513312723582609 0.330883897277831 4.600000000000000 + 2.612457209719990 0.343936516499836 4.600000000000000 + 2.711601695857371 0.356989135721841 4.600000000000000 + 2.810746181994753 0.370041754943846 4.600000000000000 + 2.909890668132133 0.383094374165851 4.600000000000000 + 3.009035154269514 0.396146993387857 4.600000000000000 + 3.108179640406895 0.409199612609862 4.600000000000000 + 3.207324126544277 0.422252231831867 4.600000000000000 + 3.306468612681658 0.435304851053872 4.600000000000000 + 3.405613098819039 0.448357470275877 4.600000000000000 + 3.504757584956419 0.461410089497882 4.600000000000000 + 3.603902071093801 0.474462708719887 4.600000000000000 + 3.703046557231182 0.487515327941893 4.600000000000000 + 3.802191043368563 0.500567947163898 4.600000000000000 + 3.901335529505944 0.513620566385903 4.600000000000000 + 4.000480015643325 0.526673185607908 4.600000000000000 + 4.099624501780707 0.539725804829913 4.600000000000000 + 4.198768987918087 0.552778424051918 4.600000000000000 + 4.297913474055468 0.565831043273924 4.600000000000000 + 4.397057960192850 0.578883662495929 4.600000000000000 + 4.496202446330230 0.591936281717934 4.600000000000000 + 4.595346932467612 0.604988900939939 4.600000000000000 + 4.694491418604993 0.618041520161944 4.600000000000000 + 4.793635904742374 0.631094139383950 4.600000000000000 + 4.892780390879754 0.644146758605955 4.600000000000000 + 4.991924877017135 0.657199377827960 4.600000000000000 + 5.091069363154517 0.670251997049965 4.600000000000000 + 0.130399986549024 0.034940571088840 4.600000000000000 + 0.226992569177931 0.060822475599092 4.600000000000000 + 0.323585151806838 0.086704380109344 4.600000000000000 + 0.420177734435745 0.112586284619597 4.600000000000000 + 0.516770317064652 0.138468189129849 4.600000000000000 + 0.613362899693559 0.164350093640101 4.600000000000000 + 0.709955482322465 0.190231998150353 4.600000000000000 + 0.806548064951372 0.216113902660605 4.600000000000000 + 0.903140647580279 0.241995807170857 4.600000000000000 + 0.999733230209186 0.267877711681109 4.600000000000000 + 1.096325812838093 0.293759616191361 4.600000000000000 + 1.192918395467000 0.319641520701613 4.600000000000000 + 1.289510978095906 0.345523425211865 4.600000000000000 + 1.386103560724813 0.371405329722117 4.600000000000000 + 1.482696143353720 0.397287234232369 4.600000000000000 + 1.579288725982627 0.423169138742621 4.600000000000000 + 1.675881308611534 0.449051043252873 4.600000000000000 + 1.772473891240440 0.474932947763126 4.600000000000000 + 1.869066473869347 0.500814852273378 4.600000000000000 + 1.965659056498254 0.526696756783630 4.600000000000000 + 2.062251639127161 0.552578661293882 4.600000000000000 + 2.158844221756068 0.578460565804134 4.600000000000000 + 2.255436804384975 0.604342470314386 4.600000000000000 + 2.352029387013882 0.630224374824638 4.600000000000000 + 2.448621969642788 0.656106279334890 4.600000000000000 + 2.545214552271695 0.681988183845142 4.600000000000000 + 2.641807134900602 0.707870088355394 4.600000000000000 + 2.738399717529509 0.733751992865646 4.600000000000000 + 2.834992300158416 0.759633897375898 4.600000000000000 + 2.931584882787322 0.785515801886150 4.600000000000000 + 3.028177465416229 0.811397706396403 4.600000000000000 + 3.124770048045136 0.837279610906655 4.600000000000000 + 3.221362630674043 0.863161515416907 4.600000000000000 + 3.317955213302950 0.889043419927159 4.600000000000000 + 3.414547795931857 0.914925324437411 4.600000000000000 + 3.511140378560763 0.940807228947663 4.600000000000000 + 3.607732961189670 0.966689133457915 4.600000000000000 + 3.704325543818577 0.992571037968167 4.600000000000000 + 3.800918126447484 1.018452942478419 4.600000000000000 + 3.897510709076391 1.044334846988671 4.600000000000000 + 3.994103291705299 1.070216751498923 4.600000000000000 + 4.090695874334204 1.096098656009175 4.600000000000000 + 4.187288456963111 1.121980560519428 4.600000000000000 + 4.283881039592019 1.147862465029680 4.600000000000000 + 4.380473622220926 1.173744369539932 4.600000000000000 + 4.477066204849833 1.199626274050184 4.600000000000000 + 4.573658787478739 1.225508178560436 4.600000000000000 + 4.670251370107646 1.251390083070688 4.600000000000000 + 4.766843952736553 1.277271987580940 4.600000000000000 + 4.863436535365460 1.303153892091192 4.600000000000000 + 4.960029117994367 1.329035796601444 4.600000000000000 + 0.135000000000000 0.000000000000000 4.699999999999999 + 0.235000000000000 0.000000000000000 4.699999999999999 + 0.335000000000000 0.000000000000000 4.699999999999999 + 0.435000000000000 0.000000000000000 4.699999999999999 + 0.535000000000000 0.000000000000000 4.699999999999999 + 0.635000000000000 0.000000000000000 4.699999999999999 + 0.735000000000000 0.000000000000000 4.699999999999999 + 0.835000000000000 0.000000000000000 4.699999999999999 + 0.935000000000000 0.000000000000000 4.699999999999999 + 1.035000000000000 0.000000000000000 4.699999999999999 + 1.135000000000000 0.000000000000000 4.699999999999999 + 1.235000000000000 0.000000000000000 4.699999999999999 + 1.335000000000000 0.000000000000000 4.699999999999999 + 1.435000000000000 0.000000000000000 4.699999999999999 + 1.535000000000000 0.000000000000000 4.699999999999999 + 1.635000000000000 0.000000000000000 4.699999999999999 + 1.735000000000000 0.000000000000000 4.699999999999999 + 1.835000000000000 0.000000000000000 4.699999999999999 + 1.935000000000000 0.000000000000000 4.699999999999999 + 2.035000000000000 0.000000000000000 4.699999999999999 + 2.135000000000000 0.000000000000000 4.699999999999999 + 2.235000000000000 0.000000000000000 4.699999999999999 + 2.335000000000000 0.000000000000000 4.699999999999999 + 2.435000000000000 0.000000000000000 4.699999999999999 + 2.535000000000000 0.000000000000000 4.699999999999999 + 2.635000000000000 0.000000000000000 4.699999999999999 + 2.735000000000000 0.000000000000000 4.699999999999999 + 2.835000000000000 0.000000000000000 4.699999999999999 + 2.935000000000000 0.000000000000000 4.699999999999999 + 3.035000000000000 0.000000000000000 4.699999999999999 + 3.135000000000000 0.000000000000000 4.699999999999999 + 3.235000000000000 0.000000000000000 4.699999999999999 + 3.335000000000000 0.000000000000000 4.699999999999999 + 3.435000000000000 0.000000000000000 4.699999999999999 + 3.535000000000000 0.000000000000000 4.699999999999999 + 3.635000000000000 0.000000000000000 4.699999999999999 + 3.735000000000000 0.000000000000000 4.699999999999999 + 3.835000000000000 0.000000000000000 4.699999999999999 + 3.935000000000000 0.000000000000000 4.699999999999999 + 4.035000000000000 0.000000000000000 4.699999999999999 + 4.135000000000001 0.000000000000000 4.699999999999999 + 4.235000000000000 0.000000000000000 4.699999999999999 + 4.335000000000000 0.000000000000000 4.699999999999999 + 4.435000000000000 0.000000000000000 4.699999999999999 + 4.535000000000000 0.000000000000000 4.699999999999999 + 4.635000000000001 0.000000000000000 4.699999999999999 + 4.735000000000000 0.000000000000000 4.699999999999999 + 4.835000000000001 0.000000000000000 4.699999999999999 + 4.935000000000000 0.000000000000000 4.699999999999999 + 5.035000000000000 0.000000000000000 4.699999999999999 + 5.135000000000001 0.000000000000000 4.699999999999999 + 0.133845056285464 0.017621035949707 4.699999999999999 + 0.232989542422845 0.030673655171712 4.699999999999999 + 0.332134028560227 0.043726274393717 4.699999999999999 + 0.431278514697608 0.056778893615722 4.699999999999999 + 0.530423000834989 0.069831512837728 4.699999999999999 + 0.629567486972370 0.082884132059733 4.699999999999999 + 0.728711973109751 0.095936751281738 4.699999999999999 + 0.827856459247132 0.108989370503743 4.699999999999999 + 0.927000945384513 0.122041989725748 4.699999999999999 + 1.026145431521894 0.135094608947753 4.699999999999999 + 1.125289917659275 0.148147228169759 4.699999999999999 + 1.224434403796656 0.161199847391764 4.699999999999999 + 1.323578889934037 0.174252466613769 4.699999999999999 + 1.422723376071418 0.187305085835774 4.699999999999999 + 1.521867862208799 0.200357705057779 4.699999999999999 + 1.621012348346180 0.213410324279784 4.699999999999999 + 1.720156834483561 0.226462943501789 4.699999999999999 + 1.819301320620942 0.239515562723795 4.699999999999999 + 1.918445806758323 0.252568181945800 4.699999999999999 + 2.017590292895704 0.265620801167805 4.699999999999999 + 2.116734779033085 0.278673420389810 4.699999999999999 + 2.215879265170466 0.291726039611815 4.699999999999999 + 2.315023751307847 0.304778658833820 4.699999999999999 + 2.414168237445228 0.317831278055826 4.699999999999999 + 2.513312723582609 0.330883897277831 4.699999999999999 + 2.612457209719990 0.343936516499836 4.699999999999999 + 2.711601695857371 0.356989135721841 4.699999999999999 + 2.810746181994753 0.370041754943846 4.699999999999999 + 2.909890668132133 0.383094374165851 4.699999999999999 + 3.009035154269514 0.396146993387857 4.699999999999999 + 3.108179640406895 0.409199612609862 4.699999999999999 + 3.207324126544277 0.422252231831867 4.699999999999999 + 3.306468612681658 0.435304851053872 4.699999999999999 + 3.405613098819039 0.448357470275877 4.699999999999999 + 3.504757584956419 0.461410089497882 4.699999999999999 + 3.603902071093801 0.474462708719887 4.699999999999999 + 3.703046557231182 0.487515327941893 4.699999999999999 + 3.802191043368563 0.500567947163898 4.699999999999999 + 3.901335529505944 0.513620566385903 4.699999999999999 + 4.000480015643325 0.526673185607908 4.699999999999999 + 4.099624501780707 0.539725804829913 4.699999999999999 + 4.198768987918087 0.552778424051918 4.699999999999999 + 4.297913474055468 0.565831043273924 4.699999999999999 + 4.397057960192850 0.578883662495929 4.699999999999999 + 4.496202446330230 0.591936281717934 4.699999999999999 + 4.595346932467612 0.604988900939939 4.699999999999999 + 4.694491418604993 0.618041520161944 4.699999999999999 + 4.793635904742374 0.631094139383950 4.699999999999999 + 4.892780390879754 0.644146758605955 4.699999999999999 + 4.991924877017135 0.657199377827960 4.699999999999999 + 5.091069363154517 0.670251997049965 4.699999999999999 + 0.130399986549024 0.034940571088840 4.699999999999999 + 0.226992569177931 0.060822475599092 4.699999999999999 + 0.323585151806838 0.086704380109344 4.699999999999999 + 0.420177734435745 0.112586284619597 4.699999999999999 + 0.516770317064652 0.138468189129849 4.699999999999999 + 0.613362899693559 0.164350093640101 4.699999999999999 + 0.709955482322465 0.190231998150353 4.699999999999999 + 0.806548064951372 0.216113902660605 4.699999999999999 + 0.903140647580279 0.241995807170857 4.699999999999999 + 0.999733230209186 0.267877711681109 4.699999999999999 + 1.096325812838093 0.293759616191361 4.699999999999999 + 1.192918395467000 0.319641520701613 4.699999999999999 + 1.289510978095906 0.345523425211865 4.699999999999999 + 1.386103560724813 0.371405329722117 4.699999999999999 + 1.482696143353720 0.397287234232369 4.699999999999999 + 1.579288725982627 0.423169138742621 4.699999999999999 + 1.675881308611534 0.449051043252873 4.699999999999999 + 1.772473891240440 0.474932947763126 4.699999999999999 + 1.869066473869347 0.500814852273378 4.699999999999999 + 1.965659056498254 0.526696756783630 4.699999999999999 + 2.062251639127161 0.552578661293882 4.699999999999999 + 2.158844221756068 0.578460565804134 4.699999999999999 + 2.255436804384975 0.604342470314386 4.699999999999999 + 2.352029387013882 0.630224374824638 4.699999999999999 + 2.448621969642788 0.656106279334890 4.699999999999999 + 2.545214552271695 0.681988183845142 4.699999999999999 + 2.641807134900602 0.707870088355394 4.699999999999999 + 2.738399717529509 0.733751992865646 4.699999999999999 + 2.834992300158416 0.759633897375898 4.699999999999999 + 2.931584882787322 0.785515801886150 4.699999999999999 + 3.028177465416229 0.811397706396403 4.699999999999999 + 3.124770048045136 0.837279610906655 4.699999999999999 + 3.221362630674043 0.863161515416907 4.699999999999999 + 3.317955213302950 0.889043419927159 4.699999999999999 + 3.414547795931857 0.914925324437411 4.699999999999999 + 3.511140378560763 0.940807228947663 4.699999999999999 + 3.607732961189670 0.966689133457915 4.699999999999999 + 3.704325543818577 0.992571037968167 4.699999999999999 + 3.800918126447484 1.018452942478419 4.699999999999999 + 3.897510709076391 1.044334846988671 4.699999999999999 + 3.994103291705299 1.070216751498923 4.699999999999999 + 4.090695874334204 1.096098656009175 4.699999999999999 + 4.187288456963111 1.121980560519428 4.699999999999999 + 4.283881039592019 1.147862465029680 4.699999999999999 + 4.380473622220926 1.173744369539932 4.699999999999999 + 4.477066204849833 1.199626274050184 4.699999999999999 + 4.573658787478739 1.225508178560436 4.699999999999999 + 4.670251370107646 1.251390083070688 4.699999999999999 + 4.766843952736553 1.277271987580940 4.699999999999999 + 4.863436535365460 1.303153892091192 4.699999999999999 + 4.960029117994367 1.329035796601444 4.699999999999999 + 0.135000000000000 0.000000000000000 4.800000000000000 + 0.235000000000000 0.000000000000000 4.800000000000000 + 0.335000000000000 0.000000000000000 4.800000000000000 + 0.435000000000000 0.000000000000000 4.800000000000000 + 0.535000000000000 0.000000000000000 4.800000000000000 + 0.635000000000000 0.000000000000000 4.800000000000000 + 0.735000000000000 0.000000000000000 4.800000000000000 + 0.835000000000000 0.000000000000000 4.800000000000000 + 0.935000000000000 0.000000000000000 4.800000000000000 + 1.035000000000000 0.000000000000000 4.800000000000000 + 1.135000000000000 0.000000000000000 4.800000000000000 + 1.235000000000000 0.000000000000000 4.800000000000000 + 1.335000000000000 0.000000000000000 4.800000000000000 + 1.435000000000000 0.000000000000000 4.800000000000000 + 1.535000000000000 0.000000000000000 4.800000000000000 + 1.635000000000000 0.000000000000000 4.800000000000000 + 1.735000000000000 0.000000000000000 4.800000000000000 + 1.835000000000000 0.000000000000000 4.800000000000000 + 1.935000000000000 0.000000000000000 4.800000000000000 + 2.035000000000000 0.000000000000000 4.800000000000000 + 2.135000000000000 0.000000000000000 4.800000000000000 + 2.235000000000000 0.000000000000000 4.800000000000000 + 2.335000000000000 0.000000000000000 4.800000000000000 + 2.435000000000000 0.000000000000000 4.800000000000000 + 2.535000000000000 0.000000000000000 4.800000000000000 + 2.635000000000000 0.000000000000000 4.800000000000000 + 2.735000000000000 0.000000000000000 4.800000000000000 + 2.835000000000000 0.000000000000000 4.800000000000000 + 2.935000000000000 0.000000000000000 4.800000000000000 + 3.035000000000000 0.000000000000000 4.800000000000000 + 3.135000000000000 0.000000000000000 4.800000000000000 + 3.235000000000000 0.000000000000000 4.800000000000000 + 3.335000000000000 0.000000000000000 4.800000000000000 + 3.435000000000000 0.000000000000000 4.800000000000000 + 3.535000000000000 0.000000000000000 4.800000000000000 + 3.635000000000000 0.000000000000000 4.800000000000000 + 3.735000000000000 0.000000000000000 4.800000000000000 + 3.835000000000000 0.000000000000000 4.800000000000000 + 3.935000000000000 0.000000000000000 4.800000000000000 + 4.035000000000000 0.000000000000000 4.800000000000000 + 4.135000000000001 0.000000000000000 4.800000000000000 + 4.235000000000000 0.000000000000000 4.800000000000000 + 4.335000000000000 0.000000000000000 4.800000000000000 + 4.435000000000000 0.000000000000000 4.800000000000000 + 4.535000000000000 0.000000000000000 4.800000000000000 + 4.635000000000001 0.000000000000000 4.800000000000000 + 4.735000000000000 0.000000000000000 4.800000000000000 + 4.835000000000001 0.000000000000000 4.800000000000000 + 4.935000000000000 0.000000000000000 4.800000000000000 + 5.035000000000000 0.000000000000000 4.800000000000000 + 5.135000000000001 0.000000000000000 4.800000000000000 + 0.133845056285464 0.017621035949707 4.800000000000000 + 0.232989542422845 0.030673655171712 4.800000000000000 + 0.332134028560227 0.043726274393717 4.800000000000000 + 0.431278514697608 0.056778893615722 4.800000000000000 + 0.530423000834989 0.069831512837728 4.800000000000000 + 0.629567486972370 0.082884132059733 4.800000000000000 + 0.728711973109751 0.095936751281738 4.800000000000000 + 0.827856459247132 0.108989370503743 4.800000000000000 + 0.927000945384513 0.122041989725748 4.800000000000000 + 1.026145431521894 0.135094608947753 4.800000000000000 + 1.125289917659275 0.148147228169759 4.800000000000000 + 1.224434403796656 0.161199847391764 4.800000000000000 + 1.323578889934037 0.174252466613769 4.800000000000000 + 1.422723376071418 0.187305085835774 4.800000000000000 + 1.521867862208799 0.200357705057779 4.800000000000000 + 1.621012348346180 0.213410324279784 4.800000000000000 + 1.720156834483561 0.226462943501789 4.800000000000000 + 1.819301320620942 0.239515562723795 4.800000000000000 + 1.918445806758323 0.252568181945800 4.800000000000000 + 2.017590292895704 0.265620801167805 4.800000000000000 + 2.116734779033085 0.278673420389810 4.800000000000000 + 2.215879265170466 0.291726039611815 4.800000000000000 + 2.315023751307847 0.304778658833820 4.800000000000000 + 2.414168237445228 0.317831278055826 4.800000000000000 + 2.513312723582609 0.330883897277831 4.800000000000000 + 2.612457209719990 0.343936516499836 4.800000000000000 + 2.711601695857371 0.356989135721841 4.800000000000000 + 2.810746181994753 0.370041754943846 4.800000000000000 + 2.909890668132133 0.383094374165851 4.800000000000000 + 3.009035154269514 0.396146993387857 4.800000000000000 + 3.108179640406895 0.409199612609862 4.800000000000000 + 3.207324126544277 0.422252231831867 4.800000000000000 + 3.306468612681658 0.435304851053872 4.800000000000000 + 3.405613098819039 0.448357470275877 4.800000000000000 + 3.504757584956419 0.461410089497882 4.800000000000000 + 3.603902071093801 0.474462708719887 4.800000000000000 + 3.703046557231182 0.487515327941893 4.800000000000000 + 3.802191043368563 0.500567947163898 4.800000000000000 + 3.901335529505944 0.513620566385903 4.800000000000000 + 4.000480015643325 0.526673185607908 4.800000000000000 + 4.099624501780707 0.539725804829913 4.800000000000000 + 4.198768987918087 0.552778424051918 4.800000000000000 + 4.297913474055468 0.565831043273924 4.800000000000000 + 4.397057960192850 0.578883662495929 4.800000000000000 + 4.496202446330230 0.591936281717934 4.800000000000000 + 4.595346932467612 0.604988900939939 4.800000000000000 + 4.694491418604993 0.618041520161944 4.800000000000000 + 4.793635904742374 0.631094139383950 4.800000000000000 + 4.892780390879754 0.644146758605955 4.800000000000000 + 4.991924877017135 0.657199377827960 4.800000000000000 + 5.091069363154517 0.670251997049965 4.800000000000000 + 0.130399986549024 0.034940571088840 4.800000000000000 + 0.226992569177931 0.060822475599092 4.800000000000000 + 0.323585151806838 0.086704380109344 4.800000000000000 + 0.420177734435745 0.112586284619597 4.800000000000000 + 0.516770317064652 0.138468189129849 4.800000000000000 + 0.613362899693559 0.164350093640101 4.800000000000000 + 0.709955482322465 0.190231998150353 4.800000000000000 + 0.806548064951372 0.216113902660605 4.800000000000000 + 0.903140647580279 0.241995807170857 4.800000000000000 + 0.999733230209186 0.267877711681109 4.800000000000000 + 1.096325812838093 0.293759616191361 4.800000000000000 + 1.192918395467000 0.319641520701613 4.800000000000000 + 1.289510978095906 0.345523425211865 4.800000000000000 + 1.386103560724813 0.371405329722117 4.800000000000000 + 1.482696143353720 0.397287234232369 4.800000000000000 + 1.579288725982627 0.423169138742621 4.800000000000000 + 1.675881308611534 0.449051043252873 4.800000000000000 + 1.772473891240440 0.474932947763126 4.800000000000000 + 1.869066473869347 0.500814852273378 4.800000000000000 + 1.965659056498254 0.526696756783630 4.800000000000000 + 2.062251639127161 0.552578661293882 4.800000000000000 + 2.158844221756068 0.578460565804134 4.800000000000000 + 2.255436804384975 0.604342470314386 4.800000000000000 + 2.352029387013882 0.630224374824638 4.800000000000000 + 2.448621969642788 0.656106279334890 4.800000000000000 + 2.545214552271695 0.681988183845142 4.800000000000000 + 2.641807134900602 0.707870088355394 4.800000000000000 + 2.738399717529509 0.733751992865646 4.800000000000000 + 2.834992300158416 0.759633897375898 4.800000000000000 + 2.931584882787322 0.785515801886150 4.800000000000000 + 3.028177465416229 0.811397706396403 4.800000000000000 + 3.124770048045136 0.837279610906655 4.800000000000000 + 3.221362630674043 0.863161515416907 4.800000000000000 + 3.317955213302950 0.889043419927159 4.800000000000000 + 3.414547795931857 0.914925324437411 4.800000000000000 + 3.511140378560763 0.940807228947663 4.800000000000000 + 3.607732961189670 0.966689133457915 4.800000000000000 + 3.704325543818577 0.992571037968167 4.800000000000000 + 3.800918126447484 1.018452942478419 4.800000000000000 + 3.897510709076391 1.044334846988671 4.800000000000000 + 3.994103291705299 1.070216751498923 4.800000000000000 + 4.090695874334204 1.096098656009175 4.800000000000000 + 4.187288456963111 1.121980560519428 4.800000000000000 + 4.283881039592019 1.147862465029680 4.800000000000000 + 4.380473622220926 1.173744369539932 4.800000000000000 + 4.477066204849833 1.199626274050184 4.800000000000000 + 4.573658787478739 1.225508178560436 4.800000000000000 + 4.670251370107646 1.251390083070688 4.800000000000000 + 4.766843952736553 1.277271987580940 4.800000000000000 + 4.863436535365460 1.303153892091192 4.800000000000000 + 4.960029117994367 1.329035796601444 4.800000000000000 + 0.135000000000000 0.000000000000000 4.900000000000000 + 0.235000000000000 0.000000000000000 4.900000000000000 + 0.335000000000000 0.000000000000000 4.900000000000000 + 0.435000000000000 0.000000000000000 4.900000000000000 + 0.535000000000000 0.000000000000000 4.900000000000000 + 0.635000000000000 0.000000000000000 4.900000000000000 + 0.735000000000000 0.000000000000000 4.900000000000000 + 0.835000000000000 0.000000000000000 4.900000000000000 + 0.935000000000000 0.000000000000000 4.900000000000000 + 1.035000000000000 0.000000000000000 4.900000000000000 + 1.135000000000000 0.000000000000000 4.900000000000000 + 1.235000000000000 0.000000000000000 4.900000000000000 + 1.335000000000000 0.000000000000000 4.900000000000000 + 1.435000000000000 0.000000000000000 4.900000000000000 + 1.535000000000000 0.000000000000000 4.900000000000000 + 1.635000000000000 0.000000000000000 4.900000000000000 + 1.735000000000000 0.000000000000000 4.900000000000000 + 1.835000000000000 0.000000000000000 4.900000000000000 + 1.935000000000000 0.000000000000000 4.900000000000000 + 2.035000000000000 0.000000000000000 4.900000000000000 + 2.135000000000000 0.000000000000000 4.900000000000000 + 2.235000000000000 0.000000000000000 4.900000000000000 + 2.335000000000000 0.000000000000000 4.900000000000000 + 2.435000000000000 0.000000000000000 4.900000000000000 + 2.535000000000000 0.000000000000000 4.900000000000000 + 2.635000000000000 0.000000000000000 4.900000000000000 + 2.735000000000000 0.000000000000000 4.900000000000000 + 2.835000000000000 0.000000000000000 4.900000000000000 + 2.935000000000000 0.000000000000000 4.900000000000000 + 3.035000000000000 0.000000000000000 4.900000000000000 + 3.135000000000000 0.000000000000000 4.900000000000000 + 3.235000000000000 0.000000000000000 4.900000000000000 + 3.335000000000000 0.000000000000000 4.900000000000000 + 3.435000000000000 0.000000000000000 4.900000000000000 + 3.535000000000000 0.000000000000000 4.900000000000000 + 3.635000000000000 0.000000000000000 4.900000000000000 + 3.735000000000000 0.000000000000000 4.900000000000000 + 3.835000000000000 0.000000000000000 4.900000000000000 + 3.935000000000000 0.000000000000000 4.900000000000000 + 4.035000000000000 0.000000000000000 4.900000000000000 + 4.135000000000001 0.000000000000000 4.900000000000000 + 4.235000000000000 0.000000000000000 4.900000000000000 + 4.335000000000000 0.000000000000000 4.900000000000000 + 4.435000000000000 0.000000000000000 4.900000000000000 + 4.535000000000000 0.000000000000000 4.900000000000000 + 4.635000000000001 0.000000000000000 4.900000000000000 + 4.735000000000000 0.000000000000000 4.900000000000000 + 4.835000000000001 0.000000000000000 4.900000000000000 + 4.935000000000000 0.000000000000000 4.900000000000000 + 5.035000000000000 0.000000000000000 4.900000000000000 + 5.135000000000001 0.000000000000000 4.900000000000000 + 0.133845056285464 0.017621035949707 4.900000000000000 + 0.232989542422845 0.030673655171712 4.900000000000000 + 0.332134028560227 0.043726274393717 4.900000000000000 + 0.431278514697608 0.056778893615722 4.900000000000000 + 0.530423000834989 0.069831512837728 4.900000000000000 + 0.629567486972370 0.082884132059733 4.900000000000000 + 0.728711973109751 0.095936751281738 4.900000000000000 + 0.827856459247132 0.108989370503743 4.900000000000000 + 0.927000945384513 0.122041989725748 4.900000000000000 + 1.026145431521894 0.135094608947753 4.900000000000000 + 1.125289917659275 0.148147228169759 4.900000000000000 + 1.224434403796656 0.161199847391764 4.900000000000000 + 1.323578889934037 0.174252466613769 4.900000000000000 + 1.422723376071418 0.187305085835774 4.900000000000000 + 1.521867862208799 0.200357705057779 4.900000000000000 + 1.621012348346180 0.213410324279784 4.900000000000000 + 1.720156834483561 0.226462943501789 4.900000000000000 + 1.819301320620942 0.239515562723795 4.900000000000000 + 1.918445806758323 0.252568181945800 4.900000000000000 + 2.017590292895704 0.265620801167805 4.900000000000000 + 2.116734779033085 0.278673420389810 4.900000000000000 + 2.215879265170466 0.291726039611815 4.900000000000000 + 2.315023751307847 0.304778658833820 4.900000000000000 + 2.414168237445228 0.317831278055826 4.900000000000000 + 2.513312723582609 0.330883897277831 4.900000000000000 + 2.612457209719990 0.343936516499836 4.900000000000000 + 2.711601695857371 0.356989135721841 4.900000000000000 + 2.810746181994753 0.370041754943846 4.900000000000000 + 2.909890668132133 0.383094374165851 4.900000000000000 + 3.009035154269514 0.396146993387857 4.900000000000000 + 3.108179640406895 0.409199612609862 4.900000000000000 + 3.207324126544277 0.422252231831867 4.900000000000000 + 3.306468612681658 0.435304851053872 4.900000000000000 + 3.405613098819039 0.448357470275877 4.900000000000000 + 3.504757584956419 0.461410089497882 4.900000000000000 + 3.603902071093801 0.474462708719887 4.900000000000000 + 3.703046557231182 0.487515327941893 4.900000000000000 + 3.802191043368563 0.500567947163898 4.900000000000000 + 3.901335529505944 0.513620566385903 4.900000000000000 + 4.000480015643325 0.526673185607908 4.900000000000000 + 4.099624501780707 0.539725804829913 4.900000000000000 + 4.198768987918087 0.552778424051918 4.900000000000000 + 4.297913474055468 0.565831043273924 4.900000000000000 + 4.397057960192850 0.578883662495929 4.900000000000000 + 4.496202446330230 0.591936281717934 4.900000000000000 + 4.595346932467612 0.604988900939939 4.900000000000000 + 4.694491418604993 0.618041520161944 4.900000000000000 + 4.793635904742374 0.631094139383950 4.900000000000000 + 4.892780390879754 0.644146758605955 4.900000000000000 + 4.991924877017135 0.657199377827960 4.900000000000000 + 5.091069363154517 0.670251997049965 4.900000000000000 + 0.130399986549024 0.034940571088840 4.900000000000000 + 0.226992569177931 0.060822475599092 4.900000000000000 + 0.323585151806838 0.086704380109344 4.900000000000000 + 0.420177734435745 0.112586284619597 4.900000000000000 + 0.516770317064652 0.138468189129849 4.900000000000000 + 0.613362899693559 0.164350093640101 4.900000000000000 + 0.709955482322465 0.190231998150353 4.900000000000000 + 0.806548064951372 0.216113902660605 4.900000000000000 + 0.903140647580279 0.241995807170857 4.900000000000000 + 0.999733230209186 0.267877711681109 4.900000000000000 + 1.096325812838093 0.293759616191361 4.900000000000000 + 1.192918395467000 0.319641520701613 4.900000000000000 + 1.289510978095906 0.345523425211865 4.900000000000000 + 1.386103560724813 0.371405329722117 4.900000000000000 + 1.482696143353720 0.397287234232369 4.900000000000000 + 1.579288725982627 0.423169138742621 4.900000000000000 + 1.675881308611534 0.449051043252873 4.900000000000000 + 1.772473891240440 0.474932947763126 4.900000000000000 + 1.869066473869347 0.500814852273378 4.900000000000000 + 1.965659056498254 0.526696756783630 4.900000000000000 + 2.062251639127161 0.552578661293882 4.900000000000000 + 2.158844221756068 0.578460565804134 4.900000000000000 + 2.255436804384975 0.604342470314386 4.900000000000000 + 2.352029387013882 0.630224374824638 4.900000000000000 + 2.448621969642788 0.656106279334890 4.900000000000000 + 2.545214552271695 0.681988183845142 4.900000000000000 + 2.641807134900602 0.707870088355394 4.900000000000000 + 2.738399717529509 0.733751992865646 4.900000000000000 + 2.834992300158416 0.759633897375898 4.900000000000000 + 2.931584882787322 0.785515801886150 4.900000000000000 + 3.028177465416229 0.811397706396403 4.900000000000000 + 3.124770048045136 0.837279610906655 4.900000000000000 + 3.221362630674043 0.863161515416907 4.900000000000000 + 3.317955213302950 0.889043419927159 4.900000000000000 + 3.414547795931857 0.914925324437411 4.900000000000000 + 3.511140378560763 0.940807228947663 4.900000000000000 + 3.607732961189670 0.966689133457915 4.900000000000000 + 3.704325543818577 0.992571037968167 4.900000000000000 + 3.800918126447484 1.018452942478419 4.900000000000000 + 3.897510709076391 1.044334846988671 4.900000000000000 + 3.994103291705299 1.070216751498923 4.900000000000000 + 4.090695874334204 1.096098656009175 4.900000000000000 + 4.187288456963111 1.121980560519428 4.900000000000000 + 4.283881039592019 1.147862465029680 4.900000000000000 + 4.380473622220926 1.173744369539932 4.900000000000000 + 4.477066204849833 1.199626274050184 4.900000000000000 + 4.573658787478739 1.225508178560436 4.900000000000000 + 4.670251370107646 1.251390083070688 4.900000000000000 + 4.766843952736553 1.277271987580940 4.900000000000000 + 4.863436535365460 1.303153892091192 4.900000000000000 + 4.960029117994367 1.329035796601444 4.900000000000000 + 0.135000000000000 0.000000000000000 5.000000000000000 + 0.235000000000000 0.000000000000000 5.000000000000000 + 0.335000000000000 0.000000000000000 5.000000000000000 + 0.435000000000000 0.000000000000000 5.000000000000000 + 0.535000000000000 0.000000000000000 5.000000000000000 + 0.635000000000000 0.000000000000000 5.000000000000000 + 0.735000000000000 0.000000000000000 5.000000000000000 + 0.835000000000000 0.000000000000000 5.000000000000000 + 0.935000000000000 0.000000000000000 5.000000000000000 + 1.035000000000000 0.000000000000000 5.000000000000000 + 1.135000000000000 0.000000000000000 5.000000000000000 + 1.235000000000000 0.000000000000000 5.000000000000000 + 1.335000000000000 0.000000000000000 5.000000000000000 + 1.435000000000000 0.000000000000000 5.000000000000000 + 1.535000000000000 0.000000000000000 5.000000000000000 + 1.635000000000000 0.000000000000000 5.000000000000000 + 1.735000000000000 0.000000000000000 5.000000000000000 + 1.835000000000000 0.000000000000000 5.000000000000000 + 1.935000000000000 0.000000000000000 5.000000000000000 + 2.035000000000000 0.000000000000000 5.000000000000000 + 2.135000000000000 0.000000000000000 5.000000000000000 + 2.235000000000000 0.000000000000000 5.000000000000000 + 2.335000000000000 0.000000000000000 5.000000000000000 + 2.435000000000000 0.000000000000000 5.000000000000000 + 2.535000000000000 0.000000000000000 5.000000000000000 + 2.635000000000000 0.000000000000000 5.000000000000000 + 2.735000000000000 0.000000000000000 5.000000000000000 + 2.835000000000000 0.000000000000000 5.000000000000000 + 2.935000000000000 0.000000000000000 5.000000000000000 + 3.035000000000000 0.000000000000000 5.000000000000000 + 3.135000000000000 0.000000000000000 5.000000000000000 + 3.235000000000000 0.000000000000000 5.000000000000000 + 3.335000000000000 0.000000000000000 5.000000000000000 + 3.435000000000000 0.000000000000000 5.000000000000000 + 3.535000000000000 0.000000000000000 5.000000000000000 + 3.635000000000000 0.000000000000000 5.000000000000000 + 3.735000000000000 0.000000000000000 5.000000000000000 + 3.835000000000000 0.000000000000000 5.000000000000000 + 3.935000000000000 0.000000000000000 5.000000000000000 + 4.035000000000000 0.000000000000000 5.000000000000000 + 4.135000000000001 0.000000000000000 5.000000000000000 + 4.235000000000000 0.000000000000000 5.000000000000000 + 4.335000000000000 0.000000000000000 5.000000000000000 + 4.435000000000000 0.000000000000000 5.000000000000000 + 4.535000000000000 0.000000000000000 5.000000000000000 + 4.635000000000001 0.000000000000000 5.000000000000000 + 4.735000000000000 0.000000000000000 5.000000000000000 + 4.835000000000001 0.000000000000000 5.000000000000000 + 4.935000000000000 0.000000000000000 5.000000000000000 + 5.035000000000000 0.000000000000000 5.000000000000000 + 5.135000000000001 0.000000000000000 5.000000000000000 + 0.133845056285464 0.017621035949707 5.000000000000000 + 0.232989542422845 0.030673655171712 5.000000000000000 + 0.332134028560227 0.043726274393717 5.000000000000000 + 0.431278514697608 0.056778893615722 5.000000000000000 + 0.530423000834989 0.069831512837728 5.000000000000000 + 0.629567486972370 0.082884132059733 5.000000000000000 + 0.728711973109751 0.095936751281738 5.000000000000000 + 0.827856459247132 0.108989370503743 5.000000000000000 + 0.927000945384513 0.122041989725748 5.000000000000000 + 1.026145431521894 0.135094608947753 5.000000000000000 + 1.125289917659275 0.148147228169759 5.000000000000000 + 1.224434403796656 0.161199847391764 5.000000000000000 + 1.323578889934037 0.174252466613769 5.000000000000000 + 1.422723376071418 0.187305085835774 5.000000000000000 + 1.521867862208799 0.200357705057779 5.000000000000000 + 1.621012348346180 0.213410324279784 5.000000000000000 + 1.720156834483561 0.226462943501789 5.000000000000000 + 1.819301320620942 0.239515562723795 5.000000000000000 + 1.918445806758323 0.252568181945800 5.000000000000000 + 2.017590292895704 0.265620801167805 5.000000000000000 + 2.116734779033085 0.278673420389810 5.000000000000000 + 2.215879265170466 0.291726039611815 5.000000000000000 + 2.315023751307847 0.304778658833820 5.000000000000000 + 2.414168237445228 0.317831278055826 5.000000000000000 + 2.513312723582609 0.330883897277831 5.000000000000000 + 2.612457209719990 0.343936516499836 5.000000000000000 + 2.711601695857371 0.356989135721841 5.000000000000000 + 2.810746181994753 0.370041754943846 5.000000000000000 + 2.909890668132133 0.383094374165851 5.000000000000000 + 3.009035154269514 0.396146993387857 5.000000000000000 + 3.108179640406895 0.409199612609862 5.000000000000000 + 3.207324126544277 0.422252231831867 5.000000000000000 + 3.306468612681658 0.435304851053872 5.000000000000000 + 3.405613098819039 0.448357470275877 5.000000000000000 + 3.504757584956419 0.461410089497882 5.000000000000000 + 3.603902071093801 0.474462708719887 5.000000000000000 + 3.703046557231182 0.487515327941893 5.000000000000000 + 3.802191043368563 0.500567947163898 5.000000000000000 + 3.901335529505944 0.513620566385903 5.000000000000000 + 4.000480015643325 0.526673185607908 5.000000000000000 + 4.099624501780707 0.539725804829913 5.000000000000000 + 4.198768987918087 0.552778424051918 5.000000000000000 + 4.297913474055468 0.565831043273924 5.000000000000000 + 4.397057960192850 0.578883662495929 5.000000000000000 + 4.496202446330230 0.591936281717934 5.000000000000000 + 4.595346932467612 0.604988900939939 5.000000000000000 + 4.694491418604993 0.618041520161944 5.000000000000000 + 4.793635904742374 0.631094139383950 5.000000000000000 + 4.892780390879754 0.644146758605955 5.000000000000000 + 4.991924877017135 0.657199377827960 5.000000000000000 + 5.091069363154517 0.670251997049965 5.000000000000000 + 0.130399986549024 0.034940571088840 5.000000000000000 + 0.226992569177931 0.060822475599092 5.000000000000000 + 0.323585151806838 0.086704380109344 5.000000000000000 + 0.420177734435745 0.112586284619597 5.000000000000000 + 0.516770317064652 0.138468189129849 5.000000000000000 + 0.613362899693559 0.164350093640101 5.000000000000000 + 0.709955482322465 0.190231998150353 5.000000000000000 + 0.806548064951372 0.216113902660605 5.000000000000000 + 0.903140647580279 0.241995807170857 5.000000000000000 + 0.999733230209186 0.267877711681109 5.000000000000000 + 1.096325812838093 0.293759616191361 5.000000000000000 + 1.192918395467000 0.319641520701613 5.000000000000000 + 1.289510978095906 0.345523425211865 5.000000000000000 + 1.386103560724813 0.371405329722117 5.000000000000000 + 1.482696143353720 0.397287234232369 5.000000000000000 + 1.579288725982627 0.423169138742621 5.000000000000000 + 1.675881308611534 0.449051043252873 5.000000000000000 + 1.772473891240440 0.474932947763126 5.000000000000000 + 1.869066473869347 0.500814852273378 5.000000000000000 + 1.965659056498254 0.526696756783630 5.000000000000000 + 2.062251639127161 0.552578661293882 5.000000000000000 + 2.158844221756068 0.578460565804134 5.000000000000000 + 2.255436804384975 0.604342470314386 5.000000000000000 + 2.352029387013882 0.630224374824638 5.000000000000000 + 2.448621969642788 0.656106279334890 5.000000000000000 + 2.545214552271695 0.681988183845142 5.000000000000000 + 2.641807134900602 0.707870088355394 5.000000000000000 + 2.738399717529509 0.733751992865646 5.000000000000000 + 2.834992300158416 0.759633897375898 5.000000000000000 + 2.931584882787322 0.785515801886150 5.000000000000000 + 3.028177465416229 0.811397706396403 5.000000000000000 + 3.124770048045136 0.837279610906655 5.000000000000000 + 3.221362630674043 0.863161515416907 5.000000000000000 + 3.317955213302950 0.889043419927159 5.000000000000000 + 3.414547795931857 0.914925324437411 5.000000000000000 + 3.511140378560763 0.940807228947663 5.000000000000000 + 3.607732961189670 0.966689133457915 5.000000000000000 + 3.704325543818577 0.992571037968167 5.000000000000000 + 3.800918126447484 1.018452942478419 5.000000000000000 + 3.897510709076391 1.044334846988671 5.000000000000000 + 3.994103291705299 1.070216751498923 5.000000000000000 + 4.090695874334204 1.096098656009175 5.000000000000000 + 4.187288456963111 1.121980560519428 5.000000000000000 + 4.283881039592019 1.147862465029680 5.000000000000000 + 4.380473622220926 1.173744369539932 5.000000000000000 + 4.477066204849833 1.199626274050184 5.000000000000000 + 4.573658787478739 1.225508178560436 5.000000000000000 + 4.670251370107646 1.251390083070688 5.000000000000000 + 4.766843952736553 1.277271987580940 5.000000000000000 + 4.863436535365460 1.303153892091192 5.000000000000000 + 4.960029117994367 1.329035796601444 5.000000000000000 + 0.135000000000000 0.000000000000000 5.100000000000000 + 0.235000000000000 0.000000000000000 5.100000000000000 + 0.335000000000000 0.000000000000000 5.100000000000000 + 0.435000000000000 0.000000000000000 5.100000000000000 + 0.535000000000000 0.000000000000000 5.100000000000000 + 0.635000000000000 0.000000000000000 5.100000000000000 + 0.735000000000000 0.000000000000000 5.100000000000000 + 0.835000000000000 0.000000000000000 5.100000000000000 + 0.935000000000000 0.000000000000000 5.100000000000000 + 1.035000000000000 0.000000000000000 5.100000000000000 + 1.135000000000000 0.000000000000000 5.100000000000000 + 1.235000000000000 0.000000000000000 5.100000000000000 + 1.335000000000000 0.000000000000000 5.100000000000000 + 1.435000000000000 0.000000000000000 5.100000000000000 + 1.535000000000000 0.000000000000000 5.100000000000000 + 1.635000000000000 0.000000000000000 5.100000000000000 + 1.735000000000000 0.000000000000000 5.100000000000000 + 1.835000000000000 0.000000000000000 5.100000000000000 + 1.935000000000000 0.000000000000000 5.100000000000000 + 2.035000000000000 0.000000000000000 5.100000000000000 + 2.135000000000000 0.000000000000000 5.100000000000000 + 2.235000000000000 0.000000000000000 5.100000000000000 + 2.335000000000000 0.000000000000000 5.100000000000000 + 2.435000000000000 0.000000000000000 5.100000000000000 + 2.535000000000000 0.000000000000000 5.100000000000000 + 2.635000000000000 0.000000000000000 5.100000000000000 + 2.735000000000000 0.000000000000000 5.100000000000000 + 2.835000000000000 0.000000000000000 5.100000000000000 + 2.935000000000000 0.000000000000000 5.100000000000000 + 3.035000000000000 0.000000000000000 5.100000000000000 + 3.135000000000000 0.000000000000000 5.100000000000000 + 3.235000000000000 0.000000000000000 5.100000000000000 + 3.335000000000000 0.000000000000000 5.100000000000000 + 3.435000000000000 0.000000000000000 5.100000000000000 + 3.535000000000000 0.000000000000000 5.100000000000000 + 3.635000000000000 0.000000000000000 5.100000000000000 + 3.735000000000000 0.000000000000000 5.100000000000000 + 3.835000000000000 0.000000000000000 5.100000000000000 + 3.935000000000000 0.000000000000000 5.100000000000000 + 4.035000000000000 0.000000000000000 5.100000000000000 + 4.135000000000001 0.000000000000000 5.100000000000000 + 4.235000000000000 0.000000000000000 5.100000000000000 + 4.335000000000000 0.000000000000000 5.100000000000000 + 4.435000000000000 0.000000000000000 5.100000000000000 + 4.535000000000000 0.000000000000000 5.100000000000000 + 4.635000000000001 0.000000000000000 5.100000000000000 + 4.735000000000000 0.000000000000000 5.100000000000000 + 4.835000000000001 0.000000000000000 5.100000000000000 + 4.935000000000000 0.000000000000000 5.100000000000000 + 5.035000000000000 0.000000000000000 5.100000000000000 + 5.135000000000001 0.000000000000000 5.100000000000000 + 0.133845056285464 0.017621035949707 5.100000000000000 + 0.232989542422845 0.030673655171712 5.100000000000000 + 0.332134028560227 0.043726274393717 5.100000000000000 + 0.431278514697608 0.056778893615722 5.100000000000000 + 0.530423000834989 0.069831512837728 5.100000000000000 + 0.629567486972370 0.082884132059733 5.100000000000000 + 0.728711973109751 0.095936751281738 5.100000000000000 + 0.827856459247132 0.108989370503743 5.100000000000000 + 0.927000945384513 0.122041989725748 5.100000000000000 + 1.026145431521894 0.135094608947753 5.100000000000000 + 1.125289917659275 0.148147228169759 5.100000000000000 + 1.224434403796656 0.161199847391764 5.100000000000000 + 1.323578889934037 0.174252466613769 5.100000000000000 + 1.422723376071418 0.187305085835774 5.100000000000000 + 1.521867862208799 0.200357705057779 5.100000000000000 + 1.621012348346180 0.213410324279784 5.100000000000000 + 1.720156834483561 0.226462943501789 5.100000000000000 + 1.819301320620942 0.239515562723795 5.100000000000000 + 1.918445806758323 0.252568181945800 5.100000000000000 + 2.017590292895704 0.265620801167805 5.100000000000000 + 2.116734779033085 0.278673420389810 5.100000000000000 + 2.215879265170466 0.291726039611815 5.100000000000000 + 2.315023751307847 0.304778658833820 5.100000000000000 + 2.414168237445228 0.317831278055826 5.100000000000000 + 2.513312723582609 0.330883897277831 5.100000000000000 + 2.612457209719990 0.343936516499836 5.100000000000000 + 2.711601695857371 0.356989135721841 5.100000000000000 + 2.810746181994753 0.370041754943846 5.100000000000000 + 2.909890668132133 0.383094374165851 5.100000000000000 + 3.009035154269514 0.396146993387857 5.100000000000000 + 3.108179640406895 0.409199612609862 5.100000000000000 + 3.207324126544277 0.422252231831867 5.100000000000000 + 3.306468612681658 0.435304851053872 5.100000000000000 + 3.405613098819039 0.448357470275877 5.100000000000000 + 3.504757584956419 0.461410089497882 5.100000000000000 + 3.603902071093801 0.474462708719887 5.100000000000000 + 3.703046557231182 0.487515327941893 5.100000000000000 + 3.802191043368563 0.500567947163898 5.100000000000000 + 3.901335529505944 0.513620566385903 5.100000000000000 + 4.000480015643325 0.526673185607908 5.100000000000000 + 4.099624501780707 0.539725804829913 5.100000000000000 + 4.198768987918087 0.552778424051918 5.100000000000000 + 4.297913474055468 0.565831043273924 5.100000000000000 + 4.397057960192850 0.578883662495929 5.100000000000000 + 4.496202446330230 0.591936281717934 5.100000000000000 + 4.595346932467612 0.604988900939939 5.100000000000000 + 4.694491418604993 0.618041520161944 5.100000000000000 + 4.793635904742374 0.631094139383950 5.100000000000000 + 4.892780390879754 0.644146758605955 5.100000000000000 + 4.991924877017135 0.657199377827960 5.100000000000000 + 5.091069363154517 0.670251997049965 5.100000000000000 + 0.130399986549024 0.034940571088840 5.100000000000000 + 0.226992569177931 0.060822475599092 5.100000000000000 + 0.323585151806838 0.086704380109344 5.100000000000000 + 0.420177734435745 0.112586284619597 5.100000000000000 + 0.516770317064652 0.138468189129849 5.100000000000000 + 0.613362899693559 0.164350093640101 5.100000000000000 + 0.709955482322465 0.190231998150353 5.100000000000000 + 0.806548064951372 0.216113902660605 5.100000000000000 + 0.903140647580279 0.241995807170857 5.100000000000000 + 0.999733230209186 0.267877711681109 5.100000000000000 + 1.096325812838093 0.293759616191361 5.100000000000000 + 1.192918395467000 0.319641520701613 5.100000000000000 + 1.289510978095906 0.345523425211865 5.100000000000000 + 1.386103560724813 0.371405329722117 5.100000000000000 + 1.482696143353720 0.397287234232369 5.100000000000000 + 1.579288725982627 0.423169138742621 5.100000000000000 + 1.675881308611534 0.449051043252873 5.100000000000000 + 1.772473891240440 0.474932947763126 5.100000000000000 + 1.869066473869347 0.500814852273378 5.100000000000000 + 1.965659056498254 0.526696756783630 5.100000000000000 + 2.062251639127161 0.552578661293882 5.100000000000000 + 2.158844221756068 0.578460565804134 5.100000000000000 + 2.255436804384975 0.604342470314386 5.100000000000000 + 2.352029387013882 0.630224374824638 5.100000000000000 + 2.448621969642788 0.656106279334890 5.100000000000000 + 2.545214552271695 0.681988183845142 5.100000000000000 + 2.641807134900602 0.707870088355394 5.100000000000000 + 2.738399717529509 0.733751992865646 5.100000000000000 + 2.834992300158416 0.759633897375898 5.100000000000000 + 2.931584882787322 0.785515801886150 5.100000000000000 + 3.028177465416229 0.811397706396403 5.100000000000000 + 3.124770048045136 0.837279610906655 5.100000000000000 + 3.221362630674043 0.863161515416907 5.100000000000000 + 3.317955213302950 0.889043419927159 5.100000000000000 + 3.414547795931857 0.914925324437411 5.100000000000000 + 3.511140378560763 0.940807228947663 5.100000000000000 + 3.607732961189670 0.966689133457915 5.100000000000000 + 3.704325543818577 0.992571037968167 5.100000000000000 + 3.800918126447484 1.018452942478419 5.100000000000000 + 3.897510709076391 1.044334846988671 5.100000000000000 + 3.994103291705299 1.070216751498923 5.100000000000000 + 4.090695874334204 1.096098656009175 5.100000000000000 + 4.187288456963111 1.121980560519428 5.100000000000000 + 4.283881039592019 1.147862465029680 5.100000000000000 + 4.380473622220926 1.173744369539932 5.100000000000000 + 4.477066204849833 1.199626274050184 5.100000000000000 + 4.573658787478739 1.225508178560436 5.100000000000000 + 4.670251370107646 1.251390083070688 5.100000000000000 + 4.766843952736553 1.277271987580940 5.100000000000000 + 4.863436535365460 1.303153892091192 5.100000000000000 + 4.960029117994367 1.329035796601444 5.100000000000000 + 0.135000000000000 0.000000000000000 5.200000000000000 + 0.235000000000000 0.000000000000000 5.200000000000000 + 0.335000000000000 0.000000000000000 5.200000000000000 + 0.435000000000000 0.000000000000000 5.200000000000000 + 0.535000000000000 0.000000000000000 5.200000000000000 + 0.635000000000000 0.000000000000000 5.200000000000000 + 0.735000000000000 0.000000000000000 5.200000000000000 + 0.835000000000000 0.000000000000000 5.200000000000000 + 0.935000000000000 0.000000000000000 5.200000000000000 + 1.035000000000000 0.000000000000000 5.200000000000000 + 1.135000000000000 0.000000000000000 5.200000000000000 + 1.235000000000000 0.000000000000000 5.200000000000000 + 1.335000000000000 0.000000000000000 5.200000000000000 + 1.435000000000000 0.000000000000000 5.200000000000000 + 1.535000000000000 0.000000000000000 5.200000000000000 + 1.635000000000000 0.000000000000000 5.200000000000000 + 1.735000000000000 0.000000000000000 5.200000000000000 + 1.835000000000000 0.000000000000000 5.200000000000000 + 1.935000000000000 0.000000000000000 5.200000000000000 + 2.035000000000000 0.000000000000000 5.200000000000000 + 2.135000000000000 0.000000000000000 5.200000000000000 + 2.235000000000000 0.000000000000000 5.200000000000000 + 2.335000000000000 0.000000000000000 5.200000000000000 + 2.435000000000000 0.000000000000000 5.200000000000000 + 2.535000000000000 0.000000000000000 5.200000000000000 + 2.635000000000000 0.000000000000000 5.200000000000000 + 2.735000000000000 0.000000000000000 5.200000000000000 + 2.835000000000000 0.000000000000000 5.200000000000000 + 2.935000000000000 0.000000000000000 5.200000000000000 + 3.035000000000000 0.000000000000000 5.200000000000000 + 3.135000000000000 0.000000000000000 5.200000000000000 + 3.235000000000000 0.000000000000000 5.200000000000000 + 3.335000000000000 0.000000000000000 5.200000000000000 + 3.435000000000000 0.000000000000000 5.200000000000000 + 3.535000000000000 0.000000000000000 5.200000000000000 + 3.635000000000000 0.000000000000000 5.200000000000000 + 3.735000000000000 0.000000000000000 5.200000000000000 + 3.835000000000000 0.000000000000000 5.200000000000000 + 3.935000000000000 0.000000000000000 5.200000000000000 + 4.035000000000000 0.000000000000000 5.200000000000000 + 4.135000000000001 0.000000000000000 5.200000000000000 + 4.235000000000000 0.000000000000000 5.200000000000000 + 4.335000000000000 0.000000000000000 5.200000000000000 + 4.435000000000000 0.000000000000000 5.200000000000000 + 4.535000000000000 0.000000000000000 5.200000000000000 + 4.635000000000001 0.000000000000000 5.200000000000000 + 4.735000000000000 0.000000000000000 5.200000000000000 + 4.835000000000001 0.000000000000000 5.200000000000000 + 4.935000000000000 0.000000000000000 5.200000000000000 + 5.035000000000000 0.000000000000000 5.200000000000000 + 5.135000000000001 0.000000000000000 5.200000000000000 + 0.133845056285464 0.017621035949707 5.200000000000000 + 0.232989542422845 0.030673655171712 5.200000000000000 + 0.332134028560227 0.043726274393717 5.200000000000000 + 0.431278514697608 0.056778893615722 5.200000000000000 + 0.530423000834989 0.069831512837728 5.200000000000000 + 0.629567486972370 0.082884132059733 5.200000000000000 + 0.728711973109751 0.095936751281738 5.200000000000000 + 0.827856459247132 0.108989370503743 5.200000000000000 + 0.927000945384513 0.122041989725748 5.200000000000000 + 1.026145431521894 0.135094608947753 5.200000000000000 + 1.125289917659275 0.148147228169759 5.200000000000000 + 1.224434403796656 0.161199847391764 5.200000000000000 + 1.323578889934037 0.174252466613769 5.200000000000000 + 1.422723376071418 0.187305085835774 5.200000000000000 + 1.521867862208799 0.200357705057779 5.200000000000000 + 1.621012348346180 0.213410324279784 5.200000000000000 + 1.720156834483561 0.226462943501789 5.200000000000000 + 1.819301320620942 0.239515562723795 5.200000000000000 + 1.918445806758323 0.252568181945800 5.200000000000000 + 2.017590292895704 0.265620801167805 5.200000000000000 + 2.116734779033085 0.278673420389810 5.200000000000000 + 2.215879265170466 0.291726039611815 5.200000000000000 + 2.315023751307847 0.304778658833820 5.200000000000000 + 2.414168237445228 0.317831278055826 5.200000000000000 + 2.513312723582609 0.330883897277831 5.200000000000000 + 2.612457209719990 0.343936516499836 5.200000000000000 + 2.711601695857371 0.356989135721841 5.200000000000000 + 2.810746181994753 0.370041754943846 5.200000000000000 + 2.909890668132133 0.383094374165851 5.200000000000000 + 3.009035154269514 0.396146993387857 5.200000000000000 + 3.108179640406895 0.409199612609862 5.200000000000000 + 3.207324126544277 0.422252231831867 5.200000000000000 + 3.306468612681658 0.435304851053872 5.200000000000000 + 3.405613098819039 0.448357470275877 5.200000000000000 + 3.504757584956419 0.461410089497882 5.200000000000000 + 3.603902071093801 0.474462708719887 5.200000000000000 + 3.703046557231182 0.487515327941893 5.200000000000000 + 3.802191043368563 0.500567947163898 5.200000000000000 + 3.901335529505944 0.513620566385903 5.200000000000000 + 4.000480015643325 0.526673185607908 5.200000000000000 + 4.099624501780707 0.539725804829913 5.200000000000000 + 4.198768987918087 0.552778424051918 5.200000000000000 + 4.297913474055468 0.565831043273924 5.200000000000000 + 4.397057960192850 0.578883662495929 5.200000000000000 + 4.496202446330230 0.591936281717934 5.200000000000000 + 4.595346932467612 0.604988900939939 5.200000000000000 + 4.694491418604993 0.618041520161944 5.200000000000000 + 4.793635904742374 0.631094139383950 5.200000000000000 + 4.892780390879754 0.644146758605955 5.200000000000000 + 4.991924877017135 0.657199377827960 5.200000000000000 + 5.091069363154517 0.670251997049965 5.200000000000000 + 0.130399986549024 0.034940571088840 5.200000000000000 + 0.226992569177931 0.060822475599092 5.200000000000000 + 0.323585151806838 0.086704380109344 5.200000000000000 + 0.420177734435745 0.112586284619597 5.200000000000000 + 0.516770317064652 0.138468189129849 5.200000000000000 + 0.613362899693559 0.164350093640101 5.200000000000000 + 0.709955482322465 0.190231998150353 5.200000000000000 + 0.806548064951372 0.216113902660605 5.200000000000000 + 0.903140647580279 0.241995807170857 5.200000000000000 + 0.999733230209186 0.267877711681109 5.200000000000000 + 1.096325812838093 0.293759616191361 5.200000000000000 + 1.192918395467000 0.319641520701613 5.200000000000000 + 1.289510978095906 0.345523425211865 5.200000000000000 + 1.386103560724813 0.371405329722117 5.200000000000000 + 1.482696143353720 0.397287234232369 5.200000000000000 + 1.579288725982627 0.423169138742621 5.200000000000000 + 1.675881308611534 0.449051043252873 5.200000000000000 + 1.772473891240440 0.474932947763126 5.200000000000000 + 1.869066473869347 0.500814852273378 5.200000000000000 + 1.965659056498254 0.526696756783630 5.200000000000000 + 2.062251639127161 0.552578661293882 5.200000000000000 + 2.158844221756068 0.578460565804134 5.200000000000000 + 2.255436804384975 0.604342470314386 5.200000000000000 + 2.352029387013882 0.630224374824638 5.200000000000000 + 2.448621969642788 0.656106279334890 5.200000000000000 + 2.545214552271695 0.681988183845142 5.200000000000000 + 2.641807134900602 0.707870088355394 5.200000000000000 + 2.738399717529509 0.733751992865646 5.200000000000000 + 2.834992300158416 0.759633897375898 5.200000000000000 + 2.931584882787322 0.785515801886150 5.200000000000000 + 3.028177465416229 0.811397706396403 5.200000000000000 + 3.124770048045136 0.837279610906655 5.200000000000000 + 3.221362630674043 0.863161515416907 5.200000000000000 + 3.317955213302950 0.889043419927159 5.200000000000000 + 3.414547795931857 0.914925324437411 5.200000000000000 + 3.511140378560763 0.940807228947663 5.200000000000000 + 3.607732961189670 0.966689133457915 5.200000000000000 + 3.704325543818577 0.992571037968167 5.200000000000000 + 3.800918126447484 1.018452942478419 5.200000000000000 + 3.897510709076391 1.044334846988671 5.200000000000000 + 3.994103291705299 1.070216751498923 5.200000000000000 + 4.090695874334204 1.096098656009175 5.200000000000000 + 4.187288456963111 1.121980560519428 5.200000000000000 + 4.283881039592019 1.147862465029680 5.200000000000000 + 4.380473622220926 1.173744369539932 5.200000000000000 + 4.477066204849833 1.199626274050184 5.200000000000000 + 4.573658787478739 1.225508178560436 5.200000000000000 + 4.670251370107646 1.251390083070688 5.200000000000000 + 4.766843952736553 1.277271987580940 5.200000000000000 + 4.863436535365460 1.303153892091192 5.200000000000000 + 4.960029117994367 1.329035796601444 5.200000000000000 + 0.135000000000000 0.000000000000000 5.300000000000000 + 0.235000000000000 0.000000000000000 5.300000000000000 + 0.335000000000000 0.000000000000000 5.300000000000000 + 0.435000000000000 0.000000000000000 5.300000000000000 + 0.535000000000000 0.000000000000000 5.300000000000000 + 0.635000000000000 0.000000000000000 5.300000000000000 + 0.735000000000000 0.000000000000000 5.300000000000000 + 0.835000000000000 0.000000000000000 5.300000000000000 + 0.935000000000000 0.000000000000000 5.300000000000000 + 1.035000000000000 0.000000000000000 5.300000000000000 + 1.135000000000000 0.000000000000000 5.300000000000000 + 1.235000000000000 0.000000000000000 5.300000000000000 + 1.335000000000000 0.000000000000000 5.300000000000000 + 1.435000000000000 0.000000000000000 5.300000000000000 + 1.535000000000000 0.000000000000000 5.300000000000000 + 1.635000000000000 0.000000000000000 5.300000000000000 + 1.735000000000000 0.000000000000000 5.300000000000000 + 1.835000000000000 0.000000000000000 5.300000000000000 + 1.935000000000000 0.000000000000000 5.300000000000000 + 2.035000000000000 0.000000000000000 5.300000000000000 + 2.135000000000000 0.000000000000000 5.300000000000000 + 2.235000000000000 0.000000000000000 5.300000000000000 + 2.335000000000000 0.000000000000000 5.300000000000000 + 2.435000000000000 0.000000000000000 5.300000000000000 + 2.535000000000000 0.000000000000000 5.300000000000000 + 2.635000000000000 0.000000000000000 5.300000000000000 + 2.735000000000000 0.000000000000000 5.300000000000000 + 2.835000000000000 0.000000000000000 5.300000000000000 + 2.935000000000000 0.000000000000000 5.300000000000000 + 3.035000000000000 0.000000000000000 5.300000000000000 + 3.135000000000000 0.000000000000000 5.300000000000000 + 3.235000000000000 0.000000000000000 5.300000000000000 + 3.335000000000000 0.000000000000000 5.300000000000000 + 3.435000000000000 0.000000000000000 5.300000000000000 + 3.535000000000000 0.000000000000000 5.300000000000000 + 3.635000000000000 0.000000000000000 5.300000000000000 + 3.735000000000000 0.000000000000000 5.300000000000000 + 3.835000000000000 0.000000000000000 5.300000000000000 + 3.935000000000000 0.000000000000000 5.300000000000000 + 4.035000000000000 0.000000000000000 5.300000000000000 + 4.135000000000001 0.000000000000000 5.300000000000000 + 4.235000000000000 0.000000000000000 5.300000000000000 + 4.335000000000000 0.000000000000000 5.300000000000000 + 4.435000000000000 0.000000000000000 5.300000000000000 + 4.535000000000000 0.000000000000000 5.300000000000000 + 4.635000000000001 0.000000000000000 5.300000000000000 + 4.735000000000000 0.000000000000000 5.300000000000000 + 4.835000000000001 0.000000000000000 5.300000000000000 + 4.935000000000000 0.000000000000000 5.300000000000000 + 5.035000000000000 0.000000000000000 5.300000000000000 + 5.135000000000001 0.000000000000000 5.300000000000000 + 0.133845056285464 0.017621035949707 5.300000000000000 + 0.232989542422845 0.030673655171712 5.300000000000000 + 0.332134028560227 0.043726274393717 5.300000000000000 + 0.431278514697608 0.056778893615722 5.300000000000000 + 0.530423000834989 0.069831512837728 5.300000000000000 + 0.629567486972370 0.082884132059733 5.300000000000000 + 0.728711973109751 0.095936751281738 5.300000000000000 + 0.827856459247132 0.108989370503743 5.300000000000000 + 0.927000945384513 0.122041989725748 5.300000000000000 + 1.026145431521894 0.135094608947753 5.300000000000000 + 1.125289917659275 0.148147228169759 5.300000000000000 + 1.224434403796656 0.161199847391764 5.300000000000000 + 1.323578889934037 0.174252466613769 5.300000000000000 + 1.422723376071418 0.187305085835774 5.300000000000000 + 1.521867862208799 0.200357705057779 5.300000000000000 + 1.621012348346180 0.213410324279784 5.300000000000000 + 1.720156834483561 0.226462943501789 5.300000000000000 + 1.819301320620942 0.239515562723795 5.300000000000000 + 1.918445806758323 0.252568181945800 5.300000000000000 + 2.017590292895704 0.265620801167805 5.300000000000000 + 2.116734779033085 0.278673420389810 5.300000000000000 + 2.215879265170466 0.291726039611815 5.300000000000000 + 2.315023751307847 0.304778658833820 5.300000000000000 + 2.414168237445228 0.317831278055826 5.300000000000000 + 2.513312723582609 0.330883897277831 5.300000000000000 + 2.612457209719990 0.343936516499836 5.300000000000000 + 2.711601695857371 0.356989135721841 5.300000000000000 + 2.810746181994753 0.370041754943846 5.300000000000000 + 2.909890668132133 0.383094374165851 5.300000000000000 + 3.009035154269514 0.396146993387857 5.300000000000000 + 3.108179640406895 0.409199612609862 5.300000000000000 + 3.207324126544277 0.422252231831867 5.300000000000000 + 3.306468612681658 0.435304851053872 5.300000000000000 + 3.405613098819039 0.448357470275877 5.300000000000000 + 3.504757584956419 0.461410089497882 5.300000000000000 + 3.603902071093801 0.474462708719887 5.300000000000000 + 3.703046557231182 0.487515327941893 5.300000000000000 + 3.802191043368563 0.500567947163898 5.300000000000000 + 3.901335529505944 0.513620566385903 5.300000000000000 + 4.000480015643325 0.526673185607908 5.300000000000000 + 4.099624501780707 0.539725804829913 5.300000000000000 + 4.198768987918087 0.552778424051918 5.300000000000000 + 4.297913474055468 0.565831043273924 5.300000000000000 + 4.397057960192850 0.578883662495929 5.300000000000000 + 4.496202446330230 0.591936281717934 5.300000000000000 + 4.595346932467612 0.604988900939939 5.300000000000000 + 4.694491418604993 0.618041520161944 5.300000000000000 + 4.793635904742374 0.631094139383950 5.300000000000000 + 4.892780390879754 0.644146758605955 5.300000000000000 + 4.991924877017135 0.657199377827960 5.300000000000000 + 5.091069363154517 0.670251997049965 5.300000000000000 + 0.130399986549024 0.034940571088840 5.300000000000000 + 0.226992569177931 0.060822475599092 5.300000000000000 + 0.323585151806838 0.086704380109344 5.300000000000000 + 0.420177734435745 0.112586284619597 5.300000000000000 + 0.516770317064652 0.138468189129849 5.300000000000000 + 0.613362899693559 0.164350093640101 5.300000000000000 + 0.709955482322465 0.190231998150353 5.300000000000000 + 0.806548064951372 0.216113902660605 5.300000000000000 + 0.903140647580279 0.241995807170857 5.300000000000000 + 0.999733230209186 0.267877711681109 5.300000000000000 + 1.096325812838093 0.293759616191361 5.300000000000000 + 1.192918395467000 0.319641520701613 5.300000000000000 + 1.289510978095906 0.345523425211865 5.300000000000000 + 1.386103560724813 0.371405329722117 5.300000000000000 + 1.482696143353720 0.397287234232369 5.300000000000000 + 1.579288725982627 0.423169138742621 5.300000000000000 + 1.675881308611534 0.449051043252873 5.300000000000000 + 1.772473891240440 0.474932947763126 5.300000000000000 + 1.869066473869347 0.500814852273378 5.300000000000000 + 1.965659056498254 0.526696756783630 5.300000000000000 + 2.062251639127161 0.552578661293882 5.300000000000000 + 2.158844221756068 0.578460565804134 5.300000000000000 + 2.255436804384975 0.604342470314386 5.300000000000000 + 2.352029387013882 0.630224374824638 5.300000000000000 + 2.448621969642788 0.656106279334890 5.300000000000000 + 2.545214552271695 0.681988183845142 5.300000000000000 + 2.641807134900602 0.707870088355394 5.300000000000000 + 2.738399717529509 0.733751992865646 5.300000000000000 + 2.834992300158416 0.759633897375898 5.300000000000000 + 2.931584882787322 0.785515801886150 5.300000000000000 + 3.028177465416229 0.811397706396403 5.300000000000000 + 3.124770048045136 0.837279610906655 5.300000000000000 + 3.221362630674043 0.863161515416907 5.300000000000000 + 3.317955213302950 0.889043419927159 5.300000000000000 + 3.414547795931857 0.914925324437411 5.300000000000000 + 3.511140378560763 0.940807228947663 5.300000000000000 + 3.607732961189670 0.966689133457915 5.300000000000000 + 3.704325543818577 0.992571037968167 5.300000000000000 + 3.800918126447484 1.018452942478419 5.300000000000000 + 3.897510709076391 1.044334846988671 5.300000000000000 + 3.994103291705299 1.070216751498923 5.300000000000000 + 4.090695874334204 1.096098656009175 5.300000000000000 + 4.187288456963111 1.121980560519428 5.300000000000000 + 4.283881039592019 1.147862465029680 5.300000000000000 + 4.380473622220926 1.173744369539932 5.300000000000000 + 4.477066204849833 1.199626274050184 5.300000000000000 + 4.573658787478739 1.225508178560436 5.300000000000000 + 4.670251370107646 1.251390083070688 5.300000000000000 + 4.766843952736553 1.277271987580940 5.300000000000000 + 4.863436535365460 1.303153892091192 5.300000000000000 + 4.960029117994367 1.329035796601444 5.300000000000000 + 0.135000000000000 0.000000000000000 5.400000000000000 + 0.235000000000000 0.000000000000000 5.400000000000000 + 0.335000000000000 0.000000000000000 5.400000000000000 + 0.435000000000000 0.000000000000000 5.400000000000000 + 0.535000000000000 0.000000000000000 5.400000000000000 + 0.635000000000000 0.000000000000000 5.400000000000000 + 0.735000000000000 0.000000000000000 5.400000000000000 + 0.835000000000000 0.000000000000000 5.400000000000000 + 0.935000000000000 0.000000000000000 5.400000000000000 + 1.035000000000000 0.000000000000000 5.400000000000000 + 1.135000000000000 0.000000000000000 5.400000000000000 + 1.235000000000000 0.000000000000000 5.400000000000000 + 1.335000000000000 0.000000000000000 5.400000000000000 + 1.435000000000000 0.000000000000000 5.400000000000000 + 1.535000000000000 0.000000000000000 5.400000000000000 + 1.635000000000000 0.000000000000000 5.400000000000000 + 1.735000000000000 0.000000000000000 5.400000000000000 + 1.835000000000000 0.000000000000000 5.400000000000000 + 1.935000000000000 0.000000000000000 5.400000000000000 + 2.035000000000000 0.000000000000000 5.400000000000000 + 2.135000000000000 0.000000000000000 5.400000000000000 + 2.235000000000000 0.000000000000000 5.400000000000000 + 2.335000000000000 0.000000000000000 5.400000000000000 + 2.435000000000000 0.000000000000000 5.400000000000000 + 2.535000000000000 0.000000000000000 5.400000000000000 + 2.635000000000000 0.000000000000000 5.400000000000000 + 2.735000000000000 0.000000000000000 5.400000000000000 + 2.835000000000000 0.000000000000000 5.400000000000000 + 2.935000000000000 0.000000000000000 5.400000000000000 + 3.035000000000000 0.000000000000000 5.400000000000000 + 3.135000000000000 0.000000000000000 5.400000000000000 + 3.235000000000000 0.000000000000000 5.400000000000000 + 3.335000000000000 0.000000000000000 5.400000000000000 + 3.435000000000000 0.000000000000000 5.400000000000000 + 3.535000000000000 0.000000000000000 5.400000000000000 + 3.635000000000000 0.000000000000000 5.400000000000000 + 3.735000000000000 0.000000000000000 5.400000000000000 + 3.835000000000000 0.000000000000000 5.400000000000000 + 3.935000000000000 0.000000000000000 5.400000000000000 + 4.035000000000000 0.000000000000000 5.400000000000000 + 4.135000000000001 0.000000000000000 5.400000000000000 + 4.235000000000000 0.000000000000000 5.400000000000000 + 4.335000000000000 0.000000000000000 5.400000000000000 + 4.435000000000000 0.000000000000000 5.400000000000000 + 4.535000000000000 0.000000000000000 5.400000000000000 + 4.635000000000001 0.000000000000000 5.400000000000000 + 4.735000000000000 0.000000000000000 5.400000000000000 + 4.835000000000001 0.000000000000000 5.400000000000000 + 4.935000000000000 0.000000000000000 5.400000000000000 + 5.035000000000000 0.000000000000000 5.400000000000000 + 5.135000000000001 0.000000000000000 5.400000000000000 + 0.133845056285464 0.017621035949707 5.400000000000000 + 0.232989542422845 0.030673655171712 5.400000000000000 + 0.332134028560227 0.043726274393717 5.400000000000000 + 0.431278514697608 0.056778893615722 5.400000000000000 + 0.530423000834989 0.069831512837728 5.400000000000000 + 0.629567486972370 0.082884132059733 5.400000000000000 + 0.728711973109751 0.095936751281738 5.400000000000000 + 0.827856459247132 0.108989370503743 5.400000000000000 + 0.927000945384513 0.122041989725748 5.400000000000000 + 1.026145431521894 0.135094608947753 5.400000000000000 + 1.125289917659275 0.148147228169759 5.400000000000000 + 1.224434403796656 0.161199847391764 5.400000000000000 + 1.323578889934037 0.174252466613769 5.400000000000000 + 1.422723376071418 0.187305085835774 5.400000000000000 + 1.521867862208799 0.200357705057779 5.400000000000000 + 1.621012348346180 0.213410324279784 5.400000000000000 + 1.720156834483561 0.226462943501789 5.400000000000000 + 1.819301320620942 0.239515562723795 5.400000000000000 + 1.918445806758323 0.252568181945800 5.400000000000000 + 2.017590292895704 0.265620801167805 5.400000000000000 + 2.116734779033085 0.278673420389810 5.400000000000000 + 2.215879265170466 0.291726039611815 5.400000000000000 + 2.315023751307847 0.304778658833820 5.400000000000000 + 2.414168237445228 0.317831278055826 5.400000000000000 + 2.513312723582609 0.330883897277831 5.400000000000000 + 2.612457209719990 0.343936516499836 5.400000000000000 + 2.711601695857371 0.356989135721841 5.400000000000000 + 2.810746181994753 0.370041754943846 5.400000000000000 + 2.909890668132133 0.383094374165851 5.400000000000000 + 3.009035154269514 0.396146993387857 5.400000000000000 + 3.108179640406895 0.409199612609862 5.400000000000000 + 3.207324126544277 0.422252231831867 5.400000000000000 + 3.306468612681658 0.435304851053872 5.400000000000000 + 3.405613098819039 0.448357470275877 5.400000000000000 + 3.504757584956419 0.461410089497882 5.400000000000000 + 3.603902071093801 0.474462708719887 5.400000000000000 + 3.703046557231182 0.487515327941893 5.400000000000000 + 3.802191043368563 0.500567947163898 5.400000000000000 + 3.901335529505944 0.513620566385903 5.400000000000000 + 4.000480015643325 0.526673185607908 5.400000000000000 + 4.099624501780707 0.539725804829913 5.400000000000000 + 4.198768987918087 0.552778424051918 5.400000000000000 + 4.297913474055468 0.565831043273924 5.400000000000000 + 4.397057960192850 0.578883662495929 5.400000000000000 + 4.496202446330230 0.591936281717934 5.400000000000000 + 4.595346932467612 0.604988900939939 5.400000000000000 + 4.694491418604993 0.618041520161944 5.400000000000000 + 4.793635904742374 0.631094139383950 5.400000000000000 + 4.892780390879754 0.644146758605955 5.400000000000000 + 4.991924877017135 0.657199377827960 5.400000000000000 + 5.091069363154517 0.670251997049965 5.400000000000000 + 0.130399986549024 0.034940571088840 5.400000000000000 + 0.226992569177931 0.060822475599092 5.400000000000000 + 0.323585151806838 0.086704380109344 5.400000000000000 + 0.420177734435745 0.112586284619597 5.400000000000000 + 0.516770317064652 0.138468189129849 5.400000000000000 + 0.613362899693559 0.164350093640101 5.400000000000000 + 0.709955482322465 0.190231998150353 5.400000000000000 + 0.806548064951372 0.216113902660605 5.400000000000000 + 0.903140647580279 0.241995807170857 5.400000000000000 + 0.999733230209186 0.267877711681109 5.400000000000000 + 1.096325812838093 0.293759616191361 5.400000000000000 + 1.192918395467000 0.319641520701613 5.400000000000000 + 1.289510978095906 0.345523425211865 5.400000000000000 + 1.386103560724813 0.371405329722117 5.400000000000000 + 1.482696143353720 0.397287234232369 5.400000000000000 + 1.579288725982627 0.423169138742621 5.400000000000000 + 1.675881308611534 0.449051043252873 5.400000000000000 + 1.772473891240440 0.474932947763126 5.400000000000000 + 1.869066473869347 0.500814852273378 5.400000000000000 + 1.965659056498254 0.526696756783630 5.400000000000000 + 2.062251639127161 0.552578661293882 5.400000000000000 + 2.158844221756068 0.578460565804134 5.400000000000000 + 2.255436804384975 0.604342470314386 5.400000000000000 + 2.352029387013882 0.630224374824638 5.400000000000000 + 2.448621969642788 0.656106279334890 5.400000000000000 + 2.545214552271695 0.681988183845142 5.400000000000000 + 2.641807134900602 0.707870088355394 5.400000000000000 + 2.738399717529509 0.733751992865646 5.400000000000000 + 2.834992300158416 0.759633897375898 5.400000000000000 + 2.931584882787322 0.785515801886150 5.400000000000000 + 3.028177465416229 0.811397706396403 5.400000000000000 + 3.124770048045136 0.837279610906655 5.400000000000000 + 3.221362630674043 0.863161515416907 5.400000000000000 + 3.317955213302950 0.889043419927159 5.400000000000000 + 3.414547795931857 0.914925324437411 5.400000000000000 + 3.511140378560763 0.940807228947663 5.400000000000000 + 3.607732961189670 0.966689133457915 5.400000000000000 + 3.704325543818577 0.992571037968167 5.400000000000000 + 3.800918126447484 1.018452942478419 5.400000000000000 + 3.897510709076391 1.044334846988671 5.400000000000000 + 3.994103291705299 1.070216751498923 5.400000000000000 + 4.090695874334204 1.096098656009175 5.400000000000000 + 4.187288456963111 1.121980560519428 5.400000000000000 + 4.283881039592019 1.147862465029680 5.400000000000000 + 4.380473622220926 1.173744369539932 5.400000000000000 + 4.477066204849833 1.199626274050184 5.400000000000000 + 4.573658787478739 1.225508178560436 5.400000000000000 + 4.670251370107646 1.251390083070688 5.400000000000000 + 4.766843952736553 1.277271987580940 5.400000000000000 + 4.863436535365460 1.303153892091192 5.400000000000000 + 4.960029117994367 1.329035796601444 5.400000000000000 + 0.135000000000000 0.000000000000000 5.500000000000000 + 0.235000000000000 0.000000000000000 5.500000000000000 + 0.335000000000000 0.000000000000000 5.500000000000000 + 0.435000000000000 0.000000000000000 5.500000000000000 + 0.535000000000000 0.000000000000000 5.500000000000000 + 0.635000000000000 0.000000000000000 5.500000000000000 + 0.735000000000000 0.000000000000000 5.500000000000000 + 0.835000000000000 0.000000000000000 5.500000000000000 + 0.935000000000000 0.000000000000000 5.500000000000000 + 1.035000000000000 0.000000000000000 5.500000000000000 + 1.135000000000000 0.000000000000000 5.500000000000000 + 1.235000000000000 0.000000000000000 5.500000000000000 + 1.335000000000000 0.000000000000000 5.500000000000000 + 1.435000000000000 0.000000000000000 5.500000000000000 + 1.535000000000000 0.000000000000000 5.500000000000000 + 1.635000000000000 0.000000000000000 5.500000000000000 + 1.735000000000000 0.000000000000000 5.500000000000000 + 1.835000000000000 0.000000000000000 5.500000000000000 + 1.935000000000000 0.000000000000000 5.500000000000000 + 2.035000000000000 0.000000000000000 5.500000000000000 + 2.135000000000000 0.000000000000000 5.500000000000000 + 2.235000000000000 0.000000000000000 5.500000000000000 + 2.335000000000000 0.000000000000000 5.500000000000000 + 2.435000000000000 0.000000000000000 5.500000000000000 + 2.535000000000000 0.000000000000000 5.500000000000000 + 2.635000000000000 0.000000000000000 5.500000000000000 + 2.735000000000000 0.000000000000000 5.500000000000000 + 2.835000000000000 0.000000000000000 5.500000000000000 + 2.935000000000000 0.000000000000000 5.500000000000000 + 3.035000000000000 0.000000000000000 5.500000000000000 + 3.135000000000000 0.000000000000000 5.500000000000000 + 3.235000000000000 0.000000000000000 5.500000000000000 + 3.335000000000000 0.000000000000000 5.500000000000000 + 3.435000000000000 0.000000000000000 5.500000000000000 + 3.535000000000000 0.000000000000000 5.500000000000000 + 3.635000000000000 0.000000000000000 5.500000000000000 + 3.735000000000000 0.000000000000000 5.500000000000000 + 3.835000000000000 0.000000000000000 5.500000000000000 + 3.935000000000000 0.000000000000000 5.500000000000000 + 4.035000000000000 0.000000000000000 5.500000000000000 + 4.135000000000001 0.000000000000000 5.500000000000000 + 4.235000000000000 0.000000000000000 5.500000000000000 + 4.335000000000000 0.000000000000000 5.500000000000000 + 4.435000000000000 0.000000000000000 5.500000000000000 + 4.535000000000000 0.000000000000000 5.500000000000000 + 4.635000000000001 0.000000000000000 5.500000000000000 + 4.735000000000000 0.000000000000000 5.500000000000000 + 4.835000000000001 0.000000000000000 5.500000000000000 + 4.935000000000000 0.000000000000000 5.500000000000000 + 5.035000000000000 0.000000000000000 5.500000000000000 + 5.135000000000001 0.000000000000000 5.500000000000000 + 0.133845056285464 0.017621035949707 5.500000000000000 + 0.232989542422845 0.030673655171712 5.500000000000000 + 0.332134028560227 0.043726274393717 5.500000000000000 + 0.431278514697608 0.056778893615722 5.500000000000000 + 0.530423000834989 0.069831512837728 5.500000000000000 + 0.629567486972370 0.082884132059733 5.500000000000000 + 0.728711973109751 0.095936751281738 5.500000000000000 + 0.827856459247132 0.108989370503743 5.500000000000000 + 0.927000945384513 0.122041989725748 5.500000000000000 + 1.026145431521894 0.135094608947753 5.500000000000000 + 1.125289917659275 0.148147228169759 5.500000000000000 + 1.224434403796656 0.161199847391764 5.500000000000000 + 1.323578889934037 0.174252466613769 5.500000000000000 + 1.422723376071418 0.187305085835774 5.500000000000000 + 1.521867862208799 0.200357705057779 5.500000000000000 + 1.621012348346180 0.213410324279784 5.500000000000000 + 1.720156834483561 0.226462943501789 5.500000000000000 + 1.819301320620942 0.239515562723795 5.500000000000000 + 1.918445806758323 0.252568181945800 5.500000000000000 + 2.017590292895704 0.265620801167805 5.500000000000000 + 2.116734779033085 0.278673420389810 5.500000000000000 + 2.215879265170466 0.291726039611815 5.500000000000000 + 2.315023751307847 0.304778658833820 5.500000000000000 + 2.414168237445228 0.317831278055826 5.500000000000000 + 2.513312723582609 0.330883897277831 5.500000000000000 + 2.612457209719990 0.343936516499836 5.500000000000000 + 2.711601695857371 0.356989135721841 5.500000000000000 + 2.810746181994753 0.370041754943846 5.500000000000000 + 2.909890668132133 0.383094374165851 5.500000000000000 + 3.009035154269514 0.396146993387857 5.500000000000000 + 3.108179640406895 0.409199612609862 5.500000000000000 + 3.207324126544277 0.422252231831867 5.500000000000000 + 3.306468612681658 0.435304851053872 5.500000000000000 + 3.405613098819039 0.448357470275877 5.500000000000000 + 3.504757584956419 0.461410089497882 5.500000000000000 + 3.603902071093801 0.474462708719887 5.500000000000000 + 3.703046557231182 0.487515327941893 5.500000000000000 + 3.802191043368563 0.500567947163898 5.500000000000000 + 3.901335529505944 0.513620566385903 5.500000000000000 + 4.000480015643325 0.526673185607908 5.500000000000000 + 4.099624501780707 0.539725804829913 5.500000000000000 + 4.198768987918087 0.552778424051918 5.500000000000000 + 4.297913474055468 0.565831043273924 5.500000000000000 + 4.397057960192850 0.578883662495929 5.500000000000000 + 4.496202446330230 0.591936281717934 5.500000000000000 + 4.595346932467612 0.604988900939939 5.500000000000000 + 4.694491418604993 0.618041520161944 5.500000000000000 + 4.793635904742374 0.631094139383950 5.500000000000000 + 4.892780390879754 0.644146758605955 5.500000000000000 + 4.991924877017135 0.657199377827960 5.500000000000000 + 5.091069363154517 0.670251997049965 5.500000000000000 + 0.130399986549024 0.034940571088840 5.500000000000000 + 0.226992569177931 0.060822475599092 5.500000000000000 + 0.323585151806838 0.086704380109344 5.500000000000000 + 0.420177734435745 0.112586284619597 5.500000000000000 + 0.516770317064652 0.138468189129849 5.500000000000000 + 0.613362899693559 0.164350093640101 5.500000000000000 + 0.709955482322465 0.190231998150353 5.500000000000000 + 0.806548064951372 0.216113902660605 5.500000000000000 + 0.903140647580279 0.241995807170857 5.500000000000000 + 0.999733230209186 0.267877711681109 5.500000000000000 + 1.096325812838093 0.293759616191361 5.500000000000000 + 1.192918395467000 0.319641520701613 5.500000000000000 + 1.289510978095906 0.345523425211865 5.500000000000000 + 1.386103560724813 0.371405329722117 5.500000000000000 + 1.482696143353720 0.397287234232369 5.500000000000000 + 1.579288725982627 0.423169138742621 5.500000000000000 + 1.675881308611534 0.449051043252873 5.500000000000000 + 1.772473891240440 0.474932947763126 5.500000000000000 + 1.869066473869347 0.500814852273378 5.500000000000000 + 1.965659056498254 0.526696756783630 5.500000000000000 + 2.062251639127161 0.552578661293882 5.500000000000000 + 2.158844221756068 0.578460565804134 5.500000000000000 + 2.255436804384975 0.604342470314386 5.500000000000000 + 2.352029387013882 0.630224374824638 5.500000000000000 + 2.448621969642788 0.656106279334890 5.500000000000000 + 2.545214552271695 0.681988183845142 5.500000000000000 + 2.641807134900602 0.707870088355394 5.500000000000000 + 2.738399717529509 0.733751992865646 5.500000000000000 + 2.834992300158416 0.759633897375898 5.500000000000000 + 2.931584882787322 0.785515801886150 5.500000000000000 + 3.028177465416229 0.811397706396403 5.500000000000000 + 3.124770048045136 0.837279610906655 5.500000000000000 + 3.221362630674043 0.863161515416907 5.500000000000000 + 3.317955213302950 0.889043419927159 5.500000000000000 + 3.414547795931857 0.914925324437411 5.500000000000000 + 3.511140378560763 0.940807228947663 5.500000000000000 + 3.607732961189670 0.966689133457915 5.500000000000000 + 3.704325543818577 0.992571037968167 5.500000000000000 + 3.800918126447484 1.018452942478419 5.500000000000000 + 3.897510709076391 1.044334846988671 5.500000000000000 + 3.994103291705299 1.070216751498923 5.500000000000000 + 4.090695874334204 1.096098656009175 5.500000000000000 + 4.187288456963111 1.121980560519428 5.500000000000000 + 4.283881039592019 1.147862465029680 5.500000000000000 + 4.380473622220926 1.173744369539932 5.500000000000000 + 4.477066204849833 1.199626274050184 5.500000000000000 + 4.573658787478739 1.225508178560436 5.500000000000000 + 4.670251370107646 1.251390083070688 5.500000000000000 + 4.766843952736553 1.277271987580940 5.500000000000000 + 4.863436535365460 1.303153892091192 5.500000000000000 + 4.960029117994367 1.329035796601444 5.500000000000000 + 0.135000000000000 0.000000000000000 5.600000000000000 + 0.235000000000000 0.000000000000000 5.600000000000000 + 0.335000000000000 0.000000000000000 5.600000000000000 + 0.435000000000000 0.000000000000000 5.600000000000000 + 0.535000000000000 0.000000000000000 5.600000000000000 + 0.635000000000000 0.000000000000000 5.600000000000000 + 0.735000000000000 0.000000000000000 5.600000000000000 + 0.835000000000000 0.000000000000000 5.600000000000000 + 0.935000000000000 0.000000000000000 5.600000000000000 + 1.035000000000000 0.000000000000000 5.600000000000000 + 1.135000000000000 0.000000000000000 5.600000000000000 + 1.235000000000000 0.000000000000000 5.600000000000000 + 1.335000000000000 0.000000000000000 5.600000000000000 + 1.435000000000000 0.000000000000000 5.600000000000000 + 1.535000000000000 0.000000000000000 5.600000000000000 + 1.635000000000000 0.000000000000000 5.600000000000000 + 1.735000000000000 0.000000000000000 5.600000000000000 + 1.835000000000000 0.000000000000000 5.600000000000000 + 1.935000000000000 0.000000000000000 5.600000000000000 + 2.035000000000000 0.000000000000000 5.600000000000000 + 2.135000000000000 0.000000000000000 5.600000000000000 + 2.235000000000000 0.000000000000000 5.600000000000000 + 2.335000000000000 0.000000000000000 5.600000000000000 + 2.435000000000000 0.000000000000000 5.600000000000000 + 2.535000000000000 0.000000000000000 5.600000000000000 + 2.635000000000000 0.000000000000000 5.600000000000000 + 2.735000000000000 0.000000000000000 5.600000000000000 + 2.835000000000000 0.000000000000000 5.600000000000000 + 2.935000000000000 0.000000000000000 5.600000000000000 + 3.035000000000000 0.000000000000000 5.600000000000000 + 3.135000000000000 0.000000000000000 5.600000000000000 + 3.235000000000000 0.000000000000000 5.600000000000000 + 3.335000000000000 0.000000000000000 5.600000000000000 + 3.435000000000000 0.000000000000000 5.600000000000000 + 3.535000000000000 0.000000000000000 5.600000000000000 + 3.635000000000000 0.000000000000000 5.600000000000000 + 3.735000000000000 0.000000000000000 5.600000000000000 + 3.835000000000000 0.000000000000000 5.600000000000000 + 3.935000000000000 0.000000000000000 5.600000000000000 + 4.035000000000000 0.000000000000000 5.600000000000000 + 4.135000000000001 0.000000000000000 5.600000000000000 + 4.235000000000000 0.000000000000000 5.600000000000000 + 4.335000000000000 0.000000000000000 5.600000000000000 + 4.435000000000000 0.000000000000000 5.600000000000000 + 4.535000000000000 0.000000000000000 5.600000000000000 + 4.635000000000001 0.000000000000000 5.600000000000000 + 4.735000000000000 0.000000000000000 5.600000000000000 + 4.835000000000001 0.000000000000000 5.600000000000000 + 4.935000000000000 0.000000000000000 5.600000000000000 + 5.035000000000000 0.000000000000000 5.600000000000000 + 5.135000000000001 0.000000000000000 5.600000000000000 + 0.133845056285464 0.017621035949707 5.600000000000000 + 0.232989542422845 0.030673655171712 5.600000000000000 + 0.332134028560227 0.043726274393717 5.600000000000000 + 0.431278514697608 0.056778893615722 5.600000000000000 + 0.530423000834989 0.069831512837728 5.600000000000000 + 0.629567486972370 0.082884132059733 5.600000000000000 + 0.728711973109751 0.095936751281738 5.600000000000000 + 0.827856459247132 0.108989370503743 5.600000000000000 + 0.927000945384513 0.122041989725748 5.600000000000000 + 1.026145431521894 0.135094608947753 5.600000000000000 + 1.125289917659275 0.148147228169759 5.600000000000000 + 1.224434403796656 0.161199847391764 5.600000000000000 + 1.323578889934037 0.174252466613769 5.600000000000000 + 1.422723376071418 0.187305085835774 5.600000000000000 + 1.521867862208799 0.200357705057779 5.600000000000000 + 1.621012348346180 0.213410324279784 5.600000000000000 + 1.720156834483561 0.226462943501789 5.600000000000000 + 1.819301320620942 0.239515562723795 5.600000000000000 + 1.918445806758323 0.252568181945800 5.600000000000000 + 2.017590292895704 0.265620801167805 5.600000000000000 + 2.116734779033085 0.278673420389810 5.600000000000000 + 2.215879265170466 0.291726039611815 5.600000000000000 + 2.315023751307847 0.304778658833820 5.600000000000000 + 2.414168237445228 0.317831278055826 5.600000000000000 + 2.513312723582609 0.330883897277831 5.600000000000000 + 2.612457209719990 0.343936516499836 5.600000000000000 + 2.711601695857371 0.356989135721841 5.600000000000000 + 2.810746181994753 0.370041754943846 5.600000000000000 + 2.909890668132133 0.383094374165851 5.600000000000000 + 3.009035154269514 0.396146993387857 5.600000000000000 + 3.108179640406895 0.409199612609862 5.600000000000000 + 3.207324126544277 0.422252231831867 5.600000000000000 + 3.306468612681658 0.435304851053872 5.600000000000000 + 3.405613098819039 0.448357470275877 5.600000000000000 + 3.504757584956419 0.461410089497882 5.600000000000000 + 3.603902071093801 0.474462708719887 5.600000000000000 + 3.703046557231182 0.487515327941893 5.600000000000000 + 3.802191043368563 0.500567947163898 5.600000000000000 + 3.901335529505944 0.513620566385903 5.600000000000000 + 4.000480015643325 0.526673185607908 5.600000000000000 + 4.099624501780707 0.539725804829913 5.600000000000000 + 4.198768987918087 0.552778424051918 5.600000000000000 + 4.297913474055468 0.565831043273924 5.600000000000000 + 4.397057960192850 0.578883662495929 5.600000000000000 + 4.496202446330230 0.591936281717934 5.600000000000000 + 4.595346932467612 0.604988900939939 5.600000000000000 + 4.694491418604993 0.618041520161944 5.600000000000000 + 4.793635904742374 0.631094139383950 5.600000000000000 + 4.892780390879754 0.644146758605955 5.600000000000000 + 4.991924877017135 0.657199377827960 5.600000000000000 + 5.091069363154517 0.670251997049965 5.600000000000000 + 0.130399986549024 0.034940571088840 5.600000000000000 + 0.226992569177931 0.060822475599092 5.600000000000000 + 0.323585151806838 0.086704380109344 5.600000000000000 + 0.420177734435745 0.112586284619597 5.600000000000000 + 0.516770317064652 0.138468189129849 5.600000000000000 + 0.613362899693559 0.164350093640101 5.600000000000000 + 0.709955482322465 0.190231998150353 5.600000000000000 + 0.806548064951372 0.216113902660605 5.600000000000000 + 0.903140647580279 0.241995807170857 5.600000000000000 + 0.999733230209186 0.267877711681109 5.600000000000000 + 1.096325812838093 0.293759616191361 5.600000000000000 + 1.192918395467000 0.319641520701613 5.600000000000000 + 1.289510978095906 0.345523425211865 5.600000000000000 + 1.386103560724813 0.371405329722117 5.600000000000000 + 1.482696143353720 0.397287234232369 5.600000000000000 + 1.579288725982627 0.423169138742621 5.600000000000000 + 1.675881308611534 0.449051043252873 5.600000000000000 + 1.772473891240440 0.474932947763126 5.600000000000000 + 1.869066473869347 0.500814852273378 5.600000000000000 + 1.965659056498254 0.526696756783630 5.600000000000000 + 2.062251639127161 0.552578661293882 5.600000000000000 + 2.158844221756068 0.578460565804134 5.600000000000000 + 2.255436804384975 0.604342470314386 5.600000000000000 + 2.352029387013882 0.630224374824638 5.600000000000000 + 2.448621969642788 0.656106279334890 5.600000000000000 + 2.545214552271695 0.681988183845142 5.600000000000000 + 2.641807134900602 0.707870088355394 5.600000000000000 + 2.738399717529509 0.733751992865646 5.600000000000000 + 2.834992300158416 0.759633897375898 5.600000000000000 + 2.931584882787322 0.785515801886150 5.600000000000000 + 3.028177465416229 0.811397706396403 5.600000000000000 + 3.124770048045136 0.837279610906655 5.600000000000000 + 3.221362630674043 0.863161515416907 5.600000000000000 + 3.317955213302950 0.889043419927159 5.600000000000000 + 3.414547795931857 0.914925324437411 5.600000000000000 + 3.511140378560763 0.940807228947663 5.600000000000000 + 3.607732961189670 0.966689133457915 5.600000000000000 + 3.704325543818577 0.992571037968167 5.600000000000000 + 3.800918126447484 1.018452942478419 5.600000000000000 + 3.897510709076391 1.044334846988671 5.600000000000000 + 3.994103291705299 1.070216751498923 5.600000000000000 + 4.090695874334204 1.096098656009175 5.600000000000000 + 4.187288456963111 1.121980560519428 5.600000000000000 + 4.283881039592019 1.147862465029680 5.600000000000000 + 4.380473622220926 1.173744369539932 5.600000000000000 + 4.477066204849833 1.199626274050184 5.600000000000000 + 4.573658787478739 1.225508178560436 5.600000000000000 + 4.670251370107646 1.251390083070688 5.600000000000000 + 4.766843952736553 1.277271987580940 5.600000000000000 + 4.863436535365460 1.303153892091192 5.600000000000000 + 4.960029117994367 1.329035796601444 5.600000000000000 + 0.135000000000000 0.000000000000000 5.700000000000000 + 0.235000000000000 0.000000000000000 5.700000000000000 + 0.335000000000000 0.000000000000000 5.700000000000000 + 0.435000000000000 0.000000000000000 5.700000000000000 + 0.535000000000000 0.000000000000000 5.700000000000000 + 0.635000000000000 0.000000000000000 5.700000000000000 + 0.735000000000000 0.000000000000000 5.700000000000000 + 0.835000000000000 0.000000000000000 5.700000000000000 + 0.935000000000000 0.000000000000000 5.700000000000000 + 1.035000000000000 0.000000000000000 5.700000000000000 + 1.135000000000000 0.000000000000000 5.700000000000000 + 1.235000000000000 0.000000000000000 5.700000000000000 + 1.335000000000000 0.000000000000000 5.700000000000000 + 1.435000000000000 0.000000000000000 5.700000000000000 + 1.535000000000000 0.000000000000000 5.700000000000000 + 1.635000000000000 0.000000000000000 5.700000000000000 + 1.735000000000000 0.000000000000000 5.700000000000000 + 1.835000000000000 0.000000000000000 5.700000000000000 + 1.935000000000000 0.000000000000000 5.700000000000000 + 2.035000000000000 0.000000000000000 5.700000000000000 + 2.135000000000000 0.000000000000000 5.700000000000000 + 2.235000000000000 0.000000000000000 5.700000000000000 + 2.335000000000000 0.000000000000000 5.700000000000000 + 2.435000000000000 0.000000000000000 5.700000000000000 + 2.535000000000000 0.000000000000000 5.700000000000000 + 2.635000000000000 0.000000000000000 5.700000000000000 + 2.735000000000000 0.000000000000000 5.700000000000000 + 2.835000000000000 0.000000000000000 5.700000000000000 + 2.935000000000000 0.000000000000000 5.700000000000000 + 3.035000000000000 0.000000000000000 5.700000000000000 + 3.135000000000000 0.000000000000000 5.700000000000000 + 3.235000000000000 0.000000000000000 5.700000000000000 + 3.335000000000000 0.000000000000000 5.700000000000000 + 3.435000000000000 0.000000000000000 5.700000000000000 + 3.535000000000000 0.000000000000000 5.700000000000000 + 3.635000000000000 0.000000000000000 5.700000000000000 + 3.735000000000000 0.000000000000000 5.700000000000000 + 3.835000000000000 0.000000000000000 5.700000000000000 + 3.935000000000000 0.000000000000000 5.700000000000000 + 4.035000000000000 0.000000000000000 5.700000000000000 + 4.135000000000001 0.000000000000000 5.700000000000000 + 4.235000000000000 0.000000000000000 5.700000000000000 + 4.335000000000000 0.000000000000000 5.700000000000000 + 4.435000000000000 0.000000000000000 5.700000000000000 + 4.535000000000000 0.000000000000000 5.700000000000000 + 4.635000000000001 0.000000000000000 5.700000000000000 + 4.735000000000000 0.000000000000000 5.700000000000000 + 4.835000000000001 0.000000000000000 5.700000000000000 + 4.935000000000000 0.000000000000000 5.700000000000000 + 5.035000000000000 0.000000000000000 5.700000000000000 + 5.135000000000001 0.000000000000000 5.700000000000000 + 0.133845056285464 0.017621035949707 5.700000000000000 + 0.232989542422845 0.030673655171712 5.700000000000000 + 0.332134028560227 0.043726274393717 5.700000000000000 + 0.431278514697608 0.056778893615722 5.700000000000000 + 0.530423000834989 0.069831512837728 5.700000000000000 + 0.629567486972370 0.082884132059733 5.700000000000000 + 0.728711973109751 0.095936751281738 5.700000000000000 + 0.827856459247132 0.108989370503743 5.700000000000000 + 0.927000945384513 0.122041989725748 5.700000000000000 + 1.026145431521894 0.135094608947753 5.700000000000000 + 1.125289917659275 0.148147228169759 5.700000000000000 + 1.224434403796656 0.161199847391764 5.700000000000000 + 1.323578889934037 0.174252466613769 5.700000000000000 + 1.422723376071418 0.187305085835774 5.700000000000000 + 1.521867862208799 0.200357705057779 5.700000000000000 + 1.621012348346180 0.213410324279784 5.700000000000000 + 1.720156834483561 0.226462943501789 5.700000000000000 + 1.819301320620942 0.239515562723795 5.700000000000000 + 1.918445806758323 0.252568181945800 5.700000000000000 + 2.017590292895704 0.265620801167805 5.700000000000000 + 2.116734779033085 0.278673420389810 5.700000000000000 + 2.215879265170466 0.291726039611815 5.700000000000000 + 2.315023751307847 0.304778658833820 5.700000000000000 + 2.414168237445228 0.317831278055826 5.700000000000000 + 2.513312723582609 0.330883897277831 5.700000000000000 + 2.612457209719990 0.343936516499836 5.700000000000000 + 2.711601695857371 0.356989135721841 5.700000000000000 + 2.810746181994753 0.370041754943846 5.700000000000000 + 2.909890668132133 0.383094374165851 5.700000000000000 + 3.009035154269514 0.396146993387857 5.700000000000000 + 3.108179640406895 0.409199612609862 5.700000000000000 + 3.207324126544277 0.422252231831867 5.700000000000000 + 3.306468612681658 0.435304851053872 5.700000000000000 + 3.405613098819039 0.448357470275877 5.700000000000000 + 3.504757584956419 0.461410089497882 5.700000000000000 + 3.603902071093801 0.474462708719887 5.700000000000000 + 3.703046557231182 0.487515327941893 5.700000000000000 + 3.802191043368563 0.500567947163898 5.700000000000000 + 3.901335529505944 0.513620566385903 5.700000000000000 + 4.000480015643325 0.526673185607908 5.700000000000000 + 4.099624501780707 0.539725804829913 5.700000000000000 + 4.198768987918087 0.552778424051918 5.700000000000000 + 4.297913474055468 0.565831043273924 5.700000000000000 + 4.397057960192850 0.578883662495929 5.700000000000000 + 4.496202446330230 0.591936281717934 5.700000000000000 + 4.595346932467612 0.604988900939939 5.700000000000000 + 4.694491418604993 0.618041520161944 5.700000000000000 + 4.793635904742374 0.631094139383950 5.700000000000000 + 4.892780390879754 0.644146758605955 5.700000000000000 + 4.991924877017135 0.657199377827960 5.700000000000000 + 5.091069363154517 0.670251997049965 5.700000000000000 + 0.130399986549024 0.034940571088840 5.700000000000000 + 0.226992569177931 0.060822475599092 5.700000000000000 + 0.323585151806838 0.086704380109344 5.700000000000000 + 0.420177734435745 0.112586284619597 5.700000000000000 + 0.516770317064652 0.138468189129849 5.700000000000000 + 0.613362899693559 0.164350093640101 5.700000000000000 + 0.709955482322465 0.190231998150353 5.700000000000000 + 0.806548064951372 0.216113902660605 5.700000000000000 + 0.903140647580279 0.241995807170857 5.700000000000000 + 0.999733230209186 0.267877711681109 5.700000000000000 + 1.096325812838093 0.293759616191361 5.700000000000000 + 1.192918395467000 0.319641520701613 5.700000000000000 + 1.289510978095906 0.345523425211865 5.700000000000000 + 1.386103560724813 0.371405329722117 5.700000000000000 + 1.482696143353720 0.397287234232369 5.700000000000000 + 1.579288725982627 0.423169138742621 5.700000000000000 + 1.675881308611534 0.449051043252873 5.700000000000000 + 1.772473891240440 0.474932947763126 5.700000000000000 + 1.869066473869347 0.500814852273378 5.700000000000000 + 1.965659056498254 0.526696756783630 5.700000000000000 + 2.062251639127161 0.552578661293882 5.700000000000000 + 2.158844221756068 0.578460565804134 5.700000000000000 + 2.255436804384975 0.604342470314386 5.700000000000000 + 2.352029387013882 0.630224374824638 5.700000000000000 + 2.448621969642788 0.656106279334890 5.700000000000000 + 2.545214552271695 0.681988183845142 5.700000000000000 + 2.641807134900602 0.707870088355394 5.700000000000000 + 2.738399717529509 0.733751992865646 5.700000000000000 + 2.834992300158416 0.759633897375898 5.700000000000000 + 2.931584882787322 0.785515801886150 5.700000000000000 + 3.028177465416229 0.811397706396403 5.700000000000000 + 3.124770048045136 0.837279610906655 5.700000000000000 + 3.221362630674043 0.863161515416907 5.700000000000000 + 3.317955213302950 0.889043419927159 5.700000000000000 + 3.414547795931857 0.914925324437411 5.700000000000000 + 3.511140378560763 0.940807228947663 5.700000000000000 + 3.607732961189670 0.966689133457915 5.700000000000000 + 3.704325543818577 0.992571037968167 5.700000000000000 + 3.800918126447484 1.018452942478419 5.700000000000000 + 3.897510709076391 1.044334846988671 5.700000000000000 + 3.994103291705299 1.070216751498923 5.700000000000000 + 4.090695874334204 1.096098656009175 5.700000000000000 + 4.187288456963111 1.121980560519428 5.700000000000000 + 4.283881039592019 1.147862465029680 5.700000000000000 + 4.380473622220926 1.173744369539932 5.700000000000000 + 4.477066204849833 1.199626274050184 5.700000000000000 + 4.573658787478739 1.225508178560436 5.700000000000000 + 4.670251370107646 1.251390083070688 5.700000000000000 + 4.766843952736553 1.277271987580940 5.700000000000000 + 4.863436535365460 1.303153892091192 5.700000000000000 + 4.960029117994367 1.329035796601444 5.700000000000000 + 0.135000000000000 0.000000000000000 5.800000000000000 + 0.235000000000000 0.000000000000000 5.800000000000000 + 0.335000000000000 0.000000000000000 5.800000000000000 + 0.435000000000000 0.000000000000000 5.800000000000000 + 0.535000000000000 0.000000000000000 5.800000000000000 + 0.635000000000000 0.000000000000000 5.800000000000000 + 0.735000000000000 0.000000000000000 5.800000000000000 + 0.835000000000000 0.000000000000000 5.800000000000000 + 0.935000000000000 0.000000000000000 5.800000000000000 + 1.035000000000000 0.000000000000000 5.800000000000000 + 1.135000000000000 0.000000000000000 5.800000000000000 + 1.235000000000000 0.000000000000000 5.800000000000000 + 1.335000000000000 0.000000000000000 5.800000000000000 + 1.435000000000000 0.000000000000000 5.800000000000000 + 1.535000000000000 0.000000000000000 5.800000000000000 + 1.635000000000000 0.000000000000000 5.800000000000000 + 1.735000000000000 0.000000000000000 5.800000000000000 + 1.835000000000000 0.000000000000000 5.800000000000000 + 1.935000000000000 0.000000000000000 5.800000000000000 + 2.035000000000000 0.000000000000000 5.800000000000000 + 2.135000000000000 0.000000000000000 5.800000000000000 + 2.235000000000000 0.000000000000000 5.800000000000000 + 2.335000000000000 0.000000000000000 5.800000000000000 + 2.435000000000000 0.000000000000000 5.800000000000000 + 2.535000000000000 0.000000000000000 5.800000000000000 + 2.635000000000000 0.000000000000000 5.800000000000000 + 2.735000000000000 0.000000000000000 5.800000000000000 + 2.835000000000000 0.000000000000000 5.800000000000000 + 2.935000000000000 0.000000000000000 5.800000000000000 + 3.035000000000000 0.000000000000000 5.800000000000000 + 3.135000000000000 0.000000000000000 5.800000000000000 + 3.235000000000000 0.000000000000000 5.800000000000000 + 3.335000000000000 0.000000000000000 5.800000000000000 + 3.435000000000000 0.000000000000000 5.800000000000000 + 3.535000000000000 0.000000000000000 5.800000000000000 + 3.635000000000000 0.000000000000000 5.800000000000000 + 3.735000000000000 0.000000000000000 5.800000000000000 + 3.835000000000000 0.000000000000000 5.800000000000000 + 3.935000000000000 0.000000000000000 5.800000000000000 + 4.035000000000000 0.000000000000000 5.800000000000000 + 4.135000000000001 0.000000000000000 5.800000000000000 + 4.235000000000000 0.000000000000000 5.800000000000000 + 4.335000000000000 0.000000000000000 5.800000000000000 + 4.435000000000000 0.000000000000000 5.800000000000000 + 4.535000000000000 0.000000000000000 5.800000000000000 + 4.635000000000001 0.000000000000000 5.800000000000000 + 4.735000000000000 0.000000000000000 5.800000000000000 + 4.835000000000001 0.000000000000000 5.800000000000000 + 4.935000000000000 0.000000000000000 5.800000000000000 + 5.035000000000000 0.000000000000000 5.800000000000000 + 5.135000000000001 0.000000000000000 5.800000000000000 + 0.133845056285464 0.017621035949707 5.800000000000000 + 0.232989542422845 0.030673655171712 5.800000000000000 + 0.332134028560227 0.043726274393717 5.800000000000000 + 0.431278514697608 0.056778893615722 5.800000000000000 + 0.530423000834989 0.069831512837728 5.800000000000000 + 0.629567486972370 0.082884132059733 5.800000000000000 + 0.728711973109751 0.095936751281738 5.800000000000000 + 0.827856459247132 0.108989370503743 5.800000000000000 + 0.927000945384513 0.122041989725748 5.800000000000000 + 1.026145431521894 0.135094608947753 5.800000000000000 + 1.125289917659275 0.148147228169759 5.800000000000000 + 1.224434403796656 0.161199847391764 5.800000000000000 + 1.323578889934037 0.174252466613769 5.800000000000000 + 1.422723376071418 0.187305085835774 5.800000000000000 + 1.521867862208799 0.200357705057779 5.800000000000000 + 1.621012348346180 0.213410324279784 5.800000000000000 + 1.720156834483561 0.226462943501789 5.800000000000000 + 1.819301320620942 0.239515562723795 5.800000000000000 + 1.918445806758323 0.252568181945800 5.800000000000000 + 2.017590292895704 0.265620801167805 5.800000000000000 + 2.116734779033085 0.278673420389810 5.800000000000000 + 2.215879265170466 0.291726039611815 5.800000000000000 + 2.315023751307847 0.304778658833820 5.800000000000000 + 2.414168237445228 0.317831278055826 5.800000000000000 + 2.513312723582609 0.330883897277831 5.800000000000000 + 2.612457209719990 0.343936516499836 5.800000000000000 + 2.711601695857371 0.356989135721841 5.800000000000000 + 2.810746181994753 0.370041754943846 5.800000000000000 + 2.909890668132133 0.383094374165851 5.800000000000000 + 3.009035154269514 0.396146993387857 5.800000000000000 + 3.108179640406895 0.409199612609862 5.800000000000000 + 3.207324126544277 0.422252231831867 5.800000000000000 + 3.306468612681658 0.435304851053872 5.800000000000000 + 3.405613098819039 0.448357470275877 5.800000000000000 + 3.504757584956419 0.461410089497882 5.800000000000000 + 3.603902071093801 0.474462708719887 5.800000000000000 + 3.703046557231182 0.487515327941893 5.800000000000000 + 3.802191043368563 0.500567947163898 5.800000000000000 + 3.901335529505944 0.513620566385903 5.800000000000000 + 4.000480015643325 0.526673185607908 5.800000000000000 + 4.099624501780707 0.539725804829913 5.800000000000000 + 4.198768987918087 0.552778424051918 5.800000000000000 + 4.297913474055468 0.565831043273924 5.800000000000000 + 4.397057960192850 0.578883662495929 5.800000000000000 + 4.496202446330230 0.591936281717934 5.800000000000000 + 4.595346932467612 0.604988900939939 5.800000000000000 + 4.694491418604993 0.618041520161944 5.800000000000000 + 4.793635904742374 0.631094139383950 5.800000000000000 + 4.892780390879754 0.644146758605955 5.800000000000000 + 4.991924877017135 0.657199377827960 5.800000000000000 + 5.091069363154517 0.670251997049965 5.800000000000000 + 0.130399986549024 0.034940571088840 5.800000000000000 + 0.226992569177931 0.060822475599092 5.800000000000000 + 0.323585151806838 0.086704380109344 5.800000000000000 + 0.420177734435745 0.112586284619597 5.800000000000000 + 0.516770317064652 0.138468189129849 5.800000000000000 + 0.613362899693559 0.164350093640101 5.800000000000000 + 0.709955482322465 0.190231998150353 5.800000000000000 + 0.806548064951372 0.216113902660605 5.800000000000000 + 0.903140647580279 0.241995807170857 5.800000000000000 + 0.999733230209186 0.267877711681109 5.800000000000000 + 1.096325812838093 0.293759616191361 5.800000000000000 + 1.192918395467000 0.319641520701613 5.800000000000000 + 1.289510978095906 0.345523425211865 5.800000000000000 + 1.386103560724813 0.371405329722117 5.800000000000000 + 1.482696143353720 0.397287234232369 5.800000000000000 + 1.579288725982627 0.423169138742621 5.800000000000000 + 1.675881308611534 0.449051043252873 5.800000000000000 + 1.772473891240440 0.474932947763126 5.800000000000000 + 1.869066473869347 0.500814852273378 5.800000000000000 + 1.965659056498254 0.526696756783630 5.800000000000000 + 2.062251639127161 0.552578661293882 5.800000000000000 + 2.158844221756068 0.578460565804134 5.800000000000000 + 2.255436804384975 0.604342470314386 5.800000000000000 + 2.352029387013882 0.630224374824638 5.800000000000000 + 2.448621969642788 0.656106279334890 5.800000000000000 + 2.545214552271695 0.681988183845142 5.800000000000000 + 2.641807134900602 0.707870088355394 5.800000000000000 + 2.738399717529509 0.733751992865646 5.800000000000000 + 2.834992300158416 0.759633897375898 5.800000000000000 + 2.931584882787322 0.785515801886150 5.800000000000000 + 3.028177465416229 0.811397706396403 5.800000000000000 + 3.124770048045136 0.837279610906655 5.800000000000000 + 3.221362630674043 0.863161515416907 5.800000000000000 + 3.317955213302950 0.889043419927159 5.800000000000000 + 3.414547795931857 0.914925324437411 5.800000000000000 + 3.511140378560763 0.940807228947663 5.800000000000000 + 3.607732961189670 0.966689133457915 5.800000000000000 + 3.704325543818577 0.992571037968167 5.800000000000000 + 3.800918126447484 1.018452942478419 5.800000000000000 + 3.897510709076391 1.044334846988671 5.800000000000000 + 3.994103291705299 1.070216751498923 5.800000000000000 + 4.090695874334204 1.096098656009175 5.800000000000000 + 4.187288456963111 1.121980560519428 5.800000000000000 + 4.283881039592019 1.147862465029680 5.800000000000000 + 4.380473622220926 1.173744369539932 5.800000000000000 + 4.477066204849833 1.199626274050184 5.800000000000000 + 4.573658787478739 1.225508178560436 5.800000000000000 + 4.670251370107646 1.251390083070688 5.800000000000000 + 4.766843952736553 1.277271987580940 5.800000000000000 + 4.863436535365460 1.303153892091192 5.800000000000000 + 4.960029117994367 1.329035796601444 5.800000000000000 + 0.135000000000000 0.000000000000000 5.900000000000000 + 0.235000000000000 0.000000000000000 5.900000000000000 + 0.335000000000000 0.000000000000000 5.900000000000000 + 0.435000000000000 0.000000000000000 5.900000000000000 + 0.535000000000000 0.000000000000000 5.900000000000000 + 0.635000000000000 0.000000000000000 5.900000000000000 + 0.735000000000000 0.000000000000000 5.900000000000000 + 0.835000000000000 0.000000000000000 5.900000000000000 + 0.935000000000000 0.000000000000000 5.900000000000000 + 1.035000000000000 0.000000000000000 5.900000000000000 + 1.135000000000000 0.000000000000000 5.900000000000000 + 1.235000000000000 0.000000000000000 5.900000000000000 + 1.335000000000000 0.000000000000000 5.900000000000000 + 1.435000000000000 0.000000000000000 5.900000000000000 + 1.535000000000000 0.000000000000000 5.900000000000000 + 1.635000000000000 0.000000000000000 5.900000000000000 + 1.735000000000000 0.000000000000000 5.900000000000000 + 1.835000000000000 0.000000000000000 5.900000000000000 + 1.935000000000000 0.000000000000000 5.900000000000000 + 2.035000000000000 0.000000000000000 5.900000000000000 + 2.135000000000000 0.000000000000000 5.900000000000000 + 2.235000000000000 0.000000000000000 5.900000000000000 + 2.335000000000000 0.000000000000000 5.900000000000000 + 2.435000000000000 0.000000000000000 5.900000000000000 + 2.535000000000000 0.000000000000000 5.900000000000000 + 2.635000000000000 0.000000000000000 5.900000000000000 + 2.735000000000000 0.000000000000000 5.900000000000000 + 2.835000000000000 0.000000000000000 5.900000000000000 + 2.935000000000000 0.000000000000000 5.900000000000000 + 3.035000000000000 0.000000000000000 5.900000000000000 + 3.135000000000000 0.000000000000000 5.900000000000000 + 3.235000000000000 0.000000000000000 5.900000000000000 + 3.335000000000000 0.000000000000000 5.900000000000000 + 3.435000000000000 0.000000000000000 5.900000000000000 + 3.535000000000000 0.000000000000000 5.900000000000000 + 3.635000000000000 0.000000000000000 5.900000000000000 + 3.735000000000000 0.000000000000000 5.900000000000000 + 3.835000000000000 0.000000000000000 5.900000000000000 + 3.935000000000000 0.000000000000000 5.900000000000000 + 4.035000000000000 0.000000000000000 5.900000000000000 + 4.135000000000001 0.000000000000000 5.900000000000000 + 4.235000000000000 0.000000000000000 5.900000000000000 + 4.335000000000000 0.000000000000000 5.900000000000000 + 4.435000000000000 0.000000000000000 5.900000000000000 + 4.535000000000000 0.000000000000000 5.900000000000000 + 4.635000000000001 0.000000000000000 5.900000000000000 + 4.735000000000000 0.000000000000000 5.900000000000000 + 4.835000000000001 0.000000000000000 5.900000000000000 + 4.935000000000000 0.000000000000000 5.900000000000000 + 5.035000000000000 0.000000000000000 5.900000000000000 + 5.135000000000001 0.000000000000000 5.900000000000000 + 0.133845056285464 0.017621035949707 5.900000000000000 + 0.232989542422845 0.030673655171712 5.900000000000000 + 0.332134028560227 0.043726274393717 5.900000000000000 + 0.431278514697608 0.056778893615722 5.900000000000000 + 0.530423000834989 0.069831512837728 5.900000000000000 + 0.629567486972370 0.082884132059733 5.900000000000000 + 0.728711973109751 0.095936751281738 5.900000000000000 + 0.827856459247132 0.108989370503743 5.900000000000000 + 0.927000945384513 0.122041989725748 5.900000000000000 + 1.026145431521894 0.135094608947753 5.900000000000000 + 1.125289917659275 0.148147228169759 5.900000000000000 + 1.224434403796656 0.161199847391764 5.900000000000000 + 1.323578889934037 0.174252466613769 5.900000000000000 + 1.422723376071418 0.187305085835774 5.900000000000000 + 1.521867862208799 0.200357705057779 5.900000000000000 + 1.621012348346180 0.213410324279784 5.900000000000000 + 1.720156834483561 0.226462943501789 5.900000000000000 + 1.819301320620942 0.239515562723795 5.900000000000000 + 1.918445806758323 0.252568181945800 5.900000000000000 + 2.017590292895704 0.265620801167805 5.900000000000000 + 2.116734779033085 0.278673420389810 5.900000000000000 + 2.215879265170466 0.291726039611815 5.900000000000000 + 2.315023751307847 0.304778658833820 5.900000000000000 + 2.414168237445228 0.317831278055826 5.900000000000000 + 2.513312723582609 0.330883897277831 5.900000000000000 + 2.612457209719990 0.343936516499836 5.900000000000000 + 2.711601695857371 0.356989135721841 5.900000000000000 + 2.810746181994753 0.370041754943846 5.900000000000000 + 2.909890668132133 0.383094374165851 5.900000000000000 + 3.009035154269514 0.396146993387857 5.900000000000000 + 3.108179640406895 0.409199612609862 5.900000000000000 + 3.207324126544277 0.422252231831867 5.900000000000000 + 3.306468612681658 0.435304851053872 5.900000000000000 + 3.405613098819039 0.448357470275877 5.900000000000000 + 3.504757584956419 0.461410089497882 5.900000000000000 + 3.603902071093801 0.474462708719887 5.900000000000000 + 3.703046557231182 0.487515327941893 5.900000000000000 + 3.802191043368563 0.500567947163898 5.900000000000000 + 3.901335529505944 0.513620566385903 5.900000000000000 + 4.000480015643325 0.526673185607908 5.900000000000000 + 4.099624501780707 0.539725804829913 5.900000000000000 + 4.198768987918087 0.552778424051918 5.900000000000000 + 4.297913474055468 0.565831043273924 5.900000000000000 + 4.397057960192850 0.578883662495929 5.900000000000000 + 4.496202446330230 0.591936281717934 5.900000000000000 + 4.595346932467612 0.604988900939939 5.900000000000000 + 4.694491418604993 0.618041520161944 5.900000000000000 + 4.793635904742374 0.631094139383950 5.900000000000000 + 4.892780390879754 0.644146758605955 5.900000000000000 + 4.991924877017135 0.657199377827960 5.900000000000000 + 5.091069363154517 0.670251997049965 5.900000000000000 + 0.130399986549024 0.034940571088840 5.900000000000000 + 0.226992569177931 0.060822475599092 5.900000000000000 + 0.323585151806838 0.086704380109344 5.900000000000000 + 0.420177734435745 0.112586284619597 5.900000000000000 + 0.516770317064652 0.138468189129849 5.900000000000000 + 0.613362899693559 0.164350093640101 5.900000000000000 + 0.709955482322465 0.190231998150353 5.900000000000000 + 0.806548064951372 0.216113902660605 5.900000000000000 + 0.903140647580279 0.241995807170857 5.900000000000000 + 0.999733230209186 0.267877711681109 5.900000000000000 + 1.096325812838093 0.293759616191361 5.900000000000000 + 1.192918395467000 0.319641520701613 5.900000000000000 + 1.289510978095906 0.345523425211865 5.900000000000000 + 1.386103560724813 0.371405329722117 5.900000000000000 + 1.482696143353720 0.397287234232369 5.900000000000000 + 1.579288725982627 0.423169138742621 5.900000000000000 + 1.675881308611534 0.449051043252873 5.900000000000000 + 1.772473891240440 0.474932947763126 5.900000000000000 + 1.869066473869347 0.500814852273378 5.900000000000000 + 1.965659056498254 0.526696756783630 5.900000000000000 + 2.062251639127161 0.552578661293882 5.900000000000000 + 2.158844221756068 0.578460565804134 5.900000000000000 + 2.255436804384975 0.604342470314386 5.900000000000000 + 2.352029387013882 0.630224374824638 5.900000000000000 + 2.448621969642788 0.656106279334890 5.900000000000000 + 2.545214552271695 0.681988183845142 5.900000000000000 + 2.641807134900602 0.707870088355394 5.900000000000000 + 2.738399717529509 0.733751992865646 5.900000000000000 + 2.834992300158416 0.759633897375898 5.900000000000000 + 2.931584882787322 0.785515801886150 5.900000000000000 + 3.028177465416229 0.811397706396403 5.900000000000000 + 3.124770048045136 0.837279610906655 5.900000000000000 + 3.221362630674043 0.863161515416907 5.900000000000000 + 3.317955213302950 0.889043419927159 5.900000000000000 + 3.414547795931857 0.914925324437411 5.900000000000000 + 3.511140378560763 0.940807228947663 5.900000000000000 + 3.607732961189670 0.966689133457915 5.900000000000000 + 3.704325543818577 0.992571037968167 5.900000000000000 + 3.800918126447484 1.018452942478419 5.900000000000000 + 3.897510709076391 1.044334846988671 5.900000000000000 + 3.994103291705299 1.070216751498923 5.900000000000000 + 4.090695874334204 1.096098656009175 5.900000000000000 + 4.187288456963111 1.121980560519428 5.900000000000000 + 4.283881039592019 1.147862465029680 5.900000000000000 + 4.380473622220926 1.173744369539932 5.900000000000000 + 4.477066204849833 1.199626274050184 5.900000000000000 + 4.573658787478739 1.225508178560436 5.900000000000000 + 4.670251370107646 1.251390083070688 5.900000000000000 + 4.766843952736553 1.277271987580940 5.900000000000000 + 4.863436535365460 1.303153892091192 5.900000000000000 + 4.960029117994367 1.329035796601444 5.900000000000000 + 0.135000000000000 0.000000000000000 6.000000000000000 + 0.235000000000000 0.000000000000000 6.000000000000000 + 0.335000000000000 0.000000000000000 6.000000000000000 + 0.435000000000000 0.000000000000000 6.000000000000000 + 0.535000000000000 0.000000000000000 6.000000000000000 + 0.635000000000000 0.000000000000000 6.000000000000000 + 0.735000000000000 0.000000000000000 6.000000000000000 + 0.835000000000000 0.000000000000000 6.000000000000000 + 0.935000000000000 0.000000000000000 6.000000000000000 + 1.035000000000000 0.000000000000000 6.000000000000000 + 1.135000000000000 0.000000000000000 6.000000000000000 + 1.235000000000000 0.000000000000000 6.000000000000000 + 1.335000000000000 0.000000000000000 6.000000000000000 + 1.435000000000000 0.000000000000000 6.000000000000000 + 1.535000000000000 0.000000000000000 6.000000000000000 + 1.635000000000000 0.000000000000000 6.000000000000000 + 1.735000000000000 0.000000000000000 6.000000000000000 + 1.835000000000000 0.000000000000000 6.000000000000000 + 1.935000000000000 0.000000000000000 6.000000000000000 + 2.035000000000000 0.000000000000000 6.000000000000000 + 2.135000000000000 0.000000000000000 6.000000000000000 + 2.235000000000000 0.000000000000000 6.000000000000000 + 2.335000000000000 0.000000000000000 6.000000000000000 + 2.435000000000000 0.000000000000000 6.000000000000000 + 2.535000000000000 0.000000000000000 6.000000000000000 + 2.635000000000000 0.000000000000000 6.000000000000000 + 2.735000000000000 0.000000000000000 6.000000000000000 + 2.835000000000000 0.000000000000000 6.000000000000000 + 2.935000000000000 0.000000000000000 6.000000000000000 + 3.035000000000000 0.000000000000000 6.000000000000000 + 3.135000000000000 0.000000000000000 6.000000000000000 + 3.235000000000000 0.000000000000000 6.000000000000000 + 3.335000000000000 0.000000000000000 6.000000000000000 + 3.435000000000000 0.000000000000000 6.000000000000000 + 3.535000000000000 0.000000000000000 6.000000000000000 + 3.635000000000000 0.000000000000000 6.000000000000000 + 3.735000000000000 0.000000000000000 6.000000000000000 + 3.835000000000000 0.000000000000000 6.000000000000000 + 3.935000000000000 0.000000000000000 6.000000000000000 + 4.035000000000000 0.000000000000000 6.000000000000000 + 4.135000000000001 0.000000000000000 6.000000000000000 + 4.235000000000000 0.000000000000000 6.000000000000000 + 4.335000000000000 0.000000000000000 6.000000000000000 + 4.435000000000000 0.000000000000000 6.000000000000000 + 4.535000000000000 0.000000000000000 6.000000000000000 + 4.635000000000001 0.000000000000000 6.000000000000000 + 4.735000000000000 0.000000000000000 6.000000000000000 + 4.835000000000001 0.000000000000000 6.000000000000000 + 4.935000000000000 0.000000000000000 6.000000000000000 + 5.035000000000000 0.000000000000000 6.000000000000000 + 5.135000000000001 0.000000000000000 6.000000000000000 + 0.133845056285464 0.017621035949707 6.000000000000000 + 0.232989542422845 0.030673655171712 6.000000000000000 + 0.332134028560227 0.043726274393717 6.000000000000000 + 0.431278514697608 0.056778893615722 6.000000000000000 + 0.530423000834989 0.069831512837728 6.000000000000000 + 0.629567486972370 0.082884132059733 6.000000000000000 + 0.728711973109751 0.095936751281738 6.000000000000000 + 0.827856459247132 0.108989370503743 6.000000000000000 + 0.927000945384513 0.122041989725748 6.000000000000000 + 1.026145431521894 0.135094608947753 6.000000000000000 + 1.125289917659275 0.148147228169759 6.000000000000000 + 1.224434403796656 0.161199847391764 6.000000000000000 + 1.323578889934037 0.174252466613769 6.000000000000000 + 1.422723376071418 0.187305085835774 6.000000000000000 + 1.521867862208799 0.200357705057779 6.000000000000000 + 1.621012348346180 0.213410324279784 6.000000000000000 + 1.720156834483561 0.226462943501789 6.000000000000000 + 1.819301320620942 0.239515562723795 6.000000000000000 + 1.918445806758323 0.252568181945800 6.000000000000000 + 2.017590292895704 0.265620801167805 6.000000000000000 + 2.116734779033085 0.278673420389810 6.000000000000000 + 2.215879265170466 0.291726039611815 6.000000000000000 + 2.315023751307847 0.304778658833820 6.000000000000000 + 2.414168237445228 0.317831278055826 6.000000000000000 + 2.513312723582609 0.330883897277831 6.000000000000000 + 2.612457209719990 0.343936516499836 6.000000000000000 + 2.711601695857371 0.356989135721841 6.000000000000000 + 2.810746181994753 0.370041754943846 6.000000000000000 + 2.909890668132133 0.383094374165851 6.000000000000000 + 3.009035154269514 0.396146993387857 6.000000000000000 + 3.108179640406895 0.409199612609862 6.000000000000000 + 3.207324126544277 0.422252231831867 6.000000000000000 + 3.306468612681658 0.435304851053872 6.000000000000000 + 3.405613098819039 0.448357470275877 6.000000000000000 + 3.504757584956419 0.461410089497882 6.000000000000000 + 3.603902071093801 0.474462708719887 6.000000000000000 + 3.703046557231182 0.487515327941893 6.000000000000000 + 3.802191043368563 0.500567947163898 6.000000000000000 + 3.901335529505944 0.513620566385903 6.000000000000000 + 4.000480015643325 0.526673185607908 6.000000000000000 + 4.099624501780707 0.539725804829913 6.000000000000000 + 4.198768987918087 0.552778424051918 6.000000000000000 + 4.297913474055468 0.565831043273924 6.000000000000000 + 4.397057960192850 0.578883662495929 6.000000000000000 + 4.496202446330230 0.591936281717934 6.000000000000000 + 4.595346932467612 0.604988900939939 6.000000000000000 + 4.694491418604993 0.618041520161944 6.000000000000000 + 4.793635904742374 0.631094139383950 6.000000000000000 + 4.892780390879754 0.644146758605955 6.000000000000000 + 4.991924877017135 0.657199377827960 6.000000000000000 + 5.091069363154517 0.670251997049965 6.000000000000000 + 0.130399986549024 0.034940571088840 6.000000000000000 + 0.226992569177931 0.060822475599092 6.000000000000000 + 0.323585151806838 0.086704380109344 6.000000000000000 + 0.420177734435745 0.112586284619597 6.000000000000000 + 0.516770317064652 0.138468189129849 6.000000000000000 + 0.613362899693559 0.164350093640101 6.000000000000000 + 0.709955482322465 0.190231998150353 6.000000000000000 + 0.806548064951372 0.216113902660605 6.000000000000000 + 0.903140647580279 0.241995807170857 6.000000000000000 + 0.999733230209186 0.267877711681109 6.000000000000000 + 1.096325812838093 0.293759616191361 6.000000000000000 + 1.192918395467000 0.319641520701613 6.000000000000000 + 1.289510978095906 0.345523425211865 6.000000000000000 + 1.386103560724813 0.371405329722117 6.000000000000000 + 1.482696143353720 0.397287234232369 6.000000000000000 + 1.579288725982627 0.423169138742621 6.000000000000000 + 1.675881308611534 0.449051043252873 6.000000000000000 + 1.772473891240440 0.474932947763126 6.000000000000000 + 1.869066473869347 0.500814852273378 6.000000000000000 + 1.965659056498254 0.526696756783630 6.000000000000000 + 2.062251639127161 0.552578661293882 6.000000000000000 + 2.158844221756068 0.578460565804134 6.000000000000000 + 2.255436804384975 0.604342470314386 6.000000000000000 + 2.352029387013882 0.630224374824638 6.000000000000000 + 2.448621969642788 0.656106279334890 6.000000000000000 + 2.545214552271695 0.681988183845142 6.000000000000000 + 2.641807134900602 0.707870088355394 6.000000000000000 + 2.738399717529509 0.733751992865646 6.000000000000000 + 2.834992300158416 0.759633897375898 6.000000000000000 + 2.931584882787322 0.785515801886150 6.000000000000000 + 3.028177465416229 0.811397706396403 6.000000000000000 + 3.124770048045136 0.837279610906655 6.000000000000000 + 3.221362630674043 0.863161515416907 6.000000000000000 + 3.317955213302950 0.889043419927159 6.000000000000000 + 3.414547795931857 0.914925324437411 6.000000000000000 + 3.511140378560763 0.940807228947663 6.000000000000000 + 3.607732961189670 0.966689133457915 6.000000000000000 + 3.704325543818577 0.992571037968167 6.000000000000000 + 3.800918126447484 1.018452942478419 6.000000000000000 + 3.897510709076391 1.044334846988671 6.000000000000000 + 3.994103291705299 1.070216751498923 6.000000000000000 + 4.090695874334204 1.096098656009175 6.000000000000000 + 4.187288456963111 1.121980560519428 6.000000000000000 + 4.283881039592019 1.147862465029680 6.000000000000000 + 4.380473622220926 1.173744369539932 6.000000000000000 + 4.477066204849833 1.199626274050184 6.000000000000000 + 4.573658787478739 1.225508178560436 6.000000000000000 + 4.670251370107646 1.251390083070688 6.000000000000000 + 4.766843952736553 1.277271987580940 6.000000000000000 + 4.863436535365460 1.303153892091192 6.000000000000000 + 4.960029117994367 1.329035796601444 6.000000000000000 + 0.135000000000000 0.000000000000000 6.100000000000000 + 0.235000000000000 0.000000000000000 6.100000000000000 + 0.335000000000000 0.000000000000000 6.100000000000000 + 0.435000000000000 0.000000000000000 6.100000000000000 + 0.535000000000000 0.000000000000000 6.100000000000000 + 0.635000000000000 0.000000000000000 6.100000000000000 + 0.735000000000000 0.000000000000000 6.100000000000000 + 0.835000000000000 0.000000000000000 6.100000000000000 + 0.935000000000000 0.000000000000000 6.100000000000000 + 1.035000000000000 0.000000000000000 6.100000000000000 + 1.135000000000000 0.000000000000000 6.100000000000000 + 1.235000000000000 0.000000000000000 6.100000000000000 + 1.335000000000000 0.000000000000000 6.100000000000000 + 1.435000000000000 0.000000000000000 6.100000000000000 + 1.535000000000000 0.000000000000000 6.100000000000000 + 1.635000000000000 0.000000000000000 6.100000000000000 + 1.735000000000000 0.000000000000000 6.100000000000000 + 1.835000000000000 0.000000000000000 6.100000000000000 + 1.935000000000000 0.000000000000000 6.100000000000000 + 2.035000000000000 0.000000000000000 6.100000000000000 + 2.135000000000000 0.000000000000000 6.100000000000000 + 2.235000000000000 0.000000000000000 6.100000000000000 + 2.335000000000000 0.000000000000000 6.100000000000000 + 2.435000000000000 0.000000000000000 6.100000000000000 + 2.535000000000000 0.000000000000000 6.100000000000000 + 2.635000000000000 0.000000000000000 6.100000000000000 + 2.735000000000000 0.000000000000000 6.100000000000000 + 2.835000000000000 0.000000000000000 6.100000000000000 + 2.935000000000000 0.000000000000000 6.100000000000000 + 3.035000000000000 0.000000000000000 6.100000000000000 + 3.135000000000000 0.000000000000000 6.100000000000000 + 3.235000000000000 0.000000000000000 6.100000000000000 + 3.335000000000000 0.000000000000000 6.100000000000000 + 3.435000000000000 0.000000000000000 6.100000000000000 + 3.535000000000000 0.000000000000000 6.100000000000000 + 3.635000000000000 0.000000000000000 6.100000000000000 + 3.735000000000000 0.000000000000000 6.100000000000000 + 3.835000000000000 0.000000000000000 6.100000000000000 + 3.935000000000000 0.000000000000000 6.100000000000000 + 4.035000000000000 0.000000000000000 6.100000000000000 + 4.135000000000001 0.000000000000000 6.100000000000000 + 4.235000000000000 0.000000000000000 6.100000000000000 + 4.335000000000000 0.000000000000000 6.100000000000000 + 4.435000000000000 0.000000000000000 6.100000000000000 + 4.535000000000000 0.000000000000000 6.100000000000000 + 4.635000000000001 0.000000000000000 6.100000000000000 + 4.735000000000000 0.000000000000000 6.100000000000000 + 4.835000000000001 0.000000000000000 6.100000000000000 + 4.935000000000000 0.000000000000000 6.100000000000000 + 5.035000000000000 0.000000000000000 6.100000000000000 + 5.135000000000001 0.000000000000000 6.100000000000000 + 0.133845056285464 0.017621035949707 6.100000000000000 + 0.232989542422845 0.030673655171712 6.100000000000000 + 0.332134028560227 0.043726274393717 6.100000000000000 + 0.431278514697608 0.056778893615722 6.100000000000000 + 0.530423000834989 0.069831512837728 6.100000000000000 + 0.629567486972370 0.082884132059733 6.100000000000000 + 0.728711973109751 0.095936751281738 6.100000000000000 + 0.827856459247132 0.108989370503743 6.100000000000000 + 0.927000945384513 0.122041989725748 6.100000000000000 + 1.026145431521894 0.135094608947753 6.100000000000000 + 1.125289917659275 0.148147228169759 6.100000000000000 + 1.224434403796656 0.161199847391764 6.100000000000000 + 1.323578889934037 0.174252466613769 6.100000000000000 + 1.422723376071418 0.187305085835774 6.100000000000000 + 1.521867862208799 0.200357705057779 6.100000000000000 + 1.621012348346180 0.213410324279784 6.100000000000000 + 1.720156834483561 0.226462943501789 6.100000000000000 + 1.819301320620942 0.239515562723795 6.100000000000000 + 1.918445806758323 0.252568181945800 6.100000000000000 + 2.017590292895704 0.265620801167805 6.100000000000000 + 2.116734779033085 0.278673420389810 6.100000000000000 + 2.215879265170466 0.291726039611815 6.100000000000000 + 2.315023751307847 0.304778658833820 6.100000000000000 + 2.414168237445228 0.317831278055826 6.100000000000000 + 2.513312723582609 0.330883897277831 6.100000000000000 + 2.612457209719990 0.343936516499836 6.100000000000000 + 2.711601695857371 0.356989135721841 6.100000000000000 + 2.810746181994753 0.370041754943846 6.100000000000000 + 2.909890668132133 0.383094374165851 6.100000000000000 + 3.009035154269514 0.396146993387857 6.100000000000000 + 3.108179640406895 0.409199612609862 6.100000000000000 + 3.207324126544277 0.422252231831867 6.100000000000000 + 3.306468612681658 0.435304851053872 6.100000000000000 + 3.405613098819039 0.448357470275877 6.100000000000000 + 3.504757584956419 0.461410089497882 6.100000000000000 + 3.603902071093801 0.474462708719887 6.100000000000000 + 3.703046557231182 0.487515327941893 6.100000000000000 + 3.802191043368563 0.500567947163898 6.100000000000000 + 3.901335529505944 0.513620566385903 6.100000000000000 + 4.000480015643325 0.526673185607908 6.100000000000000 + 4.099624501780707 0.539725804829913 6.100000000000000 + 4.198768987918087 0.552778424051918 6.100000000000000 + 4.297913474055468 0.565831043273924 6.100000000000000 + 4.397057960192850 0.578883662495929 6.100000000000000 + 4.496202446330230 0.591936281717934 6.100000000000000 + 4.595346932467612 0.604988900939939 6.100000000000000 + 4.694491418604993 0.618041520161944 6.100000000000000 + 4.793635904742374 0.631094139383950 6.100000000000000 + 4.892780390879754 0.644146758605955 6.100000000000000 + 4.991924877017135 0.657199377827960 6.100000000000000 + 5.091069363154517 0.670251997049965 6.100000000000000 + 0.130399986549024 0.034940571088840 6.100000000000000 + 0.226992569177931 0.060822475599092 6.100000000000000 + 0.323585151806838 0.086704380109344 6.100000000000000 + 0.420177734435745 0.112586284619597 6.100000000000000 + 0.516770317064652 0.138468189129849 6.100000000000000 + 0.613362899693559 0.164350093640101 6.100000000000000 + 0.709955482322465 0.190231998150353 6.100000000000000 + 0.806548064951372 0.216113902660605 6.100000000000000 + 0.903140647580279 0.241995807170857 6.100000000000000 + 0.999733230209186 0.267877711681109 6.100000000000000 + 1.096325812838093 0.293759616191361 6.100000000000000 + 1.192918395467000 0.319641520701613 6.100000000000000 + 1.289510978095906 0.345523425211865 6.100000000000000 + 1.386103560724813 0.371405329722117 6.100000000000000 + 1.482696143353720 0.397287234232369 6.100000000000000 + 1.579288725982627 0.423169138742621 6.100000000000000 + 1.675881308611534 0.449051043252873 6.100000000000000 + 1.772473891240440 0.474932947763126 6.100000000000000 + 1.869066473869347 0.500814852273378 6.100000000000000 + 1.965659056498254 0.526696756783630 6.100000000000000 + 2.062251639127161 0.552578661293882 6.100000000000000 + 2.158844221756068 0.578460565804134 6.100000000000000 + 2.255436804384975 0.604342470314386 6.100000000000000 + 2.352029387013882 0.630224374824638 6.100000000000000 + 2.448621969642788 0.656106279334890 6.100000000000000 + 2.545214552271695 0.681988183845142 6.100000000000000 + 2.641807134900602 0.707870088355394 6.100000000000000 + 2.738399717529509 0.733751992865646 6.100000000000000 + 2.834992300158416 0.759633897375898 6.100000000000000 + 2.931584882787322 0.785515801886150 6.100000000000000 + 3.028177465416229 0.811397706396403 6.100000000000000 + 3.124770048045136 0.837279610906655 6.100000000000000 + 3.221362630674043 0.863161515416907 6.100000000000000 + 3.317955213302950 0.889043419927159 6.100000000000000 + 3.414547795931857 0.914925324437411 6.100000000000000 + 3.511140378560763 0.940807228947663 6.100000000000000 + 3.607732961189670 0.966689133457915 6.100000000000000 + 3.704325543818577 0.992571037968167 6.100000000000000 + 3.800918126447484 1.018452942478419 6.100000000000000 + 3.897510709076391 1.044334846988671 6.100000000000000 + 3.994103291705299 1.070216751498923 6.100000000000000 + 4.090695874334204 1.096098656009175 6.100000000000000 + 4.187288456963111 1.121980560519428 6.100000000000000 + 4.283881039592019 1.147862465029680 6.100000000000000 + 4.380473622220926 1.173744369539932 6.100000000000000 + 4.477066204849833 1.199626274050184 6.100000000000000 + 4.573658787478739 1.225508178560436 6.100000000000000 + 4.670251370107646 1.251390083070688 6.100000000000000 + 4.766843952736553 1.277271987580940 6.100000000000000 + 4.863436535365460 1.303153892091192 6.100000000000000 + 4.960029117994367 1.329035796601444 6.100000000000000 + 0.135000000000000 0.000000000000000 6.200000000000000 + 0.235000000000000 0.000000000000000 6.200000000000000 + 0.335000000000000 0.000000000000000 6.200000000000000 + 0.435000000000000 0.000000000000000 6.200000000000000 + 0.535000000000000 0.000000000000000 6.200000000000000 + 0.635000000000000 0.000000000000000 6.200000000000000 + 0.735000000000000 0.000000000000000 6.200000000000000 + 0.835000000000000 0.000000000000000 6.200000000000000 + 0.935000000000000 0.000000000000000 6.200000000000000 + 1.035000000000000 0.000000000000000 6.200000000000000 + 1.135000000000000 0.000000000000000 6.200000000000000 + 1.235000000000000 0.000000000000000 6.200000000000000 + 1.335000000000000 0.000000000000000 6.200000000000000 + 1.435000000000000 0.000000000000000 6.200000000000000 + 1.535000000000000 0.000000000000000 6.200000000000000 + 1.635000000000000 0.000000000000000 6.200000000000000 + 1.735000000000000 0.000000000000000 6.200000000000000 + 1.835000000000000 0.000000000000000 6.200000000000000 + 1.935000000000000 0.000000000000000 6.200000000000000 + 2.035000000000000 0.000000000000000 6.200000000000000 + 2.135000000000000 0.000000000000000 6.200000000000000 + 2.235000000000000 0.000000000000000 6.200000000000000 + 2.335000000000000 0.000000000000000 6.200000000000000 + 2.435000000000000 0.000000000000000 6.200000000000000 + 2.535000000000000 0.000000000000000 6.200000000000000 + 2.635000000000000 0.000000000000000 6.200000000000000 + 2.735000000000000 0.000000000000000 6.200000000000000 + 2.835000000000000 0.000000000000000 6.200000000000000 + 2.935000000000000 0.000000000000000 6.200000000000000 + 3.035000000000000 0.000000000000000 6.200000000000000 + 3.135000000000000 0.000000000000000 6.200000000000000 + 3.235000000000000 0.000000000000000 6.200000000000000 + 3.335000000000000 0.000000000000000 6.200000000000000 + 3.435000000000000 0.000000000000000 6.200000000000000 + 3.535000000000000 0.000000000000000 6.200000000000000 + 3.635000000000000 0.000000000000000 6.200000000000000 + 3.735000000000000 0.000000000000000 6.200000000000000 + 3.835000000000000 0.000000000000000 6.200000000000000 + 3.935000000000000 0.000000000000000 6.200000000000000 + 4.035000000000000 0.000000000000000 6.200000000000000 + 4.135000000000001 0.000000000000000 6.200000000000000 + 4.235000000000000 0.000000000000000 6.200000000000000 + 4.335000000000000 0.000000000000000 6.200000000000000 + 4.435000000000000 0.000000000000000 6.200000000000000 + 4.535000000000000 0.000000000000000 6.200000000000000 + 4.635000000000001 0.000000000000000 6.200000000000000 + 4.735000000000000 0.000000000000000 6.200000000000000 + 4.835000000000001 0.000000000000000 6.200000000000000 + 4.935000000000000 0.000000000000000 6.200000000000000 + 5.035000000000000 0.000000000000000 6.200000000000000 + 5.135000000000001 0.000000000000000 6.200000000000000 + 0.133845056285464 0.017621035949707 6.200000000000000 + 0.232989542422845 0.030673655171712 6.200000000000000 + 0.332134028560227 0.043726274393717 6.200000000000000 + 0.431278514697608 0.056778893615722 6.200000000000000 + 0.530423000834989 0.069831512837728 6.200000000000000 + 0.629567486972370 0.082884132059733 6.200000000000000 + 0.728711973109751 0.095936751281738 6.200000000000000 + 0.827856459247132 0.108989370503743 6.200000000000000 + 0.927000945384513 0.122041989725748 6.200000000000000 + 1.026145431521894 0.135094608947753 6.200000000000000 + 1.125289917659275 0.148147228169759 6.200000000000000 + 1.224434403796656 0.161199847391764 6.200000000000000 + 1.323578889934037 0.174252466613769 6.200000000000000 + 1.422723376071418 0.187305085835774 6.200000000000000 + 1.521867862208799 0.200357705057779 6.200000000000000 + 1.621012348346180 0.213410324279784 6.200000000000000 + 1.720156834483561 0.226462943501789 6.200000000000000 + 1.819301320620942 0.239515562723795 6.200000000000000 + 1.918445806758323 0.252568181945800 6.200000000000000 + 2.017590292895704 0.265620801167805 6.200000000000000 + 2.116734779033085 0.278673420389810 6.200000000000000 + 2.215879265170466 0.291726039611815 6.200000000000000 + 2.315023751307847 0.304778658833820 6.200000000000000 + 2.414168237445228 0.317831278055826 6.200000000000000 + 2.513312723582609 0.330883897277831 6.200000000000000 + 2.612457209719990 0.343936516499836 6.200000000000000 + 2.711601695857371 0.356989135721841 6.200000000000000 + 2.810746181994753 0.370041754943846 6.200000000000000 + 2.909890668132133 0.383094374165851 6.200000000000000 + 3.009035154269514 0.396146993387857 6.200000000000000 + 3.108179640406895 0.409199612609862 6.200000000000000 + 3.207324126544277 0.422252231831867 6.200000000000000 + 3.306468612681658 0.435304851053872 6.200000000000000 + 3.405613098819039 0.448357470275877 6.200000000000000 + 3.504757584956419 0.461410089497882 6.200000000000000 + 3.603902071093801 0.474462708719887 6.200000000000000 + 3.703046557231182 0.487515327941893 6.200000000000000 + 3.802191043368563 0.500567947163898 6.200000000000000 + 3.901335529505944 0.513620566385903 6.200000000000000 + 4.000480015643325 0.526673185607908 6.200000000000000 + 4.099624501780707 0.539725804829913 6.200000000000000 + 4.198768987918087 0.552778424051918 6.200000000000000 + 4.297913474055468 0.565831043273924 6.200000000000000 + 4.397057960192850 0.578883662495929 6.200000000000000 + 4.496202446330230 0.591936281717934 6.200000000000000 + 4.595346932467612 0.604988900939939 6.200000000000000 + 4.694491418604993 0.618041520161944 6.200000000000000 + 4.793635904742374 0.631094139383950 6.200000000000000 + 4.892780390879754 0.644146758605955 6.200000000000000 + 4.991924877017135 0.657199377827960 6.200000000000000 + 5.091069363154517 0.670251997049965 6.200000000000000 + 0.130399986549024 0.034940571088840 6.200000000000000 + 0.226992569177931 0.060822475599092 6.200000000000000 + 0.323585151806838 0.086704380109344 6.200000000000000 + 0.420177734435745 0.112586284619597 6.200000000000000 + 0.516770317064652 0.138468189129849 6.200000000000000 + 0.613362899693559 0.164350093640101 6.200000000000000 + 0.709955482322465 0.190231998150353 6.200000000000000 + 0.806548064951372 0.216113902660605 6.200000000000000 + 0.903140647580279 0.241995807170857 6.200000000000000 + 0.999733230209186 0.267877711681109 6.200000000000000 + 1.096325812838093 0.293759616191361 6.200000000000000 + 1.192918395467000 0.319641520701613 6.200000000000000 + 1.289510978095906 0.345523425211865 6.200000000000000 + 1.386103560724813 0.371405329722117 6.200000000000000 + 1.482696143353720 0.397287234232369 6.200000000000000 + 1.579288725982627 0.423169138742621 6.200000000000000 + 1.675881308611534 0.449051043252873 6.200000000000000 + 1.772473891240440 0.474932947763126 6.200000000000000 + 1.869066473869347 0.500814852273378 6.200000000000000 + 1.965659056498254 0.526696756783630 6.200000000000000 + 2.062251639127161 0.552578661293882 6.200000000000000 + 2.158844221756068 0.578460565804134 6.200000000000000 + 2.255436804384975 0.604342470314386 6.200000000000000 + 2.352029387013882 0.630224374824638 6.200000000000000 + 2.448621969642788 0.656106279334890 6.200000000000000 + 2.545214552271695 0.681988183845142 6.200000000000000 + 2.641807134900602 0.707870088355394 6.200000000000000 + 2.738399717529509 0.733751992865646 6.200000000000000 + 2.834992300158416 0.759633897375898 6.200000000000000 + 2.931584882787322 0.785515801886150 6.200000000000000 + 3.028177465416229 0.811397706396403 6.200000000000000 + 3.124770048045136 0.837279610906655 6.200000000000000 + 3.221362630674043 0.863161515416907 6.200000000000000 + 3.317955213302950 0.889043419927159 6.200000000000000 + 3.414547795931857 0.914925324437411 6.200000000000000 + 3.511140378560763 0.940807228947663 6.200000000000000 + 3.607732961189670 0.966689133457915 6.200000000000000 + 3.704325543818577 0.992571037968167 6.200000000000000 + 3.800918126447484 1.018452942478419 6.200000000000000 + 3.897510709076391 1.044334846988671 6.200000000000000 + 3.994103291705299 1.070216751498923 6.200000000000000 + 4.090695874334204 1.096098656009175 6.200000000000000 + 4.187288456963111 1.121980560519428 6.200000000000000 + 4.283881039592019 1.147862465029680 6.200000000000000 + 4.380473622220926 1.173744369539932 6.200000000000000 + 4.477066204849833 1.199626274050184 6.200000000000000 + 4.573658787478739 1.225508178560436 6.200000000000000 + 4.670251370107646 1.251390083070688 6.200000000000000 + 4.766843952736553 1.277271987580940 6.200000000000000 + 4.863436535365460 1.303153892091192 6.200000000000000 + 4.960029117994367 1.329035796601444 6.200000000000000 + 0.135000000000000 0.000000000000000 6.300000000000000 + 0.235000000000000 0.000000000000000 6.300000000000000 + 0.335000000000000 0.000000000000000 6.300000000000000 + 0.435000000000000 0.000000000000000 6.300000000000000 + 0.535000000000000 0.000000000000000 6.300000000000000 + 0.635000000000000 0.000000000000000 6.300000000000000 + 0.735000000000000 0.000000000000000 6.300000000000000 + 0.835000000000000 0.000000000000000 6.300000000000000 + 0.935000000000000 0.000000000000000 6.300000000000000 + 1.035000000000000 0.000000000000000 6.300000000000000 + 1.135000000000000 0.000000000000000 6.300000000000000 + 1.235000000000000 0.000000000000000 6.300000000000000 + 1.335000000000000 0.000000000000000 6.300000000000000 + 1.435000000000000 0.000000000000000 6.300000000000000 + 1.535000000000000 0.000000000000000 6.300000000000000 + 1.635000000000000 0.000000000000000 6.300000000000000 + 1.735000000000000 0.000000000000000 6.300000000000000 + 1.835000000000000 0.000000000000000 6.300000000000000 + 1.935000000000000 0.000000000000000 6.300000000000000 + 2.035000000000000 0.000000000000000 6.300000000000000 + 2.135000000000000 0.000000000000000 6.300000000000000 + 2.235000000000000 0.000000000000000 6.300000000000000 + 2.335000000000000 0.000000000000000 6.300000000000000 + 2.435000000000000 0.000000000000000 6.300000000000000 + 2.535000000000000 0.000000000000000 6.300000000000000 + 2.635000000000000 0.000000000000000 6.300000000000000 + 2.735000000000000 0.000000000000000 6.300000000000000 + 2.835000000000000 0.000000000000000 6.300000000000000 + 2.935000000000000 0.000000000000000 6.300000000000000 + 3.035000000000000 0.000000000000000 6.300000000000000 + 3.135000000000000 0.000000000000000 6.300000000000000 + 3.235000000000000 0.000000000000000 6.300000000000000 + 3.335000000000000 0.000000000000000 6.300000000000000 + 3.435000000000000 0.000000000000000 6.300000000000000 + 3.535000000000000 0.000000000000000 6.300000000000000 + 3.635000000000000 0.000000000000000 6.300000000000000 + 3.735000000000000 0.000000000000000 6.300000000000000 + 3.835000000000000 0.000000000000000 6.300000000000000 + 3.935000000000000 0.000000000000000 6.300000000000000 + 4.035000000000000 0.000000000000000 6.300000000000000 + 4.135000000000001 0.000000000000000 6.300000000000000 + 4.235000000000000 0.000000000000000 6.300000000000000 + 4.335000000000000 0.000000000000000 6.300000000000000 + 4.435000000000000 0.000000000000000 6.300000000000000 + 4.535000000000000 0.000000000000000 6.300000000000000 + 4.635000000000001 0.000000000000000 6.300000000000000 + 4.735000000000000 0.000000000000000 6.300000000000000 + 4.835000000000001 0.000000000000000 6.300000000000000 + 4.935000000000000 0.000000000000000 6.300000000000000 + 5.035000000000000 0.000000000000000 6.300000000000000 + 5.135000000000001 0.000000000000000 6.300000000000000 + 0.133845056285464 0.017621035949707 6.300000000000000 + 0.232989542422845 0.030673655171712 6.300000000000000 + 0.332134028560227 0.043726274393717 6.300000000000000 + 0.431278514697608 0.056778893615722 6.300000000000000 + 0.530423000834989 0.069831512837728 6.300000000000000 + 0.629567486972370 0.082884132059733 6.300000000000000 + 0.728711973109751 0.095936751281738 6.300000000000000 + 0.827856459247132 0.108989370503743 6.300000000000000 + 0.927000945384513 0.122041989725748 6.300000000000000 + 1.026145431521894 0.135094608947753 6.300000000000000 + 1.125289917659275 0.148147228169759 6.300000000000000 + 1.224434403796656 0.161199847391764 6.300000000000000 + 1.323578889934037 0.174252466613769 6.300000000000000 + 1.422723376071418 0.187305085835774 6.300000000000000 + 1.521867862208799 0.200357705057779 6.300000000000000 + 1.621012348346180 0.213410324279784 6.300000000000000 + 1.720156834483561 0.226462943501789 6.300000000000000 + 1.819301320620942 0.239515562723795 6.300000000000000 + 1.918445806758323 0.252568181945800 6.300000000000000 + 2.017590292895704 0.265620801167805 6.300000000000000 + 2.116734779033085 0.278673420389810 6.300000000000000 + 2.215879265170466 0.291726039611815 6.300000000000000 + 2.315023751307847 0.304778658833820 6.300000000000000 + 2.414168237445228 0.317831278055826 6.300000000000000 + 2.513312723582609 0.330883897277831 6.300000000000000 + 2.612457209719990 0.343936516499836 6.300000000000000 + 2.711601695857371 0.356989135721841 6.300000000000000 + 2.810746181994753 0.370041754943846 6.300000000000000 + 2.909890668132133 0.383094374165851 6.300000000000000 + 3.009035154269514 0.396146993387857 6.300000000000000 + 3.108179640406895 0.409199612609862 6.300000000000000 + 3.207324126544277 0.422252231831867 6.300000000000000 + 3.306468612681658 0.435304851053872 6.300000000000000 + 3.405613098819039 0.448357470275877 6.300000000000000 + 3.504757584956419 0.461410089497882 6.300000000000000 + 3.603902071093801 0.474462708719887 6.300000000000000 + 3.703046557231182 0.487515327941893 6.300000000000000 + 3.802191043368563 0.500567947163898 6.300000000000000 + 3.901335529505944 0.513620566385903 6.300000000000000 + 4.000480015643325 0.526673185607908 6.300000000000000 + 4.099624501780707 0.539725804829913 6.300000000000000 + 4.198768987918087 0.552778424051918 6.300000000000000 + 4.297913474055468 0.565831043273924 6.300000000000000 + 4.397057960192850 0.578883662495929 6.300000000000000 + 4.496202446330230 0.591936281717934 6.300000000000000 + 4.595346932467612 0.604988900939939 6.300000000000000 + 4.694491418604993 0.618041520161944 6.300000000000000 + 4.793635904742374 0.631094139383950 6.300000000000000 + 4.892780390879754 0.644146758605955 6.300000000000000 + 4.991924877017135 0.657199377827960 6.300000000000000 + 5.091069363154517 0.670251997049965 6.300000000000000 + 0.130399986549024 0.034940571088840 6.300000000000000 + 0.226992569177931 0.060822475599092 6.300000000000000 + 0.323585151806838 0.086704380109344 6.300000000000000 + 0.420177734435745 0.112586284619597 6.300000000000000 + 0.516770317064652 0.138468189129849 6.300000000000000 + 0.613362899693559 0.164350093640101 6.300000000000000 + 0.709955482322465 0.190231998150353 6.300000000000000 + 0.806548064951372 0.216113902660605 6.300000000000000 + 0.903140647580279 0.241995807170857 6.300000000000000 + 0.999733230209186 0.267877711681109 6.300000000000000 + 1.096325812838093 0.293759616191361 6.300000000000000 + 1.192918395467000 0.319641520701613 6.300000000000000 + 1.289510978095906 0.345523425211865 6.300000000000000 + 1.386103560724813 0.371405329722117 6.300000000000000 + 1.482696143353720 0.397287234232369 6.300000000000000 + 1.579288725982627 0.423169138742621 6.300000000000000 + 1.675881308611534 0.449051043252873 6.300000000000000 + 1.772473891240440 0.474932947763126 6.300000000000000 + 1.869066473869347 0.500814852273378 6.300000000000000 + 1.965659056498254 0.526696756783630 6.300000000000000 + 2.062251639127161 0.552578661293882 6.300000000000000 + 2.158844221756068 0.578460565804134 6.300000000000000 + 2.255436804384975 0.604342470314386 6.300000000000000 + 2.352029387013882 0.630224374824638 6.300000000000000 + 2.448621969642788 0.656106279334890 6.300000000000000 + 2.545214552271695 0.681988183845142 6.300000000000000 + 2.641807134900602 0.707870088355394 6.300000000000000 + 2.738399717529509 0.733751992865646 6.300000000000000 + 2.834992300158416 0.759633897375898 6.300000000000000 + 2.931584882787322 0.785515801886150 6.300000000000000 + 3.028177465416229 0.811397706396403 6.300000000000000 + 3.124770048045136 0.837279610906655 6.300000000000000 + 3.221362630674043 0.863161515416907 6.300000000000000 + 3.317955213302950 0.889043419927159 6.300000000000000 + 3.414547795931857 0.914925324437411 6.300000000000000 + 3.511140378560763 0.940807228947663 6.300000000000000 + 3.607732961189670 0.966689133457915 6.300000000000000 + 3.704325543818577 0.992571037968167 6.300000000000000 + 3.800918126447484 1.018452942478419 6.300000000000000 + 3.897510709076391 1.044334846988671 6.300000000000000 + 3.994103291705299 1.070216751498923 6.300000000000000 + 4.090695874334204 1.096098656009175 6.300000000000000 + 4.187288456963111 1.121980560519428 6.300000000000000 + 4.283881039592019 1.147862465029680 6.300000000000000 + 4.380473622220926 1.173744369539932 6.300000000000000 + 4.477066204849833 1.199626274050184 6.300000000000000 + 4.573658787478739 1.225508178560436 6.300000000000000 + 4.670251370107646 1.251390083070688 6.300000000000000 + 4.766843952736553 1.277271987580940 6.300000000000000 + 4.863436535365460 1.303153892091192 6.300000000000000 + 4.960029117994367 1.329035796601444 6.300000000000000 + 0.135000000000000 0.000000000000000 6.400000000000000 + 0.235000000000000 0.000000000000000 6.400000000000000 + 0.335000000000000 0.000000000000000 6.400000000000000 + 0.435000000000000 0.000000000000000 6.400000000000000 + 0.535000000000000 0.000000000000000 6.400000000000000 + 0.635000000000000 0.000000000000000 6.400000000000000 + 0.735000000000000 0.000000000000000 6.400000000000000 + 0.835000000000000 0.000000000000000 6.400000000000000 + 0.935000000000000 0.000000000000000 6.400000000000000 + 1.035000000000000 0.000000000000000 6.400000000000000 + 1.135000000000000 0.000000000000000 6.400000000000000 + 1.235000000000000 0.000000000000000 6.400000000000000 + 1.335000000000000 0.000000000000000 6.400000000000000 + 1.435000000000000 0.000000000000000 6.400000000000000 + 1.535000000000000 0.000000000000000 6.400000000000000 + 1.635000000000000 0.000000000000000 6.400000000000000 + 1.735000000000000 0.000000000000000 6.400000000000000 + 1.835000000000000 0.000000000000000 6.400000000000000 + 1.935000000000000 0.000000000000000 6.400000000000000 + 2.035000000000000 0.000000000000000 6.400000000000000 + 2.135000000000000 0.000000000000000 6.400000000000000 + 2.235000000000000 0.000000000000000 6.400000000000000 + 2.335000000000000 0.000000000000000 6.400000000000000 + 2.435000000000000 0.000000000000000 6.400000000000000 + 2.535000000000000 0.000000000000000 6.400000000000000 + 2.635000000000000 0.000000000000000 6.400000000000000 + 2.735000000000000 0.000000000000000 6.400000000000000 + 2.835000000000000 0.000000000000000 6.400000000000000 + 2.935000000000000 0.000000000000000 6.400000000000000 + 3.035000000000000 0.000000000000000 6.400000000000000 + 3.135000000000000 0.000000000000000 6.400000000000000 + 3.235000000000000 0.000000000000000 6.400000000000000 + 3.335000000000000 0.000000000000000 6.400000000000000 + 3.435000000000000 0.000000000000000 6.400000000000000 + 3.535000000000000 0.000000000000000 6.400000000000000 + 3.635000000000000 0.000000000000000 6.400000000000000 + 3.735000000000000 0.000000000000000 6.400000000000000 + 3.835000000000000 0.000000000000000 6.400000000000000 + 3.935000000000000 0.000000000000000 6.400000000000000 + 4.035000000000000 0.000000000000000 6.400000000000000 + 4.135000000000001 0.000000000000000 6.400000000000000 + 4.235000000000000 0.000000000000000 6.400000000000000 + 4.335000000000000 0.000000000000000 6.400000000000000 + 4.435000000000000 0.000000000000000 6.400000000000000 + 4.535000000000000 0.000000000000000 6.400000000000000 + 4.635000000000001 0.000000000000000 6.400000000000000 + 4.735000000000000 0.000000000000000 6.400000000000000 + 4.835000000000001 0.000000000000000 6.400000000000000 + 4.935000000000000 0.000000000000000 6.400000000000000 + 5.035000000000000 0.000000000000000 6.400000000000000 + 5.135000000000001 0.000000000000000 6.400000000000000 + 0.133845056285464 0.017621035949707 6.400000000000000 + 0.232989542422845 0.030673655171712 6.400000000000000 + 0.332134028560227 0.043726274393717 6.400000000000000 + 0.431278514697608 0.056778893615722 6.400000000000000 + 0.530423000834989 0.069831512837728 6.400000000000000 + 0.629567486972370 0.082884132059733 6.400000000000000 + 0.728711973109751 0.095936751281738 6.400000000000000 + 0.827856459247132 0.108989370503743 6.400000000000000 + 0.927000945384513 0.122041989725748 6.400000000000000 + 1.026145431521894 0.135094608947753 6.400000000000000 + 1.125289917659275 0.148147228169759 6.400000000000000 + 1.224434403796656 0.161199847391764 6.400000000000000 + 1.323578889934037 0.174252466613769 6.400000000000000 + 1.422723376071418 0.187305085835774 6.400000000000000 + 1.521867862208799 0.200357705057779 6.400000000000000 + 1.621012348346180 0.213410324279784 6.400000000000000 + 1.720156834483561 0.226462943501789 6.400000000000000 + 1.819301320620942 0.239515562723795 6.400000000000000 + 1.918445806758323 0.252568181945800 6.400000000000000 + 2.017590292895704 0.265620801167805 6.400000000000000 + 2.116734779033085 0.278673420389810 6.400000000000000 + 2.215879265170466 0.291726039611815 6.400000000000000 + 2.315023751307847 0.304778658833820 6.400000000000000 + 2.414168237445228 0.317831278055826 6.400000000000000 + 2.513312723582609 0.330883897277831 6.400000000000000 + 2.612457209719990 0.343936516499836 6.400000000000000 + 2.711601695857371 0.356989135721841 6.400000000000000 + 2.810746181994753 0.370041754943846 6.400000000000000 + 2.909890668132133 0.383094374165851 6.400000000000000 + 3.009035154269514 0.396146993387857 6.400000000000000 + 3.108179640406895 0.409199612609862 6.400000000000000 + 3.207324126544277 0.422252231831867 6.400000000000000 + 3.306468612681658 0.435304851053872 6.400000000000000 + 3.405613098819039 0.448357470275877 6.400000000000000 + 3.504757584956419 0.461410089497882 6.400000000000000 + 3.603902071093801 0.474462708719887 6.400000000000000 + 3.703046557231182 0.487515327941893 6.400000000000000 + 3.802191043368563 0.500567947163898 6.400000000000000 + 3.901335529505944 0.513620566385903 6.400000000000000 + 4.000480015643325 0.526673185607908 6.400000000000000 + 4.099624501780707 0.539725804829913 6.400000000000000 + 4.198768987918087 0.552778424051918 6.400000000000000 + 4.297913474055468 0.565831043273924 6.400000000000000 + 4.397057960192850 0.578883662495929 6.400000000000000 + 4.496202446330230 0.591936281717934 6.400000000000000 + 4.595346932467612 0.604988900939939 6.400000000000000 + 4.694491418604993 0.618041520161944 6.400000000000000 + 4.793635904742374 0.631094139383950 6.400000000000000 + 4.892780390879754 0.644146758605955 6.400000000000000 + 4.991924877017135 0.657199377827960 6.400000000000000 + 5.091069363154517 0.670251997049965 6.400000000000000 + 0.130399986549024 0.034940571088840 6.400000000000000 + 0.226992569177931 0.060822475599092 6.400000000000000 + 0.323585151806838 0.086704380109344 6.400000000000000 + 0.420177734435745 0.112586284619597 6.400000000000000 + 0.516770317064652 0.138468189129849 6.400000000000000 + 0.613362899693559 0.164350093640101 6.400000000000000 + 0.709955482322465 0.190231998150353 6.400000000000000 + 0.806548064951372 0.216113902660605 6.400000000000000 + 0.903140647580279 0.241995807170857 6.400000000000000 + 0.999733230209186 0.267877711681109 6.400000000000000 + 1.096325812838093 0.293759616191361 6.400000000000000 + 1.192918395467000 0.319641520701613 6.400000000000000 + 1.289510978095906 0.345523425211865 6.400000000000000 + 1.386103560724813 0.371405329722117 6.400000000000000 + 1.482696143353720 0.397287234232369 6.400000000000000 + 1.579288725982627 0.423169138742621 6.400000000000000 + 1.675881308611534 0.449051043252873 6.400000000000000 + 1.772473891240440 0.474932947763126 6.400000000000000 + 1.869066473869347 0.500814852273378 6.400000000000000 + 1.965659056498254 0.526696756783630 6.400000000000000 + 2.062251639127161 0.552578661293882 6.400000000000000 + 2.158844221756068 0.578460565804134 6.400000000000000 + 2.255436804384975 0.604342470314386 6.400000000000000 + 2.352029387013882 0.630224374824638 6.400000000000000 + 2.448621969642788 0.656106279334890 6.400000000000000 + 2.545214552271695 0.681988183845142 6.400000000000000 + 2.641807134900602 0.707870088355394 6.400000000000000 + 2.738399717529509 0.733751992865646 6.400000000000000 + 2.834992300158416 0.759633897375898 6.400000000000000 + 2.931584882787322 0.785515801886150 6.400000000000000 + 3.028177465416229 0.811397706396403 6.400000000000000 + 3.124770048045136 0.837279610906655 6.400000000000000 + 3.221362630674043 0.863161515416907 6.400000000000000 + 3.317955213302950 0.889043419927159 6.400000000000000 + 3.414547795931857 0.914925324437411 6.400000000000000 + 3.511140378560763 0.940807228947663 6.400000000000000 + 3.607732961189670 0.966689133457915 6.400000000000000 + 3.704325543818577 0.992571037968167 6.400000000000000 + 3.800918126447484 1.018452942478419 6.400000000000000 + 3.897510709076391 1.044334846988671 6.400000000000000 + 3.994103291705299 1.070216751498923 6.400000000000000 + 4.090695874334204 1.096098656009175 6.400000000000000 + 4.187288456963111 1.121980560519428 6.400000000000000 + 4.283881039592019 1.147862465029680 6.400000000000000 + 4.380473622220926 1.173744369539932 6.400000000000000 + 4.477066204849833 1.199626274050184 6.400000000000000 + 4.573658787478739 1.225508178560436 6.400000000000000 + 4.670251370107646 1.251390083070688 6.400000000000000 + 4.766843952736553 1.277271987580940 6.400000000000000 + 4.863436535365460 1.303153892091192 6.400000000000000 + 4.960029117994367 1.329035796601444 6.400000000000000 + 0.135000000000000 0.000000000000000 6.500000000000000 + 0.235000000000000 0.000000000000000 6.500000000000000 + 0.335000000000000 0.000000000000000 6.500000000000000 + 0.435000000000000 0.000000000000000 6.500000000000000 + 0.535000000000000 0.000000000000000 6.500000000000000 + 0.635000000000000 0.000000000000000 6.500000000000000 + 0.735000000000000 0.000000000000000 6.500000000000000 + 0.835000000000000 0.000000000000000 6.500000000000000 + 0.935000000000000 0.000000000000000 6.500000000000000 + 1.035000000000000 0.000000000000000 6.500000000000000 + 1.135000000000000 0.000000000000000 6.500000000000000 + 1.235000000000000 0.000000000000000 6.500000000000000 + 1.335000000000000 0.000000000000000 6.500000000000000 + 1.435000000000000 0.000000000000000 6.500000000000000 + 1.535000000000000 0.000000000000000 6.500000000000000 + 1.635000000000000 0.000000000000000 6.500000000000000 + 1.735000000000000 0.000000000000000 6.500000000000000 + 1.835000000000000 0.000000000000000 6.500000000000000 + 1.935000000000000 0.000000000000000 6.500000000000000 + 2.035000000000000 0.000000000000000 6.500000000000000 + 2.135000000000000 0.000000000000000 6.500000000000000 + 2.235000000000000 0.000000000000000 6.500000000000000 + 2.335000000000000 0.000000000000000 6.500000000000000 + 2.435000000000000 0.000000000000000 6.500000000000000 + 2.535000000000000 0.000000000000000 6.500000000000000 + 2.635000000000000 0.000000000000000 6.500000000000000 + 2.735000000000000 0.000000000000000 6.500000000000000 + 2.835000000000000 0.000000000000000 6.500000000000000 + 2.935000000000000 0.000000000000000 6.500000000000000 + 3.035000000000000 0.000000000000000 6.500000000000000 + 3.135000000000000 0.000000000000000 6.500000000000000 + 3.235000000000000 0.000000000000000 6.500000000000000 + 3.335000000000000 0.000000000000000 6.500000000000000 + 3.435000000000000 0.000000000000000 6.500000000000000 + 3.535000000000000 0.000000000000000 6.500000000000000 + 3.635000000000000 0.000000000000000 6.500000000000000 + 3.735000000000000 0.000000000000000 6.500000000000000 + 3.835000000000000 0.000000000000000 6.500000000000000 + 3.935000000000000 0.000000000000000 6.500000000000000 + 4.035000000000000 0.000000000000000 6.500000000000000 + 4.135000000000001 0.000000000000000 6.500000000000000 + 4.235000000000000 0.000000000000000 6.500000000000000 + 4.335000000000000 0.000000000000000 6.500000000000000 + 4.435000000000000 0.000000000000000 6.500000000000000 + 4.535000000000000 0.000000000000000 6.500000000000000 + 4.635000000000001 0.000000000000000 6.500000000000000 + 4.735000000000000 0.000000000000000 6.500000000000000 + 4.835000000000001 0.000000000000000 6.500000000000000 + 4.935000000000000 0.000000000000000 6.500000000000000 + 5.035000000000000 0.000000000000000 6.500000000000000 + 5.135000000000001 0.000000000000000 6.500000000000000 + 0.133845056285464 0.017621035949707 6.500000000000000 + 0.232989542422845 0.030673655171712 6.500000000000000 + 0.332134028560227 0.043726274393717 6.500000000000000 + 0.431278514697608 0.056778893615722 6.500000000000000 + 0.530423000834989 0.069831512837728 6.500000000000000 + 0.629567486972370 0.082884132059733 6.500000000000000 + 0.728711973109751 0.095936751281738 6.500000000000000 + 0.827856459247132 0.108989370503743 6.500000000000000 + 0.927000945384513 0.122041989725748 6.500000000000000 + 1.026145431521894 0.135094608947753 6.500000000000000 + 1.125289917659275 0.148147228169759 6.500000000000000 + 1.224434403796656 0.161199847391764 6.500000000000000 + 1.323578889934037 0.174252466613769 6.500000000000000 + 1.422723376071418 0.187305085835774 6.500000000000000 + 1.521867862208799 0.200357705057779 6.500000000000000 + 1.621012348346180 0.213410324279784 6.500000000000000 + 1.720156834483561 0.226462943501789 6.500000000000000 + 1.819301320620942 0.239515562723795 6.500000000000000 + 1.918445806758323 0.252568181945800 6.500000000000000 + 2.017590292895704 0.265620801167805 6.500000000000000 + 2.116734779033085 0.278673420389810 6.500000000000000 + 2.215879265170466 0.291726039611815 6.500000000000000 + 2.315023751307847 0.304778658833820 6.500000000000000 + 2.414168237445228 0.317831278055826 6.500000000000000 + 2.513312723582609 0.330883897277831 6.500000000000000 + 2.612457209719990 0.343936516499836 6.500000000000000 + 2.711601695857371 0.356989135721841 6.500000000000000 + 2.810746181994753 0.370041754943846 6.500000000000000 + 2.909890668132133 0.383094374165851 6.500000000000000 + 3.009035154269514 0.396146993387857 6.500000000000000 + 3.108179640406895 0.409199612609862 6.500000000000000 + 3.207324126544277 0.422252231831867 6.500000000000000 + 3.306468612681658 0.435304851053872 6.500000000000000 + 3.405613098819039 0.448357470275877 6.500000000000000 + 3.504757584956419 0.461410089497882 6.500000000000000 + 3.603902071093801 0.474462708719887 6.500000000000000 + 3.703046557231182 0.487515327941893 6.500000000000000 + 3.802191043368563 0.500567947163898 6.500000000000000 + 3.901335529505944 0.513620566385903 6.500000000000000 + 4.000480015643325 0.526673185607908 6.500000000000000 + 4.099624501780707 0.539725804829913 6.500000000000000 + 4.198768987918087 0.552778424051918 6.500000000000000 + 4.297913474055468 0.565831043273924 6.500000000000000 + 4.397057960192850 0.578883662495929 6.500000000000000 + 4.496202446330230 0.591936281717934 6.500000000000000 + 4.595346932467612 0.604988900939939 6.500000000000000 + 4.694491418604993 0.618041520161944 6.500000000000000 + 4.793635904742374 0.631094139383950 6.500000000000000 + 4.892780390879754 0.644146758605955 6.500000000000000 + 4.991924877017135 0.657199377827960 6.500000000000000 + 5.091069363154517 0.670251997049965 6.500000000000000 + 0.130399986549024 0.034940571088840 6.500000000000000 + 0.226992569177931 0.060822475599092 6.500000000000000 + 0.323585151806838 0.086704380109344 6.500000000000000 + 0.420177734435745 0.112586284619597 6.500000000000000 + 0.516770317064652 0.138468189129849 6.500000000000000 + 0.613362899693559 0.164350093640101 6.500000000000000 + 0.709955482322465 0.190231998150353 6.500000000000000 + 0.806548064951372 0.216113902660605 6.500000000000000 + 0.903140647580279 0.241995807170857 6.500000000000000 + 0.999733230209186 0.267877711681109 6.500000000000000 + 1.096325812838093 0.293759616191361 6.500000000000000 + 1.192918395467000 0.319641520701613 6.500000000000000 + 1.289510978095906 0.345523425211865 6.500000000000000 + 1.386103560724813 0.371405329722117 6.500000000000000 + 1.482696143353720 0.397287234232369 6.500000000000000 + 1.579288725982627 0.423169138742621 6.500000000000000 + 1.675881308611534 0.449051043252873 6.500000000000000 + 1.772473891240440 0.474932947763126 6.500000000000000 + 1.869066473869347 0.500814852273378 6.500000000000000 + 1.965659056498254 0.526696756783630 6.500000000000000 + 2.062251639127161 0.552578661293882 6.500000000000000 + 2.158844221756068 0.578460565804134 6.500000000000000 + 2.255436804384975 0.604342470314386 6.500000000000000 + 2.352029387013882 0.630224374824638 6.500000000000000 + 2.448621969642788 0.656106279334890 6.500000000000000 + 2.545214552271695 0.681988183845142 6.500000000000000 + 2.641807134900602 0.707870088355394 6.500000000000000 + 2.738399717529509 0.733751992865646 6.500000000000000 + 2.834992300158416 0.759633897375898 6.500000000000000 + 2.931584882787322 0.785515801886150 6.500000000000000 + 3.028177465416229 0.811397706396403 6.500000000000000 + 3.124770048045136 0.837279610906655 6.500000000000000 + 3.221362630674043 0.863161515416907 6.500000000000000 + 3.317955213302950 0.889043419927159 6.500000000000000 + 3.414547795931857 0.914925324437411 6.500000000000000 + 3.511140378560763 0.940807228947663 6.500000000000000 + 3.607732961189670 0.966689133457915 6.500000000000000 + 3.704325543818577 0.992571037968167 6.500000000000000 + 3.800918126447484 1.018452942478419 6.500000000000000 + 3.897510709076391 1.044334846988671 6.500000000000000 + 3.994103291705299 1.070216751498923 6.500000000000000 + 4.090695874334204 1.096098656009175 6.500000000000000 + 4.187288456963111 1.121980560519428 6.500000000000000 + 4.283881039592019 1.147862465029680 6.500000000000000 + 4.380473622220926 1.173744369539932 6.500000000000000 + 4.477066204849833 1.199626274050184 6.500000000000000 + 4.573658787478739 1.225508178560436 6.500000000000000 + 4.670251370107646 1.251390083070688 6.500000000000000 + 4.766843952736553 1.277271987580940 6.500000000000000 + 4.863436535365460 1.303153892091192 6.500000000000000 + 4.960029117994367 1.329035796601444 6.500000000000000 + 0.135000000000000 0.000000000000000 6.600000000000000 + 0.235000000000000 0.000000000000000 6.600000000000000 + 0.335000000000000 0.000000000000000 6.600000000000000 + 0.435000000000000 0.000000000000000 6.600000000000000 + 0.535000000000000 0.000000000000000 6.600000000000000 + 0.635000000000000 0.000000000000000 6.600000000000000 + 0.735000000000000 0.000000000000000 6.600000000000000 + 0.835000000000000 0.000000000000000 6.600000000000000 + 0.935000000000000 0.000000000000000 6.600000000000000 + 1.035000000000000 0.000000000000000 6.600000000000000 + 1.135000000000000 0.000000000000000 6.600000000000000 + 1.235000000000000 0.000000000000000 6.600000000000000 + 1.335000000000000 0.000000000000000 6.600000000000000 + 1.435000000000000 0.000000000000000 6.600000000000000 + 1.535000000000000 0.000000000000000 6.600000000000000 + 1.635000000000000 0.000000000000000 6.600000000000000 + 1.735000000000000 0.000000000000000 6.600000000000000 + 1.835000000000000 0.000000000000000 6.600000000000000 + 1.935000000000000 0.000000000000000 6.600000000000000 + 2.035000000000000 0.000000000000000 6.600000000000000 + 2.135000000000000 0.000000000000000 6.600000000000000 + 2.235000000000000 0.000000000000000 6.600000000000000 + 2.335000000000000 0.000000000000000 6.600000000000000 + 2.435000000000000 0.000000000000000 6.600000000000000 + 2.535000000000000 0.000000000000000 6.600000000000000 + 2.635000000000000 0.000000000000000 6.600000000000000 + 2.735000000000000 0.000000000000000 6.600000000000000 + 2.835000000000000 0.000000000000000 6.600000000000000 + 2.935000000000000 0.000000000000000 6.600000000000000 + 3.035000000000000 0.000000000000000 6.600000000000000 + 3.135000000000000 0.000000000000000 6.600000000000000 + 3.235000000000000 0.000000000000000 6.600000000000000 + 3.335000000000000 0.000000000000000 6.600000000000000 + 3.435000000000000 0.000000000000000 6.600000000000000 + 3.535000000000000 0.000000000000000 6.600000000000000 + 3.635000000000000 0.000000000000000 6.600000000000000 + 3.735000000000000 0.000000000000000 6.600000000000000 + 3.835000000000000 0.000000000000000 6.600000000000000 + 3.935000000000000 0.000000000000000 6.600000000000000 + 4.035000000000000 0.000000000000000 6.600000000000000 + 4.135000000000001 0.000000000000000 6.600000000000000 + 4.235000000000000 0.000000000000000 6.600000000000000 + 4.335000000000000 0.000000000000000 6.600000000000000 + 4.435000000000000 0.000000000000000 6.600000000000000 + 4.535000000000000 0.000000000000000 6.600000000000000 + 4.635000000000001 0.000000000000000 6.600000000000000 + 4.735000000000000 0.000000000000000 6.600000000000000 + 4.835000000000001 0.000000000000000 6.600000000000000 + 4.935000000000000 0.000000000000000 6.600000000000000 + 5.035000000000000 0.000000000000000 6.600000000000000 + 5.135000000000001 0.000000000000000 6.600000000000000 + 0.133845056285464 0.017621035949707 6.600000000000000 + 0.232989542422845 0.030673655171712 6.600000000000000 + 0.332134028560227 0.043726274393717 6.600000000000000 + 0.431278514697608 0.056778893615722 6.600000000000000 + 0.530423000834989 0.069831512837728 6.600000000000000 + 0.629567486972370 0.082884132059733 6.600000000000000 + 0.728711973109751 0.095936751281738 6.600000000000000 + 0.827856459247132 0.108989370503743 6.600000000000000 + 0.927000945384513 0.122041989725748 6.600000000000000 + 1.026145431521894 0.135094608947753 6.600000000000000 + 1.125289917659275 0.148147228169759 6.600000000000000 + 1.224434403796656 0.161199847391764 6.600000000000000 + 1.323578889934037 0.174252466613769 6.600000000000000 + 1.422723376071418 0.187305085835774 6.600000000000000 + 1.521867862208799 0.200357705057779 6.600000000000000 + 1.621012348346180 0.213410324279784 6.600000000000000 + 1.720156834483561 0.226462943501789 6.600000000000000 + 1.819301320620942 0.239515562723795 6.600000000000000 + 1.918445806758323 0.252568181945800 6.600000000000000 + 2.017590292895704 0.265620801167805 6.600000000000000 + 2.116734779033085 0.278673420389810 6.600000000000000 + 2.215879265170466 0.291726039611815 6.600000000000000 + 2.315023751307847 0.304778658833820 6.600000000000000 + 2.414168237445228 0.317831278055826 6.600000000000000 + 2.513312723582609 0.330883897277831 6.600000000000000 + 2.612457209719990 0.343936516499836 6.600000000000000 + 2.711601695857371 0.356989135721841 6.600000000000000 + 2.810746181994753 0.370041754943846 6.600000000000000 + 2.909890668132133 0.383094374165851 6.600000000000000 + 3.009035154269514 0.396146993387857 6.600000000000000 + 3.108179640406895 0.409199612609862 6.600000000000000 + 3.207324126544277 0.422252231831867 6.600000000000000 + 3.306468612681658 0.435304851053872 6.600000000000000 + 3.405613098819039 0.448357470275877 6.600000000000000 + 3.504757584956419 0.461410089497882 6.600000000000000 + 3.603902071093801 0.474462708719887 6.600000000000000 + 3.703046557231182 0.487515327941893 6.600000000000000 + 3.802191043368563 0.500567947163898 6.600000000000000 + 3.901335529505944 0.513620566385903 6.600000000000000 + 4.000480015643325 0.526673185607908 6.600000000000000 + 4.099624501780707 0.539725804829913 6.600000000000000 + 4.198768987918087 0.552778424051918 6.600000000000000 + 4.297913474055468 0.565831043273924 6.600000000000000 + 4.397057960192850 0.578883662495929 6.600000000000000 + 4.496202446330230 0.591936281717934 6.600000000000000 + 4.595346932467612 0.604988900939939 6.600000000000000 + 4.694491418604993 0.618041520161944 6.600000000000000 + 4.793635904742374 0.631094139383950 6.600000000000000 + 4.892780390879754 0.644146758605955 6.600000000000000 + 4.991924877017135 0.657199377827960 6.600000000000000 + 5.091069363154517 0.670251997049965 6.600000000000000 + 0.130399986549024 0.034940571088840 6.600000000000000 + 0.226992569177931 0.060822475599092 6.600000000000000 + 0.323585151806838 0.086704380109344 6.600000000000000 + 0.420177734435745 0.112586284619597 6.600000000000000 + 0.516770317064652 0.138468189129849 6.600000000000000 + 0.613362899693559 0.164350093640101 6.600000000000000 + 0.709955482322465 0.190231998150353 6.600000000000000 + 0.806548064951372 0.216113902660605 6.600000000000000 + 0.903140647580279 0.241995807170857 6.600000000000000 + 0.999733230209186 0.267877711681109 6.600000000000000 + 1.096325812838093 0.293759616191361 6.600000000000000 + 1.192918395467000 0.319641520701613 6.600000000000000 + 1.289510978095906 0.345523425211865 6.600000000000000 + 1.386103560724813 0.371405329722117 6.600000000000000 + 1.482696143353720 0.397287234232369 6.600000000000000 + 1.579288725982627 0.423169138742621 6.600000000000000 + 1.675881308611534 0.449051043252873 6.600000000000000 + 1.772473891240440 0.474932947763126 6.600000000000000 + 1.869066473869347 0.500814852273378 6.600000000000000 + 1.965659056498254 0.526696756783630 6.600000000000000 + 2.062251639127161 0.552578661293882 6.600000000000000 + 2.158844221756068 0.578460565804134 6.600000000000000 + 2.255436804384975 0.604342470314386 6.600000000000000 + 2.352029387013882 0.630224374824638 6.600000000000000 + 2.448621969642788 0.656106279334890 6.600000000000000 + 2.545214552271695 0.681988183845142 6.600000000000000 + 2.641807134900602 0.707870088355394 6.600000000000000 + 2.738399717529509 0.733751992865646 6.600000000000000 + 2.834992300158416 0.759633897375898 6.600000000000000 + 2.931584882787322 0.785515801886150 6.600000000000000 + 3.028177465416229 0.811397706396403 6.600000000000000 + 3.124770048045136 0.837279610906655 6.600000000000000 + 3.221362630674043 0.863161515416907 6.600000000000000 + 3.317955213302950 0.889043419927159 6.600000000000000 + 3.414547795931857 0.914925324437411 6.600000000000000 + 3.511140378560763 0.940807228947663 6.600000000000000 + 3.607732961189670 0.966689133457915 6.600000000000000 + 3.704325543818577 0.992571037968167 6.600000000000000 + 3.800918126447484 1.018452942478419 6.600000000000000 + 3.897510709076391 1.044334846988671 6.600000000000000 + 3.994103291705299 1.070216751498923 6.600000000000000 + 4.090695874334204 1.096098656009175 6.600000000000000 + 4.187288456963111 1.121980560519428 6.600000000000000 + 4.283881039592019 1.147862465029680 6.600000000000000 + 4.380473622220926 1.173744369539932 6.600000000000000 + 4.477066204849833 1.199626274050184 6.600000000000000 + 4.573658787478739 1.225508178560436 6.600000000000000 + 4.670251370107646 1.251390083070688 6.600000000000000 + 4.766843952736553 1.277271987580940 6.600000000000000 + 4.863436535365460 1.303153892091192 6.600000000000000 + 4.960029117994367 1.329035796601444 6.600000000000000 + 0.135000000000000 0.000000000000000 6.700000000000000 + 0.235000000000000 0.000000000000000 6.700000000000000 + 0.335000000000000 0.000000000000000 6.700000000000000 + 0.435000000000000 0.000000000000000 6.700000000000000 + 0.535000000000000 0.000000000000000 6.700000000000000 + 0.635000000000000 0.000000000000000 6.700000000000000 + 0.735000000000000 0.000000000000000 6.700000000000000 + 0.835000000000000 0.000000000000000 6.700000000000000 + 0.935000000000000 0.000000000000000 6.700000000000000 + 1.035000000000000 0.000000000000000 6.700000000000000 + 1.135000000000000 0.000000000000000 6.700000000000000 + 1.235000000000000 0.000000000000000 6.700000000000000 + 1.335000000000000 0.000000000000000 6.700000000000000 + 1.435000000000000 0.000000000000000 6.700000000000000 + 1.535000000000000 0.000000000000000 6.700000000000000 + 1.635000000000000 0.000000000000000 6.700000000000000 + 1.735000000000000 0.000000000000000 6.700000000000000 + 1.835000000000000 0.000000000000000 6.700000000000000 + 1.935000000000000 0.000000000000000 6.700000000000000 + 2.035000000000000 0.000000000000000 6.700000000000000 + 2.135000000000000 0.000000000000000 6.700000000000000 + 2.235000000000000 0.000000000000000 6.700000000000000 + 2.335000000000000 0.000000000000000 6.700000000000000 + 2.435000000000000 0.000000000000000 6.700000000000000 + 2.535000000000000 0.000000000000000 6.700000000000000 + 2.635000000000000 0.000000000000000 6.700000000000000 + 2.735000000000000 0.000000000000000 6.700000000000000 + 2.835000000000000 0.000000000000000 6.700000000000000 + 2.935000000000000 0.000000000000000 6.700000000000000 + 3.035000000000000 0.000000000000000 6.700000000000000 + 3.135000000000000 0.000000000000000 6.700000000000000 + 3.235000000000000 0.000000000000000 6.700000000000000 + 3.335000000000000 0.000000000000000 6.700000000000000 + 3.435000000000000 0.000000000000000 6.700000000000000 + 3.535000000000000 0.000000000000000 6.700000000000000 + 3.635000000000000 0.000000000000000 6.700000000000000 + 3.735000000000000 0.000000000000000 6.700000000000000 + 3.835000000000000 0.000000000000000 6.700000000000000 + 3.935000000000000 0.000000000000000 6.700000000000000 + 4.035000000000000 0.000000000000000 6.700000000000000 + 4.135000000000001 0.000000000000000 6.700000000000000 + 4.235000000000000 0.000000000000000 6.700000000000000 + 4.335000000000000 0.000000000000000 6.700000000000000 + 4.435000000000000 0.000000000000000 6.700000000000000 + 4.535000000000000 0.000000000000000 6.700000000000000 + 4.635000000000001 0.000000000000000 6.700000000000000 + 4.735000000000000 0.000000000000000 6.700000000000000 + 4.835000000000001 0.000000000000000 6.700000000000000 + 4.935000000000000 0.000000000000000 6.700000000000000 + 5.035000000000000 0.000000000000000 6.700000000000000 + 5.135000000000001 0.000000000000000 6.700000000000000 + 0.133845056285464 0.017621035949707 6.700000000000000 + 0.232989542422845 0.030673655171712 6.700000000000000 + 0.332134028560227 0.043726274393717 6.700000000000000 + 0.431278514697608 0.056778893615722 6.700000000000000 + 0.530423000834989 0.069831512837728 6.700000000000000 + 0.629567486972370 0.082884132059733 6.700000000000000 + 0.728711973109751 0.095936751281738 6.700000000000000 + 0.827856459247132 0.108989370503743 6.700000000000000 + 0.927000945384513 0.122041989725748 6.700000000000000 + 1.026145431521894 0.135094608947753 6.700000000000000 + 1.125289917659275 0.148147228169759 6.700000000000000 + 1.224434403796656 0.161199847391764 6.700000000000000 + 1.323578889934037 0.174252466613769 6.700000000000000 + 1.422723376071418 0.187305085835774 6.700000000000000 + 1.521867862208799 0.200357705057779 6.700000000000000 + 1.621012348346180 0.213410324279784 6.700000000000000 + 1.720156834483561 0.226462943501789 6.700000000000000 + 1.819301320620942 0.239515562723795 6.700000000000000 + 1.918445806758323 0.252568181945800 6.700000000000000 + 2.017590292895704 0.265620801167805 6.700000000000000 + 2.116734779033085 0.278673420389810 6.700000000000000 + 2.215879265170466 0.291726039611815 6.700000000000000 + 2.315023751307847 0.304778658833820 6.700000000000000 + 2.414168237445228 0.317831278055826 6.700000000000000 + 2.513312723582609 0.330883897277831 6.700000000000000 + 2.612457209719990 0.343936516499836 6.700000000000000 + 2.711601695857371 0.356989135721841 6.700000000000000 + 2.810746181994753 0.370041754943846 6.700000000000000 + 2.909890668132133 0.383094374165851 6.700000000000000 + 3.009035154269514 0.396146993387857 6.700000000000000 + 3.108179640406895 0.409199612609862 6.700000000000000 + 3.207324126544277 0.422252231831867 6.700000000000000 + 3.306468612681658 0.435304851053872 6.700000000000000 + 3.405613098819039 0.448357470275877 6.700000000000000 + 3.504757584956419 0.461410089497882 6.700000000000000 + 3.603902071093801 0.474462708719887 6.700000000000000 + 3.703046557231182 0.487515327941893 6.700000000000000 + 3.802191043368563 0.500567947163898 6.700000000000000 + 3.901335529505944 0.513620566385903 6.700000000000000 + 4.000480015643325 0.526673185607908 6.700000000000000 + 4.099624501780707 0.539725804829913 6.700000000000000 + 4.198768987918087 0.552778424051918 6.700000000000000 + 4.297913474055468 0.565831043273924 6.700000000000000 + 4.397057960192850 0.578883662495929 6.700000000000000 + 4.496202446330230 0.591936281717934 6.700000000000000 + 4.595346932467612 0.604988900939939 6.700000000000000 + 4.694491418604993 0.618041520161944 6.700000000000000 + 4.793635904742374 0.631094139383950 6.700000000000000 + 4.892780390879754 0.644146758605955 6.700000000000000 + 4.991924877017135 0.657199377827960 6.700000000000000 + 5.091069363154517 0.670251997049965 6.700000000000000 + 0.130399986549024 0.034940571088840 6.700000000000000 + 0.226992569177931 0.060822475599092 6.700000000000000 + 0.323585151806838 0.086704380109344 6.700000000000000 + 0.420177734435745 0.112586284619597 6.700000000000000 + 0.516770317064652 0.138468189129849 6.700000000000000 + 0.613362899693559 0.164350093640101 6.700000000000000 + 0.709955482322465 0.190231998150353 6.700000000000000 + 0.806548064951372 0.216113902660605 6.700000000000000 + 0.903140647580279 0.241995807170857 6.700000000000000 + 0.999733230209186 0.267877711681109 6.700000000000000 + 1.096325812838093 0.293759616191361 6.700000000000000 + 1.192918395467000 0.319641520701613 6.700000000000000 + 1.289510978095906 0.345523425211865 6.700000000000000 + 1.386103560724813 0.371405329722117 6.700000000000000 + 1.482696143353720 0.397287234232369 6.700000000000000 + 1.579288725982627 0.423169138742621 6.700000000000000 + 1.675881308611534 0.449051043252873 6.700000000000000 + 1.772473891240440 0.474932947763126 6.700000000000000 + 1.869066473869347 0.500814852273378 6.700000000000000 + 1.965659056498254 0.526696756783630 6.700000000000000 + 2.062251639127161 0.552578661293882 6.700000000000000 + 2.158844221756068 0.578460565804134 6.700000000000000 + 2.255436804384975 0.604342470314386 6.700000000000000 + 2.352029387013882 0.630224374824638 6.700000000000000 + 2.448621969642788 0.656106279334890 6.700000000000000 + 2.545214552271695 0.681988183845142 6.700000000000000 + 2.641807134900602 0.707870088355394 6.700000000000000 + 2.738399717529509 0.733751992865646 6.700000000000000 + 2.834992300158416 0.759633897375898 6.700000000000000 + 2.931584882787322 0.785515801886150 6.700000000000000 + 3.028177465416229 0.811397706396403 6.700000000000000 + 3.124770048045136 0.837279610906655 6.700000000000000 + 3.221362630674043 0.863161515416907 6.700000000000000 + 3.317955213302950 0.889043419927159 6.700000000000000 + 3.414547795931857 0.914925324437411 6.700000000000000 + 3.511140378560763 0.940807228947663 6.700000000000000 + 3.607732961189670 0.966689133457915 6.700000000000000 + 3.704325543818577 0.992571037968167 6.700000000000000 + 3.800918126447484 1.018452942478419 6.700000000000000 + 3.897510709076391 1.044334846988671 6.700000000000000 + 3.994103291705299 1.070216751498923 6.700000000000000 + 4.090695874334204 1.096098656009175 6.700000000000000 + 4.187288456963111 1.121980560519428 6.700000000000000 + 4.283881039592019 1.147862465029680 6.700000000000000 + 4.380473622220926 1.173744369539932 6.700000000000000 + 4.477066204849833 1.199626274050184 6.700000000000000 + 4.573658787478739 1.225508178560436 6.700000000000000 + 4.670251370107646 1.251390083070688 6.700000000000000 + 4.766843952736553 1.277271987580940 6.700000000000000 + 4.863436535365460 1.303153892091192 6.700000000000000 + 4.960029117994367 1.329035796601444 6.700000000000000 + 0.135000000000000 0.000000000000000 6.800000000000000 + 0.235000000000000 0.000000000000000 6.800000000000000 + 0.335000000000000 0.000000000000000 6.800000000000000 + 0.435000000000000 0.000000000000000 6.800000000000000 + 0.535000000000000 0.000000000000000 6.800000000000000 + 0.635000000000000 0.000000000000000 6.800000000000000 + 0.735000000000000 0.000000000000000 6.800000000000000 + 0.835000000000000 0.000000000000000 6.800000000000000 + 0.935000000000000 0.000000000000000 6.800000000000000 + 1.035000000000000 0.000000000000000 6.800000000000000 + 1.135000000000000 0.000000000000000 6.800000000000000 + 1.235000000000000 0.000000000000000 6.800000000000000 + 1.335000000000000 0.000000000000000 6.800000000000000 + 1.435000000000000 0.000000000000000 6.800000000000000 + 1.535000000000000 0.000000000000000 6.800000000000000 + 1.635000000000000 0.000000000000000 6.800000000000000 + 1.735000000000000 0.000000000000000 6.800000000000000 + 1.835000000000000 0.000000000000000 6.800000000000000 + 1.935000000000000 0.000000000000000 6.800000000000000 + 2.035000000000000 0.000000000000000 6.800000000000000 + 2.135000000000000 0.000000000000000 6.800000000000000 + 2.235000000000000 0.000000000000000 6.800000000000000 + 2.335000000000000 0.000000000000000 6.800000000000000 + 2.435000000000000 0.000000000000000 6.800000000000000 + 2.535000000000000 0.000000000000000 6.800000000000000 + 2.635000000000000 0.000000000000000 6.800000000000000 + 2.735000000000000 0.000000000000000 6.800000000000000 + 2.835000000000000 0.000000000000000 6.800000000000000 + 2.935000000000000 0.000000000000000 6.800000000000000 + 3.035000000000000 0.000000000000000 6.800000000000000 + 3.135000000000000 0.000000000000000 6.800000000000000 + 3.235000000000000 0.000000000000000 6.800000000000000 + 3.335000000000000 0.000000000000000 6.800000000000000 + 3.435000000000000 0.000000000000000 6.800000000000000 + 3.535000000000000 0.000000000000000 6.800000000000000 + 3.635000000000000 0.000000000000000 6.800000000000000 + 3.735000000000000 0.000000000000000 6.800000000000000 + 3.835000000000000 0.000000000000000 6.800000000000000 + 3.935000000000000 0.000000000000000 6.800000000000000 + 4.035000000000000 0.000000000000000 6.800000000000000 + 4.135000000000001 0.000000000000000 6.800000000000000 + 4.235000000000000 0.000000000000000 6.800000000000000 + 4.335000000000000 0.000000000000000 6.800000000000000 + 4.435000000000000 0.000000000000000 6.800000000000000 + 4.535000000000000 0.000000000000000 6.800000000000000 + 4.635000000000001 0.000000000000000 6.800000000000000 + 4.735000000000000 0.000000000000000 6.800000000000000 + 4.835000000000001 0.000000000000000 6.800000000000000 + 4.935000000000000 0.000000000000000 6.800000000000000 + 5.035000000000000 0.000000000000000 6.800000000000000 + 5.135000000000001 0.000000000000000 6.800000000000000 + 0.133845056285464 0.017621035949707 6.800000000000000 + 0.232989542422845 0.030673655171712 6.800000000000000 + 0.332134028560227 0.043726274393717 6.800000000000000 + 0.431278514697608 0.056778893615722 6.800000000000000 + 0.530423000834989 0.069831512837728 6.800000000000000 + 0.629567486972370 0.082884132059733 6.800000000000000 + 0.728711973109751 0.095936751281738 6.800000000000000 + 0.827856459247132 0.108989370503743 6.800000000000000 + 0.927000945384513 0.122041989725748 6.800000000000000 + 1.026145431521894 0.135094608947753 6.800000000000000 + 1.125289917659275 0.148147228169759 6.800000000000000 + 1.224434403796656 0.161199847391764 6.800000000000000 + 1.323578889934037 0.174252466613769 6.800000000000000 + 1.422723376071418 0.187305085835774 6.800000000000000 + 1.521867862208799 0.200357705057779 6.800000000000000 + 1.621012348346180 0.213410324279784 6.800000000000000 + 1.720156834483561 0.226462943501789 6.800000000000000 + 1.819301320620942 0.239515562723795 6.800000000000000 + 1.918445806758323 0.252568181945800 6.800000000000000 + 2.017590292895704 0.265620801167805 6.800000000000000 + 2.116734779033085 0.278673420389810 6.800000000000000 + 2.215879265170466 0.291726039611815 6.800000000000000 + 2.315023751307847 0.304778658833820 6.800000000000000 + 2.414168237445228 0.317831278055826 6.800000000000000 + 2.513312723582609 0.330883897277831 6.800000000000000 + 2.612457209719990 0.343936516499836 6.800000000000000 + 2.711601695857371 0.356989135721841 6.800000000000000 + 2.810746181994753 0.370041754943846 6.800000000000000 + 2.909890668132133 0.383094374165851 6.800000000000000 + 3.009035154269514 0.396146993387857 6.800000000000000 + 3.108179640406895 0.409199612609862 6.800000000000000 + 3.207324126544277 0.422252231831867 6.800000000000000 + 3.306468612681658 0.435304851053872 6.800000000000000 + 3.405613098819039 0.448357470275877 6.800000000000000 + 3.504757584956419 0.461410089497882 6.800000000000000 + 3.603902071093801 0.474462708719887 6.800000000000000 + 3.703046557231182 0.487515327941893 6.800000000000000 + 3.802191043368563 0.500567947163898 6.800000000000000 + 3.901335529505944 0.513620566385903 6.800000000000000 + 4.000480015643325 0.526673185607908 6.800000000000000 + 4.099624501780707 0.539725804829913 6.800000000000000 + 4.198768987918087 0.552778424051918 6.800000000000000 + 4.297913474055468 0.565831043273924 6.800000000000000 + 4.397057960192850 0.578883662495929 6.800000000000000 + 4.496202446330230 0.591936281717934 6.800000000000000 + 4.595346932467612 0.604988900939939 6.800000000000000 + 4.694491418604993 0.618041520161944 6.800000000000000 + 4.793635904742374 0.631094139383950 6.800000000000000 + 4.892780390879754 0.644146758605955 6.800000000000000 + 4.991924877017135 0.657199377827960 6.800000000000000 + 5.091069363154517 0.670251997049965 6.800000000000000 + 0.130399986549024 0.034940571088840 6.800000000000000 + 0.226992569177931 0.060822475599092 6.800000000000000 + 0.323585151806838 0.086704380109344 6.800000000000000 + 0.420177734435745 0.112586284619597 6.800000000000000 + 0.516770317064652 0.138468189129849 6.800000000000000 + 0.613362899693559 0.164350093640101 6.800000000000000 + 0.709955482322465 0.190231998150353 6.800000000000000 + 0.806548064951372 0.216113902660605 6.800000000000000 + 0.903140647580279 0.241995807170857 6.800000000000000 + 0.999733230209186 0.267877711681109 6.800000000000000 + 1.096325812838093 0.293759616191361 6.800000000000000 + 1.192918395467000 0.319641520701613 6.800000000000000 + 1.289510978095906 0.345523425211865 6.800000000000000 + 1.386103560724813 0.371405329722117 6.800000000000000 + 1.482696143353720 0.397287234232369 6.800000000000000 + 1.579288725982627 0.423169138742621 6.800000000000000 + 1.675881308611534 0.449051043252873 6.800000000000000 + 1.772473891240440 0.474932947763126 6.800000000000000 + 1.869066473869347 0.500814852273378 6.800000000000000 + 1.965659056498254 0.526696756783630 6.800000000000000 + 2.062251639127161 0.552578661293882 6.800000000000000 + 2.158844221756068 0.578460565804134 6.800000000000000 + 2.255436804384975 0.604342470314386 6.800000000000000 + 2.352029387013882 0.630224374824638 6.800000000000000 + 2.448621969642788 0.656106279334890 6.800000000000000 + 2.545214552271695 0.681988183845142 6.800000000000000 + 2.641807134900602 0.707870088355394 6.800000000000000 + 2.738399717529509 0.733751992865646 6.800000000000000 + 2.834992300158416 0.759633897375898 6.800000000000000 + 2.931584882787322 0.785515801886150 6.800000000000000 + 3.028177465416229 0.811397706396403 6.800000000000000 + 3.124770048045136 0.837279610906655 6.800000000000000 + 3.221362630674043 0.863161515416907 6.800000000000000 + 3.317955213302950 0.889043419927159 6.800000000000000 + 3.414547795931857 0.914925324437411 6.800000000000000 + 3.511140378560763 0.940807228947663 6.800000000000000 + 3.607732961189670 0.966689133457915 6.800000000000000 + 3.704325543818577 0.992571037968167 6.800000000000000 + 3.800918126447484 1.018452942478419 6.800000000000000 + 3.897510709076391 1.044334846988671 6.800000000000000 + 3.994103291705299 1.070216751498923 6.800000000000000 + 4.090695874334204 1.096098656009175 6.800000000000000 + 4.187288456963111 1.121980560519428 6.800000000000000 + 4.283881039592019 1.147862465029680 6.800000000000000 + 4.380473622220926 1.173744369539932 6.800000000000000 + 4.477066204849833 1.199626274050184 6.800000000000000 + 4.573658787478739 1.225508178560436 6.800000000000000 + 4.670251370107646 1.251390083070688 6.800000000000000 + 4.766843952736553 1.277271987580940 6.800000000000000 + 4.863436535365460 1.303153892091192 6.800000000000000 + 4.960029117994367 1.329035796601444 6.800000000000000 + 0.135000000000000 0.000000000000000 6.900000000000000 + 0.235000000000000 0.000000000000000 6.900000000000000 + 0.335000000000000 0.000000000000000 6.900000000000000 + 0.435000000000000 0.000000000000000 6.900000000000000 + 0.535000000000000 0.000000000000000 6.900000000000000 + 0.635000000000000 0.000000000000000 6.900000000000000 + 0.735000000000000 0.000000000000000 6.900000000000000 + 0.835000000000000 0.000000000000000 6.900000000000000 + 0.935000000000000 0.000000000000000 6.900000000000000 + 1.035000000000000 0.000000000000000 6.900000000000000 + 1.135000000000000 0.000000000000000 6.900000000000000 + 1.235000000000000 0.000000000000000 6.900000000000000 + 1.335000000000000 0.000000000000000 6.900000000000000 + 1.435000000000000 0.000000000000000 6.900000000000000 + 1.535000000000000 0.000000000000000 6.900000000000000 + 1.635000000000000 0.000000000000000 6.900000000000000 + 1.735000000000000 0.000000000000000 6.900000000000000 + 1.835000000000000 0.000000000000000 6.900000000000000 + 1.935000000000000 0.000000000000000 6.900000000000000 + 2.035000000000000 0.000000000000000 6.900000000000000 + 2.135000000000000 0.000000000000000 6.900000000000000 + 2.235000000000000 0.000000000000000 6.900000000000000 + 2.335000000000000 0.000000000000000 6.900000000000000 + 2.435000000000000 0.000000000000000 6.900000000000000 + 2.535000000000000 0.000000000000000 6.900000000000000 + 2.635000000000000 0.000000000000000 6.900000000000000 + 2.735000000000000 0.000000000000000 6.900000000000000 + 2.835000000000000 0.000000000000000 6.900000000000000 + 2.935000000000000 0.000000000000000 6.900000000000000 + 3.035000000000000 0.000000000000000 6.900000000000000 + 3.135000000000000 0.000000000000000 6.900000000000000 + 3.235000000000000 0.000000000000000 6.900000000000000 + 3.335000000000000 0.000000000000000 6.900000000000000 + 3.435000000000000 0.000000000000000 6.900000000000000 + 3.535000000000000 0.000000000000000 6.900000000000000 + 3.635000000000000 0.000000000000000 6.900000000000000 + 3.735000000000000 0.000000000000000 6.900000000000000 + 3.835000000000000 0.000000000000000 6.900000000000000 + 3.935000000000000 0.000000000000000 6.900000000000000 + 4.035000000000000 0.000000000000000 6.900000000000000 + 4.135000000000001 0.000000000000000 6.900000000000000 + 4.235000000000000 0.000000000000000 6.900000000000000 + 4.335000000000000 0.000000000000000 6.900000000000000 + 4.435000000000000 0.000000000000000 6.900000000000000 + 4.535000000000000 0.000000000000000 6.900000000000000 + 4.635000000000001 0.000000000000000 6.900000000000000 + 4.735000000000000 0.000000000000000 6.900000000000000 + 4.835000000000001 0.000000000000000 6.900000000000000 + 4.935000000000000 0.000000000000000 6.900000000000000 + 5.035000000000000 0.000000000000000 6.900000000000000 + 5.135000000000001 0.000000000000000 6.900000000000000 + 0.133845056285464 0.017621035949707 6.900000000000000 + 0.232989542422845 0.030673655171712 6.900000000000000 + 0.332134028560227 0.043726274393717 6.900000000000000 + 0.431278514697608 0.056778893615722 6.900000000000000 + 0.530423000834989 0.069831512837728 6.900000000000000 + 0.629567486972370 0.082884132059733 6.900000000000000 + 0.728711973109751 0.095936751281738 6.900000000000000 + 0.827856459247132 0.108989370503743 6.900000000000000 + 0.927000945384513 0.122041989725748 6.900000000000000 + 1.026145431521894 0.135094608947753 6.900000000000000 + 1.125289917659275 0.148147228169759 6.900000000000000 + 1.224434403796656 0.161199847391764 6.900000000000000 + 1.323578889934037 0.174252466613769 6.900000000000000 + 1.422723376071418 0.187305085835774 6.900000000000000 + 1.521867862208799 0.200357705057779 6.900000000000000 + 1.621012348346180 0.213410324279784 6.900000000000000 + 1.720156834483561 0.226462943501789 6.900000000000000 + 1.819301320620942 0.239515562723795 6.900000000000000 + 1.918445806758323 0.252568181945800 6.900000000000000 + 2.017590292895704 0.265620801167805 6.900000000000000 + 2.116734779033085 0.278673420389810 6.900000000000000 + 2.215879265170466 0.291726039611815 6.900000000000000 + 2.315023751307847 0.304778658833820 6.900000000000000 + 2.414168237445228 0.317831278055826 6.900000000000000 + 2.513312723582609 0.330883897277831 6.900000000000000 + 2.612457209719990 0.343936516499836 6.900000000000000 + 2.711601695857371 0.356989135721841 6.900000000000000 + 2.810746181994753 0.370041754943846 6.900000000000000 + 2.909890668132133 0.383094374165851 6.900000000000000 + 3.009035154269514 0.396146993387857 6.900000000000000 + 3.108179640406895 0.409199612609862 6.900000000000000 + 3.207324126544277 0.422252231831867 6.900000000000000 + 3.306468612681658 0.435304851053872 6.900000000000000 + 3.405613098819039 0.448357470275877 6.900000000000000 + 3.504757584956419 0.461410089497882 6.900000000000000 + 3.603902071093801 0.474462708719887 6.900000000000000 + 3.703046557231182 0.487515327941893 6.900000000000000 + 3.802191043368563 0.500567947163898 6.900000000000000 + 3.901335529505944 0.513620566385903 6.900000000000000 + 4.000480015643325 0.526673185607908 6.900000000000000 + 4.099624501780707 0.539725804829913 6.900000000000000 + 4.198768987918087 0.552778424051918 6.900000000000000 + 4.297913474055468 0.565831043273924 6.900000000000000 + 4.397057960192850 0.578883662495929 6.900000000000000 + 4.496202446330230 0.591936281717934 6.900000000000000 + 4.595346932467612 0.604988900939939 6.900000000000000 + 4.694491418604993 0.618041520161944 6.900000000000000 + 4.793635904742374 0.631094139383950 6.900000000000000 + 4.892780390879754 0.644146758605955 6.900000000000000 + 4.991924877017135 0.657199377827960 6.900000000000000 + 5.091069363154517 0.670251997049965 6.900000000000000 + 0.130399986549024 0.034940571088840 6.900000000000000 + 0.226992569177931 0.060822475599092 6.900000000000000 + 0.323585151806838 0.086704380109344 6.900000000000000 + 0.420177734435745 0.112586284619597 6.900000000000000 + 0.516770317064652 0.138468189129849 6.900000000000000 + 0.613362899693559 0.164350093640101 6.900000000000000 + 0.709955482322465 0.190231998150353 6.900000000000000 + 0.806548064951372 0.216113902660605 6.900000000000000 + 0.903140647580279 0.241995807170857 6.900000000000000 + 0.999733230209186 0.267877711681109 6.900000000000000 + 1.096325812838093 0.293759616191361 6.900000000000000 + 1.192918395467000 0.319641520701613 6.900000000000000 + 1.289510978095906 0.345523425211865 6.900000000000000 + 1.386103560724813 0.371405329722117 6.900000000000000 + 1.482696143353720 0.397287234232369 6.900000000000000 + 1.579288725982627 0.423169138742621 6.900000000000000 + 1.675881308611534 0.449051043252873 6.900000000000000 + 1.772473891240440 0.474932947763126 6.900000000000000 + 1.869066473869347 0.500814852273378 6.900000000000000 + 1.965659056498254 0.526696756783630 6.900000000000000 + 2.062251639127161 0.552578661293882 6.900000000000000 + 2.158844221756068 0.578460565804134 6.900000000000000 + 2.255436804384975 0.604342470314386 6.900000000000000 + 2.352029387013882 0.630224374824638 6.900000000000000 + 2.448621969642788 0.656106279334890 6.900000000000000 + 2.545214552271695 0.681988183845142 6.900000000000000 + 2.641807134900602 0.707870088355394 6.900000000000000 + 2.738399717529509 0.733751992865646 6.900000000000000 + 2.834992300158416 0.759633897375898 6.900000000000000 + 2.931584882787322 0.785515801886150 6.900000000000000 + 3.028177465416229 0.811397706396403 6.900000000000000 + 3.124770048045136 0.837279610906655 6.900000000000000 + 3.221362630674043 0.863161515416907 6.900000000000000 + 3.317955213302950 0.889043419927159 6.900000000000000 + 3.414547795931857 0.914925324437411 6.900000000000000 + 3.511140378560763 0.940807228947663 6.900000000000000 + 3.607732961189670 0.966689133457915 6.900000000000000 + 3.704325543818577 0.992571037968167 6.900000000000000 + 3.800918126447484 1.018452942478419 6.900000000000000 + 3.897510709076391 1.044334846988671 6.900000000000000 + 3.994103291705299 1.070216751498923 6.900000000000000 + 4.090695874334204 1.096098656009175 6.900000000000000 + 4.187288456963111 1.121980560519428 6.900000000000000 + 4.283881039592019 1.147862465029680 6.900000000000000 + 4.380473622220926 1.173744369539932 6.900000000000000 + 4.477066204849833 1.199626274050184 6.900000000000000 + 4.573658787478739 1.225508178560436 6.900000000000000 + 4.670251370107646 1.251390083070688 6.900000000000000 + 4.766843952736553 1.277271987580940 6.900000000000000 + 4.863436535365460 1.303153892091192 6.900000000000000 + 4.960029117994367 1.329035796601444 6.900000000000000 + 0.135000000000000 0.000000000000000 7.000000000000000 + 0.235000000000000 0.000000000000000 7.000000000000000 + 0.335000000000000 0.000000000000000 7.000000000000000 + 0.435000000000000 0.000000000000000 7.000000000000000 + 0.535000000000000 0.000000000000000 7.000000000000000 + 0.635000000000000 0.000000000000000 7.000000000000000 + 0.735000000000000 0.000000000000000 7.000000000000000 + 0.835000000000000 0.000000000000000 7.000000000000000 + 0.935000000000000 0.000000000000000 7.000000000000000 + 1.035000000000000 0.000000000000000 7.000000000000000 + 1.135000000000000 0.000000000000000 7.000000000000000 + 1.235000000000000 0.000000000000000 7.000000000000000 + 1.335000000000000 0.000000000000000 7.000000000000000 + 1.435000000000000 0.000000000000000 7.000000000000000 + 1.535000000000000 0.000000000000000 7.000000000000000 + 1.635000000000000 0.000000000000000 7.000000000000000 + 1.735000000000000 0.000000000000000 7.000000000000000 + 1.835000000000000 0.000000000000000 7.000000000000000 + 1.935000000000000 0.000000000000000 7.000000000000000 + 2.035000000000000 0.000000000000000 7.000000000000000 + 2.135000000000000 0.000000000000000 7.000000000000000 + 2.235000000000000 0.000000000000000 7.000000000000000 + 2.335000000000000 0.000000000000000 7.000000000000000 + 2.435000000000000 0.000000000000000 7.000000000000000 + 2.535000000000000 0.000000000000000 7.000000000000000 + 2.635000000000000 0.000000000000000 7.000000000000000 + 2.735000000000000 0.000000000000000 7.000000000000000 + 2.835000000000000 0.000000000000000 7.000000000000000 + 2.935000000000000 0.000000000000000 7.000000000000000 + 3.035000000000000 0.000000000000000 7.000000000000000 + 3.135000000000000 0.000000000000000 7.000000000000000 + 3.235000000000000 0.000000000000000 7.000000000000000 + 3.335000000000000 0.000000000000000 7.000000000000000 + 3.435000000000000 0.000000000000000 7.000000000000000 + 3.535000000000000 0.000000000000000 7.000000000000000 + 3.635000000000000 0.000000000000000 7.000000000000000 + 3.735000000000000 0.000000000000000 7.000000000000000 + 3.835000000000000 0.000000000000000 7.000000000000000 + 3.935000000000000 0.000000000000000 7.000000000000000 + 4.035000000000000 0.000000000000000 7.000000000000000 + 4.135000000000001 0.000000000000000 7.000000000000000 + 4.235000000000000 0.000000000000000 7.000000000000000 + 4.335000000000000 0.000000000000000 7.000000000000000 + 4.435000000000000 0.000000000000000 7.000000000000000 + 4.535000000000000 0.000000000000000 7.000000000000000 + 4.635000000000001 0.000000000000000 7.000000000000000 + 4.735000000000000 0.000000000000000 7.000000000000000 + 4.835000000000001 0.000000000000000 7.000000000000000 + 4.935000000000000 0.000000000000000 7.000000000000000 + 5.035000000000000 0.000000000000000 7.000000000000000 + 5.135000000000001 0.000000000000000 7.000000000000000 + 0.133845056285464 0.017621035949707 7.000000000000000 + 0.232989542422845 0.030673655171712 7.000000000000000 + 0.332134028560227 0.043726274393717 7.000000000000000 + 0.431278514697608 0.056778893615722 7.000000000000000 + 0.530423000834989 0.069831512837728 7.000000000000000 + 0.629567486972370 0.082884132059733 7.000000000000000 + 0.728711973109751 0.095936751281738 7.000000000000000 + 0.827856459247132 0.108989370503743 7.000000000000000 + 0.927000945384513 0.122041989725748 7.000000000000000 + 1.026145431521894 0.135094608947753 7.000000000000000 + 1.125289917659275 0.148147228169759 7.000000000000000 + 1.224434403796656 0.161199847391764 7.000000000000000 + 1.323578889934037 0.174252466613769 7.000000000000000 + 1.422723376071418 0.187305085835774 7.000000000000000 + 1.521867862208799 0.200357705057779 7.000000000000000 + 1.621012348346180 0.213410324279784 7.000000000000000 + 1.720156834483561 0.226462943501789 7.000000000000000 + 1.819301320620942 0.239515562723795 7.000000000000000 + 1.918445806758323 0.252568181945800 7.000000000000000 + 2.017590292895704 0.265620801167805 7.000000000000000 + 2.116734779033085 0.278673420389810 7.000000000000000 + 2.215879265170466 0.291726039611815 7.000000000000000 + 2.315023751307847 0.304778658833820 7.000000000000000 + 2.414168237445228 0.317831278055826 7.000000000000000 + 2.513312723582609 0.330883897277831 7.000000000000000 + 2.612457209719990 0.343936516499836 7.000000000000000 + 2.711601695857371 0.356989135721841 7.000000000000000 + 2.810746181994753 0.370041754943846 7.000000000000000 + 2.909890668132133 0.383094374165851 7.000000000000000 + 3.009035154269514 0.396146993387857 7.000000000000000 + 3.108179640406895 0.409199612609862 7.000000000000000 + 3.207324126544277 0.422252231831867 7.000000000000000 + 3.306468612681658 0.435304851053872 7.000000000000000 + 3.405613098819039 0.448357470275877 7.000000000000000 + 3.504757584956419 0.461410089497882 7.000000000000000 + 3.603902071093801 0.474462708719887 7.000000000000000 + 3.703046557231182 0.487515327941893 7.000000000000000 + 3.802191043368563 0.500567947163898 7.000000000000000 + 3.901335529505944 0.513620566385903 7.000000000000000 + 4.000480015643325 0.526673185607908 7.000000000000000 + 4.099624501780707 0.539725804829913 7.000000000000000 + 4.198768987918087 0.552778424051918 7.000000000000000 + 4.297913474055468 0.565831043273924 7.000000000000000 + 4.397057960192850 0.578883662495929 7.000000000000000 + 4.496202446330230 0.591936281717934 7.000000000000000 + 4.595346932467612 0.604988900939939 7.000000000000000 + 4.694491418604993 0.618041520161944 7.000000000000000 + 4.793635904742374 0.631094139383950 7.000000000000000 + 4.892780390879754 0.644146758605955 7.000000000000000 + 4.991924877017135 0.657199377827960 7.000000000000000 + 5.091069363154517 0.670251997049965 7.000000000000000 + 0.130399986549024 0.034940571088840 7.000000000000000 + 0.226992569177931 0.060822475599092 7.000000000000000 + 0.323585151806838 0.086704380109344 7.000000000000000 + 0.420177734435745 0.112586284619597 7.000000000000000 + 0.516770317064652 0.138468189129849 7.000000000000000 + 0.613362899693559 0.164350093640101 7.000000000000000 + 0.709955482322465 0.190231998150353 7.000000000000000 + 0.806548064951372 0.216113902660605 7.000000000000000 + 0.903140647580279 0.241995807170857 7.000000000000000 + 0.999733230209186 0.267877711681109 7.000000000000000 + 1.096325812838093 0.293759616191361 7.000000000000000 + 1.192918395467000 0.319641520701613 7.000000000000000 + 1.289510978095906 0.345523425211865 7.000000000000000 + 1.386103560724813 0.371405329722117 7.000000000000000 + 1.482696143353720 0.397287234232369 7.000000000000000 + 1.579288725982627 0.423169138742621 7.000000000000000 + 1.675881308611534 0.449051043252873 7.000000000000000 + 1.772473891240440 0.474932947763126 7.000000000000000 + 1.869066473869347 0.500814852273378 7.000000000000000 + 1.965659056498254 0.526696756783630 7.000000000000000 + 2.062251639127161 0.552578661293882 7.000000000000000 + 2.158844221756068 0.578460565804134 7.000000000000000 + 2.255436804384975 0.604342470314386 7.000000000000000 + 2.352029387013882 0.630224374824638 7.000000000000000 + 2.448621969642788 0.656106279334890 7.000000000000000 + 2.545214552271695 0.681988183845142 7.000000000000000 + 2.641807134900602 0.707870088355394 7.000000000000000 + 2.738399717529509 0.733751992865646 7.000000000000000 + 2.834992300158416 0.759633897375898 7.000000000000000 + 2.931584882787322 0.785515801886150 7.000000000000000 + 3.028177465416229 0.811397706396403 7.000000000000000 + 3.124770048045136 0.837279610906655 7.000000000000000 + 3.221362630674043 0.863161515416907 7.000000000000000 + 3.317955213302950 0.889043419927159 7.000000000000000 + 3.414547795931857 0.914925324437411 7.000000000000000 + 3.511140378560763 0.940807228947663 7.000000000000000 + 3.607732961189670 0.966689133457915 7.000000000000000 + 3.704325543818577 0.992571037968167 7.000000000000000 + 3.800918126447484 1.018452942478419 7.000000000000000 + 3.897510709076391 1.044334846988671 7.000000000000000 + 3.994103291705299 1.070216751498923 7.000000000000000 + 4.090695874334204 1.096098656009175 7.000000000000000 + 4.187288456963111 1.121980560519428 7.000000000000000 + 4.283881039592019 1.147862465029680 7.000000000000000 + 4.380473622220926 1.173744369539932 7.000000000000000 + 4.477066204849833 1.199626274050184 7.000000000000000 + 4.573658787478739 1.225508178560436 7.000000000000000 + 4.670251370107646 1.251390083070688 7.000000000000000 + 4.766843952736553 1.277271987580940 7.000000000000000 + 4.863436535365460 1.303153892091192 7.000000000000000 + 4.960029117994367 1.329035796601444 7.000000000000000 + # +CUBE +0 1 51 52 153 154 204 205 +1 2 52 53 154 155 205 206 +2 3 53 54 155 156 206 207 +3 4 54 55 156 157 207 208 +4 5 55 56 157 158 208 209 +5 6 56 57 158 159 209 210 +6 7 57 58 159 160 210 211 +7 8 58 59 160 161 211 212 +8 9 59 60 161 162 212 213 +9 10 60 61 162 163 213 214 +10 11 61 62 163 164 214 215 +11 12 62 63 164 165 215 216 +12 13 63 64 165 166 216 217 +13 14 64 65 166 167 217 218 +14 15 65 66 167 168 218 219 +15 16 66 67 168 169 219 220 +16 17 67 68 169 170 220 221 +17 18 68 69 170 171 221 222 +18 19 69 70 171 172 222 223 +19 20 70 71 172 173 223 224 +20 21 71 72 173 174 224 225 +21 22 72 73 174 175 225 226 +22 23 73 74 175 176 226 227 +23 24 74 75 176 177 227 228 +24 25 75 76 177 178 228 229 +25 26 76 77 178 179 229 230 +26 27 77 78 179 180 230 231 +27 28 78 79 180 181 231 232 +28 29 79 80 181 182 232 233 +29 30 80 81 182 183 233 234 +30 31 81 82 183 184 234 235 +31 32 82 83 184 185 235 236 +32 33 83 84 185 186 236 237 +33 34 84 85 186 187 237 238 +34 35 85 86 187 188 238 239 +35 36 86 87 188 189 239 240 +36 37 87 88 189 190 240 241 +37 38 88 89 190 191 241 242 +38 39 89 90 191 192 242 243 +39 40 90 91 192 193 243 244 +40 41 91 92 193 194 244 245 +41 42 92 93 194 195 245 246 +42 43 93 94 195 196 246 247 +43 44 94 95 196 197 247 248 +44 45 95 96 197 198 248 249 +45 46 96 97 198 199 249 250 +46 47 97 98 199 200 250 251 +47 48 98 99 200 201 251 252 +48 49 99 100 201 202 252 253 +49 50 100 101 202 203 253 254 +51 52 102 103 204 205 255 256 +52 53 103 104 205 206 256 257 +53 54 104 105 206 207 257 258 +54 55 105 106 207 208 258 259 +55 56 106 107 208 209 259 260 +56 57 107 108 209 210 260 261 +57 58 108 109 210 211 261 262 +58 59 109 110 211 212 262 263 +59 60 110 111 212 213 263 264 +60 61 111 112 213 214 264 265 +61 62 112 113 214 215 265 266 +62 63 113 114 215 216 266 267 +63 64 114 115 216 217 267 268 +64 65 115 116 217 218 268 269 +65 66 116 117 218 219 269 270 +66 67 117 118 219 220 270 271 +67 68 118 119 220 221 271 272 +68 69 119 120 221 222 272 273 +69 70 120 121 222 223 273 274 +70 71 121 122 223 224 274 275 +71 72 122 123 224 225 275 276 +72 73 123 124 225 226 276 277 +73 74 124 125 226 227 277 278 +74 75 125 126 227 228 278 279 +75 76 126 127 228 229 279 280 +76 77 127 128 229 230 280 281 +77 78 128 129 230 231 281 282 +78 79 129 130 231 232 282 283 +79 80 130 131 232 233 283 284 +80 81 131 132 233 234 284 285 +81 82 132 133 234 235 285 286 +82 83 133 134 235 236 286 287 +83 84 134 135 236 237 287 288 +84 85 135 136 237 238 288 289 +85 86 136 137 238 239 289 290 +86 87 137 138 239 240 290 291 +87 88 138 139 240 241 291 292 +88 89 139 140 241 242 292 293 +89 90 140 141 242 243 293 294 +90 91 141 142 243 244 294 295 +91 92 142 143 244 245 295 296 +92 93 143 144 245 246 296 297 +93 94 144 145 246 247 297 298 +94 95 145 146 247 248 298 299 +95 96 146 147 248 249 299 300 +96 97 147 148 249 250 300 301 +97 98 148 149 250 251 301 302 +98 99 149 150 251 252 302 303 +99 100 150 151 252 253 303 304 +100 101 151 152 253 254 304 305 +153 154 204 205 306 307 357 358 +154 155 205 206 307 308 358 359 +155 156 206 207 308 309 359 360 +156 157 207 208 309 310 360 361 +157 158 208 209 310 311 361 362 +158 159 209 210 311 312 362 363 +159 160 210 211 312 313 363 364 +160 161 211 212 313 314 364 365 +161 162 212 213 314 315 365 366 +162 163 213 214 315 316 366 367 +163 164 214 215 316 317 367 368 +164 165 215 216 317 318 368 369 +165 166 216 217 318 319 369 370 +166 167 217 218 319 320 370 371 +167 168 218 219 320 321 371 372 +168 169 219 220 321 322 372 373 +169 170 220 221 322 323 373 374 +170 171 221 222 323 324 374 375 +171 172 222 223 324 325 375 376 +172 173 223 224 325 326 376 377 +173 174 224 225 326 327 377 378 +174 175 225 226 327 328 378 379 +175 176 226 227 328 329 379 380 +176 177 227 228 329 330 380 381 +177 178 228 229 330 331 381 382 +178 179 229 230 331 332 382 383 +179 180 230 231 332 333 383 384 +180 181 231 232 333 334 384 385 +181 182 232 233 334 335 385 386 +182 183 233 234 335 336 386 387 +183 184 234 235 336 337 387 388 +184 185 235 236 337 338 388 389 +185 186 236 237 338 339 389 390 +186 187 237 238 339 340 390 391 +187 188 238 239 340 341 391 392 +188 189 239 240 341 342 392 393 +189 190 240 241 342 343 393 394 +190 191 241 242 343 344 394 395 +191 192 242 243 344 345 395 396 +192 193 243 244 345 346 396 397 +193 194 244 245 346 347 397 398 +194 195 245 246 347 348 398 399 +195 196 246 247 348 349 399 400 +196 197 247 248 349 350 400 401 +197 198 248 249 350 351 401 402 +198 199 249 250 351 352 402 403 +199 200 250 251 352 353 403 404 +200 201 251 252 353 354 404 405 +201 202 252 253 354 355 405 406 +202 203 253 254 355 356 406 407 +204 205 255 256 357 358 408 409 +205 206 256 257 358 359 409 410 +206 207 257 258 359 360 410 411 +207 208 258 259 360 361 411 412 +208 209 259 260 361 362 412 413 +209 210 260 261 362 363 413 414 +210 211 261 262 363 364 414 415 +211 212 262 263 364 365 415 416 +212 213 263 264 365 366 416 417 +213 214 264 265 366 367 417 418 +214 215 265 266 367 368 418 419 +215 216 266 267 368 369 419 420 +216 217 267 268 369 370 420 421 +217 218 268 269 370 371 421 422 +218 219 269 270 371 372 422 423 +219 220 270 271 372 373 423 424 +220 221 271 272 373 374 424 425 +221 222 272 273 374 375 425 426 +222 223 273 274 375 376 426 427 +223 224 274 275 376 377 427 428 +224 225 275 276 377 378 428 429 +225 226 276 277 378 379 429 430 +226 227 277 278 379 380 430 431 +227 228 278 279 380 381 431 432 +228 229 279 280 381 382 432 433 +229 230 280 281 382 383 433 434 +230 231 281 282 383 384 434 435 +231 232 282 283 384 385 435 436 +232 233 283 284 385 386 436 437 +233 234 284 285 386 387 437 438 +234 235 285 286 387 388 438 439 +235 236 286 287 388 389 439 440 +236 237 287 288 389 390 440 441 +237 238 288 289 390 391 441 442 +238 239 289 290 391 392 442 443 +239 240 290 291 392 393 443 444 +240 241 291 292 393 394 444 445 +241 242 292 293 394 395 445 446 +242 243 293 294 395 396 446 447 +243 244 294 295 396 397 447 448 +244 245 295 296 397 398 448 449 +245 246 296 297 398 399 449 450 +246 247 297 298 399 400 450 451 +247 248 298 299 400 401 451 452 +248 249 299 300 401 402 452 453 +249 250 300 301 402 403 453 454 +250 251 301 302 403 404 454 455 +251 252 302 303 404 405 455 456 +252 253 303 304 405 406 456 457 +253 254 304 305 406 407 457 458 +306 307 357 358 459 460 510 511 +307 308 358 359 460 461 511 512 +308 309 359 360 461 462 512 513 +309 310 360 361 462 463 513 514 +310 311 361 362 463 464 514 515 +311 312 362 363 464 465 515 516 +312 313 363 364 465 466 516 517 +313 314 364 365 466 467 517 518 +314 315 365 366 467 468 518 519 +315 316 366 367 468 469 519 520 +316 317 367 368 469 470 520 521 +317 318 368 369 470 471 521 522 +318 319 369 370 471 472 522 523 +319 320 370 371 472 473 523 524 +320 321 371 372 473 474 524 525 +321 322 372 373 474 475 525 526 +322 323 373 374 475 476 526 527 +323 324 374 375 476 477 527 528 +324 325 375 376 477 478 528 529 +325 326 376 377 478 479 529 530 +326 327 377 378 479 480 530 531 +327 328 378 379 480 481 531 532 +328 329 379 380 481 482 532 533 +329 330 380 381 482 483 533 534 +330 331 381 382 483 484 534 535 +331 332 382 383 484 485 535 536 +332 333 383 384 485 486 536 537 +333 334 384 385 486 487 537 538 +334 335 385 386 487 488 538 539 +335 336 386 387 488 489 539 540 +336 337 387 388 489 490 540 541 +337 338 388 389 490 491 541 542 +338 339 389 390 491 492 542 543 +339 340 390 391 492 493 543 544 +340 341 391 392 493 494 544 545 +341 342 392 393 494 495 545 546 +342 343 393 394 495 496 546 547 +343 344 394 395 496 497 547 548 +344 345 395 396 497 498 548 549 +345 346 396 397 498 499 549 550 +346 347 397 398 499 500 550 551 +347 348 398 399 500 501 551 552 +348 349 399 400 501 502 552 553 +349 350 400 401 502 503 553 554 +350 351 401 402 503 504 554 555 +351 352 402 403 504 505 555 556 +352 353 403 404 505 506 556 557 +353 354 404 405 506 507 557 558 +354 355 405 406 507 508 558 559 +355 356 406 407 508 509 559 560 +357 358 408 409 510 511 561 562 +358 359 409 410 511 512 562 563 +359 360 410 411 512 513 563 564 +360 361 411 412 513 514 564 565 +361 362 412 413 514 515 565 566 +362 363 413 414 515 516 566 567 +363 364 414 415 516 517 567 568 +364 365 415 416 517 518 568 569 +365 366 416 417 518 519 569 570 +366 367 417 418 519 520 570 571 +367 368 418 419 520 521 571 572 +368 369 419 420 521 522 572 573 +369 370 420 421 522 523 573 574 +370 371 421 422 523 524 574 575 +371 372 422 423 524 525 575 576 +372 373 423 424 525 526 576 577 +373 374 424 425 526 527 577 578 +374 375 425 426 527 528 578 579 +375 376 426 427 528 529 579 580 +376 377 427 428 529 530 580 581 +377 378 428 429 530 531 581 582 +378 379 429 430 531 532 582 583 +379 380 430 431 532 533 583 584 +380 381 431 432 533 534 584 585 +381 382 432 433 534 535 585 586 +382 383 433 434 535 536 586 587 +383 384 434 435 536 537 587 588 +384 385 435 436 537 538 588 589 +385 386 436 437 538 539 589 590 +386 387 437 438 539 540 590 591 +387 388 438 439 540 541 591 592 +388 389 439 440 541 542 592 593 +389 390 440 441 542 543 593 594 +390 391 441 442 543 544 594 595 +391 392 442 443 544 545 595 596 +392 393 443 444 545 546 596 597 +393 394 444 445 546 547 597 598 +394 395 445 446 547 548 598 599 +395 396 446 447 548 549 599 600 +396 397 447 448 549 550 600 601 +397 398 448 449 550 551 601 602 +398 399 449 450 551 552 602 603 +399 400 450 451 552 553 603 604 +400 401 451 452 553 554 604 605 +401 402 452 453 554 555 605 606 +402 403 453 454 555 556 606 607 +403 404 454 455 556 557 607 608 +404 405 455 456 557 558 608 609 +405 406 456 457 558 559 609 610 +406 407 457 458 559 560 610 611 +459 460 510 511 612 613 663 664 +460 461 511 512 613 614 664 665 +461 462 512 513 614 615 665 666 +462 463 513 514 615 616 666 667 +463 464 514 515 616 617 667 668 +464 465 515 516 617 618 668 669 +465 466 516 517 618 619 669 670 +466 467 517 518 619 620 670 671 +467 468 518 519 620 621 671 672 +468 469 519 520 621 622 672 673 +469 470 520 521 622 623 673 674 +470 471 521 522 623 624 674 675 +471 472 522 523 624 625 675 676 +472 473 523 524 625 626 676 677 +473 474 524 525 626 627 677 678 +474 475 525 526 627 628 678 679 +475 476 526 527 628 629 679 680 +476 477 527 528 629 630 680 681 +477 478 528 529 630 631 681 682 +478 479 529 530 631 632 682 683 +479 480 530 531 632 633 683 684 +480 481 531 532 633 634 684 685 +481 482 532 533 634 635 685 686 +482 483 533 534 635 636 686 687 +483 484 534 535 636 637 687 688 +484 485 535 536 637 638 688 689 +485 486 536 537 638 639 689 690 +486 487 537 538 639 640 690 691 +487 488 538 539 640 641 691 692 +488 489 539 540 641 642 692 693 +489 490 540 541 642 643 693 694 +490 491 541 542 643 644 694 695 +491 492 542 543 644 645 695 696 +492 493 543 544 645 646 696 697 +493 494 544 545 646 647 697 698 +494 495 545 546 647 648 698 699 +495 496 546 547 648 649 699 700 +496 497 547 548 649 650 700 701 +497 498 548 549 650 651 701 702 +498 499 549 550 651 652 702 703 +499 500 550 551 652 653 703 704 +500 501 551 552 653 654 704 705 +501 502 552 553 654 655 705 706 +502 503 553 554 655 656 706 707 +503 504 554 555 656 657 707 708 +504 505 555 556 657 658 708 709 +505 506 556 557 658 659 709 710 +506 507 557 558 659 660 710 711 +507 508 558 559 660 661 711 712 +508 509 559 560 661 662 712 713 +510 511 561 562 663 664 714 715 +511 512 562 563 664 665 715 716 +512 513 563 564 665 666 716 717 +513 514 564 565 666 667 717 718 +514 515 565 566 667 668 718 719 +515 516 566 567 668 669 719 720 +516 517 567 568 669 670 720 721 +517 518 568 569 670 671 721 722 +518 519 569 570 671 672 722 723 +519 520 570 571 672 673 723 724 +520 521 571 572 673 674 724 725 +521 522 572 573 674 675 725 726 +522 523 573 574 675 676 726 727 +523 524 574 575 676 677 727 728 +524 525 575 576 677 678 728 729 +525 526 576 577 678 679 729 730 +526 527 577 578 679 680 730 731 +527 528 578 579 680 681 731 732 +528 529 579 580 681 682 732 733 +529 530 580 581 682 683 733 734 +530 531 581 582 683 684 734 735 +531 532 582 583 684 685 735 736 +532 533 583 584 685 686 736 737 +533 534 584 585 686 687 737 738 +534 535 585 586 687 688 738 739 +535 536 586 587 688 689 739 740 +536 537 587 588 689 690 740 741 +537 538 588 589 690 691 741 742 +538 539 589 590 691 692 742 743 +539 540 590 591 692 693 743 744 +540 541 591 592 693 694 744 745 +541 542 592 593 694 695 745 746 +542 543 593 594 695 696 746 747 +543 544 594 595 696 697 747 748 +544 545 595 596 697 698 748 749 +545 546 596 597 698 699 749 750 +546 547 597 598 699 700 750 751 +547 548 598 599 700 701 751 752 +548 549 599 600 701 702 752 753 +549 550 600 601 702 703 753 754 +550 551 601 602 703 704 754 755 +551 552 602 603 704 705 755 756 +552 553 603 604 705 706 756 757 +553 554 604 605 706 707 757 758 +554 555 605 606 707 708 758 759 +555 556 606 607 708 709 759 760 +556 557 607 608 709 710 760 761 +557 558 608 609 710 711 761 762 +558 559 609 610 711 712 762 763 +559 560 610 611 712 713 763 764 +612 613 663 664 765 766 816 817 +613 614 664 665 766 767 817 818 +614 615 665 666 767 768 818 819 +615 616 666 667 768 769 819 820 +616 617 667 668 769 770 820 821 +617 618 668 669 770 771 821 822 +618 619 669 670 771 772 822 823 +619 620 670 671 772 773 823 824 +620 621 671 672 773 774 824 825 +621 622 672 673 774 775 825 826 +622 623 673 674 775 776 826 827 +623 624 674 675 776 777 827 828 +624 625 675 676 777 778 828 829 +625 626 676 677 778 779 829 830 +626 627 677 678 779 780 830 831 +627 628 678 679 780 781 831 832 +628 629 679 680 781 782 832 833 +629 630 680 681 782 783 833 834 +630 631 681 682 783 784 834 835 +631 632 682 683 784 785 835 836 +632 633 683 684 785 786 836 837 +633 634 684 685 786 787 837 838 +634 635 685 686 787 788 838 839 +635 636 686 687 788 789 839 840 +636 637 687 688 789 790 840 841 +637 638 688 689 790 791 841 842 +638 639 689 690 791 792 842 843 +639 640 690 691 792 793 843 844 +640 641 691 692 793 794 844 845 +641 642 692 693 794 795 845 846 +642 643 693 694 795 796 846 847 +643 644 694 695 796 797 847 848 +644 645 695 696 797 798 848 849 +645 646 696 697 798 799 849 850 +646 647 697 698 799 800 850 851 +647 648 698 699 800 801 851 852 +648 649 699 700 801 802 852 853 +649 650 700 701 802 803 853 854 +650 651 701 702 803 804 854 855 +651 652 702 703 804 805 855 856 +652 653 703 704 805 806 856 857 +653 654 704 705 806 807 857 858 +654 655 705 706 807 808 858 859 +655 656 706 707 808 809 859 860 +656 657 707 708 809 810 860 861 +657 658 708 709 810 811 861 862 +658 659 709 710 811 812 862 863 +659 660 710 711 812 813 863 864 +660 661 711 712 813 814 864 865 +661 662 712 713 814 815 865 866 +663 664 714 715 816 817 867 868 +664 665 715 716 817 818 868 869 +665 666 716 717 818 819 869 870 +666 667 717 718 819 820 870 871 +667 668 718 719 820 821 871 872 +668 669 719 720 821 822 872 873 +669 670 720 721 822 823 873 874 +670 671 721 722 823 824 874 875 +671 672 722 723 824 825 875 876 +672 673 723 724 825 826 876 877 +673 674 724 725 826 827 877 878 +674 675 725 726 827 828 878 879 +675 676 726 727 828 829 879 880 +676 677 727 728 829 830 880 881 +677 678 728 729 830 831 881 882 +678 679 729 730 831 832 882 883 +679 680 730 731 832 833 883 884 +680 681 731 732 833 834 884 885 +681 682 732 733 834 835 885 886 +682 683 733 734 835 836 886 887 +683 684 734 735 836 837 887 888 +684 685 735 736 837 838 888 889 +685 686 736 737 838 839 889 890 +686 687 737 738 839 840 890 891 +687 688 738 739 840 841 891 892 +688 689 739 740 841 842 892 893 +689 690 740 741 842 843 893 894 +690 691 741 742 843 844 894 895 +691 692 742 743 844 845 895 896 +692 693 743 744 845 846 896 897 +693 694 744 745 846 847 897 898 +694 695 745 746 847 848 898 899 +695 696 746 747 848 849 899 900 +696 697 747 748 849 850 900 901 +697 698 748 749 850 851 901 902 +698 699 749 750 851 852 902 903 +699 700 750 751 852 853 903 904 +700 701 751 752 853 854 904 905 +701 702 752 753 854 855 905 906 +702 703 753 754 855 856 906 907 +703 704 754 755 856 857 907 908 +704 705 755 756 857 858 908 909 +705 706 756 757 858 859 909 910 +706 707 757 758 859 860 910 911 +707 708 758 759 860 861 911 912 +708 709 759 760 861 862 912 913 +709 710 760 761 862 863 913 914 +710 711 761 762 863 864 914 915 +711 712 762 763 864 865 915 916 +712 713 763 764 865 866 916 917 +765 766 816 817 918 919 969 970 +766 767 817 818 919 920 970 971 +767 768 818 819 920 921 971 972 +768 769 819 820 921 922 972 973 +769 770 820 821 922 923 973 974 +770 771 821 822 923 924 974 975 +771 772 822 823 924 925 975 976 +772 773 823 824 925 926 976 977 +773 774 824 825 926 927 977 978 +774 775 825 826 927 928 978 979 +775 776 826 827 928 929 979 980 +776 777 827 828 929 930 980 981 +777 778 828 829 930 931 981 982 +778 779 829 830 931 932 982 983 +779 780 830 831 932 933 983 984 +780 781 831 832 933 934 984 985 +781 782 832 833 934 935 985 986 +782 783 833 834 935 936 986 987 +783 784 834 835 936 937 987 988 +784 785 835 836 937 938 988 989 +785 786 836 837 938 939 989 990 +786 787 837 838 939 940 990 991 +787 788 838 839 940 941 991 992 +788 789 839 840 941 942 992 993 +789 790 840 841 942 943 993 994 +790 791 841 842 943 944 994 995 +791 792 842 843 944 945 995 996 +792 793 843 844 945 946 996 997 +793 794 844 845 946 947 997 998 +794 795 845 846 947 948 998 999 +795 796 846 847 948 949 999 1000 +796 797 847 848 949 950 1000 1001 +797 798 848 849 950 951 1001 1002 +798 799 849 850 951 952 1002 1003 +799 800 850 851 952 953 1003 1004 +800 801 851 852 953 954 1004 1005 +801 802 852 853 954 955 1005 1006 +802 803 853 854 955 956 1006 1007 +803 804 854 855 956 957 1007 1008 +804 805 855 856 957 958 1008 1009 +805 806 856 857 958 959 1009 1010 +806 807 857 858 959 960 1010 1011 +807 808 858 859 960 961 1011 1012 +808 809 859 860 961 962 1012 1013 +809 810 860 861 962 963 1013 1014 +810 811 861 862 963 964 1014 1015 +811 812 862 863 964 965 1015 1016 +812 813 863 864 965 966 1016 1017 +813 814 864 865 966 967 1017 1018 +814 815 865 866 967 968 1018 1019 +816 817 867 868 969 970 1020 1021 +817 818 868 869 970 971 1021 1022 +818 819 869 870 971 972 1022 1023 +819 820 870 871 972 973 1023 1024 +820 821 871 872 973 974 1024 1025 +821 822 872 873 974 975 1025 1026 +822 823 873 874 975 976 1026 1027 +823 824 874 875 976 977 1027 1028 +824 825 875 876 977 978 1028 1029 +825 826 876 877 978 979 1029 1030 +826 827 877 878 979 980 1030 1031 +827 828 878 879 980 981 1031 1032 +828 829 879 880 981 982 1032 1033 +829 830 880 881 982 983 1033 1034 +830 831 881 882 983 984 1034 1035 +831 832 882 883 984 985 1035 1036 +832 833 883 884 985 986 1036 1037 +833 834 884 885 986 987 1037 1038 +834 835 885 886 987 988 1038 1039 +835 836 886 887 988 989 1039 1040 +836 837 887 888 989 990 1040 1041 +837 838 888 889 990 991 1041 1042 +838 839 889 890 991 992 1042 1043 +839 840 890 891 992 993 1043 1044 +840 841 891 892 993 994 1044 1045 +841 842 892 893 994 995 1045 1046 +842 843 893 894 995 996 1046 1047 +843 844 894 895 996 997 1047 1048 +844 845 895 896 997 998 1048 1049 +845 846 896 897 998 999 1049 1050 +846 847 897 898 999 1000 1050 1051 +847 848 898 899 1000 1001 1051 1052 +848 849 899 900 1001 1002 1052 1053 +849 850 900 901 1002 1003 1053 1054 +850 851 901 902 1003 1004 1054 1055 +851 852 902 903 1004 1005 1055 1056 +852 853 903 904 1005 1006 1056 1057 +853 854 904 905 1006 1007 1057 1058 +854 855 905 906 1007 1008 1058 1059 +855 856 906 907 1008 1009 1059 1060 +856 857 907 908 1009 1010 1060 1061 +857 858 908 909 1010 1011 1061 1062 +858 859 909 910 1011 1012 1062 1063 +859 860 910 911 1012 1013 1063 1064 +860 861 911 912 1013 1014 1064 1065 +861 862 912 913 1014 1015 1065 1066 +862 863 913 914 1015 1016 1066 1067 +863 864 914 915 1016 1017 1067 1068 +864 865 915 916 1017 1018 1068 1069 +865 866 916 917 1018 1019 1069 1070 +918 919 969 970 1071 1072 1122 1123 +919 920 970 971 1072 1073 1123 1124 +920 921 971 972 1073 1074 1124 1125 +921 922 972 973 1074 1075 1125 1126 +922 923 973 974 1075 1076 1126 1127 +923 924 974 975 1076 1077 1127 1128 +924 925 975 976 1077 1078 1128 1129 +925 926 976 977 1078 1079 1129 1130 +926 927 977 978 1079 1080 1130 1131 +927 928 978 979 1080 1081 1131 1132 +928 929 979 980 1081 1082 1132 1133 +929 930 980 981 1082 1083 1133 1134 +930 931 981 982 1083 1084 1134 1135 +931 932 982 983 1084 1085 1135 1136 +932 933 983 984 1085 1086 1136 1137 +933 934 984 985 1086 1087 1137 1138 +934 935 985 986 1087 1088 1138 1139 +935 936 986 987 1088 1089 1139 1140 +936 937 987 988 1089 1090 1140 1141 +937 938 988 989 1090 1091 1141 1142 +938 939 989 990 1091 1092 1142 1143 +939 940 990 991 1092 1093 1143 1144 +940 941 991 992 1093 1094 1144 1145 +941 942 992 993 1094 1095 1145 1146 +942 943 993 994 1095 1096 1146 1147 +943 944 994 995 1096 1097 1147 1148 +944 945 995 996 1097 1098 1148 1149 +945 946 996 997 1098 1099 1149 1150 +946 947 997 998 1099 1100 1150 1151 +947 948 998 999 1100 1101 1151 1152 +948 949 999 1000 1101 1102 1152 1153 +949 950 1000 1001 1102 1103 1153 1154 +950 951 1001 1002 1103 1104 1154 1155 +951 952 1002 1003 1104 1105 1155 1156 +952 953 1003 1004 1105 1106 1156 1157 +953 954 1004 1005 1106 1107 1157 1158 +954 955 1005 1006 1107 1108 1158 1159 +955 956 1006 1007 1108 1109 1159 1160 +956 957 1007 1008 1109 1110 1160 1161 +957 958 1008 1009 1110 1111 1161 1162 +958 959 1009 1010 1111 1112 1162 1163 +959 960 1010 1011 1112 1113 1163 1164 +960 961 1011 1012 1113 1114 1164 1165 +961 962 1012 1013 1114 1115 1165 1166 +962 963 1013 1014 1115 1116 1166 1167 +963 964 1014 1015 1116 1117 1167 1168 +964 965 1015 1016 1117 1118 1168 1169 +965 966 1016 1017 1118 1119 1169 1170 +966 967 1017 1018 1119 1120 1170 1171 +967 968 1018 1019 1120 1121 1171 1172 +969 970 1020 1021 1122 1123 1173 1174 +970 971 1021 1022 1123 1124 1174 1175 +971 972 1022 1023 1124 1125 1175 1176 +972 973 1023 1024 1125 1126 1176 1177 +973 974 1024 1025 1126 1127 1177 1178 +974 975 1025 1026 1127 1128 1178 1179 +975 976 1026 1027 1128 1129 1179 1180 +976 977 1027 1028 1129 1130 1180 1181 +977 978 1028 1029 1130 1131 1181 1182 +978 979 1029 1030 1131 1132 1182 1183 +979 980 1030 1031 1132 1133 1183 1184 +980 981 1031 1032 1133 1134 1184 1185 +981 982 1032 1033 1134 1135 1185 1186 +982 983 1033 1034 1135 1136 1186 1187 +983 984 1034 1035 1136 1137 1187 1188 +984 985 1035 1036 1137 1138 1188 1189 +985 986 1036 1037 1138 1139 1189 1190 +986 987 1037 1038 1139 1140 1190 1191 +987 988 1038 1039 1140 1141 1191 1192 +988 989 1039 1040 1141 1142 1192 1193 +989 990 1040 1041 1142 1143 1193 1194 +990 991 1041 1042 1143 1144 1194 1195 +991 992 1042 1043 1144 1145 1195 1196 +992 993 1043 1044 1145 1146 1196 1197 +993 994 1044 1045 1146 1147 1197 1198 +994 995 1045 1046 1147 1148 1198 1199 +995 996 1046 1047 1148 1149 1199 1200 +996 997 1047 1048 1149 1150 1200 1201 +997 998 1048 1049 1150 1151 1201 1202 +998 999 1049 1050 1151 1152 1202 1203 +999 1000 1050 1051 1152 1153 1203 1204 +1000 1001 1051 1052 1153 1154 1204 1205 +1001 1002 1052 1053 1154 1155 1205 1206 +1002 1003 1053 1054 1155 1156 1206 1207 +1003 1004 1054 1055 1156 1157 1207 1208 +1004 1005 1055 1056 1157 1158 1208 1209 +1005 1006 1056 1057 1158 1159 1209 1210 +1006 1007 1057 1058 1159 1160 1210 1211 +1007 1008 1058 1059 1160 1161 1211 1212 +1008 1009 1059 1060 1161 1162 1212 1213 +1009 1010 1060 1061 1162 1163 1213 1214 +1010 1011 1061 1062 1163 1164 1214 1215 +1011 1012 1062 1063 1164 1165 1215 1216 +1012 1013 1063 1064 1165 1166 1216 1217 +1013 1014 1064 1065 1166 1167 1217 1218 +1014 1015 1065 1066 1167 1168 1218 1219 +1015 1016 1066 1067 1168 1169 1219 1220 +1016 1017 1067 1068 1169 1170 1220 1221 +1017 1018 1068 1069 1170 1171 1221 1222 +1018 1019 1069 1070 1171 1172 1222 1223 +1071 1072 1122 1123 1224 1225 1275 1276 +1072 1073 1123 1124 1225 1226 1276 1277 +1073 1074 1124 1125 1226 1227 1277 1278 +1074 1075 1125 1126 1227 1228 1278 1279 +1075 1076 1126 1127 1228 1229 1279 1280 +1076 1077 1127 1128 1229 1230 1280 1281 +1077 1078 1128 1129 1230 1231 1281 1282 +1078 1079 1129 1130 1231 1232 1282 1283 +1079 1080 1130 1131 1232 1233 1283 1284 +1080 1081 1131 1132 1233 1234 1284 1285 +1081 1082 1132 1133 1234 1235 1285 1286 +1082 1083 1133 1134 1235 1236 1286 1287 +1083 1084 1134 1135 1236 1237 1287 1288 +1084 1085 1135 1136 1237 1238 1288 1289 +1085 1086 1136 1137 1238 1239 1289 1290 +1086 1087 1137 1138 1239 1240 1290 1291 +1087 1088 1138 1139 1240 1241 1291 1292 +1088 1089 1139 1140 1241 1242 1292 1293 +1089 1090 1140 1141 1242 1243 1293 1294 +1090 1091 1141 1142 1243 1244 1294 1295 +1091 1092 1142 1143 1244 1245 1295 1296 +1092 1093 1143 1144 1245 1246 1296 1297 +1093 1094 1144 1145 1246 1247 1297 1298 +1094 1095 1145 1146 1247 1248 1298 1299 +1095 1096 1146 1147 1248 1249 1299 1300 +1096 1097 1147 1148 1249 1250 1300 1301 +1097 1098 1148 1149 1250 1251 1301 1302 +1098 1099 1149 1150 1251 1252 1302 1303 +1099 1100 1150 1151 1252 1253 1303 1304 +1100 1101 1151 1152 1253 1254 1304 1305 +1101 1102 1152 1153 1254 1255 1305 1306 +1102 1103 1153 1154 1255 1256 1306 1307 +1103 1104 1154 1155 1256 1257 1307 1308 +1104 1105 1155 1156 1257 1258 1308 1309 +1105 1106 1156 1157 1258 1259 1309 1310 +1106 1107 1157 1158 1259 1260 1310 1311 +1107 1108 1158 1159 1260 1261 1311 1312 +1108 1109 1159 1160 1261 1262 1312 1313 +1109 1110 1160 1161 1262 1263 1313 1314 +1110 1111 1161 1162 1263 1264 1314 1315 +1111 1112 1162 1163 1264 1265 1315 1316 +1112 1113 1163 1164 1265 1266 1316 1317 +1113 1114 1164 1165 1266 1267 1317 1318 +1114 1115 1165 1166 1267 1268 1318 1319 +1115 1116 1166 1167 1268 1269 1319 1320 +1116 1117 1167 1168 1269 1270 1320 1321 +1117 1118 1168 1169 1270 1271 1321 1322 +1118 1119 1169 1170 1271 1272 1322 1323 +1119 1120 1170 1171 1272 1273 1323 1324 +1120 1121 1171 1172 1273 1274 1324 1325 +1122 1123 1173 1174 1275 1276 1326 1327 +1123 1124 1174 1175 1276 1277 1327 1328 +1124 1125 1175 1176 1277 1278 1328 1329 +1125 1126 1176 1177 1278 1279 1329 1330 +1126 1127 1177 1178 1279 1280 1330 1331 +1127 1128 1178 1179 1280 1281 1331 1332 +1128 1129 1179 1180 1281 1282 1332 1333 +1129 1130 1180 1181 1282 1283 1333 1334 +1130 1131 1181 1182 1283 1284 1334 1335 +1131 1132 1182 1183 1284 1285 1335 1336 +1132 1133 1183 1184 1285 1286 1336 1337 +1133 1134 1184 1185 1286 1287 1337 1338 +1134 1135 1185 1186 1287 1288 1338 1339 +1135 1136 1186 1187 1288 1289 1339 1340 +1136 1137 1187 1188 1289 1290 1340 1341 +1137 1138 1188 1189 1290 1291 1341 1342 +1138 1139 1189 1190 1291 1292 1342 1343 +1139 1140 1190 1191 1292 1293 1343 1344 +1140 1141 1191 1192 1293 1294 1344 1345 +1141 1142 1192 1193 1294 1295 1345 1346 +1142 1143 1193 1194 1295 1296 1346 1347 +1143 1144 1194 1195 1296 1297 1347 1348 +1144 1145 1195 1196 1297 1298 1348 1349 +1145 1146 1196 1197 1298 1299 1349 1350 +1146 1147 1197 1198 1299 1300 1350 1351 +1147 1148 1198 1199 1300 1301 1351 1352 +1148 1149 1199 1200 1301 1302 1352 1353 +1149 1150 1200 1201 1302 1303 1353 1354 +1150 1151 1201 1202 1303 1304 1354 1355 +1151 1152 1202 1203 1304 1305 1355 1356 +1152 1153 1203 1204 1305 1306 1356 1357 +1153 1154 1204 1205 1306 1307 1357 1358 +1154 1155 1205 1206 1307 1308 1358 1359 +1155 1156 1206 1207 1308 1309 1359 1360 +1156 1157 1207 1208 1309 1310 1360 1361 +1157 1158 1208 1209 1310 1311 1361 1362 +1158 1159 1209 1210 1311 1312 1362 1363 +1159 1160 1210 1211 1312 1313 1363 1364 +1160 1161 1211 1212 1313 1314 1364 1365 +1161 1162 1212 1213 1314 1315 1365 1366 +1162 1163 1213 1214 1315 1316 1366 1367 +1163 1164 1214 1215 1316 1317 1367 1368 +1164 1165 1215 1216 1317 1318 1368 1369 +1165 1166 1216 1217 1318 1319 1369 1370 +1166 1167 1217 1218 1319 1320 1370 1371 +1167 1168 1218 1219 1320 1321 1371 1372 +1168 1169 1219 1220 1321 1322 1372 1373 +1169 1170 1220 1221 1322 1323 1373 1374 +1170 1171 1221 1222 1323 1324 1374 1375 +1171 1172 1222 1223 1324 1325 1375 1376 +1224 1225 1275 1276 1377 1378 1428 1429 +1225 1226 1276 1277 1378 1379 1429 1430 +1226 1227 1277 1278 1379 1380 1430 1431 +1227 1228 1278 1279 1380 1381 1431 1432 +1228 1229 1279 1280 1381 1382 1432 1433 +1229 1230 1280 1281 1382 1383 1433 1434 +1230 1231 1281 1282 1383 1384 1434 1435 +1231 1232 1282 1283 1384 1385 1435 1436 +1232 1233 1283 1284 1385 1386 1436 1437 +1233 1234 1284 1285 1386 1387 1437 1438 +1234 1235 1285 1286 1387 1388 1438 1439 +1235 1236 1286 1287 1388 1389 1439 1440 +1236 1237 1287 1288 1389 1390 1440 1441 +1237 1238 1288 1289 1390 1391 1441 1442 +1238 1239 1289 1290 1391 1392 1442 1443 +1239 1240 1290 1291 1392 1393 1443 1444 +1240 1241 1291 1292 1393 1394 1444 1445 +1241 1242 1292 1293 1394 1395 1445 1446 +1242 1243 1293 1294 1395 1396 1446 1447 +1243 1244 1294 1295 1396 1397 1447 1448 +1244 1245 1295 1296 1397 1398 1448 1449 +1245 1246 1296 1297 1398 1399 1449 1450 +1246 1247 1297 1298 1399 1400 1450 1451 +1247 1248 1298 1299 1400 1401 1451 1452 +1248 1249 1299 1300 1401 1402 1452 1453 +1249 1250 1300 1301 1402 1403 1453 1454 +1250 1251 1301 1302 1403 1404 1454 1455 +1251 1252 1302 1303 1404 1405 1455 1456 +1252 1253 1303 1304 1405 1406 1456 1457 +1253 1254 1304 1305 1406 1407 1457 1458 +1254 1255 1305 1306 1407 1408 1458 1459 +1255 1256 1306 1307 1408 1409 1459 1460 +1256 1257 1307 1308 1409 1410 1460 1461 +1257 1258 1308 1309 1410 1411 1461 1462 +1258 1259 1309 1310 1411 1412 1462 1463 +1259 1260 1310 1311 1412 1413 1463 1464 +1260 1261 1311 1312 1413 1414 1464 1465 +1261 1262 1312 1313 1414 1415 1465 1466 +1262 1263 1313 1314 1415 1416 1466 1467 +1263 1264 1314 1315 1416 1417 1467 1468 +1264 1265 1315 1316 1417 1418 1468 1469 +1265 1266 1316 1317 1418 1419 1469 1470 +1266 1267 1317 1318 1419 1420 1470 1471 +1267 1268 1318 1319 1420 1421 1471 1472 +1268 1269 1319 1320 1421 1422 1472 1473 +1269 1270 1320 1321 1422 1423 1473 1474 +1270 1271 1321 1322 1423 1424 1474 1475 +1271 1272 1322 1323 1424 1425 1475 1476 +1272 1273 1323 1324 1425 1426 1476 1477 +1273 1274 1324 1325 1426 1427 1477 1478 +1275 1276 1326 1327 1428 1429 1479 1480 +1276 1277 1327 1328 1429 1430 1480 1481 +1277 1278 1328 1329 1430 1431 1481 1482 +1278 1279 1329 1330 1431 1432 1482 1483 +1279 1280 1330 1331 1432 1433 1483 1484 +1280 1281 1331 1332 1433 1434 1484 1485 +1281 1282 1332 1333 1434 1435 1485 1486 +1282 1283 1333 1334 1435 1436 1486 1487 +1283 1284 1334 1335 1436 1437 1487 1488 +1284 1285 1335 1336 1437 1438 1488 1489 +1285 1286 1336 1337 1438 1439 1489 1490 +1286 1287 1337 1338 1439 1440 1490 1491 +1287 1288 1338 1339 1440 1441 1491 1492 +1288 1289 1339 1340 1441 1442 1492 1493 +1289 1290 1340 1341 1442 1443 1493 1494 +1290 1291 1341 1342 1443 1444 1494 1495 +1291 1292 1342 1343 1444 1445 1495 1496 +1292 1293 1343 1344 1445 1446 1496 1497 +1293 1294 1344 1345 1446 1447 1497 1498 +1294 1295 1345 1346 1447 1448 1498 1499 +1295 1296 1346 1347 1448 1449 1499 1500 +1296 1297 1347 1348 1449 1450 1500 1501 +1297 1298 1348 1349 1450 1451 1501 1502 +1298 1299 1349 1350 1451 1452 1502 1503 +1299 1300 1350 1351 1452 1453 1503 1504 +1300 1301 1351 1352 1453 1454 1504 1505 +1301 1302 1352 1353 1454 1455 1505 1506 +1302 1303 1353 1354 1455 1456 1506 1507 +1303 1304 1354 1355 1456 1457 1507 1508 +1304 1305 1355 1356 1457 1458 1508 1509 +1305 1306 1356 1357 1458 1459 1509 1510 +1306 1307 1357 1358 1459 1460 1510 1511 +1307 1308 1358 1359 1460 1461 1511 1512 +1308 1309 1359 1360 1461 1462 1512 1513 +1309 1310 1360 1361 1462 1463 1513 1514 +1310 1311 1361 1362 1463 1464 1514 1515 +1311 1312 1362 1363 1464 1465 1515 1516 +1312 1313 1363 1364 1465 1466 1516 1517 +1313 1314 1364 1365 1466 1467 1517 1518 +1314 1315 1365 1366 1467 1468 1518 1519 +1315 1316 1366 1367 1468 1469 1519 1520 +1316 1317 1367 1368 1469 1470 1520 1521 +1317 1318 1368 1369 1470 1471 1521 1522 +1318 1319 1369 1370 1471 1472 1522 1523 +1319 1320 1370 1371 1472 1473 1523 1524 +1320 1321 1371 1372 1473 1474 1524 1525 +1321 1322 1372 1373 1474 1475 1525 1526 +1322 1323 1373 1374 1475 1476 1526 1527 +1323 1324 1374 1375 1476 1477 1527 1528 +1324 1325 1375 1376 1477 1478 1528 1529 +1377 1378 1428 1429 1530 1531 1581 1582 +1378 1379 1429 1430 1531 1532 1582 1583 +1379 1380 1430 1431 1532 1533 1583 1584 +1380 1381 1431 1432 1533 1534 1584 1585 +1381 1382 1432 1433 1534 1535 1585 1586 +1382 1383 1433 1434 1535 1536 1586 1587 +1383 1384 1434 1435 1536 1537 1587 1588 +1384 1385 1435 1436 1537 1538 1588 1589 +1385 1386 1436 1437 1538 1539 1589 1590 +1386 1387 1437 1438 1539 1540 1590 1591 +1387 1388 1438 1439 1540 1541 1591 1592 +1388 1389 1439 1440