diff --git a/Bindings/Python/tutorials/Tutorial 1 - Introduction to OpenSim.ipynb b/Bindings/Python/tutorials/Tutorial 1 - Introduction to OpenSim.ipynb
new file mode 100644
index 0000000000..754603024e
--- /dev/null
+++ b/Bindings/Python/tutorials/Tutorial 1 - Introduction to OpenSim.ipynb
@@ -0,0 +1,387 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "
\n",
+ ""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "YS-0eq5Y6BjU"
+ },
+ "source": [
+ "# 1. Introduction to OpenSim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ZZClpIjbitD4"
+ },
+ "source": [
+ "\n",
+ "## 1.1. Objectives"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "AKANMMa6iycq"
+ },
+ "source": [
+ "**Introduction to OpenSim**\n",
+ "\n",
+ "[OpenSim](https://opensim.stanford.edu/) is an open-source software that allows users to develop, analyze, and visualize models of the musculoskeletal system, and to generate dynamic simulations of movement [[1]](https://doi.org/10.1109/TBME.2007.901024). OpenSim enables users to create custom studies, including investigating the effects of musculoskeletal geometry, joint kinematics, and muscle-tendon properties on the forces and joint moments that the muscles can produce. With OpenSim, our goal is to provide a framework that allows the biomechanics community to create, share, and extend a library of models and dynamic simulation tools to study and quantify human and animal movement.\n",
+ "\n",
+ "**Purpose**\n",
+ "\n",
+ "The purpose of this tutorial is to introduce users to the OpenSim [conda package](https://anaconda.org/opensim-org/opensim), that allows the use of the library in [Jupyter notebooks](https://jupyter.org/) and other Python environments. In this tutorial you will:\n",
+ "\n",
+ "* Learn to set up OpenSim in a Jupyter notebook using [Google Colab](https://colab.research.google.com/?hl=en).\n",
+ "* Create a simple pendulum in OpenSim.\n",
+ "* Visualize the position of the pendulum using [matplotlib](https://matplotlib.org/).\n",
+ "\n",
+ "**Format**\n",
+ "\n",
+ "This tutorial guides you through the setup of the OpenSim conda package in Google Colab. Then, to test if OpenSim was installed correctly, you will create a simple pendulum, simulate it, and visualize its position. As you complete each section of the tutorial, feel free to explore the OpenSim conda package and modify the code blocks of the tutorial on your own.\n",
+ "\n",
+ "**Local Installation**\n",
+ "\n",
+ "You may also run this notebook using a locally installed OpenSim `conda` package. Visit [the OpenSim python scripting Confluence page](https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53085346/Scripting+in+Python) for more information on how to install OpenSim in a local Python environment. Then, you may skip to Section 1.3 below."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "kPnGlZIT8oiM"
+ },
+ "source": [
+ "## 1.2. Set up `conda` and OpenSim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "3kxYrs4Hi6Nl"
+ },
+ "source": [
+ "In the following cell, you will use [condacolab](https://github.com/conda-incubator/condacolab) to install [Miniconda](https://docs.conda.io/en/latest/miniconda.html). If you want to install a different conda distribution (e.g., Anaconda, Mambaforge) check [condacolab's documentation](https://github.com/conda-incubator/condacolab#usage). "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "5-sX9L3f6Asq"
+ },
+ "outputs": [],
+ "source": [
+ "!pip install -q condacolab\n",
+ "import condacolab\n",
+ "condacolab.install()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "LdmpfqC8Dt0x"
+ },
+ "source": [
+ "Don't worry if after executing the previous cell you get an error saying that your session has failed. This happens because `condacolab` needs to restart the session for the changes to take effect. Therefore, you have to execute the previous cell before executing any other cell.\n",
+ "\n",
+ "Now, execute the following cell to install the OpenSim `conda` package."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "H9WE2h3fD61J"
+ },
+ "outputs": [],
+ "source": [
+ "!conda install opensim-org::opensim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "hj5Y1HCXEb_M"
+ },
+ "source": [
+ "## 1.3. Create a pendulum model"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "1W4hVOJvEmc5"
+ },
+ "source": [
+ "In this section we will create a simple pendulum, simulate it using time-stepping integration, and plot the resulting states trajectory. First, run the following cell to import the OpenSim module. If successful, the current OpenSim version and build date should print to the console."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "H4vWQbmhEjVr"
+ },
+ "outputs": [],
+ "source": [
+ "import opensim as osim\n",
+ "osim.GetVersionAndDate()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "RlqyWYr3HfAD"
+ },
+ "source": [
+ "Now, let's create a pendulum model. We will use `ModelFactory`, a utility class that allows you to construct common OpenSim `Model`s. Here, we will create a single-link pendulum using `ModelFactor::createPendulum()`."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "uCT1o9zzF-Nn"
+ },
+ "outputs": [],
+ "source": [
+ "# Create a single-link pendulum.\n",
+ "pendulum = osim.ModelFactory.createPendulum()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "The following image shows the structure of the pendulum. It consists of a body attached to the ground through a pin joint.\n",
+ "\n",
+ ""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "bMYcGGuaetwS"
+ },
+ "source": [
+ "Before simulating a `Model`, you must initialize the system. Use the `initSystem()` method, which both builds the underlying computational system and constructs a `SimTK::State` containing default values for the `Model`'s coordinates (i.e., joint angles and speeds)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "horV86-lePLd"
+ },
+ "outputs": [],
+ "source": [
+ "# Initialize the system and obtain the initial state.\n",
+ "state = pendulum.initSystem()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "xU1CWpsffGHM"
+ },
+ "source": [
+ "The `Manager` class is the primary tool for creating a time-stepping simulation with an OpenSim `Model`. It manages the integration of the `Model`s system and records a trajectory of states. Run the following cell to construct a `Manager` object, simulate the pendulum model, and export a `TimeSeriesTable` containing the states trajectory."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "QIpWVzXOfGbX"
+ },
+ "outputs": [],
+ "source": [
+ "# Create a new Manager object for the pendulum model.\n",
+ "manager = osim.Manager(pendulum)\n",
+ "\n",
+ "# Initialize the Manager using the state we obtained from Model::initSystem(). This sets\n",
+ "# the initial conditions for the simulation. The pendulum will start at rest positioned\n",
+ "# 90 degrees from the vertical, and therefore will swing down under the influence of \n",
+ "# gravity during the simulation.\n",
+ "manager.initialize(state)\n",
+ "\n",
+ "# Call Manager's \"integrate()\" method to simulate the pendulum for 10 seconds.\n",
+ "state = manager.integrate(10.0)\n",
+ "\n",
+ "# Obtain a table containing the states of the simulation.\n",
+ "statesTable = manager.getStatesTable()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "KFYZ4O9XN4xH"
+ },
+ "source": [
+ "Next, we will extract the times and joint angles from the `TimeSeriesTable` returned by the `Manager`."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "FPACtscIGPaC"
+ },
+ "outputs": [],
+ "source": [
+ "# Extract time values for the x-axis.\n",
+ "times = statesTable.getIndependentColumn()\n",
+ "\n",
+ "# Extract the joint angle of the pendulum over time.\n",
+ "angles = statesTable.getDependentColumn('/jointset/j0/q0/value')\n",
+ "\n",
+ "# Print number of states\n",
+ "print(f'Number of simulation states in the time interval [0, {state.getTime()}]: {angles.size()}')"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "EeSYY1DtOLhd"
+ },
+ "source": [
+ "The data from the simulation can now be plotted using, for example, `matplotlib`. The following cell plots the joint angle of the pendulum over time."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "NX4GrIpXGP1F"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "\n",
+ "# Plot pendulum's joint angle over time.\n",
+ "plt.title(\"Pendulum Simulation\")\n",
+ "plt.plot(times, angles.to_numpy())\n",
+ "plt.xlabel(\"time (s)\")\n",
+ "plt.ylabel(\"angle (rad)\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "J5mhS9zNX9ff"
+ },
+ "source": [
+ "## 1.4. Conclusion"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "_M04jPJLuiUz"
+ },
+ "source": [
+ "In this tutorial you used [condacolab](https://github.com/conda-incubator/condacolab) to install [Miniconda](https://docs.conda.io/en/latest/miniconda.html) in [Google Colab](https://colab.research.google.com/?hl=en). Then, you installed Conda [OpenSim](https://opensim.stanford.edu/) in the Miniconda environment, and you tested it by creating and simulating a simple pendulum. Finally, you plotted the positions of the pendulum using [matplotlib](https://matplotlib.org/)."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "lLWgd8Noun6Y"
+ },
+ "source": [
+ "## 1.5. Useful Links\n",
+ "\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "m8M3dlT5xQcD"
+ },
+ "source": [
+ "> **OpenSim Website:** https://opensim.stanford.edu/\n",
+ ">\n",
+ "> **OpenSim Python Scripting:** https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53085346/Scripting+in+Python\n",
+ ">\n",
+ "> **OpenSim API Documentation:** https://simtk.org/api_docs/opensim/api_docs/\n",
+ "> \n",
+ "> **OpenSim Creator Website:** https://opensimcreator.com/\n",
+ "> \n",
+ "> **SimTK Website:** https://simtk.org/projects/opensim\n",
+ "> \n",
+ "> **Biomechanics of Movement Course Videos:** https://www.youtube.com/channel/UCDNGy0KKNLQ-ztcL5h2Z6zA"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "rFR2Rf9tk_9A"
+ },
+ "source": [
+ "## 1.6 Acknowledgments\n",
+ "\n",
+ "Thanks to [OpenSimColab](https://simtk.org/projects/opencolab) project [[2]](https://doi.org/10.1080/10255842.2022.2104607) for creating the first OpenSim conda package."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "dxMjdukAnH2N"
+ },
+ "source": [
+ "## 1.7. References\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "WX2A_iaYulV1"
+ },
+ "source": [
+ "> [1] Delp, S. L., Anderson, F. C., Arnold, A. S., Loan, P., Habib, A., John, C. T., Guendelman, E., & Thelen, D. G. (2007). **OpenSim: open-source software to create and analyze dynamic simulations of movement.** *IEEE Transactions on Bio-Medical Engineering*, 54(11), 1940–1950. https://doi.org/10.1109/TBME.2007.901024\n",
+ ">\n",
+ "> [2] Mokhtarzadeh, H., Jiang, F., Zhao, S., & Malekipour, F. (2022). **OpenColab project: OpenSim in Google colaboratory to explore biomechanics on the web.** *Computer Methods in Biomechanics and Biomedical Engineering*, 1–9. https://doi.org/10.1080/10255842.2022.2104607"
+ ]
+ }
+ ],
+ "metadata": {
+ "accelerator": "GPU",
+ "colab": {
+ "provenance": []
+ },
+ "gpuClass": "standard",
+ "kernelspec": {
+ "display_name": "opensim",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.11.10"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}
diff --git a/Bindings/Python/tutorials/Tutorial 2 - Creating and Simulating a simple arm Model.ipynb b/Bindings/Python/tutorials/Tutorial 2 - Creating and Simulating a simple arm Model.ipynb
new file mode 100644
index 0000000000..90df282792
--- /dev/null
+++ b/Bindings/Python/tutorials/Tutorial 2 - Creating and Simulating a simple arm Model.ipynb
@@ -0,0 +1,613 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "
\n",
+ ""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "p60SkX5SZXDS"
+ },
+ "source": [
+ "# 2. Creating and Simulating a Simple Arm Model"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "YLK6vcNo1NHP"
+ },
+ "source": [
+ "## 2.1. Objectives"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "TKiEOjfi1LW1"
+ },
+ "source": [
+ "**Purpose**\n",
+ "\n",
+ "The purpose of this tutorial is to introduce you to the creation of musculoskeletal models using [OpenSim](https://opensim.stanford.edu/) [[1]](https://doi.org/10.1109/TBME.2007.901024). In this tutorial you will:\n",
+ "\n",
+ "* Create a simple arm model.\n",
+ "* Use the model to perform a forward simulation.\n",
+ "* Plot information obtained from the simulation.\n",
+ "\n",
+ "**Format**\n",
+ "\n",
+ "In this tutorial, you will create an arm model. The model is very simple and consists of two bones (humerus and radius), and a muscle to flex the arm (biceps).\n",
+ "\n",
+ "The first step of this tutorial will be to set up the environment (See ***Tutorial 1: Introduction to OpenSim***), and then you will programmatically create the model by defining the necessary bodies, muscles, and joints. Finally, you will perform Forward Kinematics [[2]](https://mitpress.mit.edu/9780262044202/biomechanics-of-movement/) with the model to obtain kinematic data.\n",
+ "\n",
+ "**Local Installation**\n",
+ "\n",
+ "You may also run this notebook using a locally installed OpenSim `conda` package. Visit [the OpenSim python scripting Confluence page](https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53085346/Scripting+in+Python) for more information on how to install OpenSim in a local Python environment. Then, you may skip to Section 2.3 below."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ADllcxbsjTr8"
+ },
+ "source": [
+ "## 2.2. Setup `conda` and OpenSim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "mmmTuEI4HQJG"
+ },
+ "source": [
+ "First, set up the environment by executing the following cell (See [Tutorial 1: Introduction to OpenSim](https://colab.research.google.com/github/nickbianco/opensim-core/blob/python_examples/Bindings/Python/tutorials/Tutorial%201%20-%20Introduction%20to%20OpenSim.ipynb))."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "kdnS0S_xioqg"
+ },
+ "outputs": [],
+ "source": [
+ "!pip install -q condacolab\n",
+ "import condacolab\n",
+ "condacolab.install()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "vt5loGbdfKb8"
+ },
+ "source": [
+ "Don't worry if after executing the previous cell you get an error saying that your session has failed. This happens because `condacolab` needs to restart the session for the changes to take effect. Therefore, you have to execute the previous cell before executing any other cell.\n",
+ "\n",
+ "Now, execute the following cell to install the OpenSim `conda` package."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "6ZnEPfPgjup9"
+ },
+ "outputs": [],
+ "source": [
+ "!conda install opensim-org::opensim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "Q85J8kOTj69D"
+ },
+ "source": [
+ "## 2.3. Create the model"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "U_hlEyz5HT4E"
+ },
+ "source": [
+ "First, import OpenSim and create an empty `Model` named \"simple_arm\"."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "ChnLbJ0CkSH7"
+ },
+ "outputs": [],
+ "source": [
+ "import opensim as osim\n",
+ "\n",
+ "# Create empty model and assign to it the name \"simple_arm\".\n",
+ "arm = osim.Model()\n",
+ "arm.setName(\"simple_arm\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ENIL146IlcUk"
+ },
+ "source": [
+ "Next, create two bodies (the bones) using the `Body` class constructor function ([documentation](https://simtk.org/api_docs/opensim/api_docs/classOpenSim_1_1Body.html#ab1d061783d6e0b093e0794c19326e7c0)). This function takes 4 inputs:\n",
+ " * **name**: use \"humerus\" and \"radius\" for the names of the two bodies\n",
+ " * **mass**: set a mass of 1 $kg$ for both bodies\n",
+ " * **center of mass location**: set the location to be the body's origin (i.e., $(0,0,0)$) in both bodies (`osim.Vec3(0)`)\n",
+ " * **inertia**: use an inertia matrix with moments of inertia of 0.1, 0.5 and 0.1 $kg \\cdot m^2$, in the x, y and z directions, respectively, and with products of inertia of 0 (`osim.Inertia(0.1, 0.5, 0.1)`)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "JP4vs1OtlfOa"
+ },
+ "outputs": [],
+ "source": [
+ "# Define the humerus.\n",
+ "humerus = osim.Body(\"humerus\",\n",
+ " 1.0,\n",
+ " osim.Vec3(0),\n",
+ " osim.Inertia(0.1, 0.5, 0.1))\n",
+ "\n",
+ "# Define the radius.\n",
+ "radius = osim.Body(\"radius\",\n",
+ " 1.0,\n",
+ " osim.Vec3(0),\n",
+ " osim.Inertia(0.1, 0.5, 0.1))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "JZM8_weblhfc"
+ },
+ "source": [
+ "The model needs pin joints, and we'll use the `PinJoint` class constructor function (which uses the same input as `Joint`, [documentation](https://simtk.org/api_docs/opensim/api_docs/classOpenSim_1_1Joint.html#a31854c22f626c982ad67fcff12a94961)) to create two pin joints. The first pin joint corresponds with the shoulder, and connects the top of the humerus with the ground (the humerus is the root of the model). The second pin joint corresponds with the elbow and connects the bottom of the humerus with the top of the radius. Assume each body is 1 $m$ long."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "QxAX4pUrli0N"
+ },
+ "outputs": [],
+ "source": [
+ "# Shoulder pin joint from the ground to the humerus, so it is fixed and will not fall.\n",
+ "shoulder = osim.PinJoint(\"shoulder\",\n",
+ " arm.getGround(), # PhysicalFrame\n",
+ " osim.Vec3(0),\n",
+ " osim.Vec3(0),\n",
+ " humerus, # PhysicalFrame\n",
+ " osim.Vec3(0, 0.5, 0), # attach the joint 0.5 m up from the humerus origin\n",
+ " osim.Vec3(0))\n",
+ "\n",
+ "# Elbow pin joint from the humerus to the radius.\n",
+ "elbow = osim.PinJoint(\"elbow\",\n",
+ " humerus, # PhysicalFrame\n",
+ " osim.Vec3(0, -0.5, 0), # attach the joint 0.5 m down from the humerus origin\n",
+ " osim.Vec3(0),\n",
+ " radius, # PhysicalFrame\n",
+ " osim.Vec3(0, 0.5, 0), # attach the joint 0.5 m up from the radius origin\n",
+ " osim.Vec3(0))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "MmIGq-lYlk2W"
+ },
+ "source": [
+ "In order to flex the elbow, now you will add a muscle representing the biceps to the model. This muscle is an actuator that can be actively controlled to generate force. \n",
+ "\n",
+ "The muscle is created as a configurable muscle using the `Millard2012EquilibriumMuscle` class [[3]](https://doi.org/10.1115/1.4023390), and has a maximum isometric force of 100 $N$, optimal fiber length of 0.6 $m$, tendon slack length of 0.55 $m$, and a pennation angle of 0.0 $rad$. Then, two path points are defined with muscle's origin point in the humerus and insertion point in the radius.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "BkNnZOJtllMu"
+ },
+ "outputs": [],
+ "source": [
+ "# Create and set the parameters for the biceps muscle.\n",
+ "biceps = osim.Millard2012EquilibriumMuscle(\"biceps\", # Muscle name\n",
+ " 100.0, # Max isometric force\n",
+ " 0.6, # Optimal fiber length\n",
+ " 0.55, # Tendon slack length\n",
+ " 0.0) # Pennation angle\n",
+ "\n",
+ "# Add path points to the humerus and radius. The allows the muscle to generate\n",
+ "# forces on these two bodies.\n",
+ "biceps.addNewPathPoint(\"origin\",\n",
+ " humerus,\n",
+ " osim.Vec3(0, 0.3, 0))\n",
+ "biceps.addNewPathPoint(\"insertion\",\n",
+ " radius,\n",
+ " osim.Vec3(0, 0.2, 0))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "w4dbDoA6loHI"
+ },
+ "source": [
+ "In order to excite the muscle (activate the actuator), the model needs a controller. In the following cell you will create a `PrescribedController`, add the biceps as an actuator to the controller, and specify the excitation of the muscle. In this example, the excitation is time-varying and defined by a step function ([documentation](https://simtk.org/api_docs/opensim/api_docs/classOpenSim_1_1StepFunction.html#afdce40906fc61bc7dbcfa026d1f0ad8b)).\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "IKcMjiBIlpY2"
+ },
+ "outputs": [],
+ "source": [
+ "# Create a controller, add the actuator (muscle) to it, and specify the excitation.\n",
+ "brain = osim.PrescribedController()\n",
+ "brain.addActuator(biceps)\n",
+ "brain.prescribeControlForActuator(\"biceps\", osim.StepFunction(0.5, 3.0, 0.3, 1.0))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "9YB5snO5lruj"
+ },
+ "source": [
+ "Now that every component of the model has been defined, let's add all of the elements to the arm model. Remember that the elements that you have defined are the bodies (bones) of the model, the joints of the model, an actuator (muscle) that generates force in the model, and a controller (brain) that specifies how the actuator is activated throughout the simulation."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "glSBsxAaltLg"
+ },
+ "outputs": [],
+ "source": [
+ "# Add all of the elements defined in previous cells to the model.\n",
+ "arm.addBody(humerus)\n",
+ "arm.addBody(radius)\n",
+ "arm.addJoint(shoulder)\n",
+ "arm.addJoint(elbow)\n",
+ "arm.addForce(biceps)\n",
+ "arm.addController(brain)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "wGKY1uv2l3vt"
+ },
+ "source": [
+ "After building the model, you have to initialize the system in order to access and change the state of the model. \n",
+ "\n",
+ "We lock the shoulder joint so that it will not change its angle during the simulation. We set the elbow angle to an initial value of 90º, or `0.5 * π` $rad$. Finally, we update the state of the muscle, so that the force in the muscle and in the tendon are in equilibrium before we start the simulation."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "npMwjT5ol3_V"
+ },
+ "outputs": [],
+ "source": [
+ "# Initialize model.\n",
+ "state = arm.initSystem()\n",
+ "\n",
+ "# Fix the shoulder at its default angle and begin with the elbow flexed 90º degrees.\n",
+ "shoulder.getCoordinate().setLocked(state, True)\n",
+ "elbow.getCoordinate().setValue(state, 0.5 * osim.SimTK_PI)\n",
+ "arm.equilibrateMuscles(state)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "MqQqxE20l-Yd"
+ },
+ "source": [
+ "Now, you can simulate the model. First, let's create a `Manager` and set the starting time to the state. The `Manager` is an object that manages the execution of the simulation. Using the manager, you can then perform a \"forward simulation\" [[2]](https://mitpress.mit.edu/9780262044202/biomechanics-of-movement/), where the manager integrates the equations of motion for the specified model forward in time, given the current state and a final time. This will return a new state with the results of the simulation."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "vBpKDPgsl_Zh"
+ },
+ "outputs": [],
+ "source": [
+ "# Initialize the system and set initial time.\n",
+ "state.setTime(0)\n",
+ "\n",
+ "# Get and initialize manager with the state.\n",
+ "manager = osim.Manager(arm)\n",
+ "manager.initialize(state)\n",
+ "\n",
+ "# Integrate the model until the ending time.\n",
+ "state = manager.integrate(10.0)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "XEumXmZyWQ2b"
+ },
+ "source": [
+ "After the simulation is finished, you can extract the table of states. Let's also print the column labels, so we have the paths to the states of the values that we are interested in plotting."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "mbLScbezWa2W"
+ },
+ "outputs": [],
+ "source": [
+ "# Extract table of states.\n",
+ "statesTable = manager.getStatesTable()\n",
+ "\n",
+ "# Print labels of columns in the table.\n",
+ "print(statesTable.getColumnLabels())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "KqD7waFqRo_W"
+ },
+ "source": [
+ "We want to plot the shoulder and elbow positions and speed, as well as the biceps activation and fiber length over time. Let's extract the desired data from the table of states."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "HNWVlK-VRp2C"
+ },
+ "outputs": [],
+ "source": [
+ "# Extract time values for the x-axis.\n",
+ "times = statesTable.getIndependentColumn()\n",
+ "\n",
+ "# Extract shoulder data.\n",
+ "shoulder_pos = statesTable.getDependentColumn('/jointset/shoulder/shoulder_coord_0/value')\n",
+ "shoulder_speed = statesTable.getDependentColumn('/jointset/shoulder/shoulder_coord_0/speed')\n",
+ "\n",
+ "# Extract elbow data.\n",
+ "elbow_pos = statesTable.getDependentColumn('/jointset/elbow/elbow_coord_0/value')\n",
+ "elbow_speed = statesTable.getDependentColumn('/jointset/elbow/elbow_coord_0/speed')\n",
+ "\n",
+ "# Extract biceps data.\n",
+ "biceps_activation = statesTable.getDependentColumn('/forceset/biceps/activation')\n",
+ "biceps_fiber_length = statesTable.getDependentColumn('/forceset/biceps/fiber_length')"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "PAJ0FRKHardS"
+ },
+ "source": [
+ "## 2.4. Plotting data"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "D-iFifvcVR5U"
+ },
+ "source": [
+ "In this section, you will plot the results of the simulation using a well known python library: [Matplotlib](https://matplotlib.org/)."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "kX6MdpfEa3aS"
+ },
+ "source": [
+ "### 2.4.1. Matplotlib"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "-Vu58PadWMQh"
+ },
+ "source": [
+ "The following cell plots the desired columns (`shoulder_pos`, `shoulder_speed`, `elbow_pos`, `elbow_speed`, `biceps_act` and `biceps_fib_len`) using `matplotlib`. Each column is plotted in a different subplot.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "HuquEKo-a4_E"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(2, 3, figsize=(14, 8))\n",
+ "fig.suptitle('Arm model data representation')\n",
+ "\n",
+ "# Plot shoulder position and speed in column 1.\n",
+ "axs[0, 0].plot(times, shoulder_pos.to_numpy())\n",
+ "axs[0, 0].set_title('Shoulder pos.')\n",
+ "axs[0, 0].set_xlabel('Time')\n",
+ "axs[0, 0].set_ylabel('Position')\n",
+ "axs[0, 0].grid()\n",
+ "axs[1, 0].plot(times, shoulder_speed.to_numpy())\n",
+ "axs[1, 0].set_title('Shoulder speed')\n",
+ "axs[1, 0].set_xlabel('Time')\n",
+ "axs[1, 0].set_ylabel('Speed')\n",
+ "axs[1, 0].grid()\n",
+ "\n",
+ "# Plot elbow position and speed in column 2.\n",
+ "axs[0, 1].plot(times, elbow_pos.to_numpy())\n",
+ "axs[0, 1].set_title('Elbow pos.')\n",
+ "axs[0, 1].set_xlabel('Time')\n",
+ "axs[0, 1].set_ylabel('Position')\n",
+ "axs[0, 1].grid()\n",
+ "axs[1, 1].plot(times, elbow_speed.to_numpy())\n",
+ "axs[1, 1].set_title('Elbow speed')\n",
+ "axs[1, 1].set_xlabel('Time')\n",
+ "axs[1, 1].set_ylabel('Speed')\n",
+ "axs[1, 1].grid()\n",
+ "\n",
+ "# Plot biceps activation and length in column 3.\n",
+ "axs[0, 2].plot(times, biceps_activation.to_numpy())\n",
+ "axs[0, 2].set_title('Biceps act.')\n",
+ "axs[0, 2].set_xlabel('Time')\n",
+ "axs[0, 2].set_ylabel('Activation')\n",
+ "axs[0, 2].grid()\n",
+ "axs[1, 2].plot(times, biceps_fiber_length.to_numpy())\n",
+ "axs[1, 2].set_title('Biceps fiber length')\n",
+ "axs[1, 2].set_xlabel('Time')\n",
+ "axs[1, 2].set_ylabel('Fiber length')\n",
+ "axs[1, 2].grid()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "i7rhPT2id6gg"
+ },
+ "source": [
+ "## 2.5. Conclusion"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "1XK9UgItWQMF"
+ },
+ "source": [
+ "In this tutorial you have created a simple arm model defined by two bones (bodies), two joints, and a muscle (actuator). Then, you have simulated the model and plotted the calculated values.\n",
+ "\n",
+ "To create more complex models graphically and visualize them, check out [OpenSim Creator](https://opensimcreator.com/). OpenSim Creator is freely available, open-source software that enables users to visually build, edit, and simulate OpenSim models."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "lLWgd8Noun6Y"
+ },
+ "source": [
+ "## 2.6. Useful Links\n",
+ "\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "m8M3dlT5xQcD"
+ },
+ "source": [
+ "> **OpenSim Website:** https://opensim.stanford.edu/\n",
+ ">\n",
+ "> **OpenSim Python Scripting:** https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53085346/Scripting+in+Python\n",
+ ">\n",
+ "> **OpenSim API Documentation:** https://simtk.org/api_docs/opensim/api_docs/\n",
+ "> \n",
+ "> **OpenSim Creator Website:** https://opensimcreator.com/\n",
+ "> \n",
+ "> **SimTK Website:** https://simtk.org/projects/opensim\n",
+ "> \n",
+ "> **Biomechanics of Movement Course Videos:** https://www.youtube.com/channel/UCDNGy0KKNLQ-ztcL5h2Z6zA"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "rFR2Rf9tk_9A"
+ },
+ "source": [
+ "## 2.7 Acknowledgments\n",
+ "\n",
+ "Thanks to [OpenSimColab](https://simtk.org/projects/opencolab) project [[4]](https://doi.org/10.1080/10255842.2022.2104607) for creating the first OpenSim Conda package."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "dxMjdukAnH2N"
+ },
+ "source": [
+ "## 2.8. References\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "WX2A_iaYulV1"
+ },
+ "source": [
+ "> [1] Delp, S. L., Anderson, F. C., Arnold, A. S., Loan, P., Habib, A., John, C. T., Guendelman, E., & Thelen, D. G. (2007). **OpenSim: open-source software to create and analyze dynamic simulations of movement.** *IEEE Transactions on Bio-Medical Engineering*, 54(11), 1940–1950. https://doi.org/10.1109/TBME.2007.901024\n",
+ ">\n",
+ "> [2] Uchida, T. K., Delp, S. L., & Delp, D. (2021). **Biomechanics of movement: The science of sports, robotics, and rehabilitation.** *MIT Press*. https://mitpress.mit.edu/9780262044202/biomechanics-of-movement/\n",
+ ">\n",
+ "> [3] Millard, M., Uchida, T., Seth, A., & Delp, S. L. (2013). **Flexing computational muscle: Modeling and simulation of musculotendon dynamics.** *Journal of Biomechanical Engineering*, 135(2). https://doi.org/10.1115/1.4023390\n",
+ ">\n",
+ "> [4] Mokhtarzadeh, H., Jiang, F., Zhao, S., & Malekipour, F. (2022). **OpenColab project: OpenSim in Google colaboratory to explore biomechanics on the web.** *Computer Methods in Biomechanics and Biomedical Engineering*, 1–9. https://doi.org/10.1080/10255842.2022.2104607"
+ ]
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "opensim",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.11.10"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}
diff --git a/Bindings/Python/tutorials/Tutorial 3 - Loading and Modifying OpenSim Models.ipynb b/Bindings/Python/tutorials/Tutorial 3 - Loading and Modifying OpenSim Models.ipynb
new file mode 100644
index 0000000000..fc08cbae00
--- /dev/null
+++ b/Bindings/Python/tutorials/Tutorial 3 - Loading and Modifying OpenSim Models.ipynb
@@ -0,0 +1,484 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "
\n",
+ ""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "1dzvRcZuYhsP"
+ },
+ "source": [
+ "# 3. Loading and Modifying OpenSim Models"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "YLK6vcNo1NHP"
+ },
+ "source": [
+ "## 3.1. Objectives"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "TKiEOjfi1LW1"
+ },
+ "source": [
+ "**Purpose**\n",
+ "\n",
+ "In this tutorial, you will learn to load and modify `Model`s in [OpenSim](https://opensim.stanford.edu/) [[1]](https://doi.org/10.1109/TBME.2007.901024), as well as to access and modify the data in those models. This tutorial will lead you through the following:\n",
+ "\n",
+ "* Loading an existing `Model`.\n",
+ "* Accessing and modifying `Model` property.\n",
+ "* Saving a `Model`.\n",
+ "\n",
+ "**Format**\n",
+ "\n",
+ "You will first download a model and load it into OpenSim. Then, you will access and print information from the model. Finally, you will modify the model and save and download it to your computer. \n",
+ "\n",
+ "**Resources**\n",
+ "\n",
+ "All of the files necessary to complete this tutorial are available in the following Google Drive folder: https://drive.google.com/drive/folders/18wYREuiX0jWYEmZhfgL6OCMJMJDv86lJ?usp=sharing\n",
+ "\n",
+ "While you complete the tutorial, you will find cells that automatically download the required files.\n",
+ "\n",
+ "To obtain a link to one of the files in Google Drive, right-click over it and click on **Get Link**.\n",
+ "\n",
+ "**Local Installation**\n",
+ "\n",
+ "You may also run this notebook using a locally installed OpenSim `conda` package. Visit [the OpenSim python scripting Confluence page](https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53085346/Scripting+in+Python) for more information on how to install OpenSim in a local Python environment. You will also need to download the resources from Google Drive to the same directory as this notebook. Then, you may skip to Section 3.3 below."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ADllcxbsjTr8"
+ },
+ "source": [
+ "## 3.2. Setup `conda` and OpenSim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "mmmTuEI4HQJG"
+ },
+ "source": [
+ "First, set up the environment by executing the following cell (see [Tutorial 1: Introduction to OpenSim](https://colab.research.google.com/github/nickbianco/opensim-core/blob/python_examples/Bindings/Python/tutorials/Tutorial%201%20-%20Introduction%20to%20OpenSim.ipynb) for more details)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "uYZPRpAQxXmp"
+ },
+ "outputs": [],
+ "source": [
+ "!pip install -q condacolab\n",
+ "import condacolab\n",
+ "condacolab.install()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "vt5loGbdfKb8"
+ },
+ "source": [
+ "Don't worry if after executing the previous cell you get an error saying that your session has failed. This happens because `condacolab` needs to restart the session for the changes to take effect. Therefore, you have to execute the previous cell before executing any other cell.\n",
+ "\n",
+ "Now, execute the following cell to install the OpenSim `conda` package."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "6l59_J_U8ubr"
+ },
+ "outputs": [],
+ "source": [
+ "!conda install opensim-org::opensim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "4gtTNdaO8wOI"
+ },
+ "source": [
+ "## 3.3. Load an OpenSim `Model`"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "qQhpl9pUcgPf"
+ },
+ "source": [
+ "In this section, you will download an OpenSim `Model` representing a double pendulum, load it into memory using the OpenSim API, and explore some of its properties."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "TIQp3TtGYMyQ"
+ },
+ "source": [
+ "First, let's download the model file (`double_pendulum.osim`). The file is stored in a Google Drive folder (See **Resources** in the Objectives section)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "LjMgzeHLYa2W"
+ },
+ "outputs": [],
+ "source": [
+ "!gdown \"1lxuQ7PI9aiv9Mr4G1xj31PuBn3i6HjJI&confirm=t\" # double_pendulum.osim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "_F6Hrnjba7vL"
+ },
+ "source": [
+ "Now, let's import OpenSim, load the model, and print some metadata."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "fmGIZ0Hl8z_G"
+ },
+ "outputs": [],
+ "source": [
+ "import opensim as osim\n",
+ "\n",
+ "# Load the model.\n",
+ "double_pendulum = osim.Model('double_pendulum.osim')\n",
+ "\n",
+ "# Print metadata.\n",
+ "print(\"Name of the model:\", double_pendulum.getName())\n",
+ "print(\"Author:\", double_pendulum.get_credits())\n",
+ "print(\"Publications:\", double_pendulum.get_publications())\n",
+ "print(\"Length Unit:\", double_pendulum.get_length_units())\n",
+ "print(\"Force Unit:\", double_pendulum.get_force_units())\n",
+ "print(\"Gravity:\", double_pendulum.get_gravity())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "TQG_Qc9_NDsd"
+ },
+ "source": [
+ "Let's explore some of the model's body properties. Since it is a double pendulum, we expect the model to have two bodies."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "tSs587JhVu5j"
+ },
+ "outputs": [],
+ "source": [
+ "# Print the number of bodies.\n",
+ "print(\"Num Bodies:\", double_pendulum.getNumBodies())\n",
+ "print()\n",
+ "\n",
+ "# For each body, print some information, such as its name and mass.\n",
+ "for body in double_pendulum.getBodySet():\n",
+ " print(\"Body Name:\", body.getName())\n",
+ " print(\"Body Absolute Path:\", body.getAbsolutePathString())\n",
+ " print(\"Body Mass:\", body.getMass())\n",
+ " print(\"Body Mass Center:\", body.getMassCenter())\n",
+ " print()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "v_xgSNv9Yz2m"
+ },
+ "source": [
+ "Let's explore some of the model's joint properties. Again, we expect to have two joints. The first joint connects the ground to `rod1`, so the model does not fall when simulated. The second joint connects `rod1` to `rod2`, the two bodies of the double pendulum."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "2laouerdY59s"
+ },
+ "outputs": [],
+ "source": [
+ "# Print the number of joints.\n",
+ "print(\"Num Joints:\", double_pendulum.getNumJoints())\n",
+ "print()\n",
+ "\n",
+ "# For each joint, print some information, such as its name or components that\n",
+ "# this joint owns.\n",
+ "for joint in double_pendulum.getJointSet():\n",
+ " print(\"Joint Name:\", joint.getName())\n",
+ " print(\"Joint Absolute Path:\", joint.getAbsolutePathString())\n",
+ " print(\"Components:\")\n",
+ " for component in joint.getComponentsList():\n",
+ " print(\" Component Name:\", component.getName())\n",
+ " print(\" Component Absolute Path:\", component.getAbsolutePathString())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "hW93EJzR9dFx"
+ },
+ "source": [
+ "Finally, let's explore the coordinates of the model."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "dj2PFUrD9gbF"
+ },
+ "outputs": [],
+ "source": [
+ "# Print the number of coordinates.\n",
+ "print(\"Num Coordinates:\", double_pendulum.getNumCoordinates())\n",
+ "print()\n",
+ "\n",
+ "# For each coordinate, print some information, such as its name or motion type.\n",
+ "for coordinate in double_pendulum.getCoordinateSet():\n",
+ " print(\" Coordinate Name:\", coordinate.getName())\n",
+ " print(\" Coordinate Absolute Path:\", coordinate.getAbsolutePathString())\n",
+ " \n",
+ " # Motion type is represented using an enum (0:Undefined, 1:Rotational, \n",
+ " # 2:Translational, 3:Coupled).\n",
+ " motion_type = coordinate.getMotionType()\n",
+ " motion_type_string = \"\"\n",
+ " if motion_type == 0:\n",
+ " motion_type_string = \"Undefined\"\n",
+ " elif motion_type == 1:\n",
+ " motion_type_string = \"Rotational\"\n",
+ " elif motion_type == 2:\n",
+ " motion_type_string = \"Translational\"\n",
+ " elif motion_type == 3:\n",
+ " motion_type_string = \"Coupled\"\n",
+ " print(\" Coordinate Motion Type:\", motion_type_string)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "v_I5gYAdazmy"
+ },
+ "source": [
+ "## 3.4. Modify the `Model`"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "p_zHk2nBctVE"
+ },
+ "source": [
+ "Let's modify some of the model's properties. For example, let's set the model's gravity to be gravity on the planet Mars (3.72 $m/s^2$), and double the mass of the bodies."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "Q72WxmqOa64r"
+ },
+ "outputs": [],
+ "source": [
+ "import numpy as np\n",
+ "\n",
+ "# Set gravity to that of planet Mars (3.72 m/s^2).\n",
+ "double_pendulum.set_gravity(osim.Vec3(0, -3.72, 0))\n",
+ "print(\"New Gravity:\", double_pendulum.get_gravity())\n",
+ "print()\n",
+ "\n",
+ "# For each body, print its name, set the mass as 2 kg, and print the updated mass.\n",
+ "for body in double_pendulum.getBodyList():\n",
+ " print(\"Body Name:\", body.getName())\n",
+ " body.setMass(2.0)\n",
+ " print(\"Body New Mass:\", body.getMass())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "o5CJiJePnF-4"
+ },
+ "source": [
+ "Now, let's save the model into an `osim` file."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "gL0mAwSnbBNi"
+ },
+ "outputs": [],
+ "source": [
+ "double_pendulum.printToXML('heavy-double-pendulum-mars.osim');"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "vpAWFZGHnXzH"
+ },
+ "source": [
+ "The file can be downloaded in the Files pane onthe left by `right-clicking` on it and clicking `download` (if the file is not in the tree at the left, you may need to `right-click` and `refresh`).\n",
+ "\n",
+ "Alternatively, you can download the file programmatically as shown in the following cell."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "YoBp15HOnrGV"
+ },
+ "outputs": [],
+ "source": [
+ "from google.colab import files\n",
+ "\n",
+ "files.download('heavy-double-pendulum-mars.osim') "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "If working locally, the file will be saved to the current working directory."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "i7rhPT2id6gg"
+ },
+ "source": [
+ "## 3.5. Conclusion"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "1XK9UgItWQMF"
+ },
+ "source": [
+ "In this tutorial, you downloaded a double pendulum model and loaded it into OpenSim. Then, you explored and modified some of its properties and components. Finally, you saved the updated model into an `.osim` file."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "lLWgd8Noun6Y"
+ },
+ "source": [
+ "## 3.6. Useful Links\n",
+ "\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "m8M3dlT5xQcD"
+ },
+ "source": [
+ "> **OpenSim Website:** https://opensim.stanford.edu/\n",
+ ">\n",
+ "> **OpenSim Python Scripting:** https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53085346/Scripting+in+Python\n",
+ ">\n",
+ "> **OpenSim API Documentation:** https://simtk.org/api_docs/opensim/api_docs/\n",
+ "> \n",
+ "> **OpenSim Creator Website:** https://opensimcreator.com/\n",
+ "> \n",
+ "> **SimTK Website:** https://simtk.org/projects/opensim\n",
+ "> \n",
+ "> **Biomechanics of Movement Course Videos:** https://www.youtube.com/channel/UCDNGy0KKNLQ-ztcL5h2Z6zA"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "rFR2Rf9tk_9A"
+ },
+ "source": [
+ "## 3.7 Acknowledgments\n",
+ "\n",
+ "Thanks to [OpenSimColab](https://simtk.org/projects/opencolab) project [[2]](https://doi.org/10.1080/10255842.2022.2104607) for creating the first OpenSim Conda package."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "dxMjdukAnH2N"
+ },
+ "source": [
+ "## 3.8. References\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "WX2A_iaYulV1"
+ },
+ "source": [
+ "> [1]. Delp, S. L., Anderson, F. C., Arnold, A. S., Loan, P., Habib, A., John, C. T., Guendelman, E., & Thelen, D. G. (2007). **OpenSim: open-source software to create and analyze dynamic simulations of movement.** *IEEE Transactions on Bio-Medical Engineering*, 54(11), 1940–1950. https://doi.org/10.1109/TBME.2007.901024\n",
+ ">\n",
+ "> [2] Mokhtarzadeh, H., Jiang, F., Zhao, S., & Malekipour, F. (2022). **OpenColab project: OpenSim in Google colaboratory to explore biomechanics on the web.** *Computer Methods in Biomechanics and Biomedical Engineering*, 1–9. https://doi.org/10.1080/10255842.2022.2104607"
+ ]
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "opensim",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.11.10"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}
diff --git a/Bindings/Python/tutorials/Tutorial 4 - Musculoskeletal models, Motion Files and MuscleAnalysis.ipynb b/Bindings/Python/tutorials/Tutorial 4 - Musculoskeletal models, Motion Files and MuscleAnalysis.ipynb
new file mode 100644
index 0000000000..5f0258a167
--- /dev/null
+++ b/Bindings/Python/tutorials/Tutorial 4 - Musculoskeletal models, Motion Files and MuscleAnalysis.ipynb
@@ -0,0 +1,995 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "
\n",
+ ""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "vOsTxESLc7wl"
+ },
+ "source": [
+ "# 4. Musculoskeletal Models, Motion Files, and `MuscleAnalysis`"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "SwX6QwGU0Jwj"
+ },
+ "source": [
+ "## 4.1. Objectives"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "4p_3qlB60Np3"
+ },
+ "source": [
+ "**Introduction**\n",
+ "\n",
+ "Musculoskeletal models enable us to study neuromuscular coordination, analyze athletic performance, and estimate musculoskeletal loads [[1]](https://mitpress.mit.edu/9780262044202/biomechanics-of-movement/). In [OpenSim](https://opensim.stanford.edu/) [[2]](https://doi.org/10.1109/TBME.2007.901024), a musculoskeletal model consists of rigid body segments connected by joints. Muscles span these joints and generate forces and motion. Once a musculoskeletal model is created, OpenSim enables users to create custom studies, including investigating the effects of musculoskeletal geometry, joint kinematics, and muscle-tendon properties on the forces and joint moments that the muscles can produce. With OpenSim, our goal is to provide a framework that allows the biomechanics community to create, share, and extend a library of models and dynamic simulation tools that can be used to study and quantify human and animal movement. "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "4SuUmksVUl5b"
+ },
+ "source": [
+ "**Purpose**\n",
+ "\n",
+ "The purpose of this tutorial is to introduce users to the OpenSim `conda` package for musculoskeletal modeling by investigating how muscle-tendon lengths and moment arms depend on limb configuration. In this tutorial, you will:\n",
+ "\n",
+ "* Become familiar with OpenSim's API.\n",
+ "* Explore a lower-extremity musculoskeletal model.\n",
+ "* Work with motion files.\n",
+ "* Use the `MuscleAnalysis` tool.\n",
+ "* Use OpenSim to analyze an important clinical problem."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "-Ko_AC3hUiqk"
+ },
+ "source": [
+ "**Format**\n",
+ "\n",
+ "Each section of the tutorial guides you through certain tools within OpenSim and asks you to answer a few questions. The questions can be answered based on information from OpenSim and basic knowledge of the human musculoskeletal system. As you complete each section of the tutorial, feel free to explore OpenSim and the lower extremity model further on your own."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "D3abtOlWUewq"
+ },
+ "source": [
+ "\n",
+ "**Resources**\n",
+ "\n",
+ "All of the files necessary to complete this tutorial are available in the following Google Drive folder: https://drive.google.com/drive/folders/1oaSigQup8DNEpXX5_Z6Edk7PMKBXvFOq?usp=sharing\n",
+ "\n",
+ "While you complete the tutorial, you will find cells that automatically download the required files.\n",
+ "\n",
+ "To obtain a link to one of the files in Google Drive, right-click over it and click on **Get Link**.\n",
+ "\n",
+ "**Local Installation**\n",
+ "\n",
+ "You may also run this notebook using a locally installed OpenSim `conda` package. Visit [the OpenSim python scripting Confluence page](https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53085346/Scripting+in+Python) for more information on how to install OpenSim in a local Python environment. You will also need to download the resources from Google Drive to the same directory as this notebook. Then, you may skip to Section 4.3 below."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ADllcxbsjTr8"
+ },
+ "source": [
+ "## 4.2. Set up `conda` and OpenSim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "mmmTuEI4HQJG"
+ },
+ "source": [
+ "First, set up the environment by executing the following cell (see [Tutorial 1: Introduction to OpenSim](https://colab.research.google.com/github/nickbianco/opensim-core/blob/python_examples/Bindings/Python/tutorials/Tutorial%201%20-%20Introduction%20to%20OpenSim.ipynb) for more information)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "0w9LYQXx5TO4"
+ },
+ "outputs": [],
+ "source": [
+ "!pip install -q condacolab\n",
+ "import condacolab\n",
+ "condacolab.install()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "vt5loGbdfKb8"
+ },
+ "source": [
+ "Don't worry if after executing the previous cell you get an error saying that your session has failed. This happens because `condacolab` needs to restart the session for the changes to take effect. Therefore, you have to execute the previous cell before executing any other cell.\n",
+ "\n",
+ "Now, execute the following cell to install the OpenSim `conda` package."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "vWf9ObZJ5TO5"
+ },
+ "outputs": [],
+ "source": [
+ "!conda install opensim-org::opensim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "4gtTNdaO8wOI"
+ },
+ "source": [
+ "## 4.3. Downloading and exploring a lower-extremity model"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "SJ2b6Dx10dD5"
+ },
+ "source": [
+ "In this section, you will download a model of the lower extremity [[3]](https://doi.org/10.1109/10.102791), and then load it into OpenSim. The model represents an adult subject with an approximate height of 1.8 m and an approximate mass of 75 kg. The model consists of 13 rigid body segments and includes the lines of action of 92 muscles (43 per leg and 6 at the torso)."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "TIQp3TtGYMyQ"
+ },
+ "source": [
+ "First, let's download the model file (`gait2392.osim`). The file is stored in a Google Drive folder (See **Resources** in the Objectives section)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "LjMgzeHLYa2W"
+ },
+ "outputs": [],
+ "source": [
+ "!gdown \"1I7iCmCgrOj8mq8TV1n-r6JA1pFK6Q_z-&confirm=t\" # gait2392.osim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "_F6Hrnjba7vL"
+ },
+ "source": [
+ "Now, let's import OpenSim, load the model, and print some metadata."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "fmGIZ0Hl8z_G"
+ },
+ "outputs": [],
+ "source": [
+ "import opensim as osim\n",
+ "\n",
+ "# Load the model.\n",
+ "gait2392 = osim.Model('gait2392.osim')\n",
+ "\n",
+ "# Print metadata.\n",
+ "print(\"Name of the model:\", gait2392.getName())\n",
+ "print(\"Author:\", gait2392.get_credits())\n",
+ "print(\"Publications:\", gait2392.get_publications())\n",
+ "print(\"Length Unit:\", gait2392.get_length_units())\n",
+ "print(\"Force Unit:\", gait2392.get_force_units())\n",
+ "print(\"Gravity:\", gait2392.get_gravity())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "hW93EJzR9dFx"
+ },
+ "source": [
+ "Let's explore the coordinates of the model. We know the model has 23 coordinates from the name of the model file."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "dj2PFUrD9gbF"
+ },
+ "outputs": [],
+ "source": [
+ "# Print the number of coordinates.\n",
+ "print(\"Num Coordinates:\", gait2392.getNumCoordinates())\n",
+ "print()\n",
+ "\n",
+ "# For each coordinate, print some information, such as its name or motion type.\n",
+ "for coordinate in gait2392.getCoordinateSet():\n",
+ " print(\" Coordinate Name:\", coordinate.getName())\n",
+ " print(\" Coordinate Absolute Path:\", coordinate.getAbsolutePathString())\n",
+ " \n",
+ " # Motion type is an enumerate (0:Undefined, 1:Rotational, 2:Translational, 3:Coupled).\n",
+ " motion_type = coordinate.getMotionType()\n",
+ " motion_type_string = \"\"\n",
+ " if motion_type == 0:\n",
+ " motion_type_string = \"Undefined\"\n",
+ " elif motion_type == 1:\n",
+ " motion_type_string = \"Rotational\"\n",
+ " elif motion_type == 2:\n",
+ " motion_type_string = \"Translational\"\n",
+ " elif motion_type == 3:\n",
+ " motion_type_string = \"Coupled\"\n",
+ " print(\" Coordinate Motion Type:\", motion_type_string)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "v_xgSNv9Yz2m"
+ },
+ "source": [
+ "Let's explore some of the model's joint properties."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "2laouerdY59s"
+ },
+ "outputs": [],
+ "source": [
+ "# Print number of joints.\n",
+ "print(\"Num Joints:\", gait2392.getNumJoints())\n",
+ "print()\n",
+ "\n",
+ "# For each joint, print some information, such as its name or components.\n",
+ "for joint in gait2392.getJointSet():\n",
+ " print(\"Joint Name:\", joint.getName())\n",
+ " print(\"Joint Absolute Path:\", joint.getAbsolutePathString())\n",
+ " print(\"Components:\")\n",
+ " for component in joint.getComponentsList():\n",
+ " print(\" Component Name:\", component.getName())\n",
+ " print(\" Component Absolute Path:\", component.getAbsolutePathString())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "30rBKV7S3hzt"
+ },
+ "source": [
+ "And finally, let's explore the muscles in the model. We know the model has 92 muscles from the name of the model file.\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "Etbh4aon3hzt"
+ },
+ "outputs": [],
+ "source": [
+ "# Print the number of muscles.\n",
+ "print(\"Num Muscles:\", gait2392.getMuscles().getSize())\n",
+ "print()\n",
+ "\n",
+ "for muscle in gait2392.getMuscles():\n",
+ " print(\"Muscle Name:\", muscle.getName())\n",
+ " print(\"Muscle Absolute Path:\", muscle.getAbsolutePathString())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "D7_wfvV55skF"
+ },
+ "source": [
+ "## 4.4. Working with motion files"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "FqIgcdg43Qe7"
+ },
+ "source": [
+ "In this section, you will load information from a motion file. A motion file (`.mot`) is a tab separated values (tsv) file containing a header with information about the file (e.g., if the values are in degrees, number of columns, etc.), and a set of columns containing how different values in the model evolve over time (e.g., pelvis rotation, pelvis tilt, hip flexion).\n",
+ "\n",
+ "Since the motion file already contains the values resulting from a simulation, you will not need to simulate the model."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "55eetMYEn8iK"
+ },
+ "source": [
+ "First, let's download the motion file (`normal_gait.mot`). The file is stored in a Google Drive folder (See **Resources** in the Objectives section)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "M9srcF3YadZZ"
+ },
+ "outputs": [],
+ "source": [
+ "!gdown \"1bZq91PPNOHLYz6wIf8l0Zz4igAp54mtu&confirm=t\" # normal_gait.mot"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "kFQ-3EmOn-zc"
+ },
+ "source": [
+ "Load the file into a `TimeSeriesTable`. Print the column labels to check the file has been processed properly."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "CWy88RN8hIMg"
+ },
+ "outputs": [],
+ "source": [
+ "# Use the TableProcessor to read the motion file.\n",
+ "tableTime = osim.TimeSeriesTable('normal_gait.mot')\n",
+ "\n",
+ "# Print the column labels.\n",
+ "print(tableTime.getColumnLabels())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "1OrWnq7ZoEyV"
+ },
+ "source": [
+ "In this example, we will plot the knee angle and hip adduction between both legs. Run the following cell to extract this information from the motion file."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "Cl6bsTwxoHfj"
+ },
+ "outputs": [],
+ "source": [
+ "# Get columns we want to analyze, and the time column (independent column).\n",
+ "y_knee_angle_r = tableTime.getDependentColumn('knee_angle_r')\n",
+ "y_knee_angle_l = tableTime.getDependentColumn('knee_angle_l')\n",
+ "y_hip_adduction_r = tableTime.getDependentColumn('hip_adduction_r')\n",
+ "y_hip_adduction_l = tableTime.getDependentColumn('hip_adduction_l')\n",
+ "x_time = tableTime.getIndependentColumn()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "92S8pO4mdUc0"
+ },
+ "source": [
+ "We can use Matplotlib to plot the information."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "XJt3WB8grQW6"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(2, 1, figsize=(10, 10))\n",
+ "fig.suptitle('Normal Gait')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs[0].plot(x_time, y_knee_angle_r.to_numpy(), label='knee_angle_r')\n",
+ "axs[0].plot(x_time, y_knee_angle_l.to_numpy(), label='knee_angle_l')\n",
+ "axs[0].set_title('Knee angle')\n",
+ "axs[0].set_xlabel('Time')\n",
+ "axs[0].set_ylabel('Knee angle')\n",
+ "axs[0].grid()\n",
+ "axs[0].legend()\n",
+ "\n",
+ "# Plot the hip adductions on the second subplot.\n",
+ "axs[1].plot(x_time, y_hip_adduction_r.to_numpy(), label='hip_adduction_r')\n",
+ "axs[1].plot(x_time, y_hip_adduction_l.to_numpy(), label='hip_adduction_l')\n",
+ "axs[1].set_title('Hip adduction')\n",
+ "axs[1].set_xlabel('Time')\n",
+ "axs[1].set_ylabel('Hip Adduction')\n",
+ "axs[1].grid()\n",
+ "axs[1].legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "iwjKjz4trPYr"
+ },
+ "source": [
+ "## 4.5. Using `MuscleAnalysis` to assess hamstring length during crouch gait"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "Na1olOGW460V"
+ },
+ "source": [
+ "In this final section of the tutorial, you will use OpenSim to investigate a possible cause of crouch gait, one of the most common walking abnormalities among individuals with cerebral palsy. It is characterized by excessive flexion of the knee during stance phase, which is often accompanied by exaggerated flexion and internal rotation of the hip. One hypothesized cause of crouch gait is short hamstrings, and orthopedic surgeons will sometimes lengthen the hamstrings of such patients in an attempt to improve their posture and gait. However, other causes of excessive knee flexion are possible (e.g., weak ankle plantar flexors), and lengthening the hamstrings can compromise these muscles' force-generation capabilities [[4]](https://doi.org/10.1016/j.gaitpost.2005.03.003). How can a surgeon determine whether a hamstring lengthening procedure is warranted? \n",
+ "\n",
+ "One possible way to judge whether a patient's hamstrings are shorter than \"normal\" is to develop a musculoskeletal model and compare the length of the hamstrings during the patient's crouch gait cycle to the length of the hamstrings during a normal gait cycle. Suppose that an orthopaedic surgeon has brought you some kinematic data for a patient who walks with a crouch gait. The surgeon is contemplating whether to operate and wants your opinion. "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "l393sw739Guj"
+ },
+ "source": [
+ "### 4.5.1. Range of Motion"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "q4v56Rx-ra29"
+ },
+ "source": [
+ "First, let's download the crouch gait motion file (`crouch_gait.mot`).The file is stored in a Google Drive folder (See **Resources** in the Objectives section). We already downloaded the normal gait motion file in the previous section."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "S7rYuVrvbtNQ"
+ },
+ "outputs": [],
+ "source": [
+ "!gdown \"11XGpKPxX4Y6SO4xjPYUQz9gZdjvKyuLH&confirm=t\" # crouch_gait.mot"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "1w4Y6NwRra2_"
+ },
+ "source": [
+ "Load the motion files into `TimeSeriesTable`s. Print the column labels to check the files have been processed properly."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "GeZ65ePyra3A"
+ },
+ "outputs": [],
+ "source": [
+ "# Load the normal gait motion file into a TimeSeriesTable.\n",
+ "table_normal_gait = osim.TimeSeriesTable('normal_gait.mot')\n",
+ "# Print labels for each column.\n",
+ "print(table_normal_gait.getColumnLabels())\n",
+ "\n",
+ "# Load the crouch gait motion file into a TimeSeriesTable.\n",
+ "table_crouch_gait = osim.TimeSeriesTable('crouch_gait.mot')\n",
+ "# Print labels for each column.\n",
+ "print(table_crouch_gait.getColumnLabels())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "lzugVUla-leG"
+ },
+ "source": [
+ "Let's obtain the information we want to plot. This time, we obtain two time columns (independent columns), one per each table. Since both have a range from 0 to 1, we can plot them and compare them."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "38URdfs9-n-j"
+ },
+ "outputs": [],
+ "source": [
+ "# Get columns we want to represent.\n",
+ "normal_gait_knee_angle_r = table_normal_gait.getDependentColumn('knee_angle_r')\n",
+ "crouch_gait_knee_angle_r = table_crouch_gait.getDependentColumn('knee_angle_r')\n",
+ "\n",
+ "# Get independent columns of each table (time).\n",
+ "normal_gait_time = table_normal_gait.getIndependentColumn()\n",
+ "crouch_gait_time = table_crouch_gait.getIndependentColumn()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "8sT3M3Ew-dwa"
+ },
+ "source": [
+ "Now let's plot both data series to quantitatively compare."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "oaDrdUA5uCC6"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Normal Gait vs. Crouch Gait')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(normal_gait_time, normal_gait_knee_angle_r.to_numpy(), label='normal_gait_knee_angle_r')\n",
+ "axs.plot(crouch_gait_time, crouch_gait_knee_angle_r.to_numpy(), label='crouch_gait_knee_angle_l')\n",
+ "axs.set_title('Knee angle')\n",
+ "axs.set_xlabel('Time')\n",
+ "axs.set_ylabel('Knee angle')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "HU5PSGHT5W1P"
+ },
+ "source": [
+ "**Questions: Range of Motion**"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "CrxnVBkr5lSk"
+ },
+ "source": [
+ "\n",
+ "**1.** Label the times at which heel strike and toe-off occur, and the stance and swing intervals. \n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "oCaTndxk5nQv"
+ },
+ "source": [
+ "\n",
+ "**2.** What is the range of motion for knee flexion during the stance phase for normal gait?"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "WHJUGwtL5rKR"
+ },
+ "source": [
+ "**3.** How does the knee flexion range of motion for crouch gait compare to that of normal gait?"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ovoeaVcu95-J"
+ },
+ "source": [
+ "### 4.5.2. Hamstrings Length"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "VfBhbJtr9E1G"
+ },
+ "source": [
+ "An orthopedic surgeon believes that a patient may benefit from a hamstring lengthening surgery. You are tasked to compare the hamstrings (semitendinosus) length over a patient's crouch gait cycle to the hamstrings length for a \"normal\" gait cycle. This time, a `MuscleAnalysis` must be performed to obtain the fiber lengths of the muscles."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "osLz4Dbv-3PK"
+ },
+ "source": [
+ "First, let's load the motion files to obtain the initial and ending time. In both files, the initial and ending times are the same, so we obtain the values from just one of them."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "ktoXE8561QRJ"
+ },
+ "outputs": [],
+ "source": [
+ "# Load motion file and extract time.\n",
+ "tableTime = osim.TimeSeriesTable('normal_gait.mot')\n",
+ "x_time = tableTime.getIndependentColumn()\n",
+ "\n",
+ "# Get first and last time.\n",
+ "first_time = x_time[0]\n",
+ "last_time = x_time[len(x_time) - 1]"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "91ktx1Ag3OY_"
+ },
+ "source": [
+ "Now, let's create a `MuscleAnalysis` and configure it. This analysis will be applied two times: one for the normal gait and another for the crouch gait."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "dDKQQH5R3T5y"
+ },
+ "outputs": [],
+ "source": [
+ "# Define a MuscleAnalysis.\n",
+ "muscle_analysis = osim.MuscleAnalysis()\n",
+ "\n",
+ "# Set start and end times for the analysis.\n",
+ "muscle_analysis.setStartTime(first_time)\n",
+ "muscle_analysis.setEndTime(last_time)\n",
+ "\n",
+ "# Set the muscle of interest (semitendinosus on the right leg).\n",
+ "muscle_list = osim.ArrayStr()\n",
+ "muscle_list.append(\"semiten_r\")\n",
+ "muscle_analysis.setMuscles(muscle_list)\n",
+ "\n",
+ "# Configure the analysis.\n",
+ "muscle_analysis.setOn(True)\n",
+ "muscle_analysis.setStepInterval(1)\n",
+ "muscle_analysis.setInDegrees(True)\n",
+ "muscle_analysis.setComputeMoments(True)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ABbHd8br4JsA"
+ },
+ "source": [
+ "For the next step, we need to create an `AnalyzeTool` that, given a model file and a motion file, to perform the requested analysis. We have to create an `AnalyzeTool` for the normal gait and another one for the crouch gait. This may take a few seconds."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "AvG1N-t64WKs"
+ },
+ "outputs": [],
+ "source": [
+ "## Normal Gait.\n",
+ "\n",
+ "# Create an AnalyzeTool for normal gait.\n",
+ "analyze_tool_normal_gait = osim.AnalyzeTool()\n",
+ "analyze_tool_normal_gait.setName(\"Muscle_Analysis_Normal_Gait\")\n",
+ "\n",
+ "# Set the model file and motion file to analyze.\n",
+ "analyze_tool_normal_gait.setModelFilename(\"gait2392.osim\")\n",
+ "analyze_tool_normal_gait.setCoordinatesFileName(\"normal_gait.mot\")\n",
+ "\n",
+ "# Add the MuscleAnalysis to the AnalyzeTool.\n",
+ "analyze_tool_normal_gait.updAnalysisSet().cloneAndAppend(muscle_analysis)\n",
+ "\n",
+ "# Directory where results are stored.\n",
+ "analyze_tool_normal_gait.setResultsDir(\"MA_Normal_Gait_Results\")\n",
+ "\n",
+ "# Configure AnalyzeTool.\n",
+ "analyze_tool_normal_gait.setReplaceForceSet(False)\n",
+ "analyze_tool_normal_gait.setSolveForEquilibrium(True)\n",
+ "analyze_tool_normal_gait.setStartTime(first_time)\n",
+ "analyze_tool_normal_gait.setFinalTime(last_time)\n",
+ "\n",
+ "# Print configuration of the AnalyzeTool to an XML file.\n",
+ "analyze_tool_normal_gait.printToXML(\"Muscle_Analysis_Normal_Gait_AnalyzeTool_setup.xml\")\n",
+ "\n",
+ "# Load configuration and run the analyses. \n",
+ "analyze_tool_normal_gait = osim.AnalyzeTool(\"Muscle_Analysis_Normal_Gait_AnalyzeTool_setup.xml\", True)\n",
+ "result_normal_gait = analyze_tool_normal_gait.run()\n",
+ "\n",
+ "\n",
+ "## Crouch Gait.\n",
+ "\n",
+ "# Create an AnalyzeTool for crouch gait.\n",
+ "analyze_tool_crouch_gait = osim.AnalyzeTool()\n",
+ "analyze_tool_crouch_gait.setName(\"Muscle_Analysis_Crouch_Gait\")\n",
+ "\n",
+ "# Set the model file and motion file to analyze.\n",
+ "analyze_tool_crouch_gait.setModelFilename(\"gait2392.osim\")\n",
+ "analyze_tool_crouch_gait.setCoordinatesFileName(\"crouch_gait.mot\")\n",
+ "\n",
+ "# Add the Muscleanalysis to the AnalyzeTool.\n",
+ "analyze_tool_crouch_gait.updAnalysisSet().cloneAndAppend(muscle_analysis)\n",
+ "\n",
+ "# Directory where results are stored.\n",
+ "analyze_tool_crouch_gait.setResultsDir(\"MA_Crouch_Gait_Results\")\n",
+ "\n",
+ "# Configure AnalyzeTool.\n",
+ "analyze_tool_crouch_gait.setReplaceForceSet(False)\n",
+ "analyze_tool_crouch_gait.setSolveForEquilibrium(True)\n",
+ "analyze_tool_crouch_gait.setStartTime(first_time)\n",
+ "analyze_tool_crouch_gait.setFinalTime(last_time)\n",
+ "\n",
+ "# Print configuration of the AnalyzeTool to an XML file.\n",
+ "analyze_tool_crouch_gait.printToXML(\"Muscle_Analysis_Crouch_Gait_AnalyzeTool_setup.xml\")\n",
+ "\n",
+ "# Load configuration and run the analyses. \n",
+ "analyze_tool_crouch_gait = osim.AnalyzeTool(\"Muscle_Analysis_Crouch_Gait_AnalyzeTool_setup.xml\", True)\n",
+ "result_crouch_gait = analyze_tool_crouch_gait.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "yikNNh5i5WNa"
+ },
+ "source": [
+ "Now that the analysis has been performed, you can extract the fiber length of the semitendinous muscle!"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "F5UYk24r5cy7"
+ },
+ "outputs": [],
+ "source": [
+ "## Normal gait\n",
+ "\n",
+ "# Get results from file.\n",
+ "table_fiber_length_normal_gait = osim.TimeSeriesTable(\n",
+ " \"MA_Normal_Gait_Results/Muscle_Analysis_Normal_Gait_MuscleAnalysis_FiberLength.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_normal_gait = table_fiber_length_normal_gait.getIndependentColumn()\n",
+ "fiber_length_semitendinous_normal_gait = table_fiber_length_normal_gait.getDependentColumn(\"semiten_r\")\n",
+ "\n",
+ "\n",
+ "## Crouch gait\n",
+ "\n",
+ "# Get results from file.\n",
+ "table_fiber_length_crouch_gait = osim.TimeSeriesTable(\n",
+ " \"MA_Crouch_Gait_Results/Muscle_Analysis_Crouch_Gait_MuscleAnalysis_FiberLength.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_crouch_gait = table_fiber_length_crouch_gait.getIndependentColumn()\n",
+ "fiber_length_semitendinous_crouch_gait = table_fiber_length_crouch_gait.getDependentColumn(\"semiten_r\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "9Sw39wFy6_lZ"
+ },
+ "source": [
+ "Let's create a plot to analyze the fiber length of the semitendinous muscle."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "goCMxbavur78"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Normal Gait vs. Crouch Gait')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(time_normal_gait, fiber_length_semitendinous_normal_gait.to_numpy(), label='normal_gait_semitendinous_fiber_length')\n",
+ "axs.plot(time_crouch_gait, fiber_length_semitendinous_crouch_gait.to_numpy(), label='crouch_gait_semitendinous_fiber_length')\n",
+ "axs.set_title('Fiber Length')\n",
+ "axs.set_xlabel('Time')\n",
+ "axs.set_ylabel('Fiber Length')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "x4L_1mUV50_S"
+ },
+ "source": [
+ "**Questions: Hamstrings Length**"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "CFKPhBCN56ny"
+ },
+ "source": [
+ "**1.** Study the curves. Based on the plot, how do the peak hamstring lengths in normal and crouch gait compare? For this patient, would you recommend a hamstrings lengthening surgery? "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "fCAAlC3i-E5J"
+ },
+ "source": [
+ "**2.** What are some limitations of your analysis?"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "i7rhPT2id6gg"
+ },
+ "source": [
+ "## 4.6. Conclusion"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "1XK9UgItWQMF"
+ },
+ "source": [
+ "In this tutorial, you have downloaded and explored a model of the lower extremity. Then, you have used this model to study lower limb kinematics using motion files from previous simulation results. Finally, you have performed a `MuscleAnalysis` to determine the fiber length of the semitendinous muscle to analyze possible underlying causes of crouch gait."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "lLWgd8Noun6Y"
+ },
+ "source": [
+ "## 4.7. Useful Links\n",
+ "\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "m8M3dlT5xQcD"
+ },
+ "source": [
+ "> **OpenSim Website:** https://opensim.stanford.edu/\n",
+ ">\n",
+ "> **OpenSim Python Scripting:** https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53085346/Scripting+in+Python\n",
+ ">\n",
+ "> **OpenSim API Documentation:** https://simtk.org/api_docs/opensim/api_docs/\n",
+ "> \n",
+ "> **OpenSim Creator Website:** https://opensimcreator.com/\n",
+ "> \n",
+ "> **SimTK Website:** https://simtk.org/projects/opensim\n",
+ "> \n",
+ "> **Biomechanics of Movement Course Videos:** https://www.youtube.com/channel/UCDNGy0KKNLQ-ztcL5h2Z6zA"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "rFR2Rf9tk_9A"
+ },
+ "source": [
+ "## 4.8 Acknowledgments\n",
+ "\n",
+ "Allison Arnold and Scott Delp with help from many others.\n",
+ "\n",
+ "Thanks to [OpenSimColab](https://simtk.org/projects/opencolab) project [[5]](https://doi.org/10.1080/10255842.2022.2104607) for creating the first OpenSim Conda package."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "2rwqw1LFq6Lz"
+ },
+ "source": [
+ "## 4.9. References"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "TpbyAlHvfh8M"
+ },
+ "source": [
+ "> [1]. Uchida, T. K., Delp, S. L., & Delp, D. (2021). **Biomechanics of movement: The science of sports, robotics, and rehabilitation.** *MIT Press*. https://mitpress.mit.edu/9780262044202/biomechanics-of-movement/\n",
+ ">\n",
+ "> [2]. Delp, S. L., Anderson, F. C., Arnold, A. S., Loan, P., Habib, A., John, C. T., Guendelman, E., & Thelen, D. G. (2007). **OpenSim: open-source software to create and analyze dynamic simulations of movement.** *IEEE Transactions on Bio-Medical Engineering*, 54(11), 1940–1950. https://doi.org/10.1109/TBME.2007.901024\n",
+ ">\n",
+ "> [3]. Delp, S. L., Loan, J. P., Hoy, M. G., Zajac, F. E., Topp, E. L., & Rosen, J. M. (1990). **An interactive graphics-based model of the lower extremity to study orthopaedic surgical procedures.** *IEEE Transactions on Bio-Medical Engineering*, 37(8), 757–767. https://doi.org/10.1109/10.102791\n",
+ "> \n",
+ "> [4]. Arnold, A. S., Liu, M. Q., Schwartz, M. H., Ounpuu, S., & Delp, S. L. (2006). **The role of estimating muscle-tendon lengths and velocities of the hamstrings in the evaluation and treatment of crouch gait.** *Gait & Posture*, 23(3), 273–281. https://doi.org/10.1016/j.gaitpost.2005.03.003\n",
+ ">\n",
+ "> [5] Mokhtarzadeh, H., Jiang, F., Zhao, S., & Malekipour, F. (2022). **OpenColab project: OpenSim in Google colaboratory to explore biomechanics on the web.** *Computer Methods in Biomechanics and Biomedical Engineering*, 1–9. https://doi.org/10.1080/10255842.2022.2104607"
+ ]
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "opensim",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.11.10"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}
diff --git a/Bindings/Python/tutorials/Tutorial 5 - Scaling, Inverse Kinematics, and Inverse Dynamics.ipynb b/Bindings/Python/tutorials/Tutorial 5 - Scaling, Inverse Kinematics, and Inverse Dynamics.ipynb
new file mode 100644
index 0000000000..63e3feb44e
--- /dev/null
+++ b/Bindings/Python/tutorials/Tutorial 5 - Scaling, Inverse Kinematics, and Inverse Dynamics.ipynb
@@ -0,0 +1,1126 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "
\n",
+ ""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "EhobipLVJg7S"
+ },
+ "source": [
+ "# 5. Scaling, Inverse Kinematics, and Inverse Dynamics\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "SwX6QwGU0Jwj"
+ },
+ "source": [
+ "## 5.1. Objectives"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "4p_3qlB60Np3"
+ },
+ "source": [
+ "**Purpose**\n",
+ "\n",
+ "The purpose of this tutorial is to demonstrate how [OpenSim](https://opensim.stanford.edu/) [[1]](https://doi.org/10.1109/TBME.2007.901024) can be used to scale a model, and then solve the Inverse Kinematics (IK) and Inverse Dynamics (ID) problems using experimental data. \n",
+ "\n",
+ "To diagnose movement disorders and study human movement, biomechanists frequently ask human subjects to perform movements in a motion capture laboratory and use computational tools to analyze these movements. A common step in analyzing a movement is to compute the joint angles and joint moments of the subject during movement. OpenSim has tools for computing these quantities:\n",
+ "\n",
+ "* **Inverse Kinematics (IK)** is used to compute joint angles.\n",
+ "* **Inverse Dynamics (ID)** is used to compute net joint reaction forces and net joint moments.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "urG9ZNhGHMLo"
+ },
+ "source": [
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "6PpwC4C9HO1M"
+ },
+ "source": [
+ "\n",
+ "Inverse Kinematics computes the joint angles for a musculoskeletal model that best reproduce the motion of a subject. Inverse Dynamics then uses joint angles, angular velocities, and angular accelerations of the model, together with the experimental ground reaction forces and moments, to solve for the net reaction forces and net moments at each of the joints. The schematic above shows an overview of the inverse kinematics and inverse dynamics problems.\n",
+ "\n",
+ "In this tutorial, you will:\n",
+ "\n",
+ "* Become familiar with OpenSim's Scale, Inverse Kinematics and Inverse Dynamics tools.\n",
+ "* Solve an Inverse Kinematics and an Inverse Dynamics problem using experimental data.\n",
+ "* Investigate the dynamic inconsistencies that arise during Inverse Dynamics.\n",
+ "\n",
+ "**Format**\n",
+ "\n",
+ "Each section of the tutorial guides you through certain tools within OpenSim and asks you to answer a few questions. The questions can be answered based on information from OpenSim and basic knowledge of the human musculoskeletal system. As you complete each section of the tutorial, feel free to explore OpenSim and the lower extremity model further on your own.\n",
+ "\n",
+ "**Resources**\n",
+ "\n",
+ "All of the files necessary to complete this tutorial are available in the following Google Drive folder: https://drive.google.com/drive/folders/1txjRDKPETE1NpOwzv0pSdIiCoc8aIZTf?usp=sharing\n",
+ "\n",
+ "While you complete the tutorial, you will find cells that automatically download the required files.\n",
+ "\n",
+ "To obtain a link to one of the files in Google Drive, right-click over it and click on **Get Link**.\n",
+ "\n",
+ "**Local Installation**\n",
+ "\n",
+ "You may also run this notebook using a locally installed OpenSim `conda` package. Visit [the OpenSim python scripting Confluence page](https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53085346/Scripting+in+Python) for more information on how to install OpenSim in a local Python environment. You will also need to download the resources from Google Drive to the same directory as this notebook. Then, you may skip to Section 5.3 below."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ADllcxbsjTr8"
+ },
+ "source": [
+ "## 5.2. Set up Conda and OpenSim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "mmmTuEI4HQJG"
+ },
+ "source": [
+ "First, set up the environment by executing the following cell (See [Tutorial 1: Introduction to OpenSim in Colab](https://colab.research.google.com/github/nickbianco/opensim-core/blob/python_examples/Bindings/Python/tutorials/Tutorial%201%20-%20Introduction%20to%20OpenSim.ipynb) for more information)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "0w9LYQXx5TO4"
+ },
+ "outputs": [],
+ "source": [
+ "!pip install -q condacolab\n",
+ "import condacolab\n",
+ "condacolab.install()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "vt5loGbdfKb8"
+ },
+ "source": [
+ "Don't worry if after executing the previous cell you get an error saying that your session has failed. This happens because `condacolab` needs to restart the session for the changes to take effect. Therefore, you have to execute the previous cell before executing any other cell.\n",
+ "\n",
+ "Now, execute the following cell to install the OpenSim `conda` package."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "vWf9ObZJ5TO5"
+ },
+ "outputs": [],
+ "source": [
+ "!conda install opensim-org::opensim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "51viyamRzzZK"
+ },
+ "source": [
+ "## 5.3. Scaling a Musculoskeletal Model"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "Z9iDkg-QVVhm"
+ },
+ "source": [
+ "In this tutorial, you will usea generic musculoskeletal model with 23 degrees of freedom and actuated by 54 muscles, named _3DGaitModel2354_ [[2]](https://doi.org/10.1109/10.102791) [[3]](https://doi.org/10.1080/10255849908907988). Detailed information about the model can found on the [Gait2392 and 2354 Models](https://simtk-confluence.stanford.edu:8443/display/OpenSim/Gait+2392+and+2354+Models) OpenSim documentation page hosted on Confluence."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "5s5Jso_ozzZN"
+ },
+ "source": [
+ "Subject-specific modeling involves the following steps:\n",
+ "* **Scaling** a generic musculoskeletal model to modify the body scale factors of the generic model so that it matches the anthropometry of a particular subject.\n",
+ "* **Registering** the markers placed on the model to match the locations on the subject.\n",
+ "\n",
+ "Scaling and registration have a significant effect on the solutions to the Inverse Kinematics and Inverse Dynamics problems, so it is crucial to perform these steps carefully."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "-0nVeiJAXruu"
+ },
+ "source": [
+ "A detailed explanation of the Scale Tool can be found on the [Scaling page](https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53090000/Scaling) of the documentation."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "TIQp3TtGYMyQ"
+ },
+ "source": [
+ "**Download Files**\n",
+ "\n",
+ "First, let's download the model file (`gait2354_simbody.osim`). The file is stored in a Google Drive folder (See **Resources** in the Objectives section)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "EAb6JtzeYObU"
+ },
+ "outputs": [],
+ "source": [
+ "!gdown \"1roNo6te-wyNk-4UPqfmV7SmUfef4Bfq3&confirm=t\" # gait2354_simbody.osim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "bjlOR8fym2Pl"
+ },
+ "source": [
+ "Load the model into OpenSim. To test that the file has been downloaded correctly, let's print its name."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "oGTQE8Azh6p8"
+ },
+ "outputs": [],
+ "source": [
+ "import opensim as osim\n",
+ "\n",
+ "# Load the model.\n",
+ "gait2354 = osim.Model('gait2354_simbody.osim')\n",
+ "print(\"Name of the model:\", gait2354.getName())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "-ooHO9m13zen"
+ },
+ "source": [
+ "To scale the model, we are going to use a configuration file (`gait2354_Setup_Scale.xml`). This Scale Setup file is an XML file that contains pre-configured settings to scale and register the generic gait2354 musculoskeletal model to the dimensions of a subject for which we have experimental data. A detailed explanation of the Scale Tool can be found on the [Scaling](https://simtk-confluence.stanford.edu:8443/display/OpenSim/Scaling) page of the documentation. The following cell downloads the file. The file is stored in a Google Drive folder (See **Resources** in the Objectives section)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "1ojzW5C2iHki"
+ },
+ "outputs": [],
+ "source": [
+ "!gdown \"1c0P8cN1zUmVFJxqvcpHZEDacyAoa6lQy&confirm=t\" # gait2354_Setup_Scale.xml"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "jg5Pu8k_7osp"
+ },
+ "source": [
+ "We also need to download the MarketSet file (`gait2354_Scale_MarkerSet.xml`), which defines the position of the markers used when capturing experimental data. The file is stored in a Google Drive folder (See **Resources** in the Objectives section)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "u2MecrQliXiK"
+ },
+ "outputs": [],
+ "source": [
+ "!gdown \"1VNDVGM-MKVrYs9w3aTPCLHOfwK-s2Nn8&confirm=t\" # gait2354_Scale_MarkerSet.xml"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "wqFikw-zPau0"
+ },
+ "source": [
+ "Finally, we need a marker file (`subject01_static.trc`) which provides information about the position of the markers during the *static trial*, which is a trial in a known pose and not moving and is a typical trial used for the scaling step. In this case, we download a file with information of the user in a static pose. The file is stored in a Google Drive folder (See **Resources** in the Objectives section)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "doLIHrRKi1KU"
+ },
+ "outputs": [],
+ "source": [
+ "!gdown \"19-ouxBQN-XUOJ-K8lRe16DUs8fqaN1Yz&confirm=t\" # subject01_static.trc"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "k1bbjgNFS8h2"
+ },
+ "source": [
+ "**Create Scale Tool**\n",
+ "\n",
+ "The Scale Tool helps us scale the model. We can pass a configuration file as a parameter (`gait2354_Setup_Scale.xml`)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "juWpas9abaEf"
+ },
+ "outputs": [],
+ "source": [
+ "# Create a ScaleTool object using the configuration file.\n",
+ "scale_tool = osim.ScaleTool('gait2354_Setup_Scale.xml')\n",
+ "\n",
+ "# Print some information of the config file to test everything is correct.\n",
+ "print(\"Name:\", scale_tool.getName())\n",
+ "print(\"Subject Mass:\", scale_tool.getSubjectMass())\n",
+ "print(\"Subject Height:\", scale_tool.getSubjectHeight())\n",
+ "print(\"Notes:\", scale_tool.getPropertyByName(\"notes\").toString())\n",
+ "print()\n",
+ "\n",
+ "# Get model marker file name.\n",
+ "generic_model_maker = scale_tool.getGenericModelMaker()\n",
+ "print(\"Marker Set File Name:\", generic_model_maker.getMarkerSetFileName())\n",
+ "print()\n",
+ "\n",
+ "# Get marker file name.\n",
+ "marker_placer = scale_tool.getMarkerPlacer()\n",
+ "print(\"Marker Placer File Name:\", marker_placer.getMarkerFileName())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "6UoQfXjAJiGk"
+ },
+ "source": [
+ "**Perform Scaling**\n",
+ "\n",
+ "Finally, we can scale the model by running the scale tool. You can visualize the resulting model (`subject01_simbody.osim`) in [OpenSim GUI](https://simtk.org/frs/index.php?group_id=91)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "ISVbNGw-J-6_"
+ },
+ "outputs": [],
+ "source": [
+ "# Run Scale Tool.\n",
+ "scale_tool.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "QKEfjnyn5ldK"
+ },
+ "source": [
+ "**Questions:**"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "5-GGyw8X5ldQ"
+ },
+ "source": [
+ "1. What is the mass of the generic musculoskeletal model? What was the mass of the subject? _Hint: Look for it in the `gait2354_simbody.osim` and `gait2354_Setup_Scale.xml` files._"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "kFTHo50B5ldQ"
+ },
+ "source": [
+ "2. What frequency was the experimental motion data captured?\n",
+ "_Hint: Look for it in the `subject01_static.trc` file._"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "UHMJUvVO5ldQ"
+ },
+ "source": [
+ "3. Which body segments were scaled manually? _Hint: Look for it in the `gait2354_Setup_scale.xml` file._"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ad2kW88oKPaw"
+ },
+ "source": [
+ "## 5.4. Inverse Kinematics"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "sXZXzssqVmUN"
+ },
+ "source": [
+ "Kinematics is the study of motion without considering the forces and moments that produce that motion [[4]](https://onlinelibrary.wiley.com/doi/book/10.1002/9780470549148). The purpose of Inverse Kinematics (IK) is to estimate the joint angles of a particular subject from experimental data. In this section, you will estimate a subject's joint angles during walking by performing an IK analysis using the subject scaled model and experimentally collected walking data. \n",
+ "\n",
+ "For each time step of recorded motion data, IK computes a set of joint angles that put the model in a configuration that \"best matches\" the experimental kinematics. OpenSim determines this \"best match\" by solving a weighted least squares optimization problem with the goal of minimizing marker error. Marker error is defined as the distance between an experimental marker and the corresponding model marker. Each marker has an associated weighting value, specifying how strongly that marker's error term should be minimized in the least squares problem. For each time step, the `InverseKinematicsTool` solves for a vector of generalized coordinates (e.g., joint angles), $q$, that minimizes the weighted sum of marker errors, which is expressed as:\n",
+ "\n",
+ "$\\underset{q}{\\text{min}}\\Bigg[ \\sum_{i \\in \\text{markers}}{w_i || x_i^{\\text{exp}} - x_i(q) ||^2}^{}\\Bigg] $\n",
+ "\n",
+ "where $q$ is the vector of generalized coordinates (e.g., joint angles), $x_i^{\\text{exp}}$ is the position of the experimental marker $i$, $x_i(q)$ is the position of the corresponding model marker $i$ (which depends on $q$), and $w_i$ is the weight associated with marker $i$. "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "1ATo0wsJX66B"
+ },
+ "source": [
+ "A detailed explanation of the `InverseKinematicsTool` can be found on the [Inverse Kinematics page](https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53090037/Inverse+Kinematics) of the documentation."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "e2kJm4w-YuMF"
+ },
+ "source": [
+ "**Download the files**\n",
+ "\n",
+ "First, let's download the setup file for the `InverseKinematicsTool`."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "AlCIWcl6qXd2"
+ },
+ "source": [
+ "The first file to download is the XML setup file (`subject01_Setup_IK.xml`) for the IK tool. The file is stored in a Google Drive folder (See **Resources** in the Objectives section)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "PoPq74CGj05x"
+ },
+ "outputs": [],
+ "source": [
+ "!gdown \"1z1YGOTZlTCA4jpjRFbz0FlEaen1bETou&confirm=t\" # subject01_Setup_IK.xml"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "Aw4ARIVvqhuR"
+ },
+ "source": [
+ "The second file is the marker file (`subject01_walk1.trc`), which provides information about the position of the markers during a motion trial. The file is stored in a Google Drive folder (See **Resources** in the Objectives section)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "9dJOeVIqj_aX"
+ },
+ "outputs": [],
+ "source": [
+ "!gdown \"10TVRHRNJNy766Zbejjv05n3SKh0B80qD&confirm=t\" # subject01_walk1.trc"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "G6wtd-OJaF6m"
+ },
+ "source": [
+ "**Create the `InverseKinematicsTool`**\n",
+ "\n",
+ "The `InverseKinematicsTool` helps us solve the Inverse Kinematics problem. We can pass a configuration file as a parameter (`subject01_Setup_IK.xml`)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "DaP2nPJraF6m"
+ },
+ "outputs": [],
+ "source": [
+ "# Create an IK object using the configuration file.\n",
+ "inverse_kinematics_tool = osim.InverseKinematicsTool('subject01_Setup_IK.xml')\n",
+ "\n",
+ "# Print some information of the config file to check that everything is correct.\n",
+ "print(\"Name:\", inverse_kinematics_tool.getName())\n",
+ "print(\"Model File:\", inverse_kinematics_tool.get_model_file())\n",
+ "print(\"Marker File:\", inverse_kinematics_tool.get_marker_file())\n",
+ "print(\"Accuracy:\", inverse_kinematics_tool.get_accuracy())\n",
+ "print(\"Time Range: [\", inverse_kinematics_tool.get_time_range(0), \",\", inverse_kinematics_tool.get_time_range(1), \"]\")\n",
+ "print(\"Constraint Weight:\", inverse_kinematics_tool.get_constraint_weight())\n",
+ "print()\n",
+ "\n",
+ "# Print weights information\n",
+ "print(\"Weights:\")\n",
+ "task_set = inverse_kinematics_tool.get_IKTaskSet()\n",
+ "for i in range(task_set.getSize()):\n",
+ " task = task_set.get(i)\n",
+ " print(task.getName())\n",
+ " print(task.getWeight())\n",
+ " print()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "lm09IBIac8QE"
+ },
+ "source": [
+ "**Perform Inverse Kinematics**\n",
+ "\n",
+ "Finally, we run the IK tool. You can visualize the resulting motion file (`subject01_walk1_ik.mot`) by associating it to the scaled model (`subject01_simbody.osim`) in the [OpenSim GUI](https://simtk.org/frs/index.php?group_id=91)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "k6EIzdm9dEEx"
+ },
+ "outputs": [],
+ "source": [
+ "inverse_kinematics_tool.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "GLp_exuTePfI"
+ },
+ "source": [
+ "**Visualize the marker errors**\n",
+ "\n",
+ "The output file `subject01_ik_marker_errors.sto` provides the markers errors associated with each frame of the generated motion. You can parse this file using a `TableProcessor` and visualize the error obtained per frame."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "aiBr4M-wxrRP"
+ },
+ "outputs": [],
+ "source": [
+ "# Use the TableProcessor to read the motion file.\n",
+ "table = osim.TableProcessor(\"subject01_ik_marker_errors.sto\")\n",
+ "# Process the file.\n",
+ "tableErrors = table.process()\n",
+ "# Print labels for each column.\n",
+ "print(tableErrors.getColumnLabels())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "-Ov2v2k9x5oe"
+ },
+ "source": [
+ "We will plot the total squared error, the RMS error for the markers, and the maximum error for the markers. In the next cell you will extract this information from the motion file.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "Xhnx_ulsx6CS"
+ },
+ "outputs": [],
+ "source": [
+ "# Get columns we want to plot, and the independent column (Time).\n",
+ "total_squared_error = tableErrors.getDependentColumn('total_squared_error')\n",
+ "marker_error_RMS = tableErrors.getDependentColumn('marker_error_RMS')\n",
+ "marker_error_max = tableErrors.getDependentColumn('marker_error_max')\n",
+ "x_time = tableErrors.getIndependentColumn()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "WfpRt8xMjhy3"
+ },
+ "source": [
+ "Now, we can plot the error."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "w4J1bJGpzC3U"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Marker Errors from Inverse Kinematics', fontsize=16)\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(x_time, total_squared_error.to_numpy(), label='total_squared_error')\n",
+ "axs.plot(x_time, marker_error_RMS.to_numpy(), label='marker_error_RMS')\n",
+ "axs.plot(x_time, marker_error_max.to_numpy(), label='marker_error_max')\n",
+ "axs.set_xlabel('Time (s)')\n",
+ "axs.set_ylabel('Marker Error (m)')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "uJ25R72HJ9YX"
+ },
+ "source": [
+ "**Questions:**"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "_F4VGaDkmW-I"
+ },
+ "source": [
+ "4. Which markers have weighting values less than one? Why?\n",
+ "*Hint: Think about joints that have not been modeled.*"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "Oa7-QlzImfut"
+ },
+ "source": [
+ "5. What is the root-mean-squared (RMS) error of all the markers in the last frame of the motion? Include units. Does this seem reasonable? Explain."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "hSO963Q1J7o9"
+ },
+ "source": [
+ "6. What was the value of the maximum marker error in the last frame? Include units. Which marker had this maximum error, and why?\n",
+ "*Hint: Think about the weighted least squares problem.*"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "SzMh1MS8QazO"
+ },
+ "source": [
+ "## 5.5. Inverse Dynamics"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "QL2BMH6tQiVV"
+ },
+ "source": [
+ "Dynamics is the study of motion and the forces and moments that produce that motion [[4]](https://onlinelibrary.wiley.com/doi/book/10.1002/9780470549148). The purpose of Inverse Dynamics is to estimate the forces and moments that cause a particular motion, and its results can be used to infer how muscles are utilized in that motion. To determine these forces and moments, equations of motion for the system are solved iteratively [[5]](https://doi.org/10.1115/1.2834295). The equations of motion are derived using the kinematic description and mass properties of a musculoskeletal model. Then, using the joint angles from Inverse Kinematics and experimental ground reaction force data, the net reaction forces and net moments at each of the joints are calculated such that the dynamic equilibrium conditions and boundary conditions are satisfied [[5]](https://doi.org/10.1115/1.2834295). "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "cR5SdHfdYH30"
+ },
+ "source": [
+ "A detailed explanation of the `InverseDynamicsTool` can be found on the [Inverse Dynamics page](https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53090074/Inverse+Dynamics) of the OpenSim documentation hosted on confluence."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "wnJUuAW8RGpe"
+ },
+ "source": [
+ "**Download the files**\n",
+ "\n",
+ "First, let's download the configuration file (`subject01_Setup_InverseDynamics.xml`) for the `InverseDynamicsTool`. The file is stored in a Google Drive folder (See **Resources** in the Objectives section)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "SDK4_QCkk0vo"
+ },
+ "outputs": [],
+ "source": [
+ "!gdown \"1aE_GIV0dNepL6oUGJalznsJQZDlSfcet&confirm=t\" # subject01_Setup_InverseDynamics.xml"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "XlRizvvXrXtQ"
+ },
+ "source": [
+ "The second file is a external loads file (`subject01_walk1_grf.xml`), that contains the external loads applied to the model. The file is stored in a Google Drive folder (See **Resources** in the Objectives section)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "a3Ym-2KglEey"
+ },
+ "outputs": [],
+ "source": [
+ "!gdown \"1OZtWIpJ1UH2uViiEEeRluwfi54wsgIqG&confirm=t\" # subject01_walk1_grf.xml"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ePpe9dGXr_II"
+ },
+ "source": [
+ "The third file is a coordinates file (`subject01_walk1_grf.mot`), containing coordinate data. The file is stored in a Google Drive folder (See **Resources** in the Objectives section)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "IoYI-ik3lUsq"
+ },
+ "outputs": [],
+ "source": [
+ "!gdown \"18L9Nj9ff-2evQkiXqD2KDZXu3DWZ30vh&confirm=t\" # subject01_walk1_grf.mot"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "oHeUXkItSy6D"
+ },
+ "source": [
+ "**Create the `InverseDynamicsTool`**\n",
+ "\n",
+ "The `InverseDynamicsTool` helps us perform Inverse Dynamics. We can pass a configuration file as a parameter (`subject01_Setup_InverseDynamics.xml`)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "r17DfremSy6E"
+ },
+ "outputs": [],
+ "source": [
+ "# Create an ID object using the configuration file.\n",
+ "inverse_dynamics_tool = osim.InverseDynamicsTool('subject01_Setup_InverseDynamics.xml')\n",
+ "\n",
+ "# Print some information of the config file to check that everything is correct.\n",
+ "print(\"Name:\", inverse_dynamics_tool.getName())\n",
+ "print(\"Model File:\", inverse_dynamics_tool.getModelFileName())\n",
+ "print(\"External Loads File:\", inverse_dynamics_tool.getExternalLoadsFileName())\n",
+ "print(\"Coordinates File:\", inverse_dynamics_tool.getCoordinatesFileName())\n",
+ "print(\"Time Range: [\", inverse_dynamics_tool.getStartTime(), \",\", inverse_dynamics_tool.getEndTime(), \"]\")\n",
+ "print(\"Lowpass Cutoff Frequency:\", inverse_dynamics_tool.getLowpassCutoffFrequency())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "fHgMyZc2Y6JO"
+ },
+ "source": [
+ "**Run Inverse Dynamics**\n",
+ "\n",
+ "Finally, we can run Inverse Dynamics by running the `InverseDynamicsTool`."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "VF3_KRo8Y6Jk"
+ },
+ "outputs": [],
+ "source": [
+ "inverse_dynamics_tool.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "lUy_Vm8izR0f"
+ },
+ "source": [
+ "**Visualize the Inverse Dynamics results**\n",
+ "\n",
+ "After running the Inverse Dynamics Tool, a file named `inverse_dynamics.sto` is generated. This file contains the results of the Inverse Dynamics execution, and you can parse it using a `TimeSeriesTable` to visualize the results."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "07K30qNozR0z"
+ },
+ "outputs": [],
+ "source": [
+ "# Load the inverse dynamics results into a TimeSeriesTable.\n",
+ "tableID = osim.TimeSeriesTable(\"ResultsInverseDynamics/inverse_dynamics.sto\")\n",
+ "\n",
+ "# Print labels for each column.\n",
+ "print(tableID.getColumnLabels())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "bd3MDg8azR0z"
+ },
+ "source": [
+ "We are going to compare the moments of the ankle angle of both legs, so let's extract these quantities from the Inverse Dynamics results."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "hxG43RnlzR00"
+ },
+ "outputs": [],
+ "source": [
+ "# Get columns we want to represent, and the independent column (Time).\n",
+ "ankle_angle_r_moment = tableID.getDependentColumn('ankle_angle_r_moment')\n",
+ "ankle_angle_l_moment = tableID.getDependentColumn('ankle_angle_l_moment')\n",
+ "x_time = tableID.getIndependentColumn()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "zLngF9DkzR00"
+ },
+ "source": [
+ "Now, we can plot the moments."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "ql-_ZYAizjw0"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Ankle Angle Moment Comparison')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(x_time, ankle_angle_r_moment.to_numpy(), label='ankle_angle_r_moment')\n",
+ "axs.plot(x_time, ankle_angle_l_moment.to_numpy(), label='ankle_angle_l_moment')\n",
+ "axs.set_xlabel('Time (s)')\n",
+ "axs.set_ylabel('Moment (N-m)')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "cHOJv4Mg1W_U"
+ },
+ "source": [
+ "In solving the Inverse Dynamics problem, both kinematic data and force plate data were used, making this an over-determined problem. In other words, the problem has more equations than unknowns (i.e., degrees of freedom). Due to errors in the experimental motion data and inaccuracies in the musculoskeletal model, it turns out that Newton's second law is violated, or $\\overrightarrow{F}_{\\text{exp}} \\neq m * \\overrightarrow{a}$ [[5]](https://doi.org/10.1115/1.2834295). One method to handle this inconsistency is to compute and apply residual forces and moments to a particular body segment in the model, such that Newton's second law becomes:"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ZFsf78-5t2L6"
+ },
+ "source": [
+ "$\\overrightarrow{F}_{\\text{exp}} + \\overrightarrow{F}_{\\text{residual}} = m * \\overrightarrow{a} $"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "gFZfIUMp28Sx"
+ },
+ "source": [
+ "Note: An analogous equation relates the ground reaction moment, $\\overrightarrow{M}_{\\text{exp}}$ to the residual moment, $\\overrightarrow{M}_{\\text{residual}}$."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "XdW9OdIA3MuC"
+ },
+ "source": [
+ "In this musculoskeletal model, the residuals are applied to the pelvis segment. To see the residuals from the inverse dynamics solution, plot `pelvis_tx_force`, `pelvis_ty_force`, and `pelvis_tz_force` versus `time`. Using this plot, answer question 9."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "_Ryg0QjYzyfU"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Get columns we want to represent, and the independent column (Time).\n",
+ "pelvis_tx_force = tableID.getDependentColumn('pelvis_tx_force')\n",
+ "pelvis_ty_force = tableID.getDependentColumn('pelvis_ty_force')\n",
+ "pelvis_tz_force = tableID.getDependentColumn('pelvis_tz_force')\n",
+ "x_time = tableID.getIndependentColumn()\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Pelvis Force Residuals')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(x_time, pelvis_tx_force.to_numpy(), label='pelvis_tx_force')\n",
+ "axs.plot(x_time, pelvis_ty_force.to_numpy(), label='pelvis_ty_force')\n",
+ "axs.plot(x_time, pelvis_tz_force.to_numpy(), label='pelvis_tz_force')\n",
+ "axs.set_xlabel('Time')\n",
+ "axs.set_ylabel('Force')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "oK6v_gocKWSh"
+ },
+ "source": [
+ "**Questions:**"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "cC88pJIY3TLV"
+ },
+ "source": [
+ "7. On your plot of the ankle moments, identify when heel strike, stance phase, toe off, and swing phase occur for each curve (i.e., left leg and right leg)."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "BLKse9bp3W7R"
+ },
+ "source": [
+ "8. Based on your plot and the angle convention for the ankle, give an explanation of what is happening at the ankle just before toe-off.\n",
+ "*Hint: It may be useful to visualize the motion in the OpenSim GUI and use the Coordinate sliders to understand the angle convention for the ankle.*"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "nquFUQIA4E-2"
+ },
+ "source": [
+ "9. What are the maximum magnitudes of the residual forces? Using the mass of the subject from Question 1, what fraction of body weight are the maximum residual forces?"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "acVEWzHi8nRE"
+ },
+ "source": [
+ "While applying residual forces and moments makes the model's motion dynamically consistent with the external forces, this strategy is undesirable because the residuals can be large. More advanced strategies have been developed to deal with the problem of residuals and dynamic inconsistencies, such as least-squares optimization [[5]](https://doi.org/10.1115/1.2834295), the Residual Elimination Algorithm (REA) [[6]](https://doi.org/10.1016/j.jbiomech.2005.02.010), and the Residual Reduction Algorithm (RRA) [[7]](https://bcats.stanford.edu/previous_bcats/bcats06/pdf/BCATS_2006_abstract_book.pdf#page=31). OpenSim implements a Residual Reduction Algorithm as part of its workflow for generating muscle-actuated simulations [[7]](https://bcats.stanford.edu/previous_bcats/bcats06/pdf/BCATS_2006_abstract_book.pdf#page=31). A detailed explanation of the Residual Reduction Algorithm (RRA) can be found on the Residual Reduction Algorithm page of the documentation. For additional information on these strategies, please also see [[1]](https://doi.org/10.1080/10255842.2011.627560), [[5]](https://doi.org/10.1115/1.2834295), [[6]](https://doi.org/10.1016/j.jbiomech.2005.02.010) and [[7]](https://bcats.stanford.edu/previous_bcats/bcats06/pdf/BCATS_2006_abstract_book.pdf#page=31)."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "i7rhPT2id6gg"
+ },
+ "source": [
+ "## 5.6. Conclusion"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "1XK9UgItWQMF"
+ },
+ "source": [
+ "In this tutorial, you scaled a musculoskeletal model and used it to perform Inverse Kinematics and Inverse Dynamics. Then, you explored the results of each analyses."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "lLWgd8Noun6Y"
+ },
+ "source": [
+ "## 5.7. Useful Links\n",
+ "\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "m8M3dlT5xQcD"
+ },
+ "source": [
+ "> **OpenSim Website:** https://opensim.stanford.edu/\n",
+ ">\n",
+ "> **OpenSim Python Scripting:** https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53085346/Scripting+in+Python\n",
+ ">\n",
+ "> **OpenSim API Documentation:** https://simtk.org/api_docs/opensim/api_docs/\n",
+ "> \n",
+ "> **OpenSim Creator Website:** https://opensimcreator.com/\n",
+ "> \n",
+ "> **SimTK Website:** https://simtk.org/projects/opensim\n",
+ "> \n",
+ "> **Biomechanics of Movement's Course:** https://www.youtube.com/channel/UCDNGy0KKNLQ-ztcL5h2Z6zA\n",
+ ">\n",
+ "> **Webinar on Scaling and Inverse Kinematics in OpenSim:** https://www.youtube.com/watch?v=ZG7wzvQC6eU"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "yIZL9H9ygQGU"
+ },
+ "source": [
+ "## 5.8. Acknowledgments\n",
+ "\n",
+ "The experimental gait data were collected by Jill Higginson and Chand John in the Neuromuscular Biomechanics Lab at the University of Delaware [[8]](https://doi.org/10.1080/10255842.2011.627560). The data include marker trajectories and ground reaction forces for an adult male walking at a self-selected speed on an instrumented split-belt treadmill. Please note that the data distributed with OpenSim is from a different subject than the one described in the paper. Data collection protocols were the same for both subjects.\n",
+ "\n",
+ "Thanks to [OpenSimColab](https://simtk.org/projects/opencolab) project [[9]](https://doi.org/10.1080/10255842.2022.2104607) for creating the first OpenSim Conda package."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "2rwqw1LFq6Lz"
+ },
+ "source": [
+ "## 5.9. References"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "TpbyAlHvfh8M"
+ },
+ "source": [
+ "\n",
+ "> [1]. Delp, S. L., Anderson, F. C., Arnold, A. S., Loan, P., Habib, A., John, C. T., Guendelman, E., & Thelen, D. G. (2007). **OpenSim: open-source software to create and analyze dynamic simulations of movement.** *IEEE Transactions on Bio-Medical Engineering*, 54(11), 1940–1950. https://doi.org/10.1109/TBME.2007.901024\n",
+ "> \n",
+ "> [2]. Delp, S. L., Loan, J. P., Hoy, M. G., Zajac, F. E., Topp, E. L., & Rosen, J. M. (1990). **An interactive graphics-based model of the lower extremity to study orthopaedic surgical procedures.** *IEEE Transactions on Bio-Medical Engineering*, 37(8), 757–767. https://doi.org/10.1109/10.102791\n",
+ ">\n",
+ "> [3]. Anderson, F. C., & Pandy, M. G. (1999). **A dynamic optimization solution for vertical jumping in three dimensions.** *Computer Methods in Biomechanics and Biomedical Engineering*, 2(3), 201–231. https://doi.org/10.1080/10255849908907988\n",
+ ">\n",
+ "> [4]. Winter, D. A. (1990). **The biomechanics and motor control of human movement** (2a ed.). *John Wiley & Sons*. https://onlinelibrary.wiley.com/doi/book/10.1002/9780470549148\n",
+ ">\n",
+ "> [5]. Kuo, A. D. (1998). **A least-squares estimation approach to improving the precision of inverse dynamics computations.** *Journal of Biomechanical Engineering*, 120(1), 148–159. https://doi.org/10.1115/1.2834295\n",
+ ">\n",
+ "> [6]. Thelen, D. G., & Anderson, F. C. (2006). **Using computed muscle control to generate forward dynamic simulations of human walking from experimental data.** *Journal of Biomechanics*, 39(6), 1107–1115. https://doi.org/10.1016/j.jbiomech.2005.02.010\n",
+ ">\n",
+ "> [7]. John, C.T., Anderson, F.C., Guendelman, E., Arnold, A.S., Delp, S.L. (21st October 2006). **An algorithm for generating muscle-actuated simulations of long-duration movements.** *Biomedical Computation at Stanford (BCATS) Symposium*, Stanford University, Poster Presentation. https://bcats.stanford.edu/previous_bcats/bcats06/pdf/BCATS_2006_abstract_book.pdf#page=31\n",
+ ">\n",
+ "> [8]. John, C. T., Anderson, F. C., Higginson, J. S., & Delp, S. L. (2013). **Stabilisation of walking by intrinsic muscle properties revealed in a three-dimensional muscle-driven simulation.** *Computer Methods in Biomechanics and Biomedical Engineering*, 16(4), 451–462. https://doi.org/10.1080/10255842.2011.627560\n",
+ ">\n",
+ "> [9] Mokhtarzadeh, H., Jiang, F., Zhao, S., & Malekipour, F. (2022). **OpenColab project: OpenSim in Google colaboratory to explore biomechanics on the web.** *Computer Methods in Biomechanics and Biomedical Engineering*, 1–9. https://doi.org/10.1080/10255842.2022.2104607"
+ ]
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "opensim",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.11.10"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}
diff --git a/Bindings/Python/tutorials/Tutorial 6 - Static Optimization.ipynb b/Bindings/Python/tutorials/Tutorial 6 - Static Optimization.ipynb
new file mode 100644
index 0000000000..dd56528ee2
--- /dev/null
+++ b/Bindings/Python/tutorials/Tutorial 6 - Static Optimization.ipynb
@@ -0,0 +1,2150 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "
\n",
+ ""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "JLgpKeJ4NYHz"
+ },
+ "source": [
+ "# 6. Static Optimization"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "SwX6QwGU0Jwj"
+ },
+ "source": [
+ "## 6.1. Objectives"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "4p_3qlB60Np3"
+ },
+ "source": [
+ "**Introduction**\n",
+ "\n",
+ "Static Optimization is a method for estimating muscle activations and muscle forces that satisfy the positions, velocities, accelerations, and external forces (e.g., ground reaction forces) of a motion. The technique is called \"static\" since calculations are performed at each time frame, without integrating the equations of motion between time steps. Static Optimization can be very fast and efficient because there is no integration, but it does ignore activation dynamics and tendon compliance. See [[1]](https://doi.org/10.1115/1.4029304) for more details regarding this and similar modeling and simulation choices and their pros and cons."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "_cj6YClyLG_C"
+ },
+ "source": [
+ "\n",
+ "**Purpose**\n",
+ "\n",
+ "In this tutorial, you will learn how to perform a Static Optimization analysis on a single stride gait trial and assess gastrocnemius activation and force production in a simplified example model ([gait10dof18musc](https://simtk-confluence.stanford.edu:8443/display/OpenSim/Musculoskeletal+Models)).\n",
+ "\n",
+ "As with any analysis or simulation, the Static Optimization results' quality largely depends on the quality of the model, motion, and forces used as inputs. The model should have mass, anthropometry, and strength that represent the experimental participant; while the degrees of freedom and muscle geometry should be appropriate for the questions being asked (e.g., studying an upper body motion would require a more detailed upper extremity muscle set and skeletal geometry). The motion should contain smooth, realistic accelerations and all external forces during the motion (e.g., ground reaction forces) should be accurately measured and applied to the model. Additional forces (i.e., reserves and residuals) are often needed but should be small enough to not confound analysis. Any issues with your inputs will give you poor results or cause the tool to fail.\n",
+ "\n",
+ "In this tutorial, you will:\n",
+ "\n",
+ "* Get an initial Static Optimization analysis running without error messages or crashes.\n",
+ "* Improve the activation and force results by using improved motion data.\n",
+ "* Learn how to reduce actuation from reserve and residual actuators.\n",
+ "* Add passive forces and observe their effect on muscle activation.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "G7_bQ5HTLJFl"
+ },
+ "source": [
+ "**Format**\n",
+ "\n",
+ "Each section of the tutorial guides you through certain tools within OpenSim and asks you to answer a few questions. The questions can be answered based on information from OpenSim and basic knowledge of the human musculoskeletal system. As you complete each section of the tutorial, feel free to explore OpenSim and the lower extremity model further on your own."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "uoMuDaWxLMW1"
+ },
+ "source": [
+ "\n",
+ "**Before You Get Started**\n",
+ "\n",
+ "This tutorial begins in a workflow where the model is scaled, Inverse Kinematics run, and Residual Reduction Analysis performed.\n",
+ "\n",
+ "Before completing the tutorial, make sure you have reviewed the following reading from the User's Guide and completed the prerequisite tutorials.\n",
+ "\n",
+ "User Guide | Prerequisite Tutorials | Other Resources\n",
+ "--------------------|------------------------|------------------\n",
+ "[Static Optimization](https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53090088/Static+Optimization) | [Tutorial 1: Introduction to OpenSim](https://colab.research.google.com/github/nickbianco/opensim-core/blob/python_examples/Bindings/Python/tutorials/Tutorial%201%20-%20Introduction%20to%20OpenSim.ipynb) | [[1]](https://doi.org/10.1115/1.4029304) \n",
+ "[Inverse Kinematics](https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53090037/Inverse+Kinematics) | [Tutorial 2 : Creating and Simulating a Simple Arm Model ](https://colab.research.google.com/github/nickbianco/opensim-core/blob/python_examples/Bindings/Python/tutorials/Tutorial%202%20-%20Creating%20and%20Simulating%20a%20simple%20arm%20Model.ipynb) | [[2]](https://doi.org/10.1109/TBME.2007.901024) \n",
+ "[Residual Reduction Algorithm](https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53089669/Residual+Reduction+Algorithm) | [Tutorial 3: Loading and Modifying OpenSim Models](https://colab.research.google.com/github/nickbianco/opensim-core/blob/python_examples/Bindings/Python/tutorials/Tutorial%203%20-%20Loading%20and%20Modifying%20OpenSim%20Models.ipynb) | \n",
+ "[Inverse Dynamics](https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53090074/Inverse+Dynamics) | [Tutorial 4: Musculoskeletal Models, Motion Files, and MuscleAnalysis](https://colab.research.google.com/github/nickbianco/opensim-core/blob/python_examples/Bindings/Python/tutorials/Tutorial%204%20-%20Musculoskeletal%20models%2C%20Motion%20Files%20and%20MuscleAnalysis.ipynb) | | \n",
+ "[Scaling](https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53090000/Scaling) | [Tutorial 5: Scaling, Inverse Kinematics, and Inverse Dynamics](https://colab.research.google.com/github/nickbianco/opensim-core/blob/python_examples/Bindings/Python/tutorials/Tutorial%205%20-%20Scaling%2C%20Inverse%20Kinematics%2C%20and%20Inverse%20Dynamics.ipynb) | "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "NeAzWgeVLOJL"
+ },
+ "source": [
+ "**Resources**\n",
+ "\n",
+ "All of the files necessary to complete this tutorial are available in the following Google Drive folder: https://drive.google.com/drive/folders/1XFkFE018DLXxPto6XdVRcY8Fl6hP3ecA?usp=sharing\n",
+ "\n",
+ "While you complete the tutorial, you will find cells that automatically download the required files.\n",
+ "\n",
+ "To obtain a link to one of the files in Google Drive, right-click over it and click on **Get Link**.\n",
+ "\n",
+ "**Local Installation**\n",
+ "\n",
+ "You may also run this notebook using a locally installed OpenSim `conda` package. Visit [the OpenSim python scripting Confluence page](https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53085346/Scripting+in+Python) for more information on how to install OpenSim in a local Python environment. You will also need to download the resources from Google Drive to the same directory as this notebook. Then, you may skip to Section 6.3 below."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ADllcxbsjTr8"
+ },
+ "source": [
+ "## 6.2. Setup `conda` and OpenSim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "mmmTuEI4HQJG"
+ },
+ "source": [
+ "First, set up the environment by executing the following cell (See [Tutorial 1: Introduction to OpenSim](https://colab.research.google.com/github/nickbianco/opensim-core/blob/python_examples/Bindings/Python/tutorials/Tutorial%201%20-%20Introduction%20to%20OpenSim.ipynb) for more information)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "0w9LYQXx5TO4"
+ },
+ "outputs": [],
+ "source": [
+ "!pip install -q condacolab\n",
+ "import condacolab\n",
+ "condacolab.install()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "vt5loGbdfKb8"
+ },
+ "source": [
+ "Don't worry if after executing the previous cell you get an error saying that your session has failed. This happens because `condacolab` needs to restart the session for the changes to take effect. Therefore, you have to execute the previous cell before executing any other cell.\n",
+ "\n",
+ "Now, execute the following cell to install the OpenSim `conda` package."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "vWf9ObZJ5TO5"
+ },
+ "outputs": [],
+ "source": [
+ "!conda install opensim-org::opensim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "56GWGq3HSLNQ"
+ },
+ "source": [
+ "## 6.3. Study 1: Run Static Optimization"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "2gJ1cEsvSUIB"
+ },
+ "source": [
+ "The objective of this study is to perform Static Optimization over the `gait10dof18musc` model, using results from IK as motion and a set of external forces applied to it. You don't have to worry about calculating the IK results and the external forces, since you will download them in the next subsection. Once Static Optimization has been calculated, we want to visualize the activation of the gastrocnemius muscle."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "337hUq4BSNHQ"
+ },
+ "source": [
+ "**Printing OpenSim logs**\n",
+ "\n",
+ "To visualize OpenSim's log information, we need to redirect it to either the console, or a file. In this case, we are going to do both."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "mLyWh3uuZM1W"
+ },
+ "source": [
+ "To output OpenSim's log information to the console, we need to create a [LogSink](https://simtk.org/api_docs/opensim/api_docs/classOpenSim_1_1LogSink.html). A `LogSink` is an object that is able to report logging messages. We want the log messages to appear as python output, so we implement the class in a way that every message is printed, and we add the sink to OpenSim's [Logger](https://simtk.org/api_docs/opensim/api_docs/classOpenSim_1_1Logger.html)."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "lu_RSBjaNXkq"
+ },
+ "source": [
+ "To output OpenSim's log information to a file, we just need to call the function `addSinkFile()`, passing as an argument a name for the log file."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "kZO-sJ3sYGpG"
+ },
+ "outputs": [],
+ "source": [
+ "import opensim as osim\n",
+ "\n",
+ "class PythonOutputSink(osim.common.LogSink):\n",
+ " def __init__(self):\n",
+ " super().__init__()\n",
+ " self.msg = \"\"\n",
+ "\n",
+ " def flushImpl(self):\n",
+ " self.msg = \"\"\n",
+ "\n",
+ " def sinkImpl(self, str):\n",
+ " self.msg += str + \"\\n\";\n",
+ " print(self.msg)\n",
+ "\n",
+ "python_output_sink = PythonOutputSink()\n",
+ "\n",
+ "osim.Logger.addSink(python_output_sink)\n",
+ "osim.Logger.addFileSink(\"opensim-log.log\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "e2kJm4w-YuMF"
+ },
+ "source": [
+ "**Download the files**\n",
+ "\n",
+ "First, let's download the model (`gait10dof18musc_simbody.osim`), the IK results (`subject01_walk_IK.mot`) and the external forces (`subject01_walk_grf.xml` and `subject01_walk_grf.mot`) files. The files are stored in a Google Drive folder (See **Resources** in the Objectives section)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "S_LJjt3YBDiZ"
+ },
+ "outputs": [],
+ "source": [
+ "!gdown \"1CB6-XNDMjNJ_Ca57AejgolT4iQTqVMGg&confirm=t\" # gait10dof18musc_simbody.osim\n",
+ "!gdown \"1sPgI8VzLvp6RC9KZMgAc4fA7S4CC6jQx&confirm=t\" # subject01_walk_IK.mot\n",
+ "!gdown \"1n7BN9rJv_OPW20HtFdiJr--2aqkg5Scq&confirm=t\" # subject01_walk_grf.xml\n",
+ "!gdown \"1wkMVlCN7ka4Bt-x8aBVj_c5oK9rH1tW6&confirm=t\" # subject01_walk_grf.mot"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "bjlOR8fym2Pl"
+ },
+ "source": [
+ "Load the model into OpenSim. To check that the file has been downloaded correctly, let's print its name. Notice that we are getting more information printed to the console because of the Python `LogSink` that we've added. You can also see the logs in the `opensim-log.log` file that has been created.\n",
+ "\n",
+ "Don't worry about logged messages similar to \"Couldn't find file 'sacrum.vtp'\"; VTP files are only used for visualization and not needed for this example."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "oGTQE8Azh6p8"
+ },
+ "outputs": [],
+ "source": [
+ "# Load the model.\n",
+ "gait1018 = osim.Model('gait10dof18musc_simbody.osim')\n",
+ "print(\"Name of the model:\", gait1018.getName())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "GZ-Wuh6ACWpN"
+ },
+ "source": [
+ "**Create Static Optimization Analysis Tool**\n",
+ "\n",
+ "\n",
+ "The first step to perform a Static Optimization Analysis is to create a Static Optimization object and configure it."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "4yiF1t4mCRrH"
+ },
+ "outputs": [],
+ "source": [
+ "# Define a StaticOptimization object.\n",
+ "so = osim.StaticOptimization()\n",
+ "\n",
+ "# Set start and end times for the analysis.\n",
+ "start_time = 0.3\n",
+ "end_time = 1.5\n",
+ "so.setStartTime(start_time)\n",
+ "so.setEndTime(end_time)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "iVvH2t6sMc7t"
+ },
+ "source": [
+ "Then, we need to create an `AnalyzeTool`. We attach two files to the `AnalyzeTool`:\n",
+ "* The IK results file (`subject01_walk_IK.mot`).\n",
+ "* The external loads file (`subject01_walk_grf.xml`).\n",
+ "\n",
+ "The tool will step through each time frame of the input motion. At each time, it will update the model coordinates, external loads, and calculate the muscle forces and activations needed to generate the model's accelerations based on the input motion."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "YxX1dIKYEneO"
+ },
+ "outputs": [],
+ "source": [
+ "# Create analyze tool for static optimization.\n",
+ "so_analyze_tool = osim.AnalyzeTool()\n",
+ "so_analyze_tool.setName(\"SO\")\n",
+ "\n",
+ "# Set model file, motion files and external load file names.\n",
+ "so_analyze_tool.setModelFilename(\"gait10dof18musc_simbody.osim\")\n",
+ "so_analyze_tool.setCoordinatesFileName(\"subject01_walk_IK.mot\")\n",
+ "so_analyze_tool.setExternalLoadsFileName(\"subject01_walk_grf.xml\")\n",
+ "\n",
+ "# Add analysis.\n",
+ "so_analyze_tool.updAnalysisSet().cloneAndAppend(so)\n",
+ "\n",
+ "# Configure analyze tool.\n",
+ "so_analyze_tool.setReplaceForceSet(False)\n",
+ "so_analyze_tool.setStartTime(start_time)\n",
+ "so_analyze_tool.setFinalTime(end_time)\n",
+ "\n",
+ "# Directory where results are stored.\n",
+ "so_analyze_tool.setResultsDir(\"SO_Results\")\n",
+ "\n",
+ "# Print configuration of analyze tool to a xml file.\n",
+ "so_analyze_tool.printToXML(\"SO_AnalyzeTool_setup.xml\")\n",
+ "\n",
+ "# Load configuration and run the analyses. \n",
+ "so_analyze_tool = osim.AnalyzeTool(\"SO_AnalyzeTool_setup.xml\", True)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "6u4xoyHdQXBq"
+ },
+ "source": [
+ "**Perform Static Optimization**\n",
+ "\n",
+ "With the Analysis Tool defined and configured, we can perform Static Optimization. This may take a few seconds."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "aUbfhgubQXhu"
+ },
+ "outputs": [],
+ "source": [
+ "# Run static optimization.\n",
+ "so_analyze_tool.run();"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "tpuoaR2SMl2l"
+ },
+ "source": [
+ "**Plot results**\n",
+ "\n",
+ "With the Static Optimization execution finished, now you can extract the activation of the gastrocnemius muscle from the generated result files and plot it."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "y4CjW5RNF3RR"
+ },
+ "outputs": [],
+ "source": [
+ "# Get results from file.\n",
+ "table_activation = osim.TimeSeriesTable(\n",
+ " \"SO_Results/SO_StaticOptimization_activation.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time = table_activation.getIndependentColumn()\n",
+ "gastroc_activation = table_activation.getDependentColumn(\"gastroc_r\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "w4J1bJGpzC3U"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Gastrocnemius Activation')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(time, gastroc_activation.to_numpy(), label='Gastrocnemius (right)')\n",
+ "axs.set_xlabel('Time (s)')\n",
+ "axs.set_ylabel('Activation')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "QGiGKzOdNIn1"
+ },
+ "source": [
+ "**Results Explanation**\n",
+ "\n",
+ "What exactly is happening? If you check the output of the Static Optimization execution (when you executed run on the AnalyzeTool), there is an error message saying **Optimizer Failed...**. This is informing you that the optimizer could not find an adequate solution at the time indicated. However, it is not crashing since the tool is trying to find adequate solutions in the following times. Remember that Static Optimization is trying to calculate activations and muscle forces that satisfy the model's coordinate accelerations calculated from the specified kinematics file. If the model's actuators cannot generate sufficient forces to match these accelerations, this \"Optimizer Failed...\" error will appear. The Static Optimization tool has produced a set of results to help with troubleshooting, but these outputs are not valid."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "jkI_ssdCoZrM"
+ },
+ "source": [
+ "An under-actuated model is the product of muscles not being strong enough to generate the required forces and/or model coordinates not having any actuation (muscles or other actuators). In this particular model, there are no muscles that control lumbar flexion/extension, so all the other lower limb muscles are trying to control trunk motion, without much success. "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "WZhmZfCeobei"
+ },
+ "source": [
+ "One possible solution is to add extra muscles that cross the lumbar joint. However in this series of studies we are only interested in gastrocnemius activation during walking. Adding additional muscles will add extra complexity to the model that is likely not required for our analysis. Instead of lumbar muscles, we will add a torque actuator at the lumbar joint."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "uEq4VwtQodXH"
+ },
+ "source": [
+ "We will also add reserve and residual actuators to the model. Reserve actuators can add extra actuation during portions of the gait cycle where muscles are not able to generate sufficient accelerations (e.g., during a spike in acceleration). Residual actuators are \"hand of God\" forces that account for (what should be small) discrepancies between the model, measured motions, and forces. In other words, these actuators ensure that Newton's 2$^{nd}$ law, $F=m*a$, is satisfied throughout the analysis. For more details, see _Section 3.1.3_ of [[1](https://doi.org/10.1115/1.4029304)]. Typically, these residual actuators are added to the model's body that is connected to ground (in this particular case, residual actuators will be added to the pelvis body)."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "-lsgJYW3Sd5W"
+ },
+ "source": [
+ "### 6.3.1. Adding Actuators to the Model"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "AA_lennaRyp0"
+ },
+ "source": [
+ "You will now add a set of additional residual actuators to fix the errors obtained in the previous section. This includes a lumbar actuator, reserve actuators at the other joints, and residual actuators at the pelvis. Once you have added the actuatiors, you will rerun the analysis to check if the problem is solved."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "EZ41sHvFSFZq"
+ },
+ "source": [
+ "**Download the files**\n",
+ "\n",
+ "First, let's download the actuators file (`gait10dof18musc_Strong_actuators.xml`). The file is stored in a Google Drive folder (See **Resources** in the Objectives section)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "9d2gSzuYFaS1"
+ },
+ "outputs": [],
+ "source": [
+ "!gdown \"1qYK7JULDucOl_GN3-74OetYJ9ckKcev6&confirm=t\" # gait10dof18musc_Strong_actuators.xml"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "iJZg28MEkPoS"
+ },
+ "source": [
+ "**Create Static Optimization Analysis Tool**\n",
+ "\n",
+ "Now, let's add actuators to the Analyze Tool. You don't need to add the actuators manually since you have downloaded a file defining them (`gait10dof18musc_Strong_actuators.xml`). "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "AZRgXMkMof3x"
+ },
+ "source": [
+ "In order to preserve previous results, we are going to change the name of the analysis tool and the name of the output folder."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "Ziflsp26FAyW"
+ },
+ "outputs": [],
+ "source": [
+ "# Create analyze tool for static optimization.\n",
+ "so_strong_analyze_tool = osim.AnalyzeTool()\n",
+ "so_strong_analyze_tool.setName(\"SO_Strong\")\n",
+ "\n",
+ "# Add actuators file.\n",
+ "forceSet_files = osim.ArrayStr()\n",
+ "forceSet_files.append(\"gait10dof18musc_Strong_actuators.xml\")\n",
+ "so_strong_analyze_tool.setForceSetFiles(forceSet_files)\n",
+ "\n",
+ "# Set model file, motion files and external load file names.\n",
+ "so_strong_analyze_tool.setModelFilename(\"gait10dof18musc_simbody.osim\")\n",
+ "so_strong_analyze_tool.setCoordinatesFileName(\"subject01_walk_IK.mot\")\n",
+ "so_strong_analyze_tool.setExternalLoadsFileName(\"subject01_walk_grf.xml\")\n",
+ "\n",
+ "# Add analysis.\n",
+ "so_strong_analyze_tool.updAnalysisSet().cloneAndAppend(so)\n",
+ "\n",
+ "# Configure analyze tool.\n",
+ "so_strong_analyze_tool.setReplaceForceSet(False)\n",
+ "so_strong_analyze_tool.setStartTime(start_time)\n",
+ "so_strong_analyze_tool.setFinalTime(end_time)\n",
+ "\n",
+ "# Directory where results are stored.\n",
+ "so_strong_analyze_tool.setResultsDir(\"SO_Strong_Results\")\n",
+ "\n",
+ "# Print configuration of analyze tool to a xml file.\n",
+ "so_strong_analyze_tool.printToXML(\"SO_Strong_AnalyzeTool_setup.xml\")\n",
+ "\n",
+ "# Load configuration and run the analyses. \n",
+ "so_strong_analyze_tool = osim.AnalyzeTool(\"SO_Strong_AnalyzeTool_setup.xml\", True)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "O_ZXXdlfTpE_"
+ },
+ "source": [
+ "**Perform Static Optimization**\n",
+ "\n",
+ "Finally, we can perform Static Optimization on the model with the actuators. Notice how this time the calculations are faster, solutions are found at each time point, and there are no errors during the execution."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "OuRQXLZPTpFA"
+ },
+ "outputs": [],
+ "source": [
+ "# Run static optimization.\n",
+ "so_strong_analyze_tool.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "c0wrCHCkUB-5"
+ },
+ "source": [
+ "**Plot Results**\n",
+ "\n",
+ "First, plot the lumbar actuator reserves from the output file `Static_Optimization_Strong_StaticOptimization_force.sto`."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "G5PXag0uGuAa"
+ },
+ "outputs": [],
+ "source": [
+ "# Get results from file.\n",
+ "table_forces = osim.TimeSeriesTable(\n",
+ " \"SO_Strong_Results/SO_Strong_StaticOptimization_force.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_force = table_forces.getIndependentColumn()\n",
+ "lumbar_extension_reserve = table_forces.getDependentColumn(\"lumbar_extension_reserve\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "4Tu63Acz2wBQ"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Lumbar Reserve')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(time_force, lumbar_extension_reserve.to_numpy(), label='Lumbar Reserve')\n",
+ "axs.set_xlabel('Time')\n",
+ "axs.set_ylabel('Moment (Nm)')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "fENfqQHlUSNo"
+ },
+ "source": [
+ "Now, let's compare the gastrocnemius muscle activation curves from the two analyses (with and without additional actuators)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "ND4iTk6OJn6P"
+ },
+ "outputs": [],
+ "source": [
+ "# Get results from file.\n",
+ "table_activation = osim.TimeSeriesTable(\n",
+ " \"SO_Strong_Results/SO_Strong_StaticOptimization_activation.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_actuation = table_activation.getIndependentColumn()\n",
+ "gastroc_activation_actuation = table_activation.getDependentColumn(\"gastroc_r\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "RA4njbtC27cj"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Gastrocnemius Activation')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(time, gastroc_activation.to_numpy(), label='Without Actuation')\n",
+ "axs.plot(time_actuation, gastroc_activation_actuation.to_numpy(), label='With Actuation')\n",
+ "axs.set_xlabel('Time (s)')\n",
+ "axs.set_ylabel('Activation')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "IJlwI5csUbnj"
+ },
+ "source": [
+ "The previous figure shows that the gastrocnemius activation was significantly reduced. The reduction is due to the additional torques generated by the actuators added to the model."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "AHQ0fSvqUhWj"
+ },
+ "source": [
+ "Plot the moments produced by the right ankle reserve actuator from the output file `Static_Optimization_Strong_StaticOptimization_force.sto`."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "51pJOOBCJ402"
+ },
+ "outputs": [],
+ "source": [
+ "# Get results from file.\n",
+ "table_force = osim.TimeSeriesTable(\n",
+ " \"SO_Strong_Results/SO_Strong_StaticOptimization_force.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_force = table_force.getIndependentColumn()\n",
+ "ankle_angle_r_reserve_force = table_force.getDependentColumn(\"ankle_angle_r_reserve\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "fvVWUXMu3Jge"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Ankle Reserve Moment')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(time_actuation, ankle_angle_r_reserve_force.to_numpy(), label='Ankle Reserve')\n",
+ "axs.set_xlabel('Time')\n",
+ "axs.set_ylabel('Moment (Nm)')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "9bKfj79eUqhu"
+ },
+ "source": [
+ "Finally, plot the forces `Fx`, `Fy`, and moment `Mz` residual actuator forces."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "mqilA22pKe_n"
+ },
+ "outputs": [],
+ "source": [
+ "# Get results from file.\n",
+ "table_force = osim.TimeSeriesTable(\n",
+ " \"SO_Strong_Results/SO_Strong_StaticOptimization_force.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_force = table_force.getIndependentColumn()\n",
+ "fx = table_force.getDependentColumn(\"FX\")\n",
+ "fy = table_force.getDependentColumn(\"FY\")\n",
+ "mz = table_force.getDependentColumn(\"MZ\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "J65OKGUI3UnJ"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Residual Forces and Moment')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(time_force, fx.to_numpy(), label='FX')\n",
+ "axs.plot(time_force, fy.to_numpy(), label='FY')\n",
+ "axs.plot(time_force, mz.to_numpy(), label='MZ')\n",
+ "axs.set_xlabel('Time')\n",
+ "axs.set_ylabel('Forces (N; FX, FY) & Moment (Nm; MZ)')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ppWz47WEUxt6"
+ },
+ "source": [
+ "**Results Explanation:**\n",
+ "\n",
+ "We now have a working Static Optimization analysis. A functioning analysis does not mean that the results are valid; rather, we have a place to start iterating from to improve the output. In the following studies, we will gradually improve the quality of the inputs to get a better result. Review the questions below to better understand the problems with the current set of results."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "R5LoTvT-ipdJ"
+ },
+ "source": [
+ "**Questions:**"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "okZLnDQ-mTuG"
+ },
+ "source": [
+ "* The activation and force results are very noisy; why do you think this is? We will learn how to fix this in Study 2."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "QVA_u_pTmVlz"
+ },
+ "source": [
+ "* The Mz contribution is between ±50 N-m. What is the contribution of the residual actuator force for Fx, and Fy? How large are these residual actuator forces in comparison to the peak ground reaction forces measured doing the motion? What improvements could you make to any of the inputs (model, kinematics, external forces) to reduce the size of the residual forces? Study 2 will address these residual results. "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "fpknvfWjmXPi"
+ },
+ "source": [
+ "* The peak ankle extension moment from Inverse Dynamics was 120 N-m. How does this peak ankle moment compare to the peak moment generated by the ankle reserve actuator (e.g., as a percentage)? Do you think the reserve actuator peak should be this large? How might we address this issue? We will learn how to fix this in Study 3."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "J6_F0oT8WlVA"
+ },
+ "source": [
+ "## 6.4. Study 2: Improving the input kinematics"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "pgmwSu383oCu"
+ },
+ "source": [
+ "The aim of Study 2 is to assess how improving the input kinematics affects muscle activations and forces calculated by Static Optimization. Static Optimization is trying to compute muscle forces that generate the accelerations seen in the input kinematics. If these accelerations are noisy, there will be noise in the muscle activations and forces. In Study 1, we saw noisy activations and forces that are most likely the result of noisy motion data. We will investigate two methods for improving the motion data:\n",
+ "* Filtering the input kinematics.\n",
+ "* Using the Residual Reduction Algorithm (RRA) to generate a dynamically consistent motion with consistent accelerations"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "VG0ylYq_j8Ok"
+ },
+ "source": [
+ "Filtering the kinematics will spline-fit the motion data and filter the coordinate positions, reducing noise in the accelerations. If you use IK results as inputs to Static Optimization, you should always filter them, either externally (e.g., with Matlab or Python) or by using the OpenSim filters."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "oWf-l1v0j-VF"
+ },
+ "source": [
+ "Since RRA uses a forward dynamics simulation (i.e., the model's equations of motion are integrated forward in time), the output kinematics will be consistent accelerations that are great to use in Static Optimization. If you are using RRA results, you don't need to do any additional filtering. Using RRA also has the added benefit of generating a more \"dynamically consistent\" model and set of kinematics and forces. We are not going to go in depth into RRA in this particular tutorial so if you are unfamiliar with RRA please refer to the [User's Guide](https://simtk-confluence.stanford.edu:8443/display/OpenSim/Residual+Reduction+Algorithm)."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "UDysgMhAk9f6"
+ },
+ "source": [
+ "### 6.4.1. Filter the motion using a low pass filter"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "7IZDMDJLkp6N"
+ },
+ "source": [
+ "**Create Static Optimization Analysis Tool**\n",
+ "\n",
+ "Let's create a Static Optimization Tool, but this time we have to append the reserve and residal actuators from the beginning, filter the motion using 6Hz cut-off, and change the output directory name, so results are not overwritten."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "b54SwBByXD-7"
+ },
+ "outputs": [],
+ "source": [
+ "# Create analyze tool for static optimization.\n",
+ "so_strong_filter_analyze_tool = osim.AnalyzeTool()\n",
+ "so_strong_filter_analyze_tool.setName(\"SO_Strong_Filter\")\n",
+ "\n",
+ "# Add actuators file.\n",
+ "forceSet_files = osim.ArrayStr()\n",
+ "forceSet_files.append(\"gait10dof18musc_Strong_actuators.xml\")\n",
+ "so_strong_filter_analyze_tool.setForceSetFiles(forceSet_files)\n",
+ "\n",
+ "# Set model file, motion files and external load file names.\n",
+ "so_strong_filter_analyze_tool.setModelFilename(\"gait10dof18musc_simbody.osim\")\n",
+ "so_strong_filter_analyze_tool.setCoordinatesFileName(\"subject01_walk_IK.mot\")\n",
+ "so_strong_filter_analyze_tool.setExternalLoadsFileName(\"subject01_walk_grf.xml\")\n",
+ "\n",
+ "# Change low pass frequency to filter the model.\n",
+ "so_strong_filter_analyze_tool.setLowpassCutoffFrequency(6)\n",
+ "\n",
+ "# Add analysis.\n",
+ "so_strong_filter_analyze_tool.updAnalysisSet().cloneAndAppend(so)\n",
+ "\n",
+ "# Configure analyze tool.\n",
+ "so_strong_filter_analyze_tool.setReplaceForceSet(False)\n",
+ "so_strong_filter_analyze_tool.setStartTime(start_time)\n",
+ "so_strong_filter_analyze_tool.setFinalTime(end_time)\n",
+ "\n",
+ "# Directory where results are stored.\n",
+ "so_strong_filter_analyze_tool.setResultsDir(\"SO_Strong_Filter_Results\")\n",
+ "\n",
+ "# Print configuration of analyze tool to a xml file.\n",
+ "so_strong_filter_analyze_tool.printToXML(\"SO_Strong_Filter_AnalyzeTool_setup.xml\")\n",
+ "\n",
+ "# Load configuration and run the analyses. \n",
+ "so_strong_filter_analyze_tool = osim.AnalyzeTool(\"SO_Strong_Filter_AnalyzeTool_setup.xml\", True)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ZU6sest-lTUH"
+ },
+ "source": [
+ "**Perform Static Optimization**\n",
+ "\n",
+ "We can perform Static Optimization on the model with the filtered motion."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "DMyIhe-0XQml"
+ },
+ "outputs": [],
+ "source": [
+ "# Run static optimization.\n",
+ "so_strong_filter_analyze_tool.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "xZBT-ScKlesI"
+ },
+ "source": [
+ "### 6.4.2. Smoothing the motion using RRA"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ikki8Olol3J8"
+ },
+ "source": [
+ "**Download the files**\n",
+ "\n",
+ "First, let's download the RRA motion file (`subject_adjusted_Kinematics_q.sto`). The file is stored in a Google Drive folder (See **Resources** in the Objectives section)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "H6eAcbj6jxkV"
+ },
+ "outputs": [],
+ "source": [
+ "!gdown \"1XpgUlSGV6T7SKRnCpcIomg5aZ4INreI2&confirm=t\" # subject_adjusted_Kinematics_q.sto"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "_xBCmYBZmK_H"
+ },
+ "source": [
+ "**Create a Static Optimization Analysis Tool**\n",
+ "\n",
+ "Let's create a Static Optimization Tool, but this time we have to use the motion file kinematics generated by RRA (`subject_adjusted_Kinematics_q.sto`). Remember we are using RRA results so the kinematics are smoother. This time, do not apply a low pass filter, and change the step interval to 10. Again, change the output folder for the file so we don't overwrite previous results."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "i___D9dylXCL"
+ },
+ "outputs": [],
+ "source": [
+ "# Define a StaticOptimization object.\n",
+ "so_rra = osim.StaticOptimization()\n",
+ "\n",
+ "# Set start and end times for the analysis.\n",
+ "start_time = 0.3\n",
+ "end_time = 1.5\n",
+ "so_rra.setStartTime(start_time)\n",
+ "so_rra.setEndTime(end_time)\n",
+ "\n",
+ "# Step interval.\n",
+ "so_rra.setStepInterval(10)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "DTyCVAUHi8L3"
+ },
+ "outputs": [],
+ "source": [
+ "# Create analyze tool for static optimization.\n",
+ "so_strong_RRA_analyze_tool = osim.AnalyzeTool()\n",
+ "so_strong_RRA_analyze_tool.setName(\"SO_Strong_RRA\")\n",
+ "\n",
+ "# Add actuators file.\n",
+ "forceSet_files = osim.ArrayStr()\n",
+ "forceSet_files.append(\"gait10dof18musc_Strong_actuators.xml\")\n",
+ "so_strong_RRA_analyze_tool.setForceSetFiles(forceSet_files)\n",
+ "\n",
+ "# Set model file, motion files and external load file names.\n",
+ "so_strong_RRA_analyze_tool.setModelFilename(\"gait10dof18musc_simbody.osim\")\n",
+ "so_strong_RRA_analyze_tool.setCoordinatesFileName(\"subject_adjusted_Kinematics_q.sto\")\n",
+ "so_strong_RRA_analyze_tool.setExternalLoadsFileName(\"subject01_walk_grf.xml\")\n",
+ "\n",
+ "# Add analysis.\n",
+ "so_strong_RRA_analyze_tool.updAnalysisSet().cloneAndAppend(so_rra)\n",
+ "\n",
+ "# Configure analyze tool.\n",
+ "so_strong_RRA_analyze_tool.setReplaceForceSet(False)\n",
+ "so_strong_RRA_analyze_tool.setStartTime(start_time)\n",
+ "so_strong_RRA_analyze_tool.setFinalTime(end_time)\n",
+ "\n",
+ "# Directory where results are stored.\n",
+ "so_strong_RRA_analyze_tool.setResultsDir(\"SO_Strong_RRA_Results\")\n",
+ "\n",
+ "# Print configuration of analyze tool to a xml file.\n",
+ "so_strong_RRA_analyze_tool.printToXML(\"SO_Strong_RRA_AnalyzeTool_setup.xml\")\n",
+ "\n",
+ "# Load configuration and run the analyses. \n",
+ "so_strong_RRA_analyze_tool = osim.AnalyzeTool(\"SO_Strong_RRA_AnalyzeTool_setup.xml\", True)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "dKbZ-zO2myqS"
+ },
+ "source": [
+ "**Perform Static Optimization**\n",
+ "\n",
+ "We can now perform Static Optimization on the model with the smoothened motion."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "J1qSYStBjn1_"
+ },
+ "outputs": [],
+ "source": [
+ "# Run static optimization.\n",
+ "so_strong_RRA_analyze_tool.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "Gd5hHheSm5zn"
+ },
+ "source": [
+ "### 6.4.3. Comparing results"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "uj4UPhhrlvOg"
+ },
+ "source": [
+ "You should now have four analysis results in separate folders\n",
+ "\n",
+ "* **1. SO_Results**: Static Optimization, no extra actuation (residuals and reserves), unfiltered IK motion.\n",
+ "* **2. SO_Strong_Results**: Static Optimization, with extra actuation, unfiltered IK motion.\n",
+ "* **3. SO_Strong_Filter_Results**: Static Optimization, with extra actuation, filtered IK motion.\n",
+ "* **4. SO_Strong_RRA_Results**: Static Optimization, with extra actuation, RRA motion."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "hOZztbjRmHJs"
+ },
+ "source": [
+ "**Plot Results**\n",
+ "\n",
+ "Generate figures that compare the gastrocnemius activations for the three different kinematics inputs (**2. unfiltered**, **3. filtered**, and **4. RRA**) where reserve and residual actuators were included (i.e., skip case 1)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "6VZffDUjmMj0"
+ },
+ "outputs": [],
+ "source": [
+ "# Get results from file.\n",
+ "table_activation_SO_Strong = osim.TimeSeriesTable(\n",
+ " \"SO_Strong_Results/SO_Strong_StaticOptimization_activation.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_SO_Strong = table_activation_SO_Strong.getIndependentColumn()\n",
+ "gastrocnemius_muscle_activation_strong = table_activation_SO_Strong.getDependentColumn(\"gastroc_r\")\n",
+ "\n",
+ "# Get results from file.\n",
+ "table_activation_SO_Strong_Filter = osim.TimeSeriesTable(\n",
+ " \"SO_Strong_Filter_Results/SO_Strong_Filter_StaticOptimization_activation.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_SO_Strong_Filter = table_activation_SO_Strong_Filter.getIndependentColumn()\n",
+ "gastrocnemius_muscle_activation_strong_filtered = table_activation_SO_Strong_Filter.getDependentColumn(\"gastroc_r\")\n",
+ "\n",
+ "# Get results from file.\n",
+ "table_activation_SO_Strong_RRA = osim.TimeSeriesTable(\n",
+ " \"SO_Strong_RRA_Results/SO_Strong_RRA_StaticOptimization_activation.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_SO_Strong_RRA = table_activation_SO_Strong_RRA.getIndependentColumn()\n",
+ "gastrocnemius_muscle_activation_strong_rra = table_activation_SO_Strong_RRA.getDependentColumn(\"gastroc_r\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "zpbV3yWj3_kH"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Gastrocnemius Activation')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(time_SO_Strong, gastrocnemius_muscle_activation_strong.to_numpy(), label='Unfiltered')\n",
+ "axs.plot(time_SO_Strong_Filter, gastrocnemius_muscle_activation_strong_filtered.to_numpy(), label='Filtered')\n",
+ "axs.plot(time_SO_Strong_RRA, gastrocnemius_muscle_activation_strong_rra.to_numpy(), label='RRA')\n",
+ "axs.set_xlabel('Time (s)')\n",
+ "axs.set_ylabel('Activation')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "xUrKLshWnzsp"
+ },
+ "source": [
+ "Plot the `Fx` residual for the three kinematics inputs (**2. unfiltered**, **3. filtered**, and **4. RRA**)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "NINOvRDwn0hD"
+ },
+ "outputs": [],
+ "source": [
+ "# Get results from file.\n",
+ "table_forces_SO_Strong = osim.TimeSeriesTable(\n",
+ " \"SO_Strong_Results/SO_Strong_StaticOptimization_force.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_SO_Strong = table_forces_SO_Strong.getIndependentColumn()\n",
+ "fx_strong = table_forces_SO_Strong.getDependentColumn(\"FX\")\n",
+ "\n",
+ "# Get results from file.\n",
+ "table_forces_SO_Strong_Filter = osim.TimeSeriesTable(\n",
+ " \"SO_Strong_Filter_Results/SO_Strong_Filter_StaticOptimization_force.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_SO_Strong_Filter = table_forces_SO_Strong_Filter.getIndependentColumn()\n",
+ "fx_strong_filtered = table_forces_SO_Strong_Filter.getDependentColumn(\"FX\")\n",
+ "\n",
+ "# Get results from file.\n",
+ "table_forces_SO_Strong_RRA = osim.TimeSeriesTable(\n",
+ " \"SO_Strong_RRA_Results/SO_Strong_RRA_StaticOptimization_force.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_SO_Strong_RRA = table_forces_SO_Strong_RRA.getIndependentColumn()\n",
+ "fx_strong_rra = table_forces_SO_Strong_RRA.getDependentColumn(\"FX\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "wJ8l3LeY4TgY"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Fx Residual Force')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(time_SO_Strong, fx_strong.to_numpy(), label='Unfiltered')\n",
+ "axs.plot(time_SO_Strong_Filter, fx_strong_filtered.to_numpy(), label='Filtered')\n",
+ "axs.plot(time_SO_Strong_RRA, fx_strong_rra.to_numpy(), label='RRA')\n",
+ "axs.set_xlabel('Time (s)')\n",
+ "axs.set_ylabel('Force (N)')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "n_EcxYFgoQeV"
+ },
+ "source": [
+ "**Questions**:"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "wy2agd2_npKU"
+ },
+ "source": [
+ "* Describe the changes in muscle activation for the three different motion inputs. "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "3R2D3eWEnjxv"
+ },
+ "source": [
+ "* Why did the residual force reduce from the Unfiltered to Filtered condition? Why did the residual force reduce further when using the model and motion from RRA?"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "Rc57Z-AdnlJZ"
+ },
+ "source": [
+ "* Which kinematic input should be used for the Static Optimization analysis? Explain your reason(s)."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "bJ7pb8YEnnJZ"
+ },
+ "source": [
+ "* Optional: Explore some of the other forces and activation results from the analysis."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "-4q6_ZTFofwj"
+ },
+ "source": [
+ "## 6.5. Study 3: Tuning the reserve and residual actuators"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "NXZyJcBtpDdU"
+ },
+ "source": [
+ "In Study 2, we added actuators to assist each coordinate of the model. However, we saw that these reserve actuators contributed a significant amount of the total joint torque that we would prefer the muscles to provide. In this study, you will reduce the strength of the reserve actuators and observe the resulting changes in reserve actuator torques and gastrocnemius muscle activation and forces. \n",
+ "\n",
+ "The current actuators file has optimal forces of $100 N$ for each force actuator (i.e., residuals $FX$ and $FY$) and optimal forces of $100 Nm$ for each torque actuator (i.e., residual $MZ$, and reserve coordinate actuators). When trying to minimize the sum of activations squared, the optimizer can use small activation values to these force and torque actuators to generate large forces or torques. For example, with an optimal torque of $100 Nm$, an activation of $0.5$ will generate a torque of $50 Nm$. If, instead, the optimal force were $1 Nm$, the optimizer must now use very high activations to produce any meaningful torques. In this latter case (optimal torque = 1), an activation of $0.5$ would only generate $0.5 Nm$, and an activation of $50$ is necessary to generate $50 Nm$ of torque. Thus, when the optimal force is very low ($~1 N$ or $1 Nm$) the optimizer can still choose to use the reserve actuators when needed, but the cost is so high relative to the muscles that the optimizer will preferentially use muscles to generate joint torques over the reserve actuators."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "n5P-y18ssZQ3"
+ },
+ "source": [
+ "**Edit Actuators File**\n",
+ "\n",
+ "Edit the actuators file and change each actuator's optimal force from 100 to 1. You can do this programatically by loading the XML file and modifying the values of every element with tag `optimal_force`. The following function does this for you and saves the modified file as `gait10dof18musc_Actuators_Normal.xml`."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "-jyIrh2IvERk"
+ },
+ "outputs": [],
+ "source": [
+ "from xml.dom import minidom\n",
+ "\n",
+ "# Parse the xml file.\n",
+ "file = minidom.parse('gait10dof18musc_Strong_actuators.xml')\n",
+ "\n",
+ "# Get all elements with tag name 'optimal_force'.\n",
+ "optimal_forces = file.getElementsByTagName(\"optimal_force\")\n",
+ "\n",
+ "# Set all optimal forces to 1.\n",
+ "for optimal_force in optimal_forces:\n",
+ " optimal_force.firstChild.nodeValue = 1\n",
+ "\n",
+ "xml_str = file.toprettyxml(indent =\"\\t\", newl='\\r') \n",
+ "\n",
+ "with open(\"gait10dof18musc_Actuators_Normal.xml\", \"w\") as f:\n",
+ " f.write(xml_str) "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "Sa8dYkuRsy5M"
+ },
+ "source": [
+ "**Create Static Optimization Analysis Tool**\n",
+ "\n",
+ "Perform a new Static Optimization Analysis, but this time use the new Additional Forces Set file (`gait10dof18musc_Actuators_Normal.xml`). Save the results in a different folder so previous results are not overwritten."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "wETSKSk9xIte"
+ },
+ "outputs": [],
+ "source": [
+ "# Create analyze tool for static optimization.\n",
+ "so_normal_RRA_analyze_tool = osim.AnalyzeTool()\n",
+ "so_normal_RRA_analyze_tool.setName(\"SO_Normal_RRA\")\n",
+ "\n",
+ "# Add actuators file.\n",
+ "forceSet_files = osim.ArrayStr()\n",
+ "forceSet_files.append(\"gait10dof18musc_Actuators_Normal.xml\")\n",
+ "so_normal_RRA_analyze_tool.setForceSetFiles(forceSet_files)\n",
+ "\n",
+ "# Set model file, motion files and external load file names.\n",
+ "so_normal_RRA_analyze_tool.setModelFilename(\"gait10dof18musc_simbody.osim\")\n",
+ "so_normal_RRA_analyze_tool.setCoordinatesFileName(\"subject_adjusted_Kinematics_q.sto\")\n",
+ "so_normal_RRA_analyze_tool.setExternalLoadsFileName(\"subject01_walk_grf.xml\")\n",
+ "\n",
+ "# Add analysis.\n",
+ "so_normal_RRA_analyze_tool.updAnalysisSet().cloneAndAppend(so_rra)\n",
+ "\n",
+ "# Configure analyze tool.\n",
+ "so_normal_RRA_analyze_tool.setReplaceForceSet(False)\n",
+ "so_normal_RRA_analyze_tool.setStartTime(start_time)\n",
+ "so_normal_RRA_analyze_tool.setFinalTime(end_time)\n",
+ "\n",
+ "# Directory where results are stored.\n",
+ "so_normal_RRA_analyze_tool.setResultsDir(\"SO_Normal_RRA_Results\")\n",
+ "\n",
+ "# Print configuration of analyze tool to a xml file.\n",
+ "so_normal_RRA_analyze_tool.printToXML(\"SO_Normal_RRA_AnalyzeTool_setup.xml\")\n",
+ "\n",
+ "# Load configuration and run the analyses. \n",
+ "so_normal_RRA_analyze_tool = osim.AnalyzeTool(\"SO_Normal_RRA_AnalyzeTool_setup.xml\", True)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ViLGeIUsuLcQ"
+ },
+ "source": [
+ "**Perform Static Optimization**\n",
+ "\n",
+ "We can now perform Static Optimization with the residual and reserve actuators each with an optimal force of 1."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "esvOnBh4xsGN"
+ },
+ "outputs": [],
+ "source": [
+ "# Run static optimization.\n",
+ "so_normal_RRA_analyze_tool.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "xm4GhhLVuGos"
+ },
+ "source": [
+ "**Plot Results**\n",
+ "\n",
+ "Once the analysis has finished, plot the gastrocnemius activation when using the strong actuators (optimal force of 100) vs the normal actuators (optimal force of 1)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "1J4KRZnux6Xp"
+ },
+ "outputs": [],
+ "source": [
+ "# Get results from file.\n",
+ "table_activation_SO_Strong_RRA = osim.TimeSeriesTable(\n",
+ " \"SO_Strong_RRA_Results/SO_Strong_RRA_StaticOptimization_activation.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_SO_Strong_RRA = table_activation_SO_Strong_RRA.getIndependentColumn()\n",
+ "gastrocnemius_muscle_activation_strong_rra = table_activation_SO_Strong_RRA.getDependentColumn(\"gastroc_r\")\n",
+ "\n",
+ "# Get results from file.\n",
+ "table_activation_SO_Normal_RRA = osim.TimeSeriesTable(\n",
+ " \"SO_Normal_RRA_Results/SO_Normal_RRA_StaticOptimization_activation.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_SO_Normal_RRA = table_activation_SO_Normal_RRA.getIndependentColumn()\n",
+ "gastrocnemius_muscle_activation_normal_rra = table_activation_SO_Normal_RRA.getDependentColumn(\"gastroc_r\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "DTDNDHKwEuoD"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Gastrocnemius Activation')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(time_SO_Normal_RRA, gastrocnemius_muscle_activation_normal_rra.to_numpy(), label='Normal')\n",
+ "axs.plot(time_SO_Strong_RRA, gastrocnemius_muscle_activation_strong_rra.to_numpy(), label='Strong')\n",
+ "axs.set_xlabel('Time (s)')\n",
+ "axs.set_ylabel('Activation')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "wsqvkJZtySfS"
+ },
+ "source": [
+ "Plot and compare the lumbar actuator moment."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "OXnYt2D0yTLh"
+ },
+ "outputs": [],
+ "source": [
+ "# Get results from file.\n",
+ "table_forces_SO_Strong_RRA = osim.TimeSeriesTable(\n",
+ " \"SO_Strong_RRA_Results/SO_Strong_RRA_StaticOptimization_force.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_SO_Strong_RRA = table_forces_SO_Strong_RRA.getIndependentColumn()\n",
+ "lumbar_actuator_moment_strong_rra = table_forces_SO_Strong_RRA.getDependentColumn(\"lumbar_extension_reserve\")\n",
+ "\n",
+ "# Get results from file.\n",
+ "table_forces_SO_Normal_RRA = osim.TimeSeriesTable(\n",
+ " \"SO_Normal_RRA_Results/SO_Normal_RRA_StaticOptimization_force.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_SO_Normal_RRA = table_forces_SO_Normal_RRA.getIndependentColumn()\n",
+ "lumbar_actuator_moment_normal_rra = table_forces_SO_Normal_RRA.getDependentColumn(\"lumbar_extension_reserve\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "h4vIMTvxHTw7"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Lumbar Actuator Moment')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(time_SO_Normal_RRA, lumbar_actuator_moment_normal_rra.to_numpy(), label='Normal')\n",
+ "axs.plot(time_SO_Strong_RRA, lumbar_actuator_moment_strong_rra.to_numpy(), label='Strong')\n",
+ "axs.set_xlabel('Time')\n",
+ "axs.set_ylabel('Moment (Nm)')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "sBicC1_Hu90Y"
+ },
+ "source": [
+ "Plot and compare the ankle reserve actuator moment."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "r4SKFl0H3O8V"
+ },
+ "outputs": [],
+ "source": [
+ "# Get results from file.\n",
+ "table_forces_SO_Strong_RRA = osim.TimeSeriesTable(\n",
+ " \"SO_Strong_RRA_Results/SO_Strong_RRA_StaticOptimization_force.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_SO_Strong_RRA = table_forces_SO_Strong_RRA.getIndependentColumn()\n",
+ "ankle_r_actuator_moment_strong_rra = table_forces_SO_Strong_RRA.getDependentColumn(\"ankle_angle_r_reserve\")\n",
+ "\n",
+ "# Get results from file.\n",
+ "table_forces_SO_Normal_RRA = osim.TimeSeriesTable(\n",
+ " \"SO_Normal_RRA_Results/SO_Normal_RRA_StaticOptimization_force.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_SO_Normal_RRA = table_forces_SO_Normal_RRA.getIndependentColumn()\n",
+ "ankle_r_actuator_moment_normal_rra = table_forces_SO_Normal_RRA.getDependentColumn(\"ankle_angle_r_reserve\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "L5wO-niVHnQL"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Ankle Actuator Moment')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(time_SO_Normal_RRA, ankle_r_actuator_moment_normal_rra.to_numpy(), label='Normal')\n",
+ "axs.plot(time_SO_Strong_RRA, ankle_r_actuator_moment_strong_rra.to_numpy(), label='Strong')\n",
+ "axs.set_xlabel('Time')\n",
+ "axs.set_ylabel('Moment (Nm)')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "kIg-uimyvGb6"
+ },
+ "source": [
+ "Finally, plot and compare the `Fx` residual force when using the strong actuators (optimal force at 100) and normal actuators (optimal force at 1)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "TrSzwaOL3nJN"
+ },
+ "outputs": [],
+ "source": [
+ "# Get results from file.\n",
+ "table_forces_SO_Strong_RRA = osim.TimeSeriesTable(\n",
+ " \"SO_Strong_RRA_Results/SO_Strong_RRA_StaticOptimization_force.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_SO_Strong_RRA = table_forces_SO_Strong_RRA.getIndependentColumn()\n",
+ "fx_strong_rra = table_forces_SO_Strong_RRA.getDependentColumn(\"FX\")\n",
+ "\n",
+ "# Get results from file.\n",
+ "table_forces_SO_Normal_RRA = osim.TimeSeriesTable(\n",
+ " \"SO_Normal_RRA_Results/SO_Normal_RRA_StaticOptimization_force.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_SO_Normal_RRA = table_forces_SO_Normal_RRA.getIndependentColumn()\n",
+ "fx_normal_rra = table_forces_SO_Normal_RRA.getDependentColumn(\"FX\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "69CuU10KHxEy"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Fx Residual Force')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(time_SO_Normal_RRA, fx_normal_rra.to_numpy(), label='Normal')\n",
+ "axs.plot(time_SO_Strong_RRA, fx_strong_rra.to_numpy(), label='Strong')\n",
+ "axs.set_xlabel('Time')\n",
+ "axs.set_ylabel('Force (N)')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "vDOFJWSu33fZ"
+ },
+ "source": [
+ "**Questions**"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "jTTT7T3Qn5ib"
+ },
+ "source": [
+ "* How does the gastrocnemius muscle force change between the analysis using strong actuators (optimal force at 100) and the normal (optimal force at 1) actuators? What about the moment generated by the ankle reserve actuators? If there are differences, explain why."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "H5SWd_aqn7SP"
+ },
+ "source": [
+ "* How does the lumbar actuator reserve moment change between using the strong vs. normal optimal force? Why might this be the case? (Hint: observe whether or not there are muscles that control the lumbar extension degree of freedom.)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "UuHlogCyn8t0"
+ },
+ "source": [
+ "* What is the peak `Fx` residual force? Why does the value stay the same between the strong and normal actuator case? (Hint: refer to the section earlier in the tutorial where we discuss why we need residual forces and moments. Are there other actuators in the model that could generate these forces?)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "Zw-iFZjs4N3E"
+ },
+ "source": [
+ "## 6.6. Study 4: Static Optimization with a passive element \n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "dFVokuxe4RG1"
+ },
+ "source": [
+ "In this Study, you will add an ankle spring to the model and observe the effect on gastrocnemius activation."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "Iqz8EkHQvZzq"
+ },
+ "source": [
+ "**Add a Spring to the Model**\n",
+ "\n",
+ "The first step is to add a coordinate spring to the model. The following cell adds the spring for you. A new model named `gait10dof18musc_spring.osim` will be generated. Explore the different properties of the spring (e.g., stiffness, limits, damping, etc.)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "DuCHCy594v54"
+ },
+ "outputs": [],
+ "source": [
+ "# Get a handle to the current model and create a new copy \n",
+ "ankleSpringModel = osim.Model('gait10dof18musc_simbody.osim')\n",
+ "ankleSpringModel.setName(ankleSpringModel.getName()+'_ankle_spring')\n",
+ "\n",
+ "# Create the spring we'll add to the model (a CoordinateLimitForce in OpenSim)\n",
+ "ankleSpring = osim.CoordinateLimitForce()\n",
+ "\n",
+ "# Set the coordinate for the spring\n",
+ "ankleSpring.set_coordinate('ankle_angle_r')\n",
+ "ankleSpring.setName('AnkleLimitSpringDamper')\n",
+ "\n",
+ "# Add the spring to the model\n",
+ "ankleSpringModel.addForce(ankleSpring)\n",
+ "\n",
+ "# Set the spring's properties\n",
+ "ankleSpring.setUpperStiffness(30.0)\n",
+ "ankleSpring.setUpperLimit(5.0)\n",
+ "ankleSpring.setLowerStiffness(1.0)\n",
+ "ankleSpring.setLowerLimit(-90.0)\n",
+ "ankleSpring.setDamping(0.01)\n",
+ "ankleSpring.setTransition(2.0)\n",
+ "\n",
+ "# Save the model to file\n",
+ "fullPathName = ankleSpringModel.getInputFileName()\n",
+ "newName = fullPathName.replace('.osim', '_spring.osim')\n",
+ "ankleSpringModel.printToXML(newName)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "sjZ6ynSh5sbg"
+ },
+ "source": [
+ "**Create Static Optimization Analysis Tool**\n",
+ "\n",
+ "Now that you have a new model with an ankle spring, you will re-run the Static Optimization analysis using the same setup from Study 3 (with normal reserve actuators). Rename the output folder to `\\SO_Normal_RRA_Spring_Results`"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "wL5Qr7NO57Jb"
+ },
+ "outputs": [],
+ "source": [
+ "# Create analyze tool for static optimization.\n",
+ "so_normal_RRA_spring_analyze_tool = osim.AnalyzeTool()\n",
+ "so_normal_RRA_spring_analyze_tool.setName(\"SO_Normal_RRA_Spring\")\n",
+ "\n",
+ "# Add actuators file.\n",
+ "forceSet_files = osim.ArrayStr()\n",
+ "forceSet_files.append(\"gait10dof18musc_Actuators_Normal.xml\")\n",
+ "so_normal_RRA_spring_analyze_tool.setForceSetFiles(forceSet_files)\n",
+ "\n",
+ "# Set model file, motion files and external load file names.\n",
+ "so_normal_RRA_spring_analyze_tool.setModelFilename(\"gait10dof18musc_simbody_spring.osim\")\n",
+ "so_normal_RRA_spring_analyze_tool.setCoordinatesFileName(\"subject_adjusted_Kinematics_q.sto\")\n",
+ "so_normal_RRA_spring_analyze_tool.setExternalLoadsFileName(\"subject01_walk_grf.xml\")\n",
+ "\n",
+ "# Add analysis.\n",
+ "so_normal_RRA_spring_analyze_tool.updAnalysisSet().cloneAndAppend(so_rra)\n",
+ "\n",
+ "# Configure analyze tool.\n",
+ "so_normal_RRA_spring_analyze_tool.setReplaceForceSet(False)\n",
+ "so_normal_RRA_spring_analyze_tool.setStartTime(start_time)\n",
+ "so_normal_RRA_spring_analyze_tool.setFinalTime(end_time)\n",
+ "\n",
+ "# Directory where results are stored.\n",
+ "so_normal_RRA_spring_analyze_tool.setResultsDir(\"SO_Normal_RRA_Spring_Results\")\n",
+ "\n",
+ "# Print configuration of analyze tool to a xml file.\n",
+ "so_normal_RRA_spring_analyze_tool.printToXML(\"SO_Normal_RRA_Spring_AnalyzeTool_setup.xml\")\n",
+ "\n",
+ "# Load configuration and run the analyses. \n",
+ "so_normal_RRA_spring_analyze_tool = osim.AnalyzeTool(\"SO_Normal_RRA_Spring_AnalyzeTool_setup.xml\", True)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "80i0nMGmwHki"
+ },
+ "source": [
+ "**Perform Static Optimization**\n",
+ "\n",
+ "We can now perform Static Optimization on the model with the ankle spring."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "r_rlitXC57Jc"
+ },
+ "outputs": [],
+ "source": [
+ "# Run static optimization.\n",
+ "so_normal_RRA_spring_analyze_tool.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "elsHoKnQ6rmg"
+ },
+ "source": [
+ "**Plot Results**\n",
+ "\n",
+ "Plot the AnkleLimitSpringDamper moment from the file `SO_Normal_RRA_Spring_Results/SO_Normal_RRA_Spring_StaticOptimization_force.sto`."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "lroKJsWX6wYp"
+ },
+ "outputs": [],
+ "source": [
+ "# Get results from file.\n",
+ "table_forces_SO_Normal_RRA_Spring = osim.TimeSeriesTable(\n",
+ " \"SO_Normal_RRA_Spring_Results/SO_Normal_RRA_Spring_StaticOptimization_force.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_SO_Strong_RRA = table_forces_SO_Normal_RRA_Spring.getIndependentColumn()\n",
+ "ankle_limit_spring_damper = table_forces_SO_Normal_RRA_Spring.getDependentColumn(\"AnkleLimitSpringDamper\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "STLaD20tH93L"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Ankle Coordinate Spring')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(time_SO_Strong_RRA, ankle_limit_spring_damper.to_numpy(), label='Ankle Spring')\n",
+ "axs.set_xlabel('Time (s)')\n",
+ "axs.set_ylabel('Ankle Limit Spring Damper')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "RqkdppgY7ygX"
+ },
+ "source": [
+ "Plot the Gastrocnemius activation from the analyzes with and without the Spring (the results should be in the folder `SO_Normal_RRA_Results` from Study 4 and the latest folder, `SO_Normal_RRA_Spring_Results`)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "PGI07Ea572rf"
+ },
+ "outputs": [],
+ "source": [
+ "# Get results from file.\n",
+ "table_activation_SO_Normal_RRA_Spring = osim.TimeSeriesTable(\n",
+ " \"SO_Normal_RRA_Spring_Results/SO_Normal_RRA_Spring_StaticOptimization_activation.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_SO_Normal_RRA_Spring = table_activation_SO_Normal_RRA_Spring.getIndependentColumn()\n",
+ "gastrocnemius_muscle_activation_normal_rra_spring = table_activation_SO_Normal_RRA_Spring.getDependentColumn(\"gastroc_r\")\n",
+ "\n",
+ "# Get results from file.\n",
+ "table_activation_SO_Normal_RRA = osim.TimeSeriesTable(\n",
+ " \"SO_Normal_RRA_Results/SO_Normal_RRA_StaticOptimization_activation.sto\")\n",
+ "\n",
+ "# Get values.\n",
+ "time_SO_Normal_RRA = table_activation_SO_Normal_RRA.getIndependentColumn()\n",
+ "gastrocnemius_muscle_activation_normal_rra = table_activation_SO_Normal_RRA.getDependentColumn(\"gastroc_r\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "eCXPMru9IKn5"
+ },
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 1, figsize=(7, 5))\n",
+ "fig.suptitle('Gastrocnemius Activation')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs.plot(time_SO_Normal_RRA, gastrocnemius_muscle_activation_normal_rra_spring.to_numpy(), label='Spring')\n",
+ "axs.plot(time_SO_Strong_RRA, gastrocnemius_muscle_activation_normal_rra.to_numpy(), label='No Spring')\n",
+ "axs.set_xlabel('Time (s)')\n",
+ "axs.set_ylabel('Activation')\n",
+ "axs.grid()\n",
+ "axs.legend()\n",
+ "\n",
+ "# Set the spacing between subplots\n",
+ "plt.subplots_adjust(wspace=0.5, hspace=0.5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "bT4OJvLz8-0J"
+ },
+ "source": [
+ "**Questions**:"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "Tvb9ALd9oJAv"
+ },
+ "source": [
+ "* Why did the gastrocnemius activation decrease when the ankle spring was added?"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "rFr_vdRjoKkw"
+ },
+ "source": [
+ "* Optional: try increasing or decreasing the spring stiffness. How does this affect the gastrocnemius activation? "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "rC_GQWCuoL8o"
+ },
+ "source": [
+ "* Optional: are any other muscles affected by adding the ankle spring?"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "i7rhPT2id6gg"
+ },
+ "source": [
+ "## 6.7. Conclusion"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "1XK9UgItWQMF"
+ },
+ "source": [
+ "In this tutorial you have learned how to perform a Static Optimization Analysis, to troubleshoot the different problems associated with it by filtering the motion, using RRA, and tuning the reserve and residual actuators. Also, you have learned to ann a passive element to your model and perform a Static Optimization analysis with it."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "lLWgd8Noun6Y"
+ },
+ "source": [
+ "## 6.8. Useful Links\n",
+ "\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "m8M3dlT5xQcD"
+ },
+ "source": [
+ "> **OpenSim Website:** https://opensim.stanford.edu/\n",
+ ">\n",
+ "> **OpenSim Python Scripting:** https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53085346/Scripting+in+Python\n",
+ ">\n",
+ "> **OpenSim API Documentation:** https://simtk.org/api_docs/opensim/api_docs/\n",
+ "> \n",
+ "> **OpenSim Creator Website:** https://opensimcreator.com/\n",
+ "> \n",
+ "> **SimTK Website:** https://simtk.org/projects/opensim\n",
+ "> \n",
+ "> **Biomechanics of Movement's Course:** https://www.youtube.com/channel/UCDNGy0KKNLQ-ztcL5h2Z6zA"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "rFR2Rf9tk_9A"
+ },
+ "source": [
+ "## 6.9 Acknowledgments\n",
+ "\n",
+ "Thanks to [OpenSimColab](https://simtk.org/projects/opencolab) project [[3]](https://doi.org/10.1080/10255842.2022.2104607) for creating the first OpenSim Conda package."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "dxMjdukAnH2N"
+ },
+ "source": [
+ "## 6.10. References\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "WX2A_iaYulV1"
+ },
+ "source": [
+ "> [1]. Delp, S. L., Anderson, F. C., Arnold, A. S., Loan, P., Habib, A., John, C. T., Guendelman, E., & Thelen, D. G. (2007). **OpenSim: open-source software to create and analyze dynamic simulations of movement.** *IEEE Transactions on Bio-Medical Engineering*, 54(11), 1940–1950. https://doi.org/10.1109/TBME.2007.901024\n",
+ "> \n",
+ "> [2] Hicks, J. L., Uchida, T. K., Seth, A., Rajagopal, A., & Delp, S. L. (2015). **Is my model good enough? Best practices for verification and validation of musculoskeletal models and simulations of movement.** *Journal of Biomechanical Engineering*, 137(2), 020905. https://doi.org/10.1115/1.4029304\n",
+ ">\n",
+ "> [3] Mokhtarzadeh, H., Jiang, F., Zhao, S., & Malekipour, F. (2022). **OpenColab project: OpenSim in Google colaboratory to explore biomechanics on the web.** *Computer Methods in Biomechanics and Biomedical Engineering*, 1–9. https://doi.org/10.1080/10255842.2022.2104607"
+ ]
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "opensim",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.11.10"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}
diff --git a/Bindings/Python/tutorials/Tutorial 7 - Introduction to OpenSim Moco.ipynb b/Bindings/Python/tutorials/Tutorial 7 - Introduction to OpenSim Moco.ipynb
new file mode 100644
index 0000000000..984c43bc9e
--- /dev/null
+++ b/Bindings/Python/tutorials/Tutorial 7 - Introduction to OpenSim Moco.ipynb
@@ -0,0 +1,471 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "
\n",
+ ""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "YS-0eq5Y6BjU"
+ },
+ "source": [
+ "# 7. Introduction to OpenSim Moco"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ZZClpIjbitD4"
+ },
+ "source": [
+ "\n",
+ "## 7.1. Objectives"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "AKANMMa6iycq"
+ },
+ "source": [
+ "**Introduction**\n",
+ "\n",
+ "[OpenSim Moco](https://opensim-org.github.io/opensim-moco-site/) is a software package for creating musculoskeletal simulations using trajectory optimization [[1]](https://doi.org/10.1371/journal.pcbi.1008493). Users define problems by providing an OpenSim model, cost function terms, and additional problem constraints via an easy-to-use scripting interface. Moco rapidly solves trajectory optimization problems via the state-of-the-art direct collocation method.\n",
+ "\n",
+ "**Purpose**\n",
+ "\n",
+ "The purpose of this tutorial is to demonstrate how to use Moco to build, solve, and analyze a simple trajectory optimization problem using the [OpenSim conda package](https://anaconda.org/opensim-org/opensim) and [Jupyter notebooks](https://jupyter.org/). In this tutorial you will:\n",
+ "\n",
+ "* Set up a new conda environment and install OpenSim with Moco.\n",
+ "* Learn the basics of Moco's `MocoStudy` interface for defining optimal control problems.\n",
+ "* Solve Moco's simplest example, the \"sliding mass\" problem.\n",
+ "* Plot the results using `matplotlib`."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "**Sliding Mass Problem**\n",
+ "\n",
+ "You will use Moco to find the optimal trajectory of a point mass starting at rest, translating one meter, and ending at rest, in minimum time.\n",
+ "\n",
+ "\n",
+ ""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "**Local Installation**\n",
+ "\n",
+ "You may also run this notebook using a locally installed OpenSim `conda` package. Visit [the OpenSim python scripting Confluence page](https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53085346/Scripting+in+Python) for more information on how to install OpenSim in a local Python environment. You will also need to download the resources from Google Drive to the same directory as this notebook. Then, you may skip to Section 7.3 below."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "kPnGlZIT8oiM"
+ },
+ "source": [
+ "## 7.2. Install `conda` and OpenSim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "3kxYrs4Hi6Nl"
+ },
+ "source": [
+ "In the following cell, you will use [condacolab](https://github.com/conda-incubator/condacolab) to install [Miniconda](https://docs.conda.io/en/latest/miniconda.html). If you want to install a different conda distribution (e.g., Anaconda, Mambaforge) check [condacolab's documentation](https://github.com/conda-incubator/condacolab#usage)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "5-sX9L3f6Asq",
+ "outputId": "07c714c8-7744-4bf4-fa0f-f1c66d2fcec9"
+ },
+ "outputs": [],
+ "source": [
+ "!pip install -q condacolab\n",
+ "import condacolab\n",
+ "condacolab.install()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "LdmpfqC8Dt0x"
+ },
+ "source": [
+ "Don't worry if after executing the previous cell you get an error saying that your session has failed. This happens because `condacolab` needs to restart the session for the changes to take effect. Therefore, you have to execute the previous cell before executing any other cell.\n",
+ "\n",
+ "Now, execute the following cell to install the OpenSim `conda` package."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "H9WE2h3fD61J",
+ "outputId": "2795df96-b021-40eb-ba47-39a105cc2ac6"
+ },
+ "outputs": [],
+ "source": [
+ "!conda install opensim-org::opensim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## 7.3. Import the OpenSim module"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "BV3ofVUoEkEi"
+ },
+ "source": [
+ "The following cell imports the OpenSim module and, if successful, shows the current version and build date."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import opensim as osim\n",
+ "osim.GetVersionAndDate()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## 7.4. Create the sliding mass model\n",
+ "\n",
+ "First, let's create an OpenSim `Model` representing a \"sliding mass\": a point mass model with a 1-DOF `SliderJoint` actuated by a `CoordinateActuator`. Moco will use this model to enforce the dynamics defect constraints in the direct collocation problem we will solve below."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "uCT1o9zzF-Nn"
+ },
+ "outputs": [],
+ "source": [
+ "model = osim.Model()\n",
+ "model.setName('sliding_mass')\n",
+ "model.set_gravity(osim.Vec3(0, 0, 0))\n",
+ "body = osim.Body('body', 2.0, osim.Vec3(0), osim.Inertia(0))\n",
+ "model.addComponent(body)\n",
+ "\n",
+ "# Allows translation along x.\n",
+ "joint = osim.SliderJoint('slider', model.getGround(), body)\n",
+ "coord = joint.updCoordinate()\n",
+ "coord.setName('position')\n",
+ "model.addComponent(joint)\n",
+ "\n",
+ "actu = osim.CoordinateActuator()\n",
+ "actu.setCoordinate(coord)\n",
+ "actu.setName('actuator')\n",
+ "actu.setOptimalForce(1)\n",
+ "model.addComponent(actu)\n",
+ "\n",
+ "body.attachGeometry(osim.Sphere(0.05))\n",
+ "\n",
+ "model.finalizeConnections()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## 7.5. Create a `MocoStudy`\n",
+ "\n",
+ "`MocoStudy` is the most flexible interface for defining optimal control problems in Moco. It encapsulates both a `MocoProblem`, the optimal control problem definition, and a `MocoSolver`, the module which converts the optimal control problem to a nonlinear program using direct collocation.\n",
+ "\n",
+ "Run the following code cell to create a new `MocoStudy`, access the underlying `MocoProblem`, and assign the problem the `Model` we created above."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Create MocoStudy.\n",
+ "# ================\n",
+ "study = osim.MocoStudy()\n",
+ "study.setName('sliding_mass')\n",
+ "\n",
+ "# Define the optimal control problem.\n",
+ "# ===================================\n",
+ "problem = study.updProblem()\n",
+ "\n",
+ "# Model (dynamics).\n",
+ "# -----------------\n",
+ "problem.setModel(model)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## 7.6. Define the state bounds and objective function\n",
+ "\n",
+ "The sliding mass problem is a boundary value problem (BVP), so we need to set some bounds for the state variables, e.g., the mass position and speed. Run the following cell to set the initial position to 0, the final position to 1, and the initial and final speeds to zero. \n",
+ "\n",
+ "This cell also configures a minimum time objective function using `MocoFinalTimeGoal`. Since we are optimizing time, the final time bounds are set to the interval `[0, 5]` seconds."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Bounds.\n",
+ "# -------\n",
+ "# Initial time must be 0, final time can be within [0, 5].\n",
+ "problem.setTimeBounds(osim.MocoInitialBounds(0.), osim.MocoFinalBounds(0., 5.))\n",
+ "\n",
+ "# Position must be within [-5, 5] throughout the motion.\n",
+ "# Initial position must be 0, final position must be 1.\n",
+ "problem.setStateInfo('/slider/position/value', osim.MocoBounds(-5, 5),\n",
+ " osim.MocoInitialBounds(0), osim.MocoFinalBounds(1))\n",
+ "# Speed must be within [-50, 50] throughout the motion.\n",
+ "# Initial and final speed must be 0. Use compact syntax.\n",
+ "problem.setStateInfo('/slider/position/speed', [-50, 50], [0], [0])\n",
+ "\n",
+ "# Applied force must be between -50 and 50.\n",
+ "problem.setControlInfo('/actuator', osim.MocoBounds(-50, 50))\n",
+ "\n",
+ "# Cost.\n",
+ "# -----\n",
+ "problem.addGoal(osim.MocoFinalTimeGoal())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## 7.7. Solve the direct collocation problem\n",
+ "\n",
+ "Next, we will use `MocoCasADiSolver` to transcribe our optimal control problem to a nonlinear program (NLP) using direct collocation. This `MocoSolver` uses CasADi [[2]](https://doi.org/10.1007/s12532-018-0139-4), an open-source software framework for numerical optimization. Internally, Moco uses CasADi to convert your `MocoProblem` to a direct collocation problem written using CasADi's symbolic and numerical types.\n",
+ "\n",
+ "Run the following cell to intialize the `MocoCasADiSolver`, solve the the optimal control problem, and write the solution to a file. Note that if you want to re-run this cell, you will need to reset the Jupyter notebook to clear workspace variables since `study.initCasADiSolver()` cannot be called after a `MocoSolver` has already been initialized."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Configure the solver.\n",
+ "# =====================\n",
+ "solver = study.initCasADiSolver()\n",
+ "solver.set_num_mesh_intervals(100)\n",
+ "\n",
+ "# Now that we've finished setting up the study, print it to a file.\n",
+ "study.printToXML('sliding_mass.omoco')\n",
+ "\n",
+ "# Solve the problem.\n",
+ "# ==================\n",
+ "solution = study.solve()\n",
+ "\n",
+ "solution.write('sliding_mass_solution.sto')"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "bMYcGGuaetwS"
+ },
+ "source": [
+ "You should now have `sliding_mass.omoco` and `sliding_mass_solution.sto` in your files."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## 7.8. Plot the solution\n",
+ "\n",
+ "Finally, let's plot the solution. After solving the problem above, `MocoStudy` returned a `MocoSolution` containing the state and control trajectories which we can access directly in Python using `getStateMat()` and `getControlMat()`, respectively."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import matplotlib.pyplot as plt\n",
+ "\n",
+ "time = solution.getTimeMat()\n",
+ "position = solution.getStateMat('/slider/position/value')\n",
+ "speed = solution.getStateMat('/slider/position/speed')\n",
+ "actuator = solution.getControlMat('/actuator')\n",
+ "\n",
+ "# Create six subplots, with 2 rows and 3 columns.\n",
+ "fig, axs = plt.subplots(1, 3, figsize=(12, 5))\n",
+ "fig.suptitle('Sliding Mass Solution')\n",
+ "\n",
+ "# Plot the knee angles on the first subplot.\n",
+ "axs[0].plot(time, position, label='position', lw=4)\n",
+ "axs[0].set_ylabel('position (m)')\n",
+ "axs[0].set_xlabel('time (s)')\n",
+ "\n",
+ "axs[1].plot(time, speed, label='speed', lw=4)\n",
+ "axs[1].set_ylabel('speed (m/s)')\n",
+ "axs[1].set_xlabel('time (s)')\n",
+ "\n",
+ "axs[2].plot(time, actuator, label='actuator', lw=4)\n",
+ "axs[2].set_ylabel('actuator force (N)')\n",
+ "axs[2].set_xlabel('time (s)')\n",
+ "\n",
+ "for ax in axs:\n",
+ " ax.set_xlim(0, time[-1])\n",
+ " ax.grid()\n",
+ "\n",
+ "plt.tight_layout()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "**Questions**\n",
+ "\n",
+ "* Describe the state and control trajectories returned after solving the sliding mass problem. Given the optimal control problem defined above, does this solution make sense to you? Explain. "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "J5mhS9zNX9ff"
+ },
+ "source": [
+ "## 7.9. Conclusion"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "_M04jPJLuiUz"
+ },
+ "source": [
+ "In this tutorial you used [condacolab](https://github.com/conda-incubator/condacolab) to install [Miniconda](https://docs.conda.io/en/latest/miniconda.html) in [Google Colab](https://colab.research.google.com/?hl=en). Then, you installed Conda [OpenSim](https://opensim.stanford.edu/) with Moco into the Miniconda environment. You used the OpenSim API to build a \"sliding mass\" model, and then used Moco to define an optimal control problem using the `MocoStudy` interface. Finally, you plotted the results using `matplotlib`."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "lLWgd8Noun6Y"
+ },
+ "source": [
+ "## 7.10. Useful Links"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "m8M3dlT5xQcD"
+ },
+ "source": [
+ "> **OpenSim Website:** https://opensim.stanford.edu/\n",
+ ">\n",
+ "> **OpenSim Moco Website:** https://opensim-org.github.io/opensim-moco-site/\n",
+ ">\n",
+ "> **OpenSim Python Scripting:** https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53085346/Scripting+in+Python\n",
+ ">\n",
+ "> **OpenSim API Documentation:** https://simtk.org/api_docs/opensim/api_docs/\n",
+ ">\n",
+ "> **OpenSim Creator Website:** https://opensimcreator.com/\n",
+ ">\n",
+ "> **SimTK Website:** https://simtk.org/projects/opensim\n",
+ ">\n",
+ "> **Biomechanics of Movement Course Videos:** https://www.youtube.com/channel/UCDNGy0KKNLQ-ztcL5h2Z6zA"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "rFR2Rf9tk_9A"
+ },
+ "source": [
+ "## 7.11. Acknowledgments\n",
+ "\n",
+ "Thanks to [OpenSimColab](https://simtk.org/projects/opencolab) project [[3]](https://doi.org/10.1080/10255842.2022.2104607) for creating the first OpenSim Conda package."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "dxMjdukAnH2N"
+ },
+ "source": [
+ "## 7.12. References"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "WX2A_iaYulV1"
+ },
+ "source": [
+ "> [1] Dembia CL, Bianco NA, Falisse A, Hicks JL, Delp SL (2020) **OpenSim Moco: Musculoskeletal optimal control.** *PLOS Computational Biology* 16(12): e1008493. https://doi.org/10.1371/journal.pcbi.1008493\n",
+ ">\n",
+ "> [2] Andersson JAE, Gillis J, Horn G, Rawlings JB, Diehl M (2019) **CasADi – A software framework for nonlinear optimization\n",
+ "and optimal control.** *Mathematical Programming Computation* 11(1): 1-36. https://doi.org/10.1007/s12532-018-0139-4\n",
+ ">\n",
+ "> [3] Mokhtarzadeh, H., Jiang, F., Zhao, S., & Malekipour, F. (2022). **OpenColab project: OpenSim in Google colaboratory to explore biomechanics on the web.** *Computer Methods in Biomechanics and Biomedical Engineering*, 1–9. https://doi.org/10.1080/10255842.2022.2104607"
+ ]
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "opensim",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.11.10"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}
diff --git a/Bindings/Python/tutorials/Tutorial 8 - Creating Muscle-driven Simulations with OpenSim Moco.ipynb b/Bindings/Python/tutorials/Tutorial 8 - Creating Muscle-driven Simulations with OpenSim Moco.ipynb
new file mode 100644
index 0000000000..ade840a55a
--- /dev/null
+++ b/Bindings/Python/tutorials/Tutorial 8 - Creating Muscle-driven Simulations with OpenSim Moco.ipynb
@@ -0,0 +1,1003 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "view-in-github"
+ },
+ "source": [
+ "\n",
+ "
\n",
+ ""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "YS-0eq5Y6BjU"
+ },
+ "source": [
+ "# 8. Creating muscle-driven simulations with OpenSim Moco"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ZZClpIjbitD4"
+ },
+ "source": [
+ "\n",
+ "## 8.1. Objectives"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "AKANMMa6iycq"
+ },
+ "source": [
+ "**Introduction**\n",
+ "\n",
+ "[OpenSim Moco](https://opensim-org.github.io/opensim-moco-site/) is a software package for creating musculoskeletal simulations using trajectory optimization [[1]](https://doi.org/10.1371/journal.pcbi.1008493). Users define problems by providing an OpenSim model, cost function terms, and additional problem constraints via an easy-to-use scripting interface. Moco rapidly solves trajectory optimization problems via the state-of-the-art direct collocation method.\n",
+ "\n",
+ "**Purpose**\n",
+ "\n",
+ "The purpose of this tutorial is to showcase Moco's advanced simulation capabilities using the [OpenSim conda package](https://anaconda.org/opensim-org/opensim) and [Jupyter notebooks](https://jupyter.org/). In this tutorial you will:\n",
+ "\n",
+ "* Set up a new conda environment and install OpenSim with Moco.\n",
+ "* Learn how to replace muscle geometry paths with smooth function-based paths better suited for optimization.\n",
+ "* Pose and solve a muscle-driven optimization problem for simulating a squat-to-stand motion.\n",
+ "* Design a passive assistive device at the knee using parameter optimization.\n",
+ "* Investigate how neural control limitations affect the squat-to-stand motion using muscle synergies.\n",
+ "\n",
+ "**Resources**\n",
+ "\n",
+ "All of the files necessary to complete this tutorial are available in the following Google Drive folder: https://drive.google.com/drive/folders/1eGe2UxcsYmT3OXQN3AdpgnrJy803sdci?usp=sharing\n",
+ "\n",
+ "While you complete the tutorial, you will find cells that automatically download the required files.\n",
+ "\n",
+ "To obtain a link to one of the files in Google Drive, right-click over it and click on **Get Link**."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "kPnGlZIT8oiM"
+ },
+ "source": [
+ "## 8.2. Set up conda environment and download resources"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "3kxYrs4Hi6Nl"
+ },
+ "source": [
+ "In the following cell, you will use [condacolab](https://github.com/conda-incubator/condacolab) to install [Miniconda](https://docs.conda.io/en/latest/miniconda.html). If you want to install a different conda distribution (e.g., Anaconda, Mambaforge) check [condacolab's documentation](https://github.com/conda-incubator/condacolab#usage)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "5-sX9L3f6Asq",
+ "outputId": "07c714c8-7744-4bf4-fa0f-f1c66d2fcec9"
+ },
+ "outputs": [],
+ "source": [
+ "!pip install -q condacolab\n",
+ "import condacolab\n",
+ "condacolab.install()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "LdmpfqC8Dt0x"
+ },
+ "source": [
+ "Don't worry if after executing the previous cell you get an error saying that your session has failed. The reason for this is that condacolab needs to restart the session for the changes to take effect. Because of this, you have to execute the previous cell first, before executing any other cell.\n",
+ "\n",
+ "Now, execute the following cell to install the OpenSim conda package."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "H9WE2h3fD61J",
+ "outputId": "2795df96-b021-40eb-ba47-39a105cc2ac6"
+ },
+ "outputs": [],
+ "source": [
+ "!conda install opensim-org::opensim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Finally, execute the following cell to create a button that will download the \"squat-to-stand\" OpenSim [`Model`](https://simtk.org/api_docs/opensim/api_docs451/classOpenSim_1_1Model.html). This is a single leg with 3 DOF and 9 muscles, and the foot is welded to the ground. The model file and accompanying geometry files will be extracted to the working directory.\n",
+ "\n",
+ ""
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# @title Download the \"squat-to-stand\" model and geometry files { display-mode: \"form\" }\n",
+ "# @markdown After executing this cell, a download button will appear. Click the button to download and extract the zip file containing the \"squat-to-stand\" model and geometry files.\n",
+ "\n",
+ "import ipywidgets as widgets\n",
+ "from IPython.display import display\n",
+ "import requests\n",
+ "import zipfile\n",
+ "import io\n",
+ "\n",
+ "# Define the function to download and extract the zip file\n",
+ "def download_and_extract_zip(url):\n",
+ " try:\n",
+ " # Get the content of the URL\n",
+ " response = requests.get(url)\n",
+ " response.raise_for_status()\n",
+ "\n",
+ " # Create a ZipFile object from the downloaded content\n",
+ " with zipfile.ZipFile(io.BytesIO(response.content)) as zip_ref:\n",
+ " # Extract all the contents into the working directory\n",
+ " zip_ref.extractall()\n",
+ " print(\"Extraction complete!\")\n",
+ " except requests.exceptions.RequestException as e:\n",
+ " print(f\"Failed to download the file: {e}\")\n",
+ " except zipfile.BadZipFile:\n",
+ " print(\"The file is not a valid zip file.\")\n",
+ " except Exception as e:\n",
+ " print(f\"An error occurred: {e}\")\n",
+ "\n",
+ "# Create a button to trigger the download and extraction\n",
+ "download_button = widgets.Button(\n",
+ " description='Download Model',\n",
+ " disabled=False,\n",
+ " button_style='',\n",
+ " tooltip='Click to download the squat-to-stand model and geometry files',\n",
+ " icon='download'\n",
+ ")\n",
+ "\n",
+ "# Define the button click event handler\n",
+ "def on_button_click(b):\n",
+ " url = 'https://drive.google.com/uc?export=download&id=1xnrBNTqIHQVIIxQNQEbHUmVLLRduV5jd'\n",
+ " if url:\n",
+ " download_and_extract_zip(url)\n",
+ " else:\n",
+ " print(\"Please enter a valid URL.\")\n",
+ "\n",
+ "# Attach the event handler to the button\n",
+ "download_button.on_click(on_button_click)\n",
+ "\n",
+ "# Display the widgets\n",
+ "display(download_button)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## 8.3. Fit function-based paths for the squat-to-stand model \n",
+ "\n",
+ "Before we create a squat-to-stand simulation, we will replace the muscle geometry in the model with smooth polynomial functions which, being smooth and continuous everywhere, lead to better convergence in gradient-based optimization. The original model represents muscle geometry using [`GeometryPath`](https://simtk.org/api_docs/opensim/api_docs451/classOpenSim_1_1GeometryPath.html) elements. We will replace these with [`FunctionBasedPath`](https://simtk.org/api_docs/opensim/api_docs451/classOpenSim_1_1FunctionBasedPath.html) elements, which will compute muscle length, speed, and moment arms using OpenSim's [`MultivariatePolynomialFunction`](https://simtk.org/api_docs/opensim/api_docs451/classOpenSim_1_1MultivariatePolynomialFunction.html) class. The polynomials need to be multivariate since muscle paths can depend on multiple coordinates in the model (e.g., the gastrocnemius path depends on both the knee and ankle coordinates)."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "First, run the following cell to import OpenSim and set the logging file. If successful, it will print version 4.5.1 with build date in July 2024."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import os\n",
+ "import numpy as np\n",
+ "import opensim as osim\n",
+ "osim.Logger.removeFileSink()\n",
+ "osim.Logger.addFileSink('opensim.log')\n",
+ "osim.GetVersionAndDate()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Next, run the following cell to use forward integration to create a random trajectory that we can use as a reference when fitting polynomial functions to represent muscle lengths. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Load the model and initialize the multibody system\n",
+ "model = osim.Model('squatToStand_3dof9musc.osim')\n",
+ "state = model.initSystem()\n",
+ "\n",
+ "# Set an initial pose.\n",
+ "coordSet = model.updCoordinateSet()\n",
+ "coordSet.get('hip_flexion_r').setValue(state, -40 * (np.pi / 180))\n",
+ "coordSet.get('knee_angle_r').setValue(state, -45 * (np.pi / 180))\n",
+ "coordSet.get('ankle_angle_r').setValue(state, -25 * (np.pi / 180))\n",
+ "\n",
+ "# Run a 0.4 second forward simulation.\n",
+ "manager = osim.Manager(model, state)\n",
+ "manager.integrate(0.4)\n",
+ "\n",
+ "# Save the states to a file.\n",
+ "table = manager.getStatesTable()\n",
+ "sto = osim.STOFileAdapter()\n",
+ "if not os.path.exists('path_fitting'):\n",
+ " os.mkdir('path_fitting')\n",
+ "sto.write(table, os.path.join('path_fitting', 'reference_states.sto'))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "We will now use [`PolynomialPathFitter`](https://simtk.org/api_docs/opensim/api_docs451/classOpenSim_1_1PolynomialPathFitter.html), a utility class for automating the path fitting process. First, it will randomly sample coordinate values around the reference trajectory. Then, muscle lengths and moment arms will be computed from the sampled coordinate values. Coefficients for multivariate polynomial functions representing the muscle lengths are determined using a least-squares fit. Both the muscle lengths and the moment arms (via the polynomial derivatives) are included in the fitting process. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Construct a PolynomialPathFitter object.\n",
+ "fitter = osim.PolynomialPathFitter()\n",
+ "\n",
+ "# Set the model.\n",
+ "fitter.setModel(osim.ModelProcessor('squatToStand_3dof9musc.osim'))\n",
+ "\n",
+ "# Set the reference states.\n",
+ "table = osim.TimeSeriesTable(os.path.join('path_fitting', 'reference_states.sto'))\n",
+ "fitter.setCoordinateValues(osim.TableProcessor(table))\n",
+ "\n",
+ "# Configure settings.\n",
+ "fitter.setMaximumPolynomialOrder(6)\n",
+ "fitter.setNumSamplesPerFrame(10)\n",
+ "fitter.setGlobalCoordinateSamplingBounds(osim.Vec2(-30, 30))\n",
+ "fitter.setUseStepwiseRegression(True)\n",
+ "fitter.setPathLengthTolerance(1e-4)\n",
+ "fitter.setMomentArmTolerance(1e-4)\n",
+ "fitter.setOutputDirectory('path_fitting')\n",
+ "\n",
+ "# Run the path fitter.\n",
+ "fitter.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Now we'll plot the results to compare the muscle lengths computed from the fitted polynomial functions to the original muscle lengths."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# @title Plot the path fitting results { display-mode: \"form\" }\n",
+ "# @markdown Execute this cell to plot the fitted path lengths together with the original path lengths.\n",
+ "\n",
+ "from matplotlib import pyplot as plt\n",
+ "\n",
+ "# Load the original and fitted path lengths and the path length based on the\n",
+ "# randomly sampled coordinates values.\n",
+ "lengths = osim.TimeSeriesTable(\n",
+ " os.path.join('path_fitting', 'squatToStand_path_lengths.sto'))\n",
+ "lengthsFitted = osim.TimeSeriesTable(\n",
+ " os.path.join('path_fitting', 'squatToStand_path_lengths_fitted.sto'))\n",
+ "lengthsSampled = osim.TimeSeriesTable(\n",
+ " os.path.join('path_fitting', 'squatToStand_path_lengths_sampled.sto'))\n",
+ "lengthsSampledFitted = osim.TimeSeriesTable(\n",
+ " os.path.join('path_fitting', 'squatToStand_path_lengths_sampled_fitted.sto'))\n",
+ "\n",
+ "# Plot the path lengths. Blue is the original, orange is the fitted.\n",
+ "fig, axs = plt.subplots(3, 3, figsize=(8, 8))\n",
+ "for ilabel, label in enumerate(lengths.getColumnLabels()):\n",
+ " irow = ilabel // 3\n",
+ " icol = ilabel % 3\n",
+ " axs[irow, icol].scatter(\n",
+ " lengthsSampled.getIndependentColumn(),\n",
+ " lengthsSampled.getDependentColumn(label).to_numpy(),\n",
+ " alpha=0.4, color='blue', s=0.3)\n",
+ " axs[irow, icol].scatter(\n",
+ " lengthsSampledFitted.getIndependentColumn(),\n",
+ " lengthsSampledFitted.getDependentColumn(label).to_numpy(),\n",
+ " alpha=0.4, color='orange', s=0.3)\n",
+ " axs[irow, icol].plot(\n",
+ " lengths.getIndependentColumn(),\n",
+ " lengths.getDependentColumn(label).to_numpy(),\n",
+ " label='original', lw=4)\n",
+ " axs[irow, icol].plot(\n",
+ " lengthsFitted.getIndependentColumn(),\n",
+ " lengthsFitted.getDependentColumn(label).to_numpy(),\n",
+ " label='fitted', lw=3.5)\n",
+ " title = label.replace('/forceset/', '').replace('_length', '')\n",
+ " axs[irow, icol].set_title(title)\n",
+ " if not irow and not icol:\n",
+ " axs[irow, icol].legend()\n",
+ " if not irow == 2:\n",
+ " axs[irow, icol].set_xticklabels([])\n",
+ " else:\n",
+ " axs[irow, icol].set_xlabel('time (s)')\n",
+ " if not icol:\n",
+ " axs[irow, icol].set_ylabel('muscle length (m)')\n",
+ "\n",
+ "fig.tight_layout()\n",
+ "plt.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Now that we have a good fit for our function-based muscle paths, we can move on to creating a squat-to-stand simulation with Moco."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## 8.4. Muscle-driven simulation of a squat-to-stand motion\n",
+ "\n",
+ "In this section, we will use [`OpenSim Moco`](https://simtk.org/api_docs/opensim/api_docs451/mocomainpage.html) to create a predictive simulation of a motion starting from a squat and ending standing up. This is a **boundary-value problem**, since we need to impose hard constraints at the boundaries of the trajectory (i.e., the initial and final time point). The following image describes the coordinate boundary conditions for the squat and stand positions, and the coordinate value and speed bounds across the trajectory.\n",
+ "\n",
+ "\n",
+ "\n",
+ "[`MocoStudy`](https://simtk.org/api_docs/opensim/api_docs451/mocostudy.html) is the most general interface for constructing and solving trajectory optimization problems in Moco. First, we will use [`MocoProblem`](https://simtk.org/api_docs/opensim/api_docs451/classOpenSim_1_1MocoProblem.html) to convert the mathematical description of the boundary-value problem above into a form that Moco understands. Next, we will configure a `MocoSolver`, in this case [`MocoCasADiSolver`](https://simtk.org/api_docs/opensim/api_docs451/classOpenSim_1_1MocoCasADiSolver.html), to specify [the problem transcription](https://simtk.org/api_docs/opensim/api_docs451/mocotheoryguide.html#dircol) and settings for the optimization solver. Finally, we can use the `MocoStudy` to solve the problem and return a [`MocoSolution`](https://simtk.org/api_docs/opensim/api_docs451/classOpenSim_1_1MocoSolution.html), which we can use to analyze and visualize the result. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Part 1: Create a new MocoStudy.\n",
+ "study = osim.MocoStudy()\n",
+ "study.setName('squat_to_stand_prediction')\n",
+ "\n",
+ "# Part 2: Initialize the problem.\n",
+ "problem = study.updProblem()\n",
+ "\n",
+ "# Part 3: Construct a model using the function-based paths. To simplify\n",
+ "# the problem, we will ignore tendon compliance, activation dynamics,\n",
+ "# and passive fiber forces.\n",
+ "modelProcessor = osim.ModelProcessor('squatToStand_3dof9musc.osim')\n",
+ "modelProcessor.append(osim.ModOpScaleMaxIsometricForce(2.0))\n",
+ "modelProcessor.append(osim.ModOpReplaceMusclesWithDeGrooteFregly2016())\n",
+ "modelProcessor.append(osim.ModOpIgnorePassiveFiberForcesDGF())\n",
+ "modelProcessor.append(osim.ModOpIgnoreTendonCompliance())\n",
+ "modelProcessor.append(osim.ModOpIgnoreActivationDynamics())\n",
+ "modelProcessor.append(osim.ModOpScaleActiveFiberForceCurveWidthDGF(1.5))\n",
+ "modelProcessor.append(osim.ModOpReplacePathsWithFunctionBasedPaths(\n",
+ " os.path.join('path_fitting', 'squatToStand_FunctionBasedPathSet.xml')))\n",
+ "model = modelProcessor.process()\n",
+ "problem.setModel(model)\n",
+ "\n",
+ "# Part 4: Set bounds on the problem.\n",
+ "#\n",
+ "# problem.setTimeBounds(initial_bounds, final_bounds)\n",
+ "# problem.setStateInfo(path, trajectory_bounds, inital_bounds, final_bounds)\n",
+ "#\n",
+ "# All *_bounds arguments can be set to a range, [lower upper], or to a\n",
+ "# single value (equal lower and upper bounds). Empty brackets, [], indicate\n",
+ "# using default bounds (if they exist). You may set multiple state infos at\n",
+ "# once using setStateInfoPattern():\n",
+ "#\n",
+ "# problem.setStateInfoPattern(pattern, trajectory_bounds, inital_bounds, ...\n",
+ "# final_bounds)\n",
+ "#\n",
+ "# This function supports regular expressions in the 'pattern' argument;\n",
+ "# use '.*' to match any substring of the state/control path\n",
+ "# For example, the following will set all coordinate value state infos:\n",
+ "#\n",
+ "# problem.setStateInfoPattern('/path/to/states/.*/value', ...)\n",
+ "\n",
+ "# Time bounds\n",
+ "problem.setTimeBounds(0, 1)\n",
+ "\n",
+ "# Position bounds: the model should start in a squat and finish\n",
+ "# standing up.\n",
+ "problem.setStateInfo('/jointset/hip_r/hip_flexion_r/value',\n",
+ " [-2, 0.5], -2, 0)\n",
+ "problem.setStateInfo('/jointset/knee_r/knee_angle_r/value',\n",
+ " [-2, 0], -2, 0)\n",
+ "problem.setStateInfo('/jointset/ankle_r/ankle_angle_r/value',\n",
+ " [-0.75, 0.75], -0.5, 0)\n",
+ "\n",
+ "# Velocity bounds: all model coordinates should start and end at rest.\n",
+ "problem.setStateInfoPattern('/jointset/.*/speed', [], 0, 0)\n",
+ "\n",
+ "# Part 5: Add a MocoControlCost to the problem.\n",
+ "problem.addGoal(osim.MocoControlGoal('control_effort'))\n",
+ "\n",
+ "# Part 6: Configure the solver.\n",
+ "solver = study.initCasADiSolver()\n",
+ "solver.set_num_mesh_intervals(25)\n",
+ "solver.set_optim_finite_difference_scheme('forward')\n",
+ "solver.set_optim_convergence_tolerance(1e-4)\n",
+ "solver.set_optim_constraint_tolerance(1e-4)\n",
+ "\n",
+ "# Part 7: Print the study to a file.\n",
+ "if not os.path.exists('squat_to_stand'):\n",
+ " os.mkdir('squat_to_stand')\n",
+ "\n",
+ "xml_path = os.path.join('squat_to_stand', 'squat_to_stand.xml')\n",
+ "if not os.path.exists(xml_path):\n",
+ " study.printToXML(xml_path)\n",
+ "\n",
+ "# Part 8: Solve! Write the solution to file.\n",
+ "predictSolution = study.solve()\n",
+ "solutionFile = os.path.join('squat_to_stand', 'squat_to_stand_prediction_solution.sto')\n",
+ "predictSolution.write(solutionFile)\n",
+ "# study.visualize(predictSolution)\n",
+ "\n",
+ "# Part 9: Create a PDF report of the solution.\n",
+ "output = os.path.join('squat_to_stand', 'squat_to_stand_prediction_report.pdf')\n",
+ "report = osim.report.Report(model,\n",
+ " solutionFile,\n",
+ " output=output,\n",
+ " bilateral=True)\n",
+ "report.generate()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Use the following exercises to modify the example above and learn more about Moco's capabilities.\n",
+ "\n",
+ "**Exercise 1. Modify the problem to start from a standing position and end in a squat.**\n",
+ "\n",
+ "**Exercise 2. Change the cost function by adding a new [`MocoGoal`](https://simtk.org/api_docs/opensim/api_docs451/group__mocogoal.html) to the problem.**\n",
+ "\n",
+ "**Exercise 3. Advanced: create a new problem using [`MocoStateTrackingGoal`](https://simtk.org/api_docs/opensim/api_docs451/classOpenSim_1_1MocoStateTrackingGoal.html) to track a squat motion data recorded from OpenCap in Demo 1. See [`exampleMocoTrack`](https://simtk.org/api_docs/opensim/api_docs451/exampleMocoTrack_8py-example.html) for an example on how to use this `MocoGoal`.**"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## 8.5. Designing a passive knee assistive device\n",
+ "\n",
+ "Next, we'll modify the squat-to-stand optimization problem to design a passive assistive device at the knee. We will model the \n",
+ "device using an OpenSim [`SpringGeneralizedForce`](https://simtk.org/api_docs/opensim/api_docs451/classOpenSim_1_1SpringGeneralizedForce.html) which applies a knee torque based on linear spring that is a function of the knee joint angle. The spring torque is parameterized by stiffness and rest length parameters (viscosity is set to zero). Note the rest length has angular units (radians), but we use \"rest length\" instead of \"rest angle\" to stay consistent with the OpenSim API documentation.\n",
+ "\n",
+ "\n",
+ "\n",
+ "Execute the cell below to load an interactive menu for designing the assistive device. The menu provides two design models: \"Manual\" and \"Optimization\". In \"Manual\" mode, you will select a stiffness between [0, 400] N-m/rad and a rest length between [-1, 1] rad. In \"Optimization\" mode, the problem uses parameter optimization (via [`MocoParameter`](https://simtk.org/api_docs/opensim/api_docs451/classOpenSim_1_1MocoParameter.html)) to determine stiffness and rest length parameter values.\n",
+ "\n",
+ "While running the device optimizations, consider the following questions.\n",
+ "\n",
+ "**Question 1. How much can you reduce muscle effort via manual parameter design?**\n",
+ "\n",
+ "**Question 2. Do the optimized parameters make sense? Explain.**"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# @title Design a passive knee assistive device { display-mode: \"form\" }\n",
+ "# @markdown Execute the cell to load the interactive device design menu.\n",
+ "\n",
+ "import ipywidgets as widgets\n",
+ "from IPython.display import display\n",
+ "\n",
+ "def run_device_optimization_squat_to_stand(optimize, stiffness=50, rest_length=0):\n",
+ "\n",
+ " # Part 1: Load the base squat-to-stand MocoStudy.\n",
+ " study = osim.MocoStudy(os.path.join('squat_to_stand', 'squat_to_stand.xml'))\n",
+ " problem = study.updProblem()\n",
+ " solver = osim.MocoCasADiSolver.safeDownCast(study.updSolver())\n",
+ "\n",
+ " # Part 2: Recreate the model, now adding a passive assistive device at the knee\n",
+ " modelProcessor = osim.ModelProcessor('squatToStand_3dof9musc.osim')\n",
+ " modelProcessor.append(osim.ModOpScaleMaxIsometricForce(2.0))\n",
+ " modelProcessor.append(osim.ModOpReplaceMusclesWithDeGrooteFregly2016())\n",
+ " modelProcessor.append(osim.ModOpIgnorePassiveFiberForcesDGF())\n",
+ " modelProcessor.append(osim.ModOpIgnoreTendonCompliance())\n",
+ " modelProcessor.append(osim.ModOpScaleActiveFiberForceCurveWidthDGF(1.5))\n",
+ " modelProcessor.append(osim.ModOpReplacePathsWithFunctionBasedPaths(\n",
+ " os.path.join('path_fitting', 'squatToStand_FunctionBasedPathSet.xml')))\n",
+ " model = modelProcessor.process()\n",
+ "\n",
+ " # The device is a SpringGeneralizedForce acting on the knee angle.\n",
+ " device = osim.SpringGeneralizedForce('knee_angle_r')\n",
+ " device.setName('passive_knee_device')\n",
+ " device.setStiffness(stiffness)\n",
+ " device.setRestLength(rest_length)\n",
+ " device.setViscosity(0)\n",
+ " model.addForce(device)\n",
+ "\n",
+ " # Part 3: Update the problem with the new model.\n",
+ " problem.setModel(model)\n",
+ "\n",
+ " # Part 4: Add MocoParameters to the problem to optimize device stiffness and rest\n",
+ " # length.\n",
+ " if optimize:\n",
+ " stiffness = osim.MocoParameter('stiffness',\n",
+ " '/forceset/passive_knee_device', 'stiffness', osim.MocoBounds(0, 400))\n",
+ " problem.addParameter(stiffness)\n",
+ "\n",
+ " rest_length = osim.MocoParameter('rest_length',\n",
+ " '/forceset/passive_knee_device', 'rest_length', osim.MocoBounds(-1, 1))\n",
+ " problem.addParameter(rest_length)\n",
+ "\n",
+ " # Part 5: Update the solver with the new problem (i.e., new model and parameters).\n",
+ " solver.resetProblem(problem)\n",
+ " solver.set_optim_max_iterations(500)\n",
+ "\n",
+ " # Part 6: Set solver parameter optimization flag.\n",
+ " # -----------------------------------------------\n",
+ " # This flag tells MocoCasADiSolver that initSystem() calls on the model are\n",
+ " # unnecessary to optimize the parameters. Other parameters (e.g., body mass)\n",
+ " # require initSystem(), since they change the model's underlying multibody\n",
+ " # system in Simbody. Since changing parameters in SpringGeneralizedForce does\n",
+ " # not change the multibody system, we can set this flag to false to speed up\n",
+ " # the optimization.\n",
+ " solver.set_parameters_require_initsystem(False)\n",
+ "\n",
+ " # Part 7: Solve the problem.\n",
+ " deviceSolutionSealed = study.solve()\n",
+ " deviceSolution = deviceSolutionSealed.unseal()\n",
+ " if not os.path.exists('device_optimization'):\n",
+ " os.mkdir('device_optimization')\n",
+ " solutionFile = os.path.join('device_optimization',\n",
+ " 'squat_to_stand_device_optimization_solution.sto')\n",
+ " deviceSolution.write(solutionFile)\n",
+ " # study.visualize(deviceSolution)\n",
+ "\n",
+ " # Part 8: Print solution information.\n",
+ " if optimize:\n",
+ " parameters = deviceSolution.getParameters().to_numpy()\n",
+ " print(f'Optimized stiffness: {parameters[0]:.2f} Nm/rad')\n",
+ " print(f'Optimized rest length: {parameters[1]:.2f} rad')\n",
+ " else:\n",
+ " print(f'Using stiffness: {stiffness:.2f} Nm/rad')\n",
+ " print(f'Using rest length: {rest_length:.2f} rad')\n",
+ " print(f'Muscle effort: {deviceSolution.getObjective():.3f}\\n')\n",
+ "\n",
+ " # Part 9: Create a PDF report of the solution.\n",
+ " output = os.path.join('device_optimization',\n",
+ " 'squat_to_stand_device_optimization_report.pdf')\n",
+ " ref_files = []\n",
+ " ref_files.append(os.path.join('squat_to_stand',\n",
+ " 'squat_to_stand_prediction_solution.sto'))\n",
+ " report = osim.report.Report(model,\n",
+ " solutionFile,\n",
+ " output=output,\n",
+ " ref_files=ref_files,\n",
+ " bilateral=True)\n",
+ " report.generate()\n",
+ "\n",
+ "\n",
+ "def on_submit(b):\n",
+ " if mode_selector.value == 'Manual':\n",
+ " print('Testing manual design...')\n",
+ " run_device_optimization_squat_to_stand(False,\n",
+ " stiffness_slider.value, rest_length_slider.value)\n",
+ " else:\n",
+ " print('Optimizing design...')\n",
+ " run_device_optimization_squat_to_stand(True)\n",
+ "\n",
+ "# Define layout for consistent width and alignment\n",
+ "common_layout = widgets.Layout(width='400px')\n",
+ "\n",
+ "# Create mode selector dropdown with the common layout\n",
+ "mode_selector = widgets.Dropdown(\n",
+ " options=['Manual', 'Optimization'],\n",
+ " value='Manual',\n",
+ " description='Design Mode:',\n",
+ " disabled=False,\n",
+ " style = {'description_width': 'initial'},\n",
+ " layout=common_layout,\n",
+ ")\n",
+ "\n",
+ "# Define layout for right-aligning the description and common width for labels\n",
+ "description_layout = widgets.Layout(display='flex', justify_content='flex-end', width='150px')\n",
+ "\n",
+ "# Define slider layout with common width\n",
+ "slider_layout = widgets.Layout(width='250px')\n",
+ "\n",
+ "# Create sliders with the defined layout\n",
+ "stiffness_slider = widgets.FloatSlider(\n",
+ " value=0.0,\n",
+ " min=0.0,\n",
+ " max=400.0,\n",
+ " step=0.1,\n",
+ " disabled=False,\n",
+ " continuous_update=False,\n",
+ " orientation='horizontal',\n",
+ " readout=True,\n",
+ " readout_format='.1f',\n",
+ " style={'description_width': 'initial'},\n",
+ " layout=slider_layout\n",
+ ")\n",
+ "\n",
+ "rest_length_slider = widgets.FloatSlider(\n",
+ " value=0.0,\n",
+ " min=-1.0,\n",
+ " max=1.0,\n",
+ " step=0.01,\n",
+ " disabled=False,\n",
+ " continuous_update=False,\n",
+ " orientation='horizontal',\n",
+ " readout=True,\n",
+ " readout_format='.2f',\n",
+ " style={'description_width': 'initial'},\n",
+ " layout=slider_layout\n",
+ ")\n",
+ "\n",
+ "# Create label widgets for alignment\n",
+ "stiffness_label = widgets.Label(value='stiffness [N-m/rad]:', layout=description_layout)\n",
+ "rest_length_label = widgets.Label(value='rest length [rad]:', layout=description_layout)\n",
+ "\n",
+ "# Combine labels and sliders into HBox\n",
+ "stiffness_hbox = widgets.HBox([stiffness_label, stiffness_slider], layout=common_layout)\n",
+ "rest_length_hbox = widgets.HBox([rest_length_label, rest_length_slider], layout=common_layout)\n",
+ "\n",
+ "# Create submit button with common layout\n",
+ "submit_button = widgets.Button(\n",
+ " description='Submit',\n",
+ " disabled=False,\n",
+ " button_style='',\n",
+ " tooltip='Click to submit',\n",
+ " icon='check',\n",
+ " layout=common_layout\n",
+ ")\n",
+ "\n",
+ "# Mode change handler\n",
+ "def on_mode_change(change):\n",
+ " if change['new'] == 'Manual':\n",
+ " stiffness_slider.value = 200.0\n",
+ " rest_length_slider.value = 0.0\n",
+ " stiffness_slider.disabled = False\n",
+ " rest_length_slider.disabled = False\n",
+ " else:\n",
+ " stiffness_slider.value = 200.0\n",
+ " rest_length_slider.value = 0.0\n",
+ " stiffness_slider.disabled = True\n",
+ " rest_length_slider.disabled = True\n",
+ "\n",
+ "mode_selector.observe(on_mode_change, names='value')\n",
+ "\n",
+ "submit_button.on_click(on_submit)\n",
+ "\n",
+ "# Display widgets\n",
+ "display(widgets.VBox([mode_selector, stiffness_hbox, rest_length_hbox, submit_button]))\n",
+ "\n",
+ "# Initialize state based on the current mode\n",
+ "on_mode_change({'new': mode_selector.value})\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## 8.6. Modeling neural control with muscle synergies\n",
+ "\n",
+ "OpenSim now provides support for modeling muscle synergies via the new controller type [`SynergyController`](https://simtk.org/api_docs/opensim/api_docs451/classOpenSim_1_1SynergyController.html). This controller uses OpenSim [`Input`](https://simtk.org/api_docs/opensim/api_docs451/classOpenSim_1_1Input.html#a4d1e8b8a76452dc4d938742f19676fe3)s to pass in control signals from any component in the model that provides a scalar control signal via an [`Output`](https://simtk.org/api_docs/opensim/api_docs451/classOpenSim_1_1Output.html) (e.g., [`SignalGenerator`](https://simtk.org/api_docs/opensim/api_docs451/classOpenSim_1_1SignalGenerator.html)). The input control signals are multiplied by weighting vectors to generate a set of actuator controls. We refer to the input control signals as \"synergy excitations\" and the weighting vectors as \"synergy vectors\". In the following example, the synergies are used to produce muscle exctiations in the model, but `SynergyController` can be used with any OpenSim [`Actuator`](https://simtk.org/api_docs/opensim/api_docs451/classOpenSim_1_1Actuator.html), not just muscles.\n",
+ "\n",
+ "\n",
+ "\n",
+ "Execute the cell below to load an interactive menu for running synergy-driven squat-to-stand motions. The menu provides a slider to select the number of muscle synergies between 1 and 8. As you decrease the number of synergies used by the `SynergyController`, the muscle control strategies will be become increasingly coupled. How will this affect the squat-to-stand motion?\n",
+ "\n",
+ "While running the synergy-driven optimizations, consider the following additional questions.\n",
+ "\n",
+ "**Question 1. What is the fewest number of synergies where the squat-to-stand motion is still possible?**\n",
+ "\n",
+ "**Question 2. Can you incorporate a passive device from the previous section to make standing possible with reduced neural control dimensionality?**"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# @title Run a synergy-driven squat-to-stand optimization { display-mode: \"form\" }\n",
+ "# @markdown Execute the cell to load the menu for specifying the number of synergies.\n",
+ "\n",
+ "import ipywidgets as widgets\n",
+ "from IPython.display import display, Markdown\n",
+ "import numpy as np\n",
+ "\n",
+ "# Suppress scikit-learn warnings.\n",
+ "import warnings\n",
+ "from sklearn.exceptions import ConvergenceWarning\n",
+ "warnings.filterwarnings(\"ignore\", category=ConvergenceWarning)\n",
+ "\n",
+ "def printmd(string, color):\n",
+ " display(Markdown(f'{string}'))\n",
+ "\n",
+ "def run_synergy_driven_squat_to_stand(num_synergies):\n",
+ "\n",
+ " # Part 1: Load the base squat-to-stand MocoStudy.\n",
+ " study = osim.MocoStudy(os.path.join('squat_to_stand', 'squat_to_stand.xml'))\n",
+ " problem = study.updProblem()\n",
+ " solver = osim.MocoCasADiSolver.safeDownCast(study.updSolver())\n",
+ "\n",
+ " # Part 2: Recreate the model, now adding a passive assistive device at the knee\n",
+ " modelProcessor = osim.ModelProcessor('squatToStand_3dof9musc.osim')\n",
+ " modelProcessor.append(osim.ModOpScaleMaxIsometricForce(2.0))\n",
+ " modelProcessor.append(osim.ModOpReplaceMusclesWithDeGrooteFregly2016())\n",
+ " modelProcessor.append(osim.ModOpIgnorePassiveFiberForcesDGF())\n",
+ " modelProcessor.append(osim.ModOpIgnoreTendonCompliance())\n",
+ " modelProcessor.append(osim.ModOpIgnoreActivationDynamics())\n",
+ " modelProcessor.append(osim.ModOpScaleActiveFiberForceCurveWidthDGF(1.5))\n",
+ " modelProcessor.append(osim.ModOpReplacePathsWithFunctionBasedPaths(\n",
+ " os.path.join('path_fitting', 'squatToStand_FunctionBasedPathSet.xml')))\n",
+ " model = modelProcessor.process()\n",
+ " model.initSystem()\n",
+ "\n",
+ " # Part 3: Load the solution to the squat-to-stand prediction to extract the muscle\n",
+ " # controls.\n",
+ " prevSolution = osim.MocoTrajectory(\n",
+ " os.path.join('squat_to_stand', 'squat_to_stand_prediction_solution.sto'))\n",
+ " controls = prevSolution.exportToControlsTable()\n",
+ "\n",
+ " # Part 4: Use non-negative matrix factorization (NNMF) to extract a set of muscle\n",
+ " # synergies.\n",
+ " from sklearn.decomposition import NMF\n",
+ " nmf = NMF(n_components=num_synergies, init='random', random_state=0, max_iter=1000)\n",
+ "\n",
+ " A = controls.getMatrix().to_numpy()\n",
+ " W = nmf.fit_transform(A)\n",
+ " H = nmf.components_\n",
+ "\n",
+ " # Scale W and H assuming that the elements of H are all 0.5. This prevents the\n",
+ " # synergy excitations and synergy vector weights from being too small or too large.\n",
+ " scaleVec = 0.5*np.ones(H.shape[1])\n",
+ " for i in range(num_synergies):\n",
+ " scale = np.linalg.norm(scaleVec) / np.linalg.norm(H[i, :])\n",
+ " H[i, :] *= scale\n",
+ " W[:, i] /= scale\n",
+ "\n",
+ " # Part 5: Add a SynergyController for the model's right leg.\n",
+ " controller = osim.SynergyController()\n",
+ " controller.setName(\"synergy_controller\")\n",
+ " # The number of actuators connected to the controller defines the number of\n",
+ " # weights in each synergy vector expected by the controller.\n",
+ " for name in controls.getColumnLabels():\n",
+ " controller.addActuator(\n",
+ " osim.Muscle.safeDownCast(model.getComponent(name)))\n",
+ " # Adding a synergy vector increases the number of synergies in the\n",
+ " # controller by one. This means that the number of Input control\n",
+ " # signals expected by the controller is also increased by one.\n",
+ " for i in range(num_synergies):\n",
+ " synergyVector = osim.Vector(H.shape[1], 0.0)\n",
+ " for j in range(H.shape[1]):\n",
+ " synergyVector.set(j, H[i, j])\n",
+ " controller.addSynergyVector(synergyVector)\n",
+ " model.addController(controller)\n",
+ " model.finalizeConnections()\n",
+ " model.initSystem()\n",
+ "\n",
+ " # Part 6: Update the problem with the new model.\n",
+ " problem.setModel(model)\n",
+ "\n",
+ " # Part 7: Set bounds on the synergy excitations and update the weight on the\n",
+ " # synergy excitations in the control effort cost term.\n",
+ " effort = osim.MocoControlGoal.safeDownCast(problem.updGoal(\"control_effort\"))\n",
+ " # Enabling this flag means muscle excitations are ignored in the effort cost.\n",
+ " effort.setIgnoreControlledActuators(True)\n",
+ " for i in range(num_synergies):\n",
+ " name = f'/controllerset/synergy_controller/synergy_excitation_{i}'\n",
+ " problem.setInputControlInfo(name, [0, 1.5*np.max(W)])\n",
+ " effort.setWeightForControl(name, 0.1)\n",
+ "\n",
+ " # Part 8: Update the solver with the new problem.\n",
+ " solver.resetProblem(problem)\n",
+ "\n",
+ " # Part 9: Solve!\n",
+ " solutionSealed = study.solve()\n",
+ " solution = solutionSealed.unseal()\n",
+ " if solution.success():\n",
+ " printmd(f'**Success!** Problem with {num_synergies} synergies converged!',\n",
+ " 'green')\n",
+ " else:\n",
+ " printmd(f'**Failure.** Problem with {num_synergies} synergies did not converge.',\n",
+ " 'red')\n",
+ "\n",
+ " # This function computes the model control values from the\n",
+ " # SynergyController in the model and inserts them into the solution.\n",
+ " solution.generateControlsFromModelControllers(model)\n",
+ " # study.visualize(solution)\n",
+ "\n",
+ " # Part 10: Write the solution to a Storage file.\n",
+ " if not os.path.exists('muscle_synergies'):\n",
+ " os.mkdir('muscle_synergies')\n",
+ " solutionFile = os.path.join('muscle_synergies',\n",
+ " f'squat_to_stand_{num_synergies}_muscle_synergies_solution.sto')\n",
+ " solution.write(solutionFile)\n",
+ "\n",
+ " # Part 11: Create a PDF report of the solution.\n",
+ " output = os.path.join('muscle_synergies',\n",
+ " f'squat_to_stand_{num_synergies}_muscle_synergies_solution.pdf')\n",
+ " ref_files = []\n",
+ " ref_files.append(os.path.join('squat_to_stand',\n",
+ " 'squat_to_stand_prediction_solution.sto'))\n",
+ " report = osim.report.Report(model,\n",
+ " solutionFile,\n",
+ " output=output,\n",
+ " ref_files=ref_files,\n",
+ " bilateral=True)\n",
+ " report.generate()\n",
+ "\n",
+ "def on_submit(b):\n",
+ " run_synergy_driven_squat_to_stand(slider.value)\n",
+ "\n",
+ "\n",
+ "common_layout = widgets.Layout(width='300px')\n",
+ "\n",
+ "# Define layout for right-aligning the description and common width for labels\n",
+ "description_layout = widgets.Layout(display='flex', justify_content='flex-end', width='100px')\n",
+ "\n",
+ "# Define slider layout with common width\n",
+ "slider_layout = widgets.Layout(width='250px')\n",
+ "\n",
+ "slider = widgets.IntSlider(\n",
+ " value=5,\n",
+ " min=1,\n",
+ " max=8,\n",
+ " step=1,\n",
+ " disabled=False,\n",
+ " continuous_update=False,\n",
+ " orientation='horizontal',\n",
+ " readout=True,\n",
+ " # readout_format='.1f',\n",
+ " style={'description_width': 'initial'},\n",
+ " layout=slider_layout\n",
+ ")\n",
+ "\n",
+ "# Create label widgets for alignment\n",
+ "slider_label = widgets.Label(value='no. synergies:', layout=description_layout)\n",
+ "\n",
+ "# Combine labels and sliders into HBox\n",
+ "slider_hbox = widgets.HBox([slider_label, slider], layout=common_layout)\n",
+ "\n",
+ "submit_button = widgets.Button(\n",
+ " description='Submit',\n",
+ " disabled=False,\n",
+ " button_style='',\n",
+ " tooltip='Click to submit',\n",
+ " icon='check',\n",
+ " layout=common_layout\n",
+ ")\n",
+ "\n",
+ "submit_button.on_click(on_submit)\n",
+ "\n",
+ "display(widgets.VBox([slider_hbox, submit_button]))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "J5mhS9zNX9ff"
+ },
+ "source": [
+ "## 8.7. Conclusion"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "_M04jPJLuiUz"
+ },
+ "source": [
+ "In this tutorial you used [condacolab](https://github.com/conda-incubator/condacolab) to install [Miniconda](https://docs.conda.io/en/latest/miniconda.html) in [Google Colab](https://colab.research.google.com/?hl=en). Then, you installed Conda [OpenSim](https://opensim.stanford.edu/) with Moco into the Miniconda environment. You downloaded the 3 DOF, 9 muscle \"squat-to-stand\" model, fit function-based muscle paths, and used trajectory optimization to predict moving from a squat to a stand. Finally, you designed parameters for a passive assistive device at the knee and used muscle synergies to model how neural control limitations affect the squat-to-stand motion."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "lLWgd8Noun6Y"
+ },
+ "source": [
+ "## 8.8. Useful Links"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "m8M3dlT5xQcD"
+ },
+ "source": [
+ "> **OpenSim Website:** https://opensim.stanford.edu/\n",
+ ">\n",
+ "> **OpenSim Python Scripting:** https://opensimconfluence.atlassian.net/wiki/spaces/OpenSim/pages/53085346/Scripting+in+Python\n",
+ ">\n",
+ "> **OpenSim Moco Website:** https://opensim-org.github.io/opensim-moco-site/\n",
+ ">\n",
+ "> **OpenSim Moco Publication:** https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1008493\n",
+ ">\n",
+ "> **OpenSim SimTK Website:** https://simtk.org/projects/opensim"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "rFR2Rf9tk_9A"
+ },
+ "source": [
+ "## 8.9. Acknowledgments\n",
+ "\n",
+ "Thanks to [OpenSimColab](https://simtk.org/projects/opencolab) project [[2]](https://doi.org/10.1080/10255842.2022.2104607) for creating the first OpenSim Conda package."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "dxMjdukAnH2N"
+ },
+ "source": [
+ "## 8.10. References"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "WX2A_iaYulV1"
+ },
+ "source": [
+ "> [1] Dembia CL, Bianco NA, Falisse A, Hicks JL, Delp SL (2020) **OpenSim Moco: Musculoskeletal optimal control.** PLOS Computational Biology 16(12): e1008493. https://doi.org/10.1371/journal.pcbi.1008493\n",
+ ">\n",
+ "> [2] Mokhtarzadeh, H., Jiang, F., Zhao, S., & Malekipour, F. (2022). **OpenColab project: OpenSim in Google colaboratory to explore biomechanics on the web.** *Computer Methods in Biomechanics and Biomedical Engineering*, 1–9. https://doi.org/10.1080/10255842.2022.2104607"
+ ]
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "opensim",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.11.10"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}
diff --git a/Bindings/Python/tutorials/resources/Tutorial 3/double_pendulum.osim b/Bindings/Python/tutorials/resources/Tutorial 3/double_pendulum.osim
new file mode 100644
index 0000000000..c0009a0b44
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 3/double_pendulum.osim
@@ -0,0 +1,275 @@
+
+
+
+
+ 0 -9.80665 0
+
+ Ajay Seth
+
+ For testing
+
+ meters
+
+ N
+
+
+
+
+
+ 1
+
+ 0 0.2 0
+
+ 0 0 0 0 0 0
+
+
+
+
+
+
+
+
+
+
+
+
+ cylinder.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0.25 0
+
+ 0.02 0.5 0.02
+
+ 4
+
+ 1
+
+
+
+ sphere.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 0.1 0.1 0.1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ true
+
+ 4
+
+
+
+
+ 1
+
+ 0 0 0
+
+ 0 0 0 0 0 0
+
+
+
+
+
+
+
+
+
+
+
+
+ cylinder.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0.25 0
+
+ 0.02 0.5 0.02
+
+ 4
+
+ 1
+
+
+
+ sphere.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 0.1 0.1 0.1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ true
+
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ../ground
+
+
+
+ ../rod1
+
+
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0.5 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ -0.78539816
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+
+ rod1
+
+
+
+ rod2
+
+
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0.5 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ -1.04719755
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Bindings/Python/tutorials/resources/Tutorial 4/crouch_gait.mot b/Bindings/Python/tutorials/resources/Tutorial 4/crouch_gait.mot
new file mode 100644
index 0000000000..5d64a0a370
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 4/crouch_gait.mot
@@ -0,0 +1,126 @@
+crouch1_gait
+version=1
+nRows=120
+nColumns=18
+inDegrees=yes
+endheader
+time pelvis_list pelvis_rotation pelvis_tilt hip_flexion_r hip_adduction_r hip_rotation_r knee_angle_r ankle_angle_r hip_flexion_l hip_adduction_l hip_rotation_l knee_angle_l ankle_angle_l pelvis_ty lumbar_bending lumbar_rotation lumbar_extension
+0 -5.9 4.71 -4.02 53.96 11.33 15.56 -59.26 13.07 32.67 -2.43 16.66 -73.54 28.22 0.82 5.9 -4.71 -15.98
+0.008474575 -5.925 5.065 -4.16 54.03 12.045 14.97 -60.435 14.015 32.25 -2.665 16.425 -74.335 28.06 0.82 5.925 -5.065 -15.84
+0.01694915 -5.95 5.42 -4.3 54.1 12.76 14.38 -61.61 14.96 31.83 -2.9 16.19 -75.13 27.9 0.82 5.95 -5.42 -15.7
+0.025423725 -5.87 5.79 -4.38 54.22 13.15 13.975 -62.805 15.9 31.325 -3.325 16.03 -75.715 27.805 0.82 5.87 -5.79 -15.62
+0.0338983 -5.79 6.16 -4.46 54.34 13.54 13.57 -64 16.84 30.82 -3.75 15.87 -76.3 27.71 0.82 5.79 -6.16 -15.54
+0.042372875 -5.795 6.5 -4.58 54.35 13.675 13.385 -64.77 17.495 30.45 -4.3 15.96 -76.74 27.5 0.82 5.795 -6.5 -15.42
+0.05084745 -5.8 6.84 -4.7 54.36 13.81 13.2 -65.54 18.15 30.08 -4.85 16.05 -77.18 27.29 0.82 5.8 -6.84 -15.3
+0.059322025 -6 7.13 -4.935 54.28 13.77 12.955 -65.905 18.85 29.99 -5.325 16.305 -77.625 26.615 0.82 6 -7.13 -15.065
+0.0677966 -6.2 7.42 -5.17 54.2 13.73 12.71 -66.27 19.55 29.9 -5.8 16.56 -78.07 25.94 0.82 6.2 -7.42 -14.83
+0.076271175 -6.48 7.665 -5.505 54.115 13.565 12.43 -66.42 20.455 30.06 -6.11 16.835 -78.61 24.68 0.82 6.48 -7.665 -14.495
+0.08474575 -6.76 7.91 -5.84 54.03 13.4 12.15 -66.57 21.36 30.22 -6.42 17.11 -79.15 23.42 0.82 6.76 -7.91 -14.16
+0.093220325 -7.005 8.085 -6.205 53.945 13.245 12.05 -66.56 22.29 30.52 -6.69 17.315 -79.745 21.92 0.82 7.005 -8.085 -13.795
+0.1016949 -7.25 8.26 -6.57 53.86 13.09 11.95 -66.55 23.22 30.82 -6.96 17.52 -80.34 20.42 0.82 7.25 -8.26 -13.43
+0.110169475 -7.44 8.38 -6.98 53.745 13.06 12.025 -66.39 24.04 31.16 -7.35 17.61 -80.82 19.2 0.82 7.44 -8.38 -13.02
+0.11864405 -7.63 8.5 -7.39 53.63 13.03 12.1 -66.23 24.86 31.5 -7.74 17.7 -81.3 17.98 0.82 7.63 -8.5 -12.61
+0.127118625 -7.745 8.62 -7.885 53.48 13.075 12.24 -65.975 25.485 31.885 -8.275 17.665 -81.57 17.22 0.82 7.745 -8.62 -12.115
+0.1355932 -7.86 8.74 -8.38 53.33 13.12 12.38 -65.72 26.11 32.27 -8.81 17.63 -81.84 16.46 0.82 7.86 -8.74 -11.62
+0.144067775 -7.895 8.905 -8.905 53.165 13.195 12.47 -65.49 26.61 32.82 -9.33 17.475 -81.905 16.07 0.82 7.895 -8.905 -11.095
+0.15254235 -7.93 9.07 -9.43 53 13.27 12.56 -65.26 27.11 33.37 -9.85 17.32 -81.97 15.68 0.82 7.93 -9.07 -10.57
+0.161016925 -7.965 9.3 -9.835 52.775 13.43 12.525 -65.15 27.6 34.15 -10.21 17.04 -81.9 15.685 0.82 7.965 -9.3 -10.165
+0.1694915 -8 9.53 -10.24 52.55 13.59 12.49 -65.04 28.09 34.93 -10.57 16.76 -81.83 15.69 0.82 8 -9.53 -9.76
+0.177966075 -8.06 9.79 -10.455 52.195 13.835 12.355 -65.015 28.555 35.895 -10.735 16.22 -81.66 16.135 0.82 8.06 -9.79 -9.545
+0.18644065 -8.12 10.05 -10.67 51.84 14.08 12.22 -64.99 29.02 36.86 -10.9 15.68 -81.49 16.58 0.82 8.12 -10.05 -9.33
+0.194915225 -8.085 10.26 -10.72 51.295 14.32 12.09 -65 29.435 37.83 -10.905 14.8 -81.22 17.36 0.82 8.085 -10.26 -9.28
+0.2033898 -8.05 10.47 -10.77 50.75 14.56 11.96 -65.01 29.85 38.8 -10.91 13.92 -80.95 18.14 0.82 8.05 -10.47 -9.23
+0.211864375 -7.835 10.52 -10.695 49.995 14.735 11.93 -65.04 30.16 39.765 -10.79 12.96 -80.6 18.915 0.82 7.835 -10.52 -9.305
+0.22033895 -7.62 10.57 -10.62 49.24 14.91 11.9 -65.07 30.47 40.73 -10.67 12 -80.25 19.69 0.82 7.62 -10.57 -9.38
+0.228813525 -7.305 10.41 -10.37 48.28 15.08 11.86 -65.15 30.64 41.785 -10.49 11.335 -79.85 20.24 0.82 7.305 -10.41 -9.63
+0.2372881 -6.99 10.25 -10.12 47.32 15.25 11.82 -65.23 30.81 42.84 -10.31 10.67 -79.45 20.79 0.82 6.99 -10.25 -9.88
+0.245762675 -6.65 9.89 -9.665 46.15 15.455 11.625 -65.375 30.945 43.94 -10.18 10.47 -78.965 21.14 0.82 6.65 -9.89 -10.335
+0.25423725 -6.31 9.53 -9.21 44.98 15.66 11.43 -65.52 31.08 45.04 -10.05 10.27 -78.48 21.49 0.82 6.31 -9.53 -10.79
+0.262711825 -5.95 8.985 -8.65 43.705 15.89 11.25 -65.68 31.35 46.135 -10.015 10.42 -77.87 21.57 0.82 5.95 -8.985 -11.35
+0.2711864 -5.59 8.44 -8.09 42.43 16.12 11.07 -65.84 31.62 47.23 -9.98 10.57 -77.26 21.65 0.82 5.59 -8.44 -11.91
+0.279660975 -5.27 7.765 -7.59 41.21 16.36 11.175 -65.985 32.015 48.33 -9.98 10.85 -76.55 21.53 0.82 5.27 -7.765 -12.41
+0.28813555 -4.95 7.09 -7.09 39.99 16.6 11.28 -66.13 32.41 49.43 -9.98 11.13 -75.84 21.41 0.82 4.95 -7.09 -12.91
+0.296610125 -4.7 6.315 -6.7 38.905 16.87 11.765 -66.265 32.72 50.53 -9.845 11.37 -75.11 21.3 0.82 4.7 -6.315 -13.3
+0.3050847 -4.45 5.54 -6.31 37.82 17.14 12.25 -66.4 33.03 51.63 -9.71 11.61 -74.38 21.19 0.82 4.45 -5.54 -13.69
+0.313559275 -4.205 4.71 -5.95 36.76 17.395 12.99 -66.52 33.2 52.66 -9.41 11.795 -73.64 21.145 0.82 4.205 -4.71 -14.05
+0.32203385 -3.96 3.88 -5.59 35.7 17.65 13.73 -66.64 33.37 53.69 -9.11 11.98 -72.9 21.1 0.82 3.96 -3.88 -14.41
+0.330508425 -3.63 3.07 -5.2 34.57 17.805 14.485 -66.75 33.52 54.525 -8.81 12.14 -72.065 20.925 0.82 3.63 -3.07 -14.8
+0.338983 -3.3 2.26 -4.81 33.44 17.96 15.24 -66.86 33.67 55.36 -8.51 12.3 -71.23 20.75 0.82 3.3 -2.26 -15.19
+0.347457575 -2.96 1.625 -4.42 32.3 17.985 15.79 -66.98 33.845 55.955 -8.325 12.41 -70.235 20.285 0.82 2.96 -1.625 -15.58
+0.35593215 -2.62 0.99 -4.03 31.16 18.01 16.34 -67.1 34.02 56.55 -8.14 12.52 -69.24 19.82 0.82 2.62 -0.99 -15.97
+0.364406725 -2.445 0.615 -3.72 30.18 18.005 16.6 -67.29 34.09 56.93 -8.06 12.395 -68.125 19.115 0.82 2.445 -0.615 -16.28
+0.3728813 -2.27 0.24 -3.41 29.2 18 16.86 -67.48 34.16 57.31 -7.98 12.27 -67.01 18.41 0.82 2.27 -0.24 -16.59
+0.381355875 -2.32 0.13 -3.235 28.52 18.005 16.81 -67.76 34.06 57.53 -7.9 11.81 -65.855 17.65 0.82 2.32 -0.13 -16.765
+0.38983045 -2.37 0.02 -3.06 27.84 18.01 16.76 -68.04 33.96 57.75 -7.82 11.35 -64.7 16.89 0.82 2.37 -0.02 -16.94
+0.398305025 -2.515 0.105 -3.005 27.39 17.97 16.54 -68.32 33.775 57.915 -7.675 10.755 -63.5 16.11 0.82 2.515 -0.105 -16.995
+0.4067796 -2.66 0.19 -2.95 26.94 17.93 16.32 -68.6 33.59 58.08 -7.53 10.16 -62.3 15.33 0.82 2.66 -0.19 -17.05
+0.415254175 -2.74 0.375 -2.955 26.395 17.825 16.33 -68.675 33.35 58.27 -7.28 9.865 -61.045 14.5 0.82 2.74 -0.375 -17.045
+0.42372875 -2.82 0.56 -2.96 25.85 17.72 16.34 -68.75 33.11 58.46 -7.03 9.57 -59.79 13.67 0.82 2.82 -0.56 -17.04
+0.432203325 -2.85 0.825 -3.025 25.12 17.63 16.76 -68.545 32.905 58.61 -6.605 9.815 -58.58 12.86 0.82 2.85 -0.825 -16.975
+0.4406779 -2.88 1.09 -3.09 24.39 17.54 17.18 -68.34 32.7 58.76 -6.18 10.06 -57.37 12.05 0.82 2.88 -1.09 -16.91
+0.449152475 -2.93 1.555 -3.27 23.71 17.46 17.745 -68.01 32.475 58.77 -5.555 10.775 -56.52 11.265 0.82 2.93 -1.555 -16.73
+0.45762705 -2.98 2.02 -3.45 23.03 17.38 18.31 -67.68 32.25 58.78 -4.93 11.49 -55.67 10.48 0.82 2.98 -2.02 -16.55
+0.466101625 -3.055 2.715 -3.75 22.605 17.205 18.585 -67.44 31.865 58.7 -4.18 12.46 -55.495 9.93 0.82 3.055 -2.715 -16.25
+0.4745762 -3.13 3.41 -4.05 22.18 17.03 18.86 -67.2 31.48 58.62 -3.43 13.43 -55.32 9.38 0.82 3.13 -3.41 -15.95
+0.483050775 -3.185 4.14 -4.345 21.83 16.785 18.795 -67.01 30.74 58.545 -2.605 14.57 -55.83 9.195 0.82 3.185 -4.14 -15.655
+0.49152535 -3.24 4.87 -4.64 21.48 16.54 18.73 -66.82 30 58.47 -1.78 15.71 -56.34 9.01 0.82 3.24 -4.87 -15.36
+0.499999925 -3.26 5.435 -4.895 20.99 16.305 18.545 -66.53 28.83 58.01 -1.235 12.49 -56.87 7.95 0.82 3.26 -5.435 -15.105
+0.5084745 -3.28 6 -5.15 20.5 16.07 18.36 -66.24 27.66 57.55 -0.69 9.27 -57.4 6.89 0.82 3.28 -6 -14.85
+0.516949075 -3.37 6.455 -5.49 20.005 15.87 18.065 -65.87 26.25 57.635 -0.03 10.16 -58.21 7.185 0.82 3.37 -6.455 -14.51
+0.52542365 -3.46 6.91 -5.83 19.51 15.67 17.77 -65.5 24.84 57.72 0.63 11.05 -59.02 7.48 0.82 3.46 -6.91 -14.17
+0.533898225 -3.645 7.43 -6.3 19.16 15.445 17.29 -65.12 23.475 57.865 1.095 11.84 -60.04 8.275 0.82 3.645 -7.43 -13.7
+0.5423728 -3.83 7.95 -6.77 18.81 15.22 16.81 -64.74 22.11 58.01 1.56 12.63 -61.06 9.07 0.82 3.83 -7.95 -13.23
+0.550847375 -4.115 8.535 -7.295 18.625 15.005 16.245 -64.315 20.915 57.995 1.685 12.9 -61.92 10.22 0.82 4.115 -8.535 -12.705
+0.55932195 -4.4 9.12 -7.82 18.44 14.79 15.68 -63.89 19.72 57.98 1.81 13.17 -62.78 11.37 0.82 4.4 -9.12 -12.18
+0.567796525 -4.72 9.67 -8.315 18.365 14.65 15.3 -63.415 18.575 57.84 1.59 12.96 -63.395 12.465 0.82 4.72 -9.67 -11.685
+0.5762711 -5.04 10.22 -8.81 18.29 14.51 14.92 -62.94 17.43 57.7 1.37 12.75 -64.01 13.56 0.82 5.04 -10.22 -11.19
+0.584745675 -5.28 10.66 -9.25 18.32 14.38 15.025 -62.51 16.475 57.56 1.01 12.49 -64.37 14.35 0.82 5.28 -10.66 -10.75
+0.59322025 -5.52 11.1 -9.69 18.35 14.25 15.13 -62.08 15.52 57.42 0.65 12.23 -64.73 15.14 0.82 5.52 -11.1 -10.31
+0.601694825 -5.66 11.33 -10.08 18.515 14.155 15.72 -61.81 15.02 57.345 0.355 12.01 -64.87 15.62 0.82 5.66 -11.33 -9.92
+0.6101694 -5.8 11.56 -10.47 18.68 14.06 16.31 -61.54 14.52 57.27 0.06 11.79 -65.01 16.1 0.82 5.8 -11.56 -9.53
+0.618643975 -5.895 11.545 -10.815 19.035 14.07 17.115 -61.46 14.48 57.255 -0.075 11.53 -65.01 16.49 0.82 5.895 -11.545 -9.185
+0.62711855 -5.99 11.53 -11.16 19.39 14.08 17.92 -61.38 14.44 57.24 -0.21 11.27 -65.01 16.88 0.82 5.99 -11.53 -8.84
+0.635593125 -6.145 11.295 -11.505 20 14.225 18.55 -61.465 14.73 57.175 -0.24 11.07 -64.9 17.385 0.82 6.145 -11.295 -8.495
+0.6440677 -6.3 11.06 -11.85 20.61 14.37 19.18 -61.55 15.02 57.11 -0.27 10.87 -64.79 17.89 0.82 6.3 -11.06 -8.15
+0.652542275 -6.59 10.66 -12.165 21.44 14.635 19.455 -61.675 15.625 56.845 -0.235 10.79 -64.59 18.445 0.82 6.59 -10.66 -7.835
+0.66101685 -6.88 10.26 -12.48 22.27 14.9 19.73 -61.8 16.23 56.58 -0.2 10.71 -64.39 19 0.82 6.88 -10.26 -7.52
+0.669491425 -7.15 9.69 -12.69 23.175 15.06 19.9 -61.795 17.095 56.065 -0.085 10.63 -64.125 19.44 0.82 7.15 -9.69 -7.31
+0.677966 -7.42 9.12 -12.9 24.08 15.22 20.07 -61.79 17.96 55.55 0.03 10.55 -63.86 19.88 0.82 7.42 -9.12 -7.1
+0.686440575 -7.475 8.405 -12.99 25.015 15.075 20.25 -61.64 18.74 54.895 0.225 10.435 -63.565 20.165 0.82 7.475 -8.405 -7.01
+0.69491515 -7.53 7.69 -13.08 25.95 14.93 20.43 -61.49 19.52 54.24 0.42 10.32 -63.27 20.45 0.82 7.53 -7.69 -6.92
+0.703389725 -7.43 6.97 -13.08 27.04 14.5 20.42 -61.39 20.025 53.605 0.625 10.36 -62.945 20.685 0.82 7.43 -6.97 -6.92
+0.7118643 -7.33 6.25 -13.08 28.13 14.07 20.41 -61.29 20.53 52.97 0.83 10.4 -62.62 20.92 0.82 7.33 -6.25 -6.92
+0.720338875 -7.3 5.65 -13.015 29.45 13.52 19.98 -61.46 20.98 52.42 0.97 10.785 -62.295 21.225 0.82 7.3 -5.65 -6.985
+0.72881345 -7.27 5.05 -12.95 30.77 12.97 19.55 -61.63 21.43 51.87 1.11 11.17 -61.97 21.53 0.82 7.27 -5.05 -7.05
+0.737288025 -7.41 4.59 -12.825 32.23 12.37 18.74 -62.08 21.925 51.355 1.13 11.705 -61.705 21.965 0.82 7.41 -4.59 -7.175
+0.7457626 -7.55 4.13 -12.7 33.69 11.77 17.93 -62.53 22.42 50.84 1.15 12.24 -61.44 22.4 0.82 7.55 -4.13 -7.3
+0.754237175 -7.705 3.79 -12.505 35.1 11 16.89 -63.085 22.765 50.255 1.025 12.515 -61.235 22.945 0.82 7.705 -3.79 -7.495
+0.76271175 -7.86 3.45 -12.31 36.51 10.23 15.85 -63.64 23.11 49.67 0.9 12.79 -61.03 23.49 0.82 7.86 -3.45 -7.69
+0.771186325 -7.92 3.285 -12.035 37.78 9.205 14.41 -64.2 23.185 48.98 0.67 12.665 -60.86 24.035 0.82 7.92 -3.285 -7.965
+0.7796609 -7.98 3.12 -11.76 39.05 8.18 12.97 -64.76 23.26 48.29 0.44 12.54 -60.69 24.58 0.82 7.98 -3.12 -8.24
+0.788135475 -7.97 3.195 -11.39 40.19 6.975 10.95 -65.36 23.185 47.58 0.16 12.22 -60.595 24.945 0.82 7.97 -3.195 -8.61
+0.79661005 -7.96 3.27 -11.02 41.33 5.77 8.93 -65.96 23.11 46.87 -0.12 11.9 -60.5 25.31 0.82 7.96 -3.27 -8.98
+0.805084625 -7.92 3.51 -10.52 42.365 4.595 6.565 -66.54 22.985 46.21 -0.355 11.635 -60.555 25.545 0.82 7.92 -3.51 -9.48
+0.8135592 -7.88 3.75 -10.02 43.4 3.42 4.2 -67.12 22.86 45.55 -0.59 11.37 -60.61 25.78 0.82 7.88 -3.75 -9.98
+0.822033775 -7.83 4.005 -9.385 44.3 2.525 2.15 -67.405 22.6 44.92 -0.69 11.64 -60.73 26.055 0.82 7.83 -4.005 -10.615
+0.83050835 -7.78 4.26 -8.75 45.2 1.63 0.1 -67.69 22.34 44.29 -0.79 11.91 -60.85 26.33 0.82 7.78 -4.26 -11.25
+0.838982925 -7.78 4.375 -8.025 45.95 1.235 -0.995 -67.42 21.86 43.7 -0.845 13.7 -60.815 26.75 0.82 7.78 -4.375 -11.975
+0.8474575 -7.78 4.49 -7.3 46.7 0.84 -2.09 -67.15 21.38 43.11 -0.9 15.49 -60.78 27.17 0.82 7.78 -4.49 -12.7
+0.855932075 -7.805 4.48 -6.595 47.375 0.885 -2.035 -66.355 20.725 42.55 -0.975 18.46 -60.425 27.515 0.82 7.805 -4.48 -13.405
+0.86440665 -7.83 4.47 -5.89 48.05 0.93 -1.98 -65.56 20.07 41.99 -1.05 21.43 -60.07 27.86 0.82 7.83 -4.47 -14.11
+0.872881225 -7.705 4.47 -5.26 48.75 1.14 -0.99 -64.53 19.395 41.355 -1.205 23.35 -59.795 28.015 0.82 7.705 -4.47 -14.74
+0.8813558 -7.58 4.47 -4.63 49.45 1.35 0 -63.5 18.72 40.72 -1.36 25.27 -59.52 28.17 0.82 7.58 -4.47 -15.37
+0.889830375 -7.28 4.545 -4.105 50.17 1.63 1.52 -62.53 18.255 39.95 -1.665 24.685 -59.8 28.38 0.82 7.28 -4.545 -15.895
+0.89830495 -6.98 4.62 -3.58 50.89 1.91 3.04 -61.56 17.79 39.18 -1.97 24.1 -60.08 28.59 0.82 6.98 -4.62 -16.42
+0.906779525 -6.8 4.755 -3.135 51.51 2.475 4.59 -60.775 17.49 38.375 -2.295 21.855 -60.885 28.845 0.82 6.8 -4.755 -16.865
+0.9152541 -6.62 4.89 -2.69 52.13 3.04 6.14 -59.99 17.19 37.57 -2.62 19.61 -61.69 29.1 0.82 6.62 -4.89 -17.31
+0.923728675 -6.82 5.02 -2.305 52.545 4.09 7.51 -59.39 16.765 36.845 -2.77 17.665 -62.735 29.205 0.82 6.82 -5.02 -17.695
+0.93220325 -7.02 5.15 -1.92 52.96 5.14 8.88 -58.79 16.34 36.12 -2.92 15.72 -63.78 29.31 0.82 7.02 -5.15 -18.08
+0.940677825 -7.395 5.285 -1.645 53.165 6.45 10.095 -58.38 15.63 35.5 -2.83 15.015 -64.835 29.17 0.82 7.395 -5.285 -18.355
+0.9491524 -7.77 5.42 -1.37 53.37 7.76 11.31 -57.97 14.92 34.88 -2.74 14.31 -65.89 29.03 0.82 7.77 -5.42 -18.63
+0.957626975 -7.93 5.645 -1.325 53.42 8.89 12.355 -57.805 14.235 34.41 -2.545 14.54 -66.87 28.82 0.82 7.93 -5.645 -18.675
+0.96610155 -8.09 5.87 -1.28 53.47 10.02 13.4 -57.64 13.55 33.94 -2.35 14.77 -67.85 28.61 0.82 8.09 -5.87 -18.72
+0.974576125 -7.955 6.275 -1.555 53.515 10.7 14.06 -57.905 13.385 33.68 -2.25 15.31 -68.805 28.555 0.82 7.955 -6.275 -18.445
+0.9830507 -7.82 6.68 -1.83 53.56 11.38 14.72 -58.17 13.22 33.42 -2.15 15.85 -69.76 28.5 0.82 7.82 -6.68 -18.17
+0.99152535 -7.56 7.26 -2.215 53.765 11.7 14.74 -59.105 13.56 33.275 -2.18 16.24 -70.72 28.49 0.82 7.56 -7.26 -17.785
+1 -7.3 7.84 -2.6 53.97 12.02 14.76 -60.04 13.9 33.13 -2.21 16.63 -71.68 28.48 0.82 7.3 -7.84 -17.4
diff --git a/Bindings/Python/tutorials/resources/Tutorial 4/gait2392.osim b/Bindings/Python/tutorials/resources/Tutorial 4/gait2392.osim
new file mode 100644
index 0000000000..5f31e67902
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 4/gait2392.osim
@@ -0,0 +1,11664 @@
+
+
+
+ Delp S.L., Loan J.P., Hoy M.G., Zajac F.E., Topp E.L., Rosen J.M., Thelen D.G., Anderson F.C., Seth A. Notes: 3D, 23 DOF gait model created by D.G. Thelen, Univ. of Wisconsin-Madison, and Ajay Seth, Frank C. Anderson, and Scott L. Delp, Stanford University. Lower extremity joint defintions based on Delp et al. (1990). Low back joint and anthropometry based on Anderson and Pandy (1999, 2001). Planar knee model of Yamaguchi and Zajac (1989). Seth replaced tibia translation constraints with a CustomJoint for the knee and removed the patella to eliminate all kinematic constraints; insertions of the quadrucepts are handled with moving points in the tibia frame as defined by Delp 1990. License: Creative Commons (CCBY 3.0). You are free to distribute, remix, tweak, and build upon this work, even commercially, as long as you credit us for the original creation. http://creativecommons.org/licenses/by/3.0/ More Information: http://simtk-confluence.stanford.edu:8080/display/OpenSim/Gait+2392+and+2354+Models
+ Delp, S.L., Loan, J.P., Hoy, M.G., Zajac, F.E., Topp E.L., Rosen, J.M.: An interactive graphics-based model of the lower extremity to study orthopaedic surgical procedures, IEEE Transactions on Biomedical Engineering, vol. 37, pp. 757-767, 1990. Yamaguchi G.T., Zajac F.E.: A planar model of the knee joint to characterize the knee extensor mechanism." J . Biomecl7. vol. 21. pp. 1-10. 1989. Anderson F.C., Pandy M.G.: A dynamic optimization solution for vertical jumping in three dimensions. Computer Methods in Biomechanics and Biomedical Engineering 2:201-231, 1999. Anderson F.C., Pandy M.G.: Dynamic optimization of human walking. Journal of Biomechanical Engineering 123:381-390, 2001.
+ meters
+ N
+
+ 0 -9.80665 0
+
+
+
+
+ 0
+ 0 0 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+
+
+
+
+ treadmill.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 11.3751712907406
+ -0.0724376 0 0
+ 0.104233092183605
+ 0.0883142249921398
+ 0.058707159897186
+ 0
+ 0
+ 0
+
+
+
+
+ ground
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ translational
+
+ 0
+
+ 0
+
+ -5 5
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ translational
+
+ 1.015
+
+ 0
+
+ -1 2
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ translational
+
+ 0
+
+ 0
+
+ -3 3
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ pelvis_tilt
+
+ 0 0 1
+
+
+
+ 1 0
+
+
+
+
+
+ pelvis_list
+
+ 1 0 0
+
+
+
+ 1 0
+
+
+
+
+
+ pelvis_rotation
+
+ 0 1 0
+
+
+
+ 1 0
+
+
+
+
+
+
+ pelvis_tx
+
+ 1 0 0
+
+
+
+ 1 0
+
+
+
+
+
+ pelvis_ty
+
+ 0 1 0
+
+
+
+ 1 0
+
+
+
+
+
+ pelvis_tz
+
+ 0 0 1
+
+
+
+ 1 0
+
+
+
+
+
+
+
+
+
+
+
+
+ sacrum.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ pelvis.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ l_pelvis.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.02458 1.02458 1.02458
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 8.98403823076288
+ 0 -0.195031 0
+ 0.170220714339411
+ 0.0446209639530494
+ 0.179500857839617
+ 0
+ 0
+ 0
+
+
+
+
+ pelvis
+
+ -0.0724375965748068 -0.0677245422007741 0.0855521826590717
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 2.0943951
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 2.0943951
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 2.0943951
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ hip_flexion_r
+
+ 0 0 1
+
+
+
+ 1 0
+
+
+
+
+
+ hip_adduction_r
+
+ 1 0 0
+
+
+
+ 1 0
+
+
+
+
+
+ hip_rotation_r
+
+ 0 1 0
+
+
+
+ 1 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+
+
+ 0
+
+
+ 1.02457703783319
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+
+
+ 0
+
+
+ 1.02457703783319
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+
+
+ 0
+
+
+ 1.02457703783319
+
+
+
+
+
+
+
+
+
+
+
+
+ femur_r.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.14724 1.14724 1.14724
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 3.58100089669871
+ 0 -0.184557 0
+ 0.0475693660337908
+ 0.00481356680103835
+ 0.048230051673149
+ 0
+ 0
+ 0
+
+
+
+
+ femur_r
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 0.17453293
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ knee_angle_r
+
+ 0 0 1
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+ 0
+
+
+
+
+
+
+ knee_angle_r
+
+ 1 0 0
+
+
+
+
+
+ -2.0944 -1.74533 -1.39626 -1.0472 -0.698132 -0.349066 -0.174533 0.197344 0.337395 0.490178 1.52146 2.0944
+ -0.0032 0.00179 0.00411 0.0041 0.00212 -0.001 -0.0031 -0.005227 -0.005435 -0.005574 -0.005435 -0.00525
+
+
+ 1.14724
+
+
+
+
+
+ knee_angle_r
+
+ 0 1 0
+
+
+
+
+
+ -2.0944 -1.22173 -0.523599 -0.349066 -0.174533 0.159149 2.0944
+ -0.4226 -0.4082 -0.399 -0.3976 -0.3966 -0.395264 -0.396
+
+
+ 1.14724
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+
+
+ 0
+
+
+ 1.14724
+
+
+
+
+
+
+
+
+
+
+
+
+ tibia_r.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ fibula.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 0.988523 0.988523 0.988523
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 0.0965880214888392
+ 0 0 0
+ 0.00119860629939626
+ 0.00119860629939626
+ 0.00119860629939626
+ 0
+ 0
+ 0
+
+
+
+
+ tibia_r
+
+ 0 -0.42506489 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ ankle_angle_r
+
+ -0.10501355 -0.17402245 0.97912632
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0.97912632 -0 0.10501355
+
+
+
+ 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+
+
+ 0
+
+
+ 0.988523
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+
+
+ 0
+
+
+ 0.988523
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+
+
+ 0
+
+
+ 0.988523
+
+
+
+
+
+
+
+
+
+
+
+
+ talus.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.11398 1.11398 1.11398
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1.20735026861049
+ 0.102708 0.0308125 0
+ 0.00142647407479784
+ 0.00397374920836542
+ 0.00417753121905083
+ 0
+ 0
+ 0
+
+
+
+
+ talus_r
+
+ -0.0543287106715701 -0.0467313802065279 0.00882270634650062
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ subtalar_angle_r
+
+ 0.78717961 0.60474746 -0.12094949
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ -0.12094949 0 -0.78717961
+
+
+
+ 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+
+
+ 0
+
+
+ 1.11397807405311
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+
+
+ 0
+
+
+ 1.11397807405311
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+
+
+ 0
+
+
+ 1.11397807405311
+
+
+
+
+
+
+
+
+
+
+
+
+ foot.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.02708 1.02708 1.02708
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 0.209209654544826
+ 0.0355371 0.00616251 -0.017974
+ 0.000101891005342703
+ 0.000203782010685406
+ 0.000101891005342703
+ 0
+ 0
+ 0
+
+
+
+
+ calcn_r
+
+ 0.183642756568849 -0.00205416953656431 0.00110925154974473
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ mtp_angle_r
+
+ -0.5809544 0 0.81393611
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0.81393611 -0 0.5809544
+
+
+
+ 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+
+
+ 0
+
+
+ 1.02708476828216
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+
+
+ 0
+
+
+ 1.02708476828216
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+
+
+ 0
+
+
+ 1.02708476828216
+
+
+
+
+
+
+
+
+
+
+
+
+ bofoot.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.02708 1.02708 1.02708
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 8.98403823076288
+ 0 -0.195031 0
+ 0.170220714339411
+ 0.0446209639530494
+ 0.179500857839617
+ 0
+ 0
+ 0
+
+
+
+
+ pelvis
+
+ -0.0724375965748068 -0.0677245422007741 -0.0855521826590717
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 2.0943951
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 2.0943951
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 2.0943951
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ hip_flexion_l
+
+ 0 0 1
+
+
+
+ 1 0
+
+
+
+
+
+ hip_adduction_l
+
+ -1 0 0
+
+
+
+ 1 0
+
+
+
+
+
+ hip_rotation_l
+
+ 0 -1 0
+
+
+
+ 1 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+
+
+ 0
+
+
+ 1.02457703783319
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+
+
+ 0
+
+
+ 1.02457703783319
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+
+
+ 0
+
+
+ 1.02457703783319
+
+
+
+
+
+
+
+
+
+
+
+
+ femur_l.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.14724 1.14724 1.14724
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 3.58100089669871
+ 0 -0.184557 0
+ 0.0475693660337908
+ 0.00481356680103835
+ 0.048230051673149
+ 0
+ 0
+ 0
+
+
+
+
+ femur_l
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 0.17453293
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ knee_angle_l
+
+ 0 0 1
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+ 0
+
+
+
+
+
+
+ knee_angle_l
+
+ 1 0 0
+
+
+
+
+
+ -2.0944 -1.74533 -1.39626 -1.0472 -0.698132 -0.349066 -0.174533 0.197344 0.337395 0.490178 1.52146 2.0944
+ -0.0032 0.00179 0.00411 0.0041 0.00212 -0.001 -0.0031 -0.005227 -0.005435 -0.005574 -0.005435 -0.00525
+
+
+ 1.14724
+
+
+
+
+
+ knee_angle_l
+
+ 0 1 0
+
+
+
+
+
+ -2.0944 -1.22173 -0.523599 -0.349066 -0.174533 0.159149 2.0944
+ -0.4226 -0.4082 -0.399 -0.3976 -0.3966 -0.395264 -0.396
+
+
+ 1.14724
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+
+
+ 0
+
+
+ 1.14724
+
+
+
+
+
+
+
+
+
+
+
+
+ tibia_l.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ l_fibula.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 0.988523 0.988523 0.988523
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 0.0965880214888392
+ 0 0 0
+ 0.00119860629939626
+ 0.00119860629939626
+ 0.00119860629939626
+ 0
+ 0
+ 0
+
+
+
+
+ tibia_l
+
+ 0 -0.42506489 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ ankle_angle_l
+
+ 0.10501355 0.17402245 0.97912632
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0.97912632 0 -0.10501355
+
+
+
+ 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+
+
+ 0
+
+
+ 0.988523
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+
+
+ 0
+
+
+ 0.988523
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+
+
+ 0
+
+
+ 0.988523
+
+
+
+
+
+
+
+
+
+
+
+
+ l_talus.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.11398 1.11398 1.11398
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1.20735026861049
+ 0.102708 0.0308125 0
+ 0.00142647407479784
+ 0.00397374920836542
+ 0.00417753121905083
+ 0
+ 0
+ 0
+
+
+
+
+ talus_l
+
+ -0.0543287106715701 -0.0467313802065279 -0.00882270634650062
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ subtalar_angle_l
+
+ -0.78717961 -0.60474746 -0.12094949
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ -0.12094949 0 0.78717961
+
+
+
+ 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+
+
+ 0
+
+
+ 1.11397807405311
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+
+
+ 0
+
+
+ 1.11397807405311
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+
+
+ 0
+
+
+ 1.11397807405311
+
+
+
+
+
+
+
+
+
+
+
+
+ l_foot.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.02708 1.02708 1.02708
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 0.209209654544826
+ 0.0355371 0.00616251 0.017974
+ 0.000101891005342703
+ 0.000203782010685406
+ 0.000101891005342703
+ 0
+ 0
+ 0
+
+
+
+
+ calcn_l
+
+ 0.183642756568849 -0.00205416953656431 -0.00110925154974473
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ mtp_angle_l
+
+ 0.5809544 0 0.81393611
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0.81393611 0 -0.5809544
+
+
+
+ 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+
+
+ 0
+
+
+ 1.02708476828216
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+
+
+ 0
+
+
+ 1.02708476828216
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+
+
+ 0
+
+
+ 1.02708476828216
+
+
+
+
+
+
+
+
+
+
+
+
+ l_bofoot.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.02708 1.02708 1.02708
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 33.0684545650479
+ -0.0323916 0.34551 0
+ 1.66031408420475
+ 0.850706877325663
+ 1.61178269252674
+ 0
+ 0
+ 0
+
+
+
+
+ pelvis
+
+ -0.103174907709803 0.0835030285834053 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ lumbar_extension
+
+ 0 0 1
+
+
+
+ 1 0
+
+
+
+
+
+ lumbar_bending
+
+ 1 0 0
+
+
+
+ 1 0
+
+
+
+
+
+ lumbar_rotation
+
+ 0 1 0
+
+
+
+ 1 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+
+
+ 0
+
+
+ 1.02457703783319
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+
+
+ 0
+
+
+ 1.02457703783319
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+
+
+ 0
+
+
+ 1.02457703783319
+
+
+
+
+
+
+
+
+
+
+
+
+ hat_spine.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ hat_jaw.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ hat_skull.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ hat_ribs.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.07972 1.07972 1.07972
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0418027 0.0311471 0.123871
+ pelvis
+
+
+ -0.0250098 -0.0134227 0.0636718
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 819
+
+ 0.0564063466206731
+
+ 0.0822372904002337
+
+ 0.13962634
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0876013 0.0455937 0.0784826
+ pelvis
+
+
+ -0.0295988 -0.00665399 0.0604595
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 573
+
+ 0.0891317692540649
+
+ 0.0559051333782892
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.125306 0.0107581 0.0663926
+ pelvis
+
+
+ -0.0354497 -0.00539203 0.059427
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 653
+
+ 0.0685306401304506
+
+ 0.0562248285899982
+
+ 0.33161256
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0478477 -0.00819662 0.108195
+ pelvis
+
+
+ -0.00826013 -0.0119313 0.0642454
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 270
+
+ 0.0732892138718745
+
+ 0.0172445209110293
+
+ 0.17453293
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0648557 -0.00665975 0.101536
+ pelvis
+
+
+ -0.0110135 -0.0119313 0.0642454
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 285
+
+ 0.0606592845926907
+
+ 0.0281632392751778
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0854497 -0.00645484 0.0877038
+ pelvis
+
+
+ -0.0154877 -0.00952209 0.0630982
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 323
+
+ 0.0411769178508985
+
+ 0.0552637581683112
+
+ 0.01745329
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.12213 -0.0998655 0.0732675
+ pelvis
+
+
+ -0.0344006 -0.0347861 -0.018693
+ tibia_r
+ -0.558505 0.174533
+ knee_angle_r
+
+
+ -0.0266901 -0.0471624 -0.0193454
+ tibia_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1288
+
+ 0.0909853547142785
+
+ 0.408296779280325
+
+ 0.26179939
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.129455 -0.112581 0.0618742
+ pelvis
+
+
+ -0.0415476 -0.0282619 -0.0225087
+ tibia_r
+ -0.331613 0.174533
+ knee_angle_r
+
+
+ -0.0328387 -0.0522138 -0.0226174
+ tibia_r
+
+
+ -0.0111703 -0.0737438 -0.0242188
+ tibia_r
+
+
+ 0.00266901 -0.0945028 -0.0190785
+ tibia_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 410
+
+ 0.225274116169199
+
+ 0.286355903886718
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.129056 -0.105091 0.0711466
+ pelvis
+
+
+ -0.0297545 -0.0355868 0.0290922
+ tibia_r
+
+
+ -0.0231314 -0.0556538 0.0339063
+ tibia_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 896
+
+ 0.12363108064316
+
+ 0.369759011831837
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.0057362 -0.242182 0.0268454
+ femur_r
+
+
+ -0.0297545 -0.0355868 0.0290922
+ tibia_r
+
+
+ -0.0231314 -0.0556538 0.0339063
+ tibia_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 804
+
+ 0.191444885177129
+
+ 0.0984889871720488
+
+ 0.40142573
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.015676 -0.00133195 0.127252
+ pelvis
+
+
+ -0.00344172 -0.409335 -0.0482988
+ femur_r
+
+
+ -0.00553573 -0.0414191 -0.0394421
+ tibia_r
+
+
+ 0.00593114 -0.058224 -0.0378604
+ tibia_r
+
+
+ 0.0240211 -0.0830359 -0.0249108
+ tibia_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 156
+
+ 0.574215555849301
+
+ 0.110426068432558
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0323766 -0.0856546 0.0173154
+ pelvis
+
+
+ 0.0057362 -0.242182 0.0268454
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 627
+
+ 0.157008536123858
+
+ 0.12515173169293
+
+ 0.10471976
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0601427 -0.0937488 0.0168031
+ pelvis
+
+
+ 0.00103252 -0.13721 0.0337289
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 429
+
+ 0.149037454475741
+
+ 0.0224116472895851
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.074999 -0.120285 0.0261267
+ pelvis
+
+
+ -0.00516258 -0.138931 0.0388914
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 381
+
+ 0.0986628781897259
+
+ 0.0680433642687765
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0851424 -0.12213 0.031557
+ pelvis
+
+
+ 0.0061951 -0.262144 0.0260423
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 343
+
+ 0.140989747681234
+
+ 0.139824543154943
+
+ 0.05235988
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.11381 -0.116935 0.0500199
+ pelvis
+
+
+ 0.00803068 -0.440196 -0.0305166
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 488
+
+ 0.152260426784655
+
+ 0.289411040224267
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0318643 0.0219259 0.12715
+ pelvis
+
+
+ 0.0337289 -0.11415 0.0684902
+ femur_r
+
+
+ 0.0061951 -0.464517 0.0409565
+ femur_r
+
+
+ 0.00593114 -0.0481411 0.0293591
+ tibia_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 233
+
+ 0.10603790125655
+
+ 0.474380084568775
+
+ 0.05235988
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0441593 -0.0786875 0.0462084
+ pelvis
+
+
+ -0.0139963 -0.0943031 0.0290252
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 266
+
+ 0.111655934754335
+
+ 0.0368464584689304
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0758289 -0.121617 0.0286267
+ pelvis
+
+
+ -0.0262651 -0.0315339 -0.0373069
+ tibia_r
+ -0.436332 0.174533
+ knee_angle_r
+
+
+ -0.019207 -0.0509386 -0.0353891
+ tibia_r
+
+
+ 0.00593114 -0.0826405 -0.0225383
+ tibia_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 162
+
+ 0.396585869517023
+
+ 0.141959714656662
+
+ 0.05235988
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.122437 0.0627041 0.0717204
+ pelvis
+
+
+ -0.132273 0.00122949 0.0907775
+ pelvis
+
+
+ -0.0524289 -0.0284516 0.0449718
+ femur_r
+
+
+ -0.0317785 -0.0649338 0.0539203
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 573
+
+ 0.151587000363061
+
+ 0.133439260882976
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.138215 0.0180326 0.0576837
+ pelvis
+
+
+ -0.140982 -0.053278 0.0936463
+ pelvis
+
+
+ -0.0488724 -0.0608037 0.0336141
+ femur_r
+
+
+ -0.0178969 -0.11656 0.0480694
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 819
+
+ 0.159394708751813
+
+ 0.137708353819594
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.159424 -0.0321717 0.00594255
+ pelvis
+
+
+ -0.156658 -0.107786 0.0412905
+ pelvis
+
+
+ -0.0343025 -0.119428 0.0154877
+ femur_r
+
+
+ -0.00688344 -0.162793 0.0471516
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 552
+
+ 0.156288391708115
+
+ 0.157373727761643
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0690565 0.0373971 0.0874989
+ pelvis
+
+
+ -0.0264341 -0.0563517 0.0830932
+ pelvis
+
+
+ -0.0295078 -0.0824785 0.0836055
+ pelvis
+ -1.5708 0.785398
+ hip_flexion_r
+
+
+ 0.00195031 -0.0622951 0.00653927
+ femur_r
+
+
+ -0.0221417 -0.0712436 0.0147994
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1073
+
+ 0.106164117507277
+
+ 0.106164117507277
+
+ 0.12217305
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0662901 0.09088 0.0296103
+ pelvis
+
+
+ -0.0243849 -0.0584009 0.0777654
+ pelvis
+
+
+ -0.0295078 -0.0824785 0.0836055
+ pelvis
+ -1.5708 0.785398
+ hip_flexion_r
+
+
+ 0.00183558 -0.0581651 0.00435951
+ femur_r
+
+
+ -0.0215681 -0.0684902 0.0119313
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1113
+
+ 0.105172289885285
+
+ 0.168275663816457
+
+ 0.13962634
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.117109 -0.117929 0.053278
+ pelvis
+
+
+ -0.0437098 -0.0411859 0.041989
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 381
+
+ 0.0580741808995291
+
+ 0.0258107470664574
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.116085 -0.0840153 0.0731548
+ pelvis
+
+
+ -0.0162908 -0.00378589 0.0508227
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 164
+
+ 0.0260943873061546
+
+ 0.0424033793725013
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.143031 0.000307373 0.0240776
+ pelvis
+
+
+ -0.122232 -0.0282783 0.0673147
+ pelvis
+
+
+ -0.0169792 -0.00413006 0.0501344
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 444
+
+ 0.0273292567818386
+
+ 0.120879404996594
+
+ 0.17453293
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.030225 -0.0318643 0.0991791
+ pelvis
+
+
+ 0.0383178 -0.462338 0.00217976
+ femur_r
+ -2.61799 -1.45997
+ knee_angle_r
+
+
+ 0 0 0
+ tibia_r
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0155805 0.0179938 0.0275081 0.0296564 0.0307615 0.0365695 0.0422074 0.0450902 0.048391 0.0534299 0.0617576 0.0617669 0.0617762 0.0633083 0.066994 0.0733035 0.0573481
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0234116 0.0237613 0.0251141 0.0252795 0.0253146 0.0249184 0.0242373 0.0238447 0.0234197 0.0227644 0.020984 0.0209814 0.0209788 0.0205225 0.0191754 0.0159554 -0.0673774
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+ -2.0944 0.1745
+ 0.0014 0.0014
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1169
+
+ 0.130462347889869
+
+ 0.354766033735608
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.0160614 -0.240806 0.0215681
+ femur_r
+
+
+ 0.0408417 -0.317671 0.00103252
+ femur_r
+
+
+ 0.0424479 -0.464403 -0.0143405
+ femur_r
+ -2.61799 -1.21004
+ knee_angle_r
+
+
+ 0.0314344 -0.488151 -0.0150288
+ femur_r
+ -2.61799 -1.78006
+ knee_angle_r
+
+
+ 0 0 0
+ tibia_r
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.00981097 0.0122243 0.0217371 0.0238851 0.0249902 0.0307959 0.0364187 0.0392871 0.0425654 0.0475764 0.0559586 0.0559681 0.0559776 0.0575419 0.0613368 0.0679503 0.0629332
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0224154 0.0227651 0.0241265 0.0242933 0.0243287 0.0239462 0.0233593 0.0230677 0.0228342 0.0226362 0.0217917 0.0217903 0.0217889 0.0215365 0.0206842 0.0183269 -0.0656205
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+ -2.0944 2.0944
+ -0.0146 -0.0146
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1294
+
+ 0.103138198824905
+
+ 0.146015876988068
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.03327 -0.220729 0.0355644
+ femur_r
+
+
+ 0.0384325 -0.239085 0.0326963
+ femur_r
+
+
+ 0.0393503 -0.462338 0.00630982
+ femur_r
+ -2.61799 -1.42
+ knee_angle_r
+
+
+ 0 0 0
+ tibia_r
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0082733 0.0106866 0.0202042 0.022353 0.0234583 0.0292715 0.0349465 0.037871 0.0412569 0.0465287 0.0554632 0.0554735 0.0554837 0.0571717 0.061272 0.0684368 0.0648818
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.025599 0.0259487 0.0273124 0.0274796 0.0275151 0.0271363 0.0265737 0.0263073 0.0261187 0.0260129 0.0252923 0.0252911 0.0252898 0.0250526 0.0242191 0.0218288 -0.0685706
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+ -2.0944 2.0944
+ 0.0018 0.0018
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1365
+
+ 0.101374267400811
+
+ 0.158470119155291
+
+ 0.05235988
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.00550675 -0.212698 0.0400387
+ femur_r
+
+
+ 0.0308608 -0.29725 0.0469221
+ femur_r
+
+
+ 0.0414154 -0.462338 0.0235184
+ femur_r
+ -2.61799 -1.21004
+ knee_angle_r
+
+
+ 0.0290252 -0.486774 0.0211092
+ femur_r
+ -2.61799 -1.92004
+ knee_angle_r
+
+
+ 0 0 0
+ tibia_r
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0142897 0.016703 0.0262145 0.0283623 0.0294674 0.0352709 0.0408785 0.0437291 0.0469704 0.0518742 0.0599557 0.0599647 0.0599738 0.0614577 0.0650351 0.0711867 0.0583766
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0215318 0.0218815 0.0232362 0.0234019 0.0234371 0.0230439 0.0223842 0.0220151 0.0216359 0.0210971 0.0195864 0.0195842 0.019582 0.01919 0.018008 0.0151073 -0.0653421
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+ -2.0944 2.0944
+ 0.0165 0.0165
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1871
+
+ 0.0970565157922595
+
+ 0.18140324975458
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0217976 -0.450751 -0.0269601
+ femur_r
+
+
+ -0.0344172 -0.46142 -0.0295988
+ femur_r
+ -0.785398 0.174533
+ knee_angle_r
+
+
+ 0 0.0318396 -0.00544355
+ calcn_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1558
+
+ 0.0600858022374794
+
+ 0.390557714543616
+
+ 0.29670597
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0252393 -0.452701 0.0312049
+ femur_r
+
+
+ -0.0344172 -0.460961 0.0314344
+ femur_r
+ -0.785398 0.174533
+ knee_angle_r
+
+
+ 0 0.0318396 -0.00544355
+ calcn_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 683
+
+ 0.0640023499646658
+
+ 0.380013952915203
+
+ 0.13962634
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.00237246 -0.151541 0.00701851
+ tibia_r
+
+
+ 0 0.0318396 -0.00544355
+ calcn_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 3549
+
+ 0.05028880287293
+
+ 0.25144401436465
+
+ 0.43633231
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.00929212 -0.133253 0.00187819
+ tibia_r
+
+
+ -0.0142347 -0.400451 -0.0226372
+ tibia_r
+
+
+ 0.0428294 0.0343046 -0.0293746
+ calcn_r
+
+
+ 0.0792909 0.0163306 -0.0288611
+ calcn_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1588
+
+ 0.0310754871674718
+
+ 0.310754871674718
+
+ 0.20943951
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.00820474 -0.202252 -0.00177934
+ tibia_r
+
+
+ -0.0152233 -0.400451 -0.0193751
+ tibia_r
+
+
+ 0.0447809 0.0323532 -0.0287584
+ calcn_r
+
+
+ 0.0727176 0.0180767 -0.0270123
+ calcn_r
+
+
+ 0.170291 -0.00831939 0.0119142
+ calcn_r
+
+
+ -0.00195146 -0.00801126 0.0150981
+ toes_r
+
+
+ 0.0292719 -0.0072923 0.0220823
+ toes_r
+
+
+ 0.0452944 -0.00616251 0.0248555
+ toes_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 310
+
+ 0.0344375016119488
+
+ 0.405147077787632
+
+ 0.12217305
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.00780933 -0.230721 0.02412
+ tibia_r
+
+
+ -0.0183865 -0.403219 -0.0172003
+ tibia_r
+
+
+ 0.038413 0.0283475 -0.0247527
+ calcn_r
+
+
+ 0.106611 0.00698418 -0.0262934
+ calcn_r
+
+
+ 0.177275 -0.00544355 -0.0276286
+ calcn_r
+
+
+ 0.0159198 -0.00657334 -0.0272177
+ toes_r
+
+
+ 0.0577222 -0.0104763 -0.0185902
+ toes_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 322
+
+ 0.0436740693777009
+
+ 0.385956892175032
+
+ 0.17453293
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.0176946 -0.160536 0.011368
+ tibia_r
+
+
+ 0.0325224 -0.390565 -0.0174969
+ tibia_r
+
+
+ 0.119758 0.0182821 -0.0313261
+ calcn_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 905
+
+ 0.0979126279713794
+
+ 0.222801184057323
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.00691966 -0.261563 0.032127
+ tibia_r
+
+
+ -0.0195728 -0.413598 0.0279752
+ tibia_r
+
+
+ -0.0142347 -0.424571 0.0285683
+ tibia_r
+
+
+ 0.0483757 0.0277313 0.0239311
+ calcn_r
+
+
+ 0.0695336 0.0224932 0.035229
+ calcn_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 435
+
+ 0.0500405473367776
+
+ 0.161130562424424
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.000494262 -0.155 0.0357845
+ tibia_r
+
+
+ -0.0204624 -0.415674 0.0282718
+ tibia_r
+
+
+ -0.0160141 -0.426943 0.0285683
+ tibia_r
+
+
+ 0.0449863 0.0236229 0.0226986
+ calcn_r
+
+
+ 0.0699445 0.0108871 0.0291692
+ calcn_r
+
+
+ 0.0875076 0.00708688 0.0121196
+ calcn_r
+
+
+ 0.123558 0.00873022 -0.0188984
+ calcn_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 943
+
+ 0.0491845053353795
+
+ 0.346299068177672
+
+ 0.17453293
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.000988523 -0.277182 0.0228349
+ tibia_r
+
+
+ 0.0226372 -0.40223 0.0157175
+ tibia_r
+
+
+ 0.0880212 0.0234175 0.0307098
+ calcn_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 180
+
+ 0.079885188261723
+
+ 0.101120491470535
+
+ 0.2268928
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.00316327 -0.136515 0.0272832
+ tibia_r
+
+
+ 0.0285683 -0.396101 0.00711737
+ tibia_r
+
+
+ 0.0946972 0.0398509 -0.000102708
+ calcn_r
+
+
+ 0.165977 0.00564897 0.0133521
+ calcn_r
+
+
+ 0.000308125 0.0048273 0.0157144
+ toes_r
+
+
+ 0.0454999 -0.000410834 0.0256771
+ toes_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 512
+
+ 0.10269399323314
+
+ 0.347347330053269
+
+ 0.13962634
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.00118623 -0.174672 0.0225383
+ tibia_r
+
+
+ 0.0322258 -0.393926 -0.00840245
+ tibia_r
+
+
+ 0.0996272 0.0399536 -0.0216715
+ calcn_r
+
+
+ 0.132802 0.0317369 -0.0263961
+ calcn_r
+
+
+ 0.178096 0.0142765 -0.0287584
+ calcn_r
+
+
+ 0.0306071 0.00421105 -0.0251636
+ toes_r
+
+
+ 0.0578249 0.00349209 -0.0191038
+ toes_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 162
+
+ 0.111944566232256
+
+ 0.307595429737281
+
+ 0.10471976
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0418027 0.0311471 -0.123871
+ pelvis
+
+
+ -0.0250098 -0.0134227 -0.0636718
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 819
+
+ 0.0564063466206731
+
+ 0.0822372904002337
+
+ 0.13962634
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0876013 0.0455937 -0.0784826
+ pelvis
+
+
+ -0.0295988 -0.00665399 -0.0604595
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 573
+
+ 0.0891317692540649
+
+ 0.0559051333782892
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.125306 0.0107581 -0.0663926
+ pelvis
+
+
+ -0.0354497 -0.00539203 -0.059427
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 653
+
+ 0.0685306401304506
+
+ 0.0562248285899982
+
+ 0.33161256
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0478477 -0.00819662 -0.108195
+ pelvis
+
+
+ -0.00826013 -0.0119313 -0.0642454
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 270
+
+ 0.0732892138718745
+
+ 0.0172445209110293
+
+ 0.17453293
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0648557 -0.00665975 -0.101536
+ pelvis
+
+
+ -0.0110135 -0.0119313 -0.0642454
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 285
+
+ 0.0606592845926907
+
+ 0.0281632392751778
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0854497 -0.00645484 -0.0877038
+ pelvis
+
+
+ -0.0154877 -0.00952209 -0.0630982
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 323
+
+ 0.0411769178508985
+
+ 0.0552637581683112
+
+ 0.01745329
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.12213 -0.0998655 -0.0732675
+ pelvis
+
+
+ -0.0344006 -0.0347861 0.018693
+ tibia_l
+ -0.558505 0.174533
+ knee_angle_l
+
+
+ -0.0266901 -0.0471624 0.0193454
+ tibia_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1288
+
+ 0.0909853547142785
+
+ 0.408296779280325
+
+ 0.26179939
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.129455 -0.112581 -0.0618742
+ pelvis
+
+
+ -0.0415476 -0.0282619 0.0225087
+ tibia_l
+ -0.331613 0.174533
+ knee_angle_l
+
+
+ -0.0328387 -0.0522138 0.0226174
+ tibia_l
+
+
+ -0.0111703 -0.0737438 0.0242188
+ tibia_l
+
+
+ 0.00266901 -0.0945028 0.0190785
+ tibia_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 410
+
+ 0.225274116169199
+
+ 0.286355903886718
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.129056 -0.105091 -0.0711466
+ pelvis
+
+
+ -0.0297545 -0.0355868 -0.0290922
+ tibia_l
+
+
+ -0.0231314 -0.0556538 -0.0339063
+ tibia_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 896
+
+ 0.12363108064316
+
+ 0.369759011831837
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.0057362 -0.242182 -0.0268454
+ femur_l
+
+
+ -0.0297545 -0.0355868 -0.0290922
+ tibia_l
+
+
+ -0.0231314 -0.0556538 -0.0339063
+ tibia_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 804
+
+ 0.191444885177129
+
+ 0.0984889871720488
+
+ 0.40142573
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.015676 -0.00133195 -0.127252
+ pelvis
+
+
+ -0.00344172 -0.409335 0.0482988
+ femur_l
+
+
+ -0.00553573 -0.0414191 0.0394421
+ tibia_l
+
+
+ 0.00593114 -0.058224 0.0378604
+ tibia_l
+
+
+ 0.0240211 -0.0830359 0.0249108
+ tibia_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 156
+
+ 0.574215555849301
+
+ 0.110426068432558
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0323766 -0.0856546 -0.0173154
+ pelvis
+
+
+ 0.0057362 -0.242182 -0.0268454
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 627
+
+ 0.157008536123858
+
+ 0.12515173169293
+
+ 0.10471976
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0601427 -0.0937488 -0.0168031
+ pelvis
+
+
+ 0.00103252 -0.13721 -0.0337289
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 429
+
+ 0.149037454475741
+
+ 0.0224116472895851
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.074999 -0.120285 -0.0261267
+ pelvis
+
+
+ -0.00516258 -0.138931 -0.0388914
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 381
+
+ 0.0986628781897259
+
+ 0.0680433642687765
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0851424 -0.12213 -0.031557
+ pelvis
+
+
+ 0.0061951 -0.262144 -0.0260423
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 343
+
+ 0.140989747681234
+
+ 0.139824543154943
+
+ 0.05235988
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.11381 -0.116935 -0.0500199
+ pelvis
+
+
+ 0.00803068 -0.440196 0.0305166
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 488
+
+ 0.152260426784655
+
+ 0.289411040224267
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0318643 0.0219259 -0.12715
+ pelvis
+
+
+ 0.0337289 -0.11415 -0.0684902
+ femur_l
+
+
+ 0.0061951 -0.464517 -0.0409565
+ femur_l
+
+
+ 0.00593114 -0.0481411 -0.0293591
+ tibia_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 233
+
+ 0.10603790125655
+
+ 0.474380084568775
+
+ 0.05235988
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0441593 -0.0786875 -0.0462084
+ pelvis
+
+
+ -0.0139963 -0.0943031 -0.0290252
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 266
+
+ 0.111655934754335
+
+ 0.0368464584689304
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0758289 -0.121617 -0.0286267
+ pelvis
+
+
+ -0.0262651 -0.0315339 0.0373069
+ tibia_l
+ -0.436332 0.174533
+ knee_angle_l
+
+
+ -0.019207 -0.0509386 0.0353891
+ tibia_l
+
+
+ 0.00593114 -0.0826405 0.0225383
+ tibia_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 162
+
+ 0.396585869517023
+
+ 0.141959714656662
+
+ 0.05235988
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.122437 0.0627041 -0.0717204
+ pelvis
+
+
+ -0.132273 0.00122949 -0.0907775
+ pelvis
+
+
+ -0.0524289 -0.0284516 -0.0449718
+ femur_l
+
+
+ -0.0317785 -0.0649338 -0.0539203
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 573
+
+ 0.151587000363061
+
+ 0.133439260882976
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.138215 0.0180326 -0.0576837
+ pelvis
+
+
+ -0.140982 -0.053278 -0.0936463
+ pelvis
+
+
+ -0.0488724 -0.0608037 -0.0336141
+ femur_l
+
+
+ -0.0178969 -0.11656 -0.0480694
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 819
+
+ 0.159394708751813
+
+ 0.137708353819594
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.159424 -0.0321717 -0.00594255
+ pelvis
+
+
+ -0.156658 -0.107786 -0.0412905
+ pelvis
+
+
+ -0.0343025 -0.119428 -0.0154877
+ femur_l
+
+
+ -0.00688344 -0.162793 -0.0471516
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 552
+
+ 0.156288391708115
+
+ 0.157373727761643
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0690565 0.0373971 -0.0874989
+ pelvis
+
+
+ -0.0264341 -0.0563517 -0.0830932
+ pelvis
+
+
+ -0.0295078 -0.0824785 -0.0836055
+ pelvis
+ -1.5708 0.785398
+ hip_flexion_l
+
+
+ 0.00195031 -0.0622951 -0.00653927
+ femur_l
+
+
+ -0.0221417 -0.0712436 -0.0147994
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1073
+
+ 0.106164117507277
+
+ 0.106164117507277
+
+ 0.12217305
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0662901 0.09088 -0.0296103
+ pelvis
+
+
+ -0.0243849 -0.0584009 -0.0777654
+ pelvis
+
+
+ -0.0295078 -0.0824785 -0.0836055
+ pelvis
+ -1.5708 0.785398
+ hip_flexion_l
+
+
+ 0.00183558 -0.0581651 -0.00435951
+ femur_l
+
+
+ -0.0215681 -0.0684902 -0.0119313
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1113
+
+ 0.105172289885285
+
+ 0.168275663816457
+
+ 0.13962634
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.117109 -0.117929 -0.053278
+ pelvis
+
+
+ -0.0437098 -0.0411859 -0.041989
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 381
+
+ 0.0580741808995291
+
+ 0.0258107470664574
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.116085 -0.0840153 -0.0731548
+ pelvis
+
+
+ -0.0162908 -0.00378589 -0.0508227
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 164
+
+ 0.0260943873061546
+
+ 0.0424033793725013
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.143031 0.000307373 -0.0240776
+ pelvis
+
+
+ -0.122232 -0.0282783 -0.0673147
+ pelvis
+
+
+ -0.0169792 -0.00413006 -0.0501344
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 444
+
+ 0.0273292567818386
+
+ 0.120879404996594
+
+ 0.17453293
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.030225 -0.0318643 -0.0991791
+ pelvis
+
+
+ 0.0383178 -0.462338 -0.00217976
+ femur_l
+ -2.61799 -1.45997
+ knee_angle_l
+
+
+ 0 0 0
+ tibia_l
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0155805 0.0179938 0.0275081 0.0296564 0.0307615 0.0365695 0.0422074 0.0450902 0.048391 0.0534299 0.0617576 0.0617669 0.0617762 0.0633083 0.066994 0.0733035 0.0573481
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0234116 0.0237613 0.0251141 0.0252795 0.0253146 0.0249184 0.0242373 0.0238447 0.0234197 0.0227644 0.020984 0.0209814 0.0209788 0.0205225 0.0191754 0.0159554 -0.0673774
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+ -2.0944 0.1745
+ -0.0014 -0.0014
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1169
+
+ 0.130462347889869
+
+ 0.354766033735608
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.0160614 -0.240806 -0.0215681
+ femur_l
+
+
+ 0.0408417 -0.317671 -0.00103252
+ femur_l
+
+
+ 0.0424479 -0.464403 0.0143405
+ femur_l
+ -2.61799 -1.21004
+ knee_angle_l
+
+
+ 0.0314344 -0.488151 0.0150288
+ femur_l
+ -2.61799 -1.78006
+ knee_angle_l
+
+
+ 0 0 0
+ tibia_l
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.00981097 0.0122243 0.0217371 0.0238851 0.0249902 0.0307959 0.0364187 0.0392871 0.0425654 0.0475764 0.0559586 0.0559681 0.0559776 0.0575419 0.0613368 0.0679503 0.0629332
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0224154 0.0227651 0.0241265 0.0242933 0.0243287 0.0239462 0.0233593 0.0230677 0.0228342 0.0226362 0.0217917 0.0217903 0.0217889 0.0215365 0.0206842 0.0183269 -0.0656205
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+ -2.0944 2.0944
+ 0.0146 0.0146
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1294
+
+ 0.103138198824905
+
+ 0.146015876988068
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.03327 -0.220729 -0.0355644
+ femur_l
+
+
+ 0.0384325 -0.239085 -0.0326963
+ femur_l
+
+
+ 0.0393503 -0.462338 -0.00630982
+ femur_l
+ -2.61799 -1.42
+ knee_angle_l
+
+
+ 0 0 0
+ tibia_l
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0082733 0.0106866 0.0202042 0.022353 0.0234583 0.0292715 0.0349465 0.037871 0.0412569 0.0465287 0.0554632 0.0554735 0.0554837 0.0571717 0.061272 0.0684368 0.0648818
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.025599 0.0259487 0.0273124 0.0274796 0.0275151 0.0271363 0.0265737 0.0263073 0.0261187 0.0260129 0.0252923 0.0252911 0.0252898 0.0250526 0.0242191 0.0218288 -0.0685706
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+ -2.0944 2.0944
+ -0.0018 -0.0018
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1365
+
+ 0.101374267400811
+
+ 0.158470119155291
+
+ 0.05235988
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.00550675 -0.212698 -0.0400387
+ femur_l
+
+
+ 0.0308608 -0.29725 -0.0469221
+ femur_l
+
+
+ 0.0414154 -0.462338 -0.0235184
+ femur_l
+ -2.61799 -1.21004
+ knee_angle_l
+
+
+ 0.0290252 -0.486774 -0.0211092
+ femur_l
+ -2.61799 -1.92004
+ knee_angle_l
+
+
+ 0 0 0
+ tibia_l
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0142897 0.016703 0.0262145 0.0283623 0.0294674 0.0352709 0.0408785 0.0437291 0.0469704 0.0518742 0.0599557 0.0599647 0.0599738 0.0614577 0.0650351 0.0711867 0.0583766
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0215318 0.0218815 0.0232362 0.0234019 0.0234371 0.0230439 0.0223842 0.0220151 0.0216359 0.0210971 0.0195864 0.0195842 0.019582 0.01919 0.018008 0.0151073 -0.0653421
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+ -2.0944 2.0944
+ -0.0165 -0.0165
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1871
+
+ 0.0970565157922595
+
+ 0.18140324975458
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0217976 -0.450751 0.0269601
+ femur_l
+
+
+ -0.0344172 -0.46142 0.0295988
+ femur_l
+ -0.785398 0.174533
+ knee_angle_l
+
+
+ 0 0.0318396 0.00544355
+ calcn_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1558
+
+ 0.0600858022374794
+
+ 0.390557714543616
+
+ 0.29670597
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0252393 -0.452701 -0.0312049
+ femur_l
+
+
+ -0.0344172 -0.460961 -0.0314344
+ femur_l
+ -0.785398 0.174533
+ knee_angle_l
+
+
+ 0 0.0318396 0.00544355
+ calcn_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 683
+
+ 0.0640023499646658
+
+ 0.380013952915203
+
+ 0.13962634
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.00237246 -0.151541 -0.00701851
+ tibia_l
+
+
+ 0 0.0318396 0.00544355
+ calcn_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 3549
+
+ 0.05028880287293
+
+ 0.25144401436465
+
+ 0.43633231
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.00929212 -0.133253 -0.00187819
+ tibia_l
+
+
+ -0.0142347 -0.400451 0.0226372
+ tibia_l
+
+
+ 0.0428294 0.0343046 0.0293746
+ calcn_l
+
+
+ 0.0792909 0.0163306 0.0288611
+ calcn_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1588
+
+ 0.0310754871674718
+
+ 0.310754871674718
+
+ 0.20943951
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.00820474 -0.202252 0.00177934
+ tibia_l
+
+
+ -0.0152233 -0.400451 0.0193751
+ tibia_l
+
+
+ 0.0447809 0.0323532 0.0287584
+ calcn_l
+
+
+ 0.0727176 0.0180767 0.0270123
+ calcn_l
+
+
+ 0.170291 -0.00831939 -0.0119142
+ calcn_l
+
+
+ -0.00195146 -0.00801126 -0.0150981
+ toes_l
+
+
+ 0.0292719 -0.0072923 -0.0220823
+ toes_l
+
+
+ 0.0452944 -0.00616251 -0.0248555
+ toes_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 310
+
+ 0.0344375016119488
+
+ 0.405147077787632
+
+ 0.12217305
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.00780933 -0.230721 -0.02412
+ tibia_l
+
+
+ -0.0183865 -0.403219 0.0172003
+ tibia_l
+
+
+ 0.038413 0.0283475 0.0247527
+ calcn_l
+
+
+ 0.106611 0.00698418 0.0262934
+ calcn_l
+
+
+ 0.177275 -0.00544355 0.0276286
+ calcn_l
+
+
+ 0.0159198 -0.00657334 0.0272177
+ toes_l
+
+
+ 0.0577222 -0.0104763 0.0185902
+ toes_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 322
+
+ 0.0436740693777009
+
+ 0.385956892175032
+
+ 0.17453293
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.0176946 -0.160536 -0.011368
+ tibia_l
+
+
+ 0.0325224 -0.390565 0.0174969
+ tibia_l
+
+
+ 0.119758 0.0182821 0.0313261
+ calcn_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 905
+
+ 0.0979126279713794
+
+ 0.222801184057323
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.00691966 -0.261563 -0.032127
+ tibia_l
+
+
+ -0.0195728 -0.413598 -0.0279752
+ tibia_l
+
+
+ -0.0142347 -0.424571 -0.0285683
+ tibia_l
+
+
+ 0.0483757 0.0277313 -0.0239311
+ calcn_l
+
+
+ 0.0695336 0.0224932 -0.035229
+ calcn_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 435
+
+ 0.0500405473367776
+
+ 0.161130562424424
+
+ 0.08726646
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.000494262 -0.155 -0.0357845
+ tibia_l
+
+
+ -0.0204624 -0.415674 -0.0282718
+ tibia_l
+
+
+ -0.0160141 -0.426943 -0.0285683
+ tibia_l
+
+
+ 0.0449863 0.0236229 -0.0226986
+ calcn_l
+
+
+ 0.0699445 0.0108871 -0.0291692
+ calcn_l
+
+
+ 0.0875076 0.00708688 -0.0121196
+ calcn_l
+
+
+ 0.123558 0.00873022 0.0188984
+ calcn_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 943
+
+ 0.0491845053353795
+
+ 0.346299068177672
+
+ 0.17453293
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.000988523 -0.277182 -0.0228349
+ tibia_l
+
+
+ 0.0226372 -0.40223 -0.0157175
+ tibia_l
+
+
+ 0.0880212 0.0234175 -0.0307098
+ calcn_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 180
+
+ 0.079885188261723
+
+ 0.101120491470535
+
+ 0.2268928
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.00316327 -0.136515 -0.0272832
+ tibia_l
+
+
+ 0.0285683 -0.396101 -0.00711737
+ tibia_l
+
+
+ 0.0946972 0.0398509 0.000102708
+ calcn_l
+
+
+ 0.165977 0.00564897 -0.0133521
+ calcn_l
+
+
+ 0.000308125 0.0048273 -0.0157144
+ toes_l
+
+
+ 0.0454999 -0.000410834 -0.0256771
+ toes_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 512
+
+ 0.10269399323314
+
+ 0.347347330053269
+
+ 0.13962634
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.00118623 -0.174672 -0.0225383
+ tibia_l
+
+
+ 0.0322258 -0.393926 0.00840245
+ tibia_l
+
+
+ 0.0996272 0.0399536 0.0216715
+ calcn_l
+
+
+ 0.132802 0.0317369 0.0263961
+ calcn_l
+
+
+ 0.178096 0.0142765 0.0287584
+ calcn_l
+
+
+ 0.0306071 0.00421105 0.0251636
+ toes_l
+
+
+ 0.0578249 0.00349209 0.0191038
+ toes_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 162
+
+ 0.111944566232256
+
+ 0.307595429737281
+
+ 0.10471976
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.143441 0.0449789 0.0446716
+ pelvis
+
+
+ -0.0593846 0.118769 0.0260212
+ torso
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 2500
+
+ 0.127884730872769
+
+ 0.0319711827181923
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.143441 0.0449789 -0.0446716
+ pelvis
+
+
+ -0.0593846 0.118769 -0.0260212
+ torso
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 2500
+
+ 0.127884730872769
+
+ 0.0319711827181923
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0409831 0.0717204 0.118544
+ pelvis
+
+
+ 0.0755804 0.172755 0.0161958
+ torso
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 900
+
+ 0.106201968619601
+
+ 0.106201968619601
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0409831 0.0717204 -0.118544
+ pelvis
+
+
+ 0.0755804 0.172755 -0.0161958
+ torso
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 900
+
+ 0.106201968619601
+
+ 0.106201968619601
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0307373 -0.0651631 0.0102458
+ pelvis
+
+
+ 0.0701818 0.118769 0.118769
+ torso
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 900
+
+ 0.126377514542442
+
+ 0.147440433632849
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0307373 -0.0651631 -0.0102458
+ pelvis
+
+
+ 0.0701818 0.118769 -0.118769
+ torso
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 900
+
+ 0.126377514542442
+
+ 0.147440433632849
+
+ 0
+
+ 10
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+
+ glut_max1_r glut_med1_r glut_med2_r glut_med3_r glut_min1_r glut_min2_r glut_min3_r peri_r sar_r tfl_r
+
+
+ add_brev_r add_long_r glut_med1_r glut_min1_r grac_r iliacus_r pect_r psoas_r rect_fem_r sar_r tfl_r
+
+
+ glut_med1_r glut_min1_r iliacus_r psoas_r tfl_r
+
+
+ gem_r glut_med3_r glut_min3_r peri_r quad_fem_r
+
+
+ add_long_r add_mag1_r add_mag2_r add_mag3_r bifemlh_r glut_max1_r glut_max2_r glut_max3_r glut_med3_r glut_min3_r semimem_r semiten_r
+
+
+ add_brev_r add_long_r add_mag1_r add_mag2_r add_mag3_r bifemlh_r grac_r pect_r semimem_r semiten_r
+
+
+ bifemlh_r bifemsh_r grac_r lat_gas_r med_gas_r sar_r semimem_r semiten_r
+
+
+ rect_fem_r vas_int_r vas_lat_r vas_med_r
+
+
+ flex_dig_r flex_hal_r lat_gas_r med_gas_r per_brev_r per_long_r soleus_r tib_post_r
+
+
+ ext_hal_r flex_dig_r flex_hal_r tib_ant_r tib_post_r
+
+
+ ext_dig_r ext_hal_r per_tert_r tib_ant_r
+
+
+ ext_dig_r per_brev_r per_long_r per_tert_r
+
+
+ glut_max1_l glut_med1_l glut_med2_l glut_med3_l glut_min1_l glut_min2_l glut_min3_l peri_l sar_l tfl_l
+
+
+ add_brev_l add_long_l glut_med1_l glut_min1_l grac_l iliacus_l pect_l psoas_l rect_fem_l sar_l tfl_l
+
+
+ glut_med1_l glut_min1_l iliacus_l psoas_l tfl_l
+
+
+ gem_l glut_med3_l glut_min3_l peri_l quad_fem_l
+
+
+ add_long_l add_mag1_l add_mag2_l add_mag3_l bifemlh_l glut_max1_l glut_max2_l glut_max3_l glut_med3_l glut_min3_l semimem_l semiten_l
+
+
+ add_brev_l add_long_l add_mag1_l add_mag2_l add_mag3_l bifemlh_l grac_l pect_l semimem_l semiten_l
+
+
+ bifemlh_l bifemsh_l grac_l lat_gas_l med_gas_l sar_l semimem_l semiten_l
+
+
+ rect_fem_l vas_int_l vas_lat_l vas_med_l
+
+
+ flex_dig_l flex_hal_l lat_gas_l med_gas_l per_brev_l per_long_l soleus_l tib_post_l
+
+
+ ext_hal_l flex_dig_l flex_hal_l tib_ant_l tib_post_l
+
+
+ ext_dig_l ext_hal_l per_tert_l tib_ant_l
+
+
+ ext_dig_l per_brev_l per_long_l per_tert_l
+
+
+ ercspn_l ercspn_r
+
+
+ ercspn_r extobl_r intobl_r
+
+
+ ercspn_r extobl_l intobl_r
+
+
+ ercspn_l extobl_l intobl_l
+
+
+ ercspn_l extobl_r intobl_l
+
+
+ extobl_l extobl_r intobl_l intobl_r
+
+
+
+
+
+
+
+
+ torso
+
+ 0.104355 0.312953 1.53901e-005
+
+ false
+
+
+
+ torso
+
+ -0.0248759 0.426753 0.168838
+
+ false
+
+
+
+ torso
+
+ -0.0221241 0.441139 -0.17206
+
+ false
+
+
+
+ torso
+
+ 0.0595266 0.699402 0.0102044
+
+ false
+
+
+
+ pelvis
+
+ 0.0232386 0.0359303 0.130326
+
+ false
+
+
+
+ pelvis
+
+ 0.0290409 0.0276997 -0.131773
+
+ false
+
+
+
+ pelvis
+
+ -0.172322 0.0400191 0.00588037
+
+ false
+
+
+
+ femur_r
+
+ 0.0505767 -0.220123 0.088543
+
+ false
+
+
+
+ femur_r
+
+ 0.10824 -0.281765 -0.00682573
+
+ false
+
+
+
+ femur_r
+
+ 0.0392959 -0.340764 0.0791508
+
+ false
+
+
+
+ femur_r
+
+ -0.000557077 -0.426179 0.0605532
+
+ false
+
+
+
+ femur_r
+
+ -0.00249175 -0.44311 -0.0605733
+
+ false
+
+
+
+ tibia_r
+
+ -0.0242215 -0.0600063 0.0707116
+
+ false
+
+
+
+ tibia_r
+
+ 0.0516888 -0.0954483 0.0165982
+
+ false
+
+
+
+ tibia_r
+
+ -0.0077303 -0.145462 0.0800082
+
+ false
+
+
+
+ tibia_r
+
+ -0.00495937 -0.430754 0.0549299
+
+ false
+
+
+
+ tibia_r
+
+ 0.00294852 -0.416285 -0.0343814
+
+ false
+
+
+
+ calcn_r
+
+ -0.0204583 0.0173869 -0.00517233
+
+ false
+
+
+
+ calcn_r
+
+ 0.122737 0.0310306 -0.0403917
+
+ false
+
+
+
+ calcn_r
+
+ 0.117749 0.0110466 0.0669291
+
+ false
+
+
+
+ calcn_r
+
+ 0.208311 -0.011538 0.0762391
+
+ false
+
+
+
+ calcn_r
+
+ 0.209703 0.00123517 -0.032195
+
+ false
+
+
+
+ calcn_r
+
+ 0.270735 0.00315058 -0.000609483
+
+ false
+
+
+
+ femur_l
+
+ 0.0356871 -0.207582 -0.0925605
+
+ false
+
+
+
+ femur_l
+
+ 0.114018 -0.249446 -0.0174195
+
+ false
+
+
+
+ femur_l
+
+ 0.025865 -0.316127 -0.0780273
+
+ false
+
+
+
+ femur_l
+
+ -0.000793899 -0.446213 -0.0622721
+
+ false
+
+
+
+ femur_l
+
+ 0.00052637 -0.445496 0.054014
+
+ false
+
+
+
+ tibia_l
+
+ 0.00370712 -0.071649 -0.0775028
+
+ false
+
+
+
+ tibia_l
+
+ 0.0480739 -0.121521 -0.0221235
+
+ false
+
+
+
+ tibia_l
+
+ -0.0131425 -0.11469 -0.0883916
+
+ false
+
+
+
+ tibia_l
+
+ 0.00379583 -0.428487 -0.054293
+
+ false
+
+
+
+ tibia_l
+
+ 0.00783085 -0.405283 0.0370404
+
+ false
+
+
+
+ calcn_l
+
+ -0.0227134 0.0268771 0.00768653
+
+ false
+
+
+
+ calcn_l
+
+ 0.149706 0.0305297 0.0342125
+
+ false
+
+
+
+ calcn_l
+
+ 0.131926 0.0310378 -0.0640441
+
+ false
+
+
+
+ calcn_l
+
+ 0.194554 0.00785146 -0.0750158
+
+ false
+
+
+
+ calcn_l
+
+ 0.211694 0.00769221 0.0269874
+
+ false
+
+
+
+ calcn_l
+
+ 0.261087 0.00908552 0.00196118
+
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Bindings/Python/tutorials/resources/Tutorial 4/normal_gait.mot b/Bindings/Python/tutorials/resources/Tutorial 4/normal_gait.mot
new file mode 100644
index 0000000000..e8c78759b3
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 4/normal_gait.mot
@@ -0,0 +1,58 @@
+normal_gait
+version=1
+nRows=51
+nColumns=18
+inDegrees=yes
+endheader
+time pelvis_list pelvis_rotation pelvis_tilt hip_flexion_r hip_adduction_r hip_rotation_r knee_angle_r ankle_angle_r hip_flexion_l hip_adduction_l hip_rotation_l knee_angle_l ankle_angle_l pelvis_ty lumbar_bending lumbar_rotation lumbar_extension
+0 -0.47 2.43 -1.87 24.61 1.09 -1.35 -3.94 -1.7 -16.56 2.68 1.28 -8.2 9.81 0.96 0.47 -2.43 1.87
+0.02 -0.87 2.56 -1.81 24.45 1.59 -0.37 -6.66 -3.25 -16.82 1.94 1.41 -11.29 8.26 0.96 0.87 -2.56 1.81
+0.04 -1.4 2.52 -1.71 24.13 2.22 1.36 -9.45 -4.68 -16.53 0.99 1.16 -15.19 5.52 0.96 1.4 -2.52 1.71
+0.06 -2.06 2.29 -1.59 23.68 3.01 3.02 -12.26 -5.08 -15.4 -0.19 0.41 -20.17 1.11 0.96 2.06 -2.29 1.59
+0.08 -2.76 1.97 -1.47 22.96 3.92 3.99 -14.76 -4.17 -13.44 -1.48 -0.48 -26.06 -4.36 0.96 2.76 -1.97 1.47
+0.1 -3.37 1.73 -1.39 21.78 4.78 4.23 -16.37 -2.5 -10.65 -2.69 -0.99 -32.67 -9.73 0.96 3.37 -1.73 1.39
+0.12 -3.82 1.66 -1.38 20.24 5.45 4.18 -17.04 -0.83 -7.15 -3.62 -0.66 -39.6 -13.37 0.96 3.82 -1.66 1.38
+0.14 -4.08 1.75 -1.43 18.41 5.85 3.83 -16.93 0.65 -3.16 -4.1 0.31 -46.16 -14.07 0.96 4.08 -1.75 1.43
+0.16 -4.1 1.94 -1.52 16.38 6.01 3.23 -16.24 1.92 0.95 -4.16 1.09 -51.68 -12.62 0.96 4.1 -1.94 1.52
+0.18 -3.89 2.12 -1.64 14.19 5.96 2.72 -15.15 2.98 4.93 -3.88 1.09 -55.66 -10.16 0.96 3.89 -2.12 1.64
+0.2 -3.49 2.24 -1.75 11.91 5.8 2.4 -13.87 3.88 8.63 -3.38 0.33 -57.83 -7.6 0.96 3.49 -2.24 1.75
+0.22 -2.96 2.29 -1.87 9.58 5.57 2.14 -12.46 4.64 11.96 -2.79 -0.74 -58.25 -5.28 0.96 2.96 -2.29 1.87
+0.24 -2.37 2.25 -1.96 7.22 5.31 1.83 -10.95 5.25 14.96 -2.18 -1.71 -57.28 -3.2 0.96 2.37 -2.25 1.96
+0.26 -1.78 2.13 -2.06 4.87 5.06 1.5 -9.42 5.78 17.62 -1.61 -2.48 -55.06 -1.34 0.96 1.78 -2.13 2.06
+0.28 -1.25 1.95 -2.15 2.57 4.83 1.21 -7.96 6.28 19.89 -1.1 -3.11 -51.58 0.23 0.96 1.25 -1.95 2.15
+0.3 -0.78 1.72 -2.26 0.33 4.64 0.96 -6.59 6.78 21.76 -0.66 -3.7 -46.99 1.44 0.96 0.78 -1.72 2.26
+0.32 -0.41 1.43 -2.36 -1.85 4.49 0.71 -5.37 7.3 23.24 -0.28 -4.35 -41.48 2.24 0.96 0.41 -1.43 2.36
+0.34 -0.13 1.08 -2.45 -3.98 4.38 0.45 -4.29 7.86 24.33 0.03 -4.98 -35.19 2.58 0.96 0.13 -1.08 2.45
+0.36 0.06 0.65 -2.52 -6.06 4.31 0.2 -3.4 8.44 24.98 0.27 -5.28 -28.31 2.39 0.96 -0.06 -0.65 2.52
+0.38 0.18 0.15 -2.56 -8.1 4.26 -0.01 -2.72 9.05 25.26 0.44 -4.96 -21.23 1.83 0.96 -0.18 -0.15 2.56
+0.4 0.24 -0.45 -2.55 -10.06 4.2 -0.09 -2.37 9.63 25.25 0.53 -4.03 -14.44 1.16 0.96 -0.24 0.45 2.55
+0.42 0.28 -1.09 -2.49 -11.88 4.11 -0.02 -2.44 10.16 25.04 0.57 -2.81 -8.48 0.54 0.96 -0.28 1.09 2.49
+0.44 0.32 -1.73 -2.41 -13.5 3.95 0.21 -3 10.56 24.8 0.59 -1.85 -4.3 0.18 0.96 -0.32 1.73 2.41
+0.46 0.39 -2.32 -2.33 -14.85 3.68 0.56 -4.08 10.75 24.66 0.67 -1.38 -2.27 0.07 0.96 -0.39 2.32 2.33
+0.48 0.54 -2.78 -2.26 -15.88 3.26 0.95 -5.83 10.54 24.66 0.86 -1.27 -2.35 -0.01 0.96 -0.54 2.78 2.26
+0.5 0.79 -3.11 -2.19 -16.56 2.68 1.28 -8.2 9.81 24.7 1.18 -1.21 -4.14 -0.5 0.96 -0.79 3.11 2.19
+0.52 1.17 -3.27 -2.1 -16.82 1.94 1.41 -11.29 8.26 24.61 1.09 -1.35 -3.94 -1.7 0.96 -1.17 3.27 2.1
+0.54 1.69 -3.25 -1.98 -16.53 0.99 1.16 -15.19 5.52 24.45 1.59 -0.37 -6.66 -3.25 0.96 -1.69 3.25 1.98
+0.56 2.34 -3.05 -1.81 -15.4 -0.19 0.41 -20.17 1.11 24.13 2.22 1.36 -9.45 -4.68 0.96 -2.34 3.05 1.81
+0.58 3.01 -2.81 -1.64 -13.44 -1.48 -0.48 -26.06 -4.36 23.68 3.01 3.02 -12.26 -5.08 0.96 -3.01 2.81 1.64
+0.6 3.61 -2.66 -1.52 -10.65 -2.69 -0.99 -32.67 -9.73 22.96 3.92 3.99 -14.76 -4.17 0.96 -3.61 2.66 1.52
+0.62 4.07 -2.68 -1.49 -7.15 -3.62 -0.66 -39.6 -13.37 21.78 4.78 4.23 -16.37 -2.5 0.96 -4.07 2.68 1.49
+0.64 4.35 -2.87 -1.54 -3.16 -4.1 0.31 -46.16 -14.07 20.24 5.45 4.18 -17.04 -0.83 0.96 -4.35 2.87 1.54
+0.66 4.42 -3.14 -1.63 0.95 -4.16 1.09 -51.68 -12.62 18.41 5.85 3.83 -16.93 0.65 0.96 -4.42 3.14 1.63
+0.68 4.26 -3.37 -1.74 4.93 -3.88 1.09 -55.66 -10.16 16.38 6.01 3.23 -16.24 1.92 0.96 -4.26 3.37 1.74
+0.7 3.88 -3.52 -1.84 8.63 -3.38 0.33 -57.83 -7.6 14.19 5.96 2.72 -15.15 2.98 0.96 -3.88 3.52 1.84
+0.72 3.36 -3.57 -1.94 11.96 -2.79 -0.74 -58.25 -5.28 11.91 5.8 2.4 -13.87 3.88 0.96 -3.36 3.57 1.94
+0.74 2.78 -3.54 -2.02 14.96 -2.18 -1.71 -57.28 -3.2 9.58 5.57 2.14 -12.46 4.64 0.96 -2.78 3.54 2.02
+0.76 2.2 -3.45 -2.09 17.62 -1.61 -2.48 -55.06 -1.34 7.22 5.31 1.83 -10.95 5.25 0.96 -2.2 3.45 2.09
+0.78 1.68 -3.3 -2.14 19.89 -1.1 -3.11 -51.58 0.23 4.87 5.06 1.5 -9.42 5.78 0.96 -1.68 3.3 2.14
+0.8 1.24 -3.1 -2.18 21.76 -0.66 -3.7 -46.99 1.44 2.57 4.83 1.21 -7.96 6.28 0.96 -1.24 3.1 2.18
+0.82 0.89 -2.87 -2.23 23.24 -0.28 -4.35 -41.48 2.24 0.33 4.64 0.96 -6.59 6.78 0.96 -0.89 2.87 2.23
+0.84 0.65 -2.6 -2.29 24.33 0.03 -4.98 -35.19 2.58 -1.85 4.49 0.71 -5.37 7.3 0.96 -0.65 2.6 2.29
+0.86 0.51 -2.27 -2.34 24.98 0.27 -5.28 -28.31 2.39 -3.98 4.38 0.45 -4.29 7.86 0.96 -0.51 2.27 2.34
+0.88 0.44 -1.88 -2.35 25.26 0.44 -4.96 -21.23 1.83 -6.06 4.31 0.2 -3.4 8.44 0.96 -0.44 1.88 2.35
+0.9 0.41 -1.42 -2.33 25.25 0.53 -4.03 -14.44 1.16 -8.1 4.26 -0.01 -2.72 9.05 0.96 -0.41 1.42 2.33
+0.92 0.42 -0.9 -2.26 25.04 0.57 -2.81 -8.48 0.54 -10.06 4.2 -0.09 -2.37 9.63 0.96 -0.42 0.9 2.26
+0.94 0.41 -0.39 -2.17 24.8 0.59 -1.85 -4.3 0.18 -11.88 4.11 -0.02 -2.44 10.16 0.96 -0.41 0.39 2.17
+0.96 0.36 0.07 -2.08 24.66 0.67 -1.38 -2.27 0.07 -13.5 3.95 0.21 -3 10.56 0.96 -0.36 -0.07 2.08
+0.98 0.23 0.46 -2.08 24.66 0.86 -1.27 -2.35 -0.01 -14.85 3.68 0.56 -4.08 10.75 0.96 -0.23 -0.46 2.08
+1 0.02 0.78 -1.89 24.7 1.18 -1.21 -4.14 -0.5 -15.88 3.26 0.95 -5.83 10.54 0.96 -0.02 -0.78 1.89
diff --git a/Bindings/Python/tutorials/resources/Tutorial 5/gait2354_Scale_MarkerSet.xml b/Bindings/Python/tutorials/resources/Tutorial 5/gait2354_Scale_MarkerSet.xml
new file mode 100644
index 0000000000..05127e16db
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 5/gait2354_Scale_MarkerSet.xml
@@ -0,0 +1,1140 @@
+
+
+
+
+
+
+ torso
+
+ 0.07000000 0.30000000 0.00000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ torso
+
+ -0.03000000 0.44000000 0.15000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ torso
+
+ -0.03000000 0.44000000 -0.15000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ torso
+
+ 0.00084000 0.65700000 0.00000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ pelvis
+
+ 0.02000000 0.03000000 0.12800000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ pelvis
+
+ 0.02000000 0.03000000 -0.12800000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ pelvis
+
+ -0.16000000 0.04000000 0.00000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ femur_r
+
+ 0.01800000 -0.20000000 0.06400000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ femur_r
+
+ 0.08000000 -0.25000000 0.00470000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ femur_r
+
+ 0.01000000 -0.30000000 0.06000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ femur_r
+
+ 0.00000000 -0.40400000 0.05000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ femur_r
+
+ 0.00000000 -0.40400000 -0.05000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ tibia_r
+
+ 0.00500000 -0.06500000 0.05000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ tibia_r
+
+ 0.05000000 -0.08000000 0.00000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ tibia_r
+
+ 0.02000000 -0.13000000 0.05000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ tibia_r
+
+ -0.00500000 -0.41000000 0.05300000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ tibia_r
+
+ 0.00600000 -0.38880000 -0.03800000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ calcn_r
+
+ -0.02000000 0.02000000 0.00000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ calcn_r
+
+ 0.13000000 0.03000000 -0.03000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ calcn_r
+
+ 0.10000000 0.02000000 0.04000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ calcn_r
+
+ 0.19000000 0.00000000 0.06500000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ calcn_r
+
+ 0.19000000 0.00500000 -0.04000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ calcn_r
+
+ 0.26000000 0.00500000 0.00000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ femur_l
+
+ 0.01800000 -0.20000000 -0.06400000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ femur_l
+
+ 0.08000000 -0.25000000 -0.00470000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ femur_l
+
+ 0.01000000 -0.30000000 -0.06000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ femur_l
+
+ 0.00000000 -0.40400000 -0.05000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ femur_l
+
+ 0.00000000 -0.40400000 0.05000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ tibia_l
+
+ 0.00500000 -0.06500000 -0.05000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ tibia_l
+
+ 0.05000000 -0.08000000 0.00000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ tibia_l
+
+ -0.02000000 -0.13000000 -0.05000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ tibia_l
+
+ -0.00500000 -0.41000000 -0.05300000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ tibia_l
+
+ 0.00600000 -0.38880000 0.03800000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ calcn_l
+
+ -0.02000000 0.02000000 0.00000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ calcn_l
+
+ 0.13000000 0.03000000 0.03000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ calcn_l
+
+ 0.10000000 0.02000000 -0.04000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ calcn_l
+
+ 0.19000000 0.00000000 -0.06500000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ calcn_l
+
+ 0.19000000 0.00500000 0.04000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+ calcn_l
+
+ 0.26000000 0.00500000 0.00000000
+
+ false
+
+
+
+
+
+
+
+
+ 1.00000000 1.00000000 1.00000000
+
+ -0.00000000 0.00000000 -0.00000000 0.00000000 0.00000000 0.00000000
+
+ false
+
+ 4
+
+
+
+
+
+
+
diff --git a/Bindings/Python/tutorials/resources/Tutorial 5/gait2354_Setup_Scale.xml b/Bindings/Python/tutorials/resources/Tutorial 5/gait2354_Setup_Scale.xml
new file mode 100644
index 0000000000..6a2c0ee3b9
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 5/gait2354_Setup_Scale.xml
@@ -0,0 +1,677 @@
+
+
+
+
+ 72.60000000
+
+ 1803.40000000
+
+ 99.00000000
+
+ This is an example setup file for scale.exe.
+
+
+
+ gait2354_simbody.osim
+
+ gait2354_Scale_MarkerSet.xml
+
+
+
+
+ true
+
+ measurements manualScale
+
+
+
+
+
+ true
+
+
+
+
+
+ V.Sacral Top.Head
+
+
+
+
+
+
+
+
+
+ X Y Z
+
+
+
+
+
+
+
+ true
+
+
+
+
+
+ R.ASIS L.ASIS
+
+
+
+
+
+
+
+
+
+ X Y Z
+
+
+
+
+
+
+
+ true
+
+
+
+
+
+ R.ASIS R.Knee.Lat
+
+
+
+ L.ASIS L.Knee.Lat
+
+
+
+
+
+
+
+
+
+ X Y Z
+
+
+
+ X Y Z
+
+
+
+ X Y Z
+
+
+
+ X Y Z
+
+
+
+
+
+
+
+ true
+
+
+
+
+
+ R.Knee.Lat R.Ankle.Lat
+
+
+
+ L.Knee.Lat L.Ankle.Lat
+
+
+
+
+
+
+
+
+
+ X Y Z
+
+
+
+ X Y Z
+
+
+
+ X Y Z
+
+
+
+ X Y Z
+
+
+
+
+
+
+
+ true
+
+
+
+
+
+ R.Heel R.Toe.Tip
+
+
+
+ L.Heel L.Toe.Tip
+
+
+
+
+
+
+
+
+
+ X Y Z
+
+
+
+ X Y Z
+
+
+
+ X Y Z
+
+
+
+ X Y Z
+
+
+
+
+
+
+
+
+
+
+
+
+ 1.14724000 1.14724000 1.14724000
+ femur_r
+ true
+
+
+ 1.14724000 1.14724000 1.14724000
+ femur_l
+ true
+
+
+ 0.98852300 0.98852300 0.98852300
+ tibia_r
+ true
+
+
+ 0.98852300 0.98852300 0.98852300
+ tibia_l
+ true
+
+
+
+
+
+ subject01_static.trc
+
+ 1.00000000 2.00000000
+
+ true
+
+ subject01_scaledOnly.osim
+
+ subject01_scaleSet_applied.xml
+
+
+
+
+ true
+
+
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+ default_value
+
+ 0.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+ default_value
+
+ 0.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+ default_value
+
+ 0.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+ default_value
+
+ 0.00000000
+
+
+
+ true
+
+ 1000.00000000
+
+ manual_value
+
+ 0.00000000
+
+
+
+
+
+ subject01_static.trc
+
+
+
+ 1.00000000 1.01000000
+
+ subject01_static_output.mot
+
+ subject01_simbody.osim
+
+ Unassigned
+
+ -1.00000000
+
+
+
+
diff --git a/Bindings/Python/tutorials/resources/Tutorial 5/gait2354_simbody.osim b/Bindings/Python/tutorials/resources/Tutorial 5/gait2354_simbody.osim
new file mode 100644
index 0000000000..1f1a83b378
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 5/gait2354_simbody.osim
@@ -0,0 +1,6647 @@
+
+
+
+
+ Delp S.L., Loan J.P., Hoy M.G., Zajac F.E., Topp E.L., Rosen J.M., Thelen D.G., Anderson F.C., Seth A.
+ Notes: 3D, 23 DOF gait model created by D.G. Thelen, Univ. of Wisconsin-Madison, and Ajay Seth,
+ Frank C. Anderson, and Scott L. Delp, Stanford University. Lower extremity joint defintions based on Delp et al. (1990).
+ Low back joint and anthropometry based on Anderson and Pandy (1999, 2001). Planar knee model of Yamaguchi and Zajac (1989).
+ Seth replaced tibia translation constraints with a CustomJoint for the knee and removed the patella to eliminate all kinematic constraints; insertions of the quadrucepts are handled with moving points in the tibia frame as defined by Delp 1990.
+ Number of muscles was reduced by Anderson to improve simulation speed for demonstrations and is not intended to be used in research.
+
+ License:
+ Creative Commons (CCBY 3.0). You are free to distribute, remix, tweak, and build upon this work, even commercially,
+ as long as you credit us for the original creation.
+ http://creativecommons.org/licenses/by/3.0/
+
+ More Information:
+ http://simtk-confluence.stanford.edu:8080/display/OpenSim/Gait+2392+and+2354+Models
+
+
+ Delp, S.L., Loan, J.P., Hoy, M.G., Zajac, F.E., Topp E.L., Rosen, J.M.: An interactive graphics-based model of the lower extremity to study orthopaedic surgical procedures, IEEE Transactions on Biomedical Engineering, vol. 37, pp. 757-767, 1990.
+ Yamaguchi G.T., Zajac F.E.: A planar model of the knee joint to characterize the knee extensor mechanism." J . Biomech. vol. 22. pp. 1-10. 1989.
+ Anderson F.C., Pandy M.G.: A dynamic optimization solution for vertical jumping in three dimensions. Computer Methods in Biomechanics and Biomedical Engineering 2:201-231, 1999.
+ Anderson F.C., Pandy M.G.: Dynamic optimization of human walking. Journal of Biomechanical Engineering 123:381-390, 2001.
+
+ meters
+ N
+
+ 0 -9.80665 0
+
+
+
+
+ 0
+ 0 0 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 11.777
+ -0.0707 0 0
+ 0.1028
+ 0.0871
+ 0.0579
+ 0
+ 0
+ 0
+
+
+
+
+ ground
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ translational
+
+ 0
+
+ 0
+
+ -5 5
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ translational
+
+ 0.95
+
+ 0
+
+ -1 2
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ translational
+
+ 0
+
+ 0
+
+ -3 3
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ pelvis_tilt
+
+ 0 0 1
+
+
+
+ 1 0
+
+
+
+
+
+ pelvis_list
+
+ 1 0 0
+
+
+
+ 1 0
+
+
+
+
+
+ pelvis_rotation
+
+ 0 1 0
+
+
+
+ 1 0
+
+
+
+
+
+
+ pelvis_tx
+
+ 1 0 0
+
+
+
+ 1 0
+
+
+
+
+
+ pelvis_ty
+
+ 0 1 0
+
+
+
+ 1 0
+
+
+
+
+
+ pelvis_tz
+
+ 0 0 1
+
+
+
+ 1 0
+
+
+
+
+
+
+
+
+
+
+
+
+ sacrum.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ pelvis.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ l_pelvis.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 9.3014
+ 0 -0.17 0
+ 0.1339
+ 0.0351
+ 0.1412
+ 0
+ 0
+ 0
+
+
+
+
+ pelvis
+
+ -0.0707 -0.0661 0.0835
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 2.0943951
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 2.0943951
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 2.0943951
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ hip_flexion_r
+
+ 0 0 1
+
+
+
+ 1 0
+
+
+
+
+
+ hip_adduction_r
+
+ 1 0 0
+
+
+
+ 1 0
+
+
+
+
+
+ hip_rotation_r
+
+ 0 1 0
+
+
+
+ 1 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+ femur_r.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 3.7075
+ 0 -0.1867 0
+ 0.0504
+ 0.0051
+ 0.0511
+ 0
+ 0
+ 0
+
+
+
+
+ femur_r
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 0.17453293
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ knee_angle_r
+
+ 0 0 1
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+ 0
+
+
+
+
+
+
+ knee_angle_r
+
+ 1 0 0
+
+
+
+ -2.0944 -1.74533 -1.39626 -1.0472 -0.698132 -0.349066 -0.174533 0.197344 0.337395 0.490178 1.52146 2.0944
+ -0.0032 0.00179 0.00411 0.0041 0.00212 -0.001 -0.0031 -0.005227 -0.005435 -0.005574 -0.005435 -0.00525
+
+
+
+
+
+ knee_angle_r
+
+ 0 1 0
+
+
+
+ -2.0944 -1.22173 -0.523599 -0.349066 -0.174533 0.159149 2.0944
+ -0.4226 -0.4082 -0.399 -0.3976 -0.3966 -0.395264 -0.396
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+ tibia_r.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ fibula.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 0.1
+ 0 0 0
+ 0.001
+ 0.001
+ 0.001
+ 0
+ 0
+ 0
+
+
+
+
+ tibia_r
+
+ 0 -0.43 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ ankle_angle_r
+
+ -0.10501355 -0.17402245 0.97912632
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0.97912632 -0 0.10501355
+
+
+
+ 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+ talus.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1.25
+ 0.1 0.03 0
+ 0.0014
+ 0.0039
+ 0.0041
+ 0
+ 0
+ 0
+
+
+
+
+ talus_r
+
+ -0.04877 -0.04195 0.00792
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ subtalar_angle_r
+
+ 0.78717961 0.60474746 -0.12094949
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ -0.12094949 0 -0.78717961
+
+
+
+ 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+ foot.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 0.2166
+ 0.0346 0.006 -0.0175
+ 0.0001
+ 0.0002
+ 0.0001
+ 0
+ 0
+ 0
+
+
+
+
+ calcn_r
+
+ 0.1788 -0.002 0.00108
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ mtp_angle_r
+
+ -0.5809544 0 0.81393611
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0.81393611 -0 0.5809544
+
+
+
+ 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+ bofoot.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 9.3014
+ 0 -0.17 0
+ 0.1339
+ 0.0351
+ 0.1412
+ 0
+ 0
+ 0
+
+
+
+
+ pelvis
+
+ -0.0707 -0.0661 -0.0835
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 2.0943951
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 2.0943951
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 2.0943951
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ hip_flexion_l
+
+ 0 0 1
+
+
+
+ 1 0
+
+
+
+
+
+ hip_adduction_l
+
+ -1 0 0
+
+
+
+ 1 0
+
+
+
+
+
+ hip_rotation_l
+
+ 0 -1 0
+
+
+
+ 1 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+ femur_l.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 3.7075
+ 0 -0.1867 0
+ 0.0504
+ 0.0051
+ 0.0511
+ 0
+ 0
+ 0
+
+
+
+
+ femur_l
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 0.17453293
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ knee_angle_l
+
+ 0 0 1
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+ 0
+
+
+
+
+
+
+ knee_angle_l
+
+ 1 0 0
+
+
+
+ -2.0944 -1.74533 -1.39626 -1.0472 -0.698132 -0.349066 -0.174533 0.197344 0.337395 0.490178 1.52146 2.0944
+ -0.0032 0.00179 0.00411 0.0041 0.00212 -0.001 -0.0031 -0.005227 -0.005435 -0.005574 -0.005435 -0.00525
+
+
+
+
+
+ knee_angle_l
+
+ 0 1 0
+
+
+
+ -2.0944 -1.22173 -0.523599 -0.349066 -0.174533 0.159149 2.0944
+ -0.4226 -0.4082 -0.399 -0.3976 -0.3966 -0.395264 -0.396
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+ tibia_l.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ l_fibula.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 0.1
+ 0 0 0
+ 0.001
+ 0.001
+ 0.001
+ 0
+ 0
+ 0
+
+
+
+
+ tibia_l
+
+ 0 -0.43 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ ankle_angle_l
+
+ 0.10501355 0.17402245 0.97912632
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0.97912632 0 -0.10501355
+
+
+
+ 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+ l_talus.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1.25
+ 0.1 0.03 0
+ 0.0014
+ 0.0039
+ 0.0041
+ 0
+ 0
+ 0
+
+
+
+
+ talus_l
+
+ -0.04877 -0.04195 -0.00792
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ subtalar_angle_l
+
+ -0.78717961 -0.60474746 -0.12094949
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ -0.12094949 0 0.78717961
+
+
+
+ 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+ l_foot.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 0.2166
+ 0.0346 0.006 0.0175
+ 0.0001
+ 0.0002
+ 0.0001
+ 0
+ 0
+ 0
+
+
+
+
+ calcn_l
+
+ 0.1788 -0.002 -0.00108
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ mtp_angle_l
+
+ 0.5809544 0 0.81393611
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0.81393611 0 -0.5809544
+
+
+
+ 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+ l_bofoot.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 34.2366
+ -0.03 0.32 0
+ 1.4745
+ 0.7555
+ 1.4314
+ 0
+ 0
+ 0
+
+
+
+
+ pelvis
+
+ -0.1007 0.0815 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ lumbar_extension
+
+ 0 0 1
+
+
+
+ 1 0
+
+
+
+
+
+ lumbar_bending
+
+ 1 0 0
+
+
+
+ 1 0
+
+
+
+
+
+ lumbar_rotation
+
+ 0 1 0
+
+
+
+ 1 0
+
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+ hat_spine.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ hat_jaw.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ hat_skull.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ hat_ribs.vtp
+
+ 1 1 1
+
+
+
+ -0 0 -0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0408 0.0304 0.1209
+ pelvis
+
+
+ -0.0218 -0.0117 0.0555
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 1119
+
+ 0.0535
+
+ 0.078
+
+ 0.13962634
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0855 0.0445 0.0766
+ pelvis
+
+
+ -0.0258 -0.0058 0.0527
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 873
+
+ 0.0845
+
+ 0.053
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.1223 0.0105 0.0648
+ pelvis
+
+
+ -0.0309 -0.0047 0.0518
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 1000
+
+ 0.0646
+
+ 0.053
+
+ 0.33161256
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.12596 -0.10257 0.06944
+ pelvis
+
+
+ -0.0301 -0.036 0.02943
+ tibia_r
+
+
+ -0.0234 -0.0563 0.0343
+ tibia_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 2700
+
+ 0.109
+
+ 0.326
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ 0.005 -0.2111 0.0234
+ femur_r
+
+
+ -0.0301 -0.036 0.02943
+ tibia_r
+
+
+ -0.0234 -0.0563 0.0343
+ tibia_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 804
+
+ 0.173
+
+ 0.089
+
+ 0.40142573
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0153 -0.0013 0.1242
+ pelvis
+
+
+ -0.003 -0.3568 -0.0421
+ femur_r
+
+
+ -0.0056 -0.0419 -0.0399
+ tibia_r
+
+
+ 0.006 -0.0589 -0.0383
+ tibia_r
+
+
+ 0.0243 -0.084 -0.0252
+ tibia_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 156
+
+ 0.52
+
+ 0.1
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0831 -0.1192 0.0308
+ pelvis
+
+
+ 0.0054 -0.2285 0.0227
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 2343
+
+ 0.121
+
+ 0.12
+
+ 0.05235988
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0311 0.0214 0.1241
+ pelvis
+
+
+ 0.0294 -0.0995 0.0597
+ femur_r
+
+
+ 0.0054 -0.4049 0.0357
+ femur_r
+
+
+ 0.006 -0.0487 0.0297
+ tibia_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 233
+
+ 0.095
+
+ 0.425
+
+ 0.05235988
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0431 -0.0768 0.0451
+ pelvis
+
+
+ -0.0122 -0.0822 0.0253
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 266
+
+ 0.1
+
+ 0.033
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.07401 -0.1187 0.02794
+ pelvis
+
+
+ -0.02657 -0.0319 -0.03774
+ tibia_r
+ -0.436332 0.174533
+ knee_angle_r
+
+
+ -0.01943 -0.05153 -0.0358
+ tibia_r
+
+
+ 0.006 -0.0836 -0.0228
+ tibia_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 162
+
+ 0.352
+
+ 0.126
+
+ 0.05235988
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.1195 0.0612 0.07
+ pelvis
+
+
+ -0.1291 0.0012 0.0886
+ pelvis
+
+
+ -0.0457 -0.0248 0.0392
+ femur_r
+
+
+ -0.0277 -0.0566 0.047
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 573
+
+ 0.142
+
+ 0.125
+
+ 0.08726646
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.1349 0.0176 0.0563
+ pelvis
+
+
+ -0.1376 -0.052 0.0914
+ pelvis
+
+
+ -0.0426 -0.053 0.0293
+ femur_r
+
+
+ -0.0156 -0.1016 0.0419
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 819
+
+ 0.147
+
+ 0.127
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.1556 -0.0314 0.0058
+ pelvis
+
+
+ -0.1529 -0.1052 0.0403
+ pelvis
+
+
+ -0.0299 -0.1041 0.0135
+ femur_r
+
+
+ -0.006 -0.1419 0.0411
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 552
+
+ 0.144
+
+ 0.145
+
+ 0.08726646
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0674 0.0365 0.0854
+ pelvis
+
+
+ -0.0258 -0.055 0.0811
+ pelvis
+
+
+ -0.0288 -0.0805 0.0816
+ pelvis
+ -1.5708 0.785398
+ hip_flexion_r
+
+
+ 0.0017 -0.0543 0.0057
+ femur_r
+
+
+ -0.0193 -0.0621 0.0129
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 1073
+
+ 0.1
+
+ 0.1
+
+ 0.12217305
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0647 0.0887 0.0289
+ pelvis
+
+
+ -0.0238 -0.057 0.0759
+ pelvis
+
+
+ -0.0288 -0.0805 0.0816
+ pelvis
+ -1.5708 0.785398
+ hip_flexion_r
+
+
+ 0.0016 -0.0507 0.0038
+ femur_r
+
+
+ -0.0188 -0.0597 0.0104
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 1113
+
+ 0.1
+
+ 0.16
+
+ 0.13962634
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.1143 -0.1151 0.052
+ pelvis
+
+
+ -0.0381 -0.0359 0.0366
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 381
+
+ 0.054
+
+ 0.024
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.1133 -0.082 0.0714
+ pelvis
+
+
+ -0.0142 -0.0033 0.0443
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 164
+
+ 0.024
+
+ 0.039
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.1396 0.0003 0.0235
+ pelvis
+
+
+ -0.1193 -0.0276 0.0657
+ pelvis
+
+
+ -0.0148 -0.0036 0.0437
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 444
+
+ 0.026
+
+ 0.115
+
+ 0.17453293
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0295 -0.0311 0.0968
+ pelvis
+
+
+ 0.0334 -0.403 0.0019
+ femur_r
+ -2.61799 -1.45997
+ knee_angle_r
+
+
+ 0 0 0
+ tibia_r
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0155805 0.0179938 0.0275081 0.0296564 0.0307615 0.0365695 0.0422074 0.0450902 0.048391 0.0534299 0.0617576 0.0617669 0.0617762 0.0633083 0.066994 0.0733035 0.0573481
+
+
+ knee_angle_r
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0234116 0.0237613 0.0251141 0.0252795 0.0253146 0.0249184 0.0242373 0.0238447 0.0234197 0.0227644 0.020984 0.0209814 0.0209788 0.0205225 0.0191754 0.0159554 -0.0673774
+
+
+ knee_angle_r
+
+
+ -2.0944 0.1745
+ 0.0014 0.0014
+
+
+ knee_angle_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 1169
+
+ 0.114
+
+ 0.31
+
+ 0.08726646
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ 0.029 -0.1924 0.031
+ femur_r
+
+
+ 0.0335 -0.2084 0.0285
+ femur_r
+
+
+ 0.0343 -0.403 0.0055
+ femur_r
+ -2.61799 -1.42
+ knee_angle_r
+
+
+ 0 0 0
+ tibia_r
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0082733 0.0106866 0.0202042 0.022353 0.0234583 0.0292715 0.0349465 0.037871 0.0412569 0.0465287 0.0554632 0.0554735 0.0554837 0.0571717 0.061272 0.0684368 0.0648818
+
+
+ knee_angle_r
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.025599 0.0259487 0.0273124 0.0274796 0.0275151 0.0271363 0.0265737 0.0263073 0.0261187 0.0260129 0.0252923 0.0252911 0.0252898 0.0250526 0.0242191 0.0218288 -0.0685706
+
+
+ knee_angle_r
+
+
+ -2.0944 2.0944
+ 0.0018 0.0018
+
+
+ knee_angle_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 5000
+
+ 0.107
+
+ 0.116
+
+ 0.05235988
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.019 -0.3929 -0.0235
+ femur_r
+
+
+ -0.03 -0.4022 -0.0258
+ femur_r
+ -0.785398 0.174533
+ knee_angle_r
+
+
+ 0 0.031 -0.0053
+ calcn_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 2500
+
+ 0.09
+
+ 0.36
+
+ 0.29670597
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0024 -0.1533 0.0071
+ tibia_r
+
+
+ 0 0.031 -0.0053
+ calcn_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 4000
+
+ 0.05
+
+ 0.25
+
+ 0.43633231
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0094 -0.1348 0.0019
+ tibia_r
+
+
+ -0.0144 -0.4051 -0.0229
+ tibia_r
+
+
+ 0.0417 0.0334 -0.0286
+ calcn_r
+
+
+ 0.0772 0.0159 -0.0281
+ calcn_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 3600
+
+ 0.031
+
+ 0.31
+
+ 0.20943951
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ 0.0179 -0.1624 0.0115
+ tibia_r
+
+
+ 0.0329 -0.3951 -0.0177
+ tibia_r
+
+
+ 0.1166 0.0178 -0.0305
+ calcn_r
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 3000
+
+ 0.098
+
+ 0.223
+
+ 0.08726646
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0408 0.0304 -0.1209
+ pelvis
+
+
+ -0.0218 -0.0117 -0.0555
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 1119
+
+ 0.0535
+
+ 0.078
+
+ 0.13962634
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0855 0.0445 -0.0766
+ pelvis
+
+
+ -0.0258 -0.0058 -0.0527
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 873
+
+ 0.0845
+
+ 0.053
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.1223 0.0105 -0.0648
+ pelvis
+
+
+ -0.0309 -0.0047 -0.0518
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 1000
+
+ 0.0646
+
+ 0.053
+
+ 0.33161256
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.12596 -0.10257 -0.06944
+ pelvis
+
+
+ -0.0301 -0.036 -0.02943
+ tibia_l
+
+
+ -0.0234 -0.0563 -0.0343
+ tibia_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 2700
+
+ 0.109
+
+ 0.326
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ 0.005 -0.2111 -0.0234
+ femur_l
+
+
+ -0.0301 -0.036 -0.02943
+ tibia_l
+
+
+ -0.0234 -0.0563 -0.0343
+ tibia_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 804
+
+ 0.173
+
+ 0.089
+
+ 0.40142573
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0153 -0.0013 -0.1242
+ pelvis
+
+
+ -0.003 -0.3568 0.0421
+ femur_l
+
+
+ -0.0056 -0.0419 0.0399
+ tibia_l
+
+
+ 0.006 -0.0589 0.0383
+ tibia_l
+
+
+ 0.0243 -0.084 0.0252
+ tibia_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 156
+
+ 0.52
+
+ 0.1
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0831 -0.1192 -0.0308
+ pelvis
+
+
+ 0.0054 -0.2285 -0.0227
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 2343
+
+ 0.121
+
+ 0.12
+
+ 0.05235988
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0311 0.0214 -0.1241
+ pelvis
+
+
+ 0.0294 -0.0995 -0.0597
+ femur_l
+
+
+ 0.0054 -0.4049 -0.0357
+ femur_l
+
+
+ 0.006 -0.0487 -0.0297
+ tibia_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 233
+
+ 0.095
+
+ 0.425
+
+ 0.05235988
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0431 -0.0768 -0.0451
+ pelvis
+
+
+ -0.0122 -0.0822 -0.0253
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 266
+
+ 0.1
+
+ 0.033
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.07401 -0.1187 -0.02794
+ pelvis
+
+
+ -0.02657 -0.0319 0.03774
+ tibia_l
+ -0.436332 0.174533
+ knee_angle_l
+
+
+ -0.01943 -0.05153 0.0358
+ tibia_l
+
+
+ 0.006 -0.0836 0.0228
+ tibia_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 162
+
+ 0.352
+
+ 0.126
+
+ 0.05235988
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.1195 0.0612 -0.07
+ pelvis
+
+
+ -0.1291 0.0012 -0.0886
+ pelvis
+
+
+ -0.0457 -0.0248 -0.0392
+ femur_l
+
+
+ -0.0277 -0.0566 -0.047
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 573
+
+ 0.142
+
+ 0.125
+
+ 0.08726646
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.1349 0.0176 -0.0563
+ pelvis
+
+
+ -0.1376 -0.052 -0.0914
+ pelvis
+
+
+ -0.0426 -0.053 -0.0293
+ femur_l
+
+
+ -0.0156 -0.1016 -0.0419
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 819
+
+ 0.147
+
+ 0.127
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.1556 -0.0314 -0.0058
+ pelvis
+
+
+ -0.1529 -0.1052 -0.0403
+ pelvis
+
+
+ -0.0299 -0.1041 -0.0135
+ femur_l
+
+
+ -0.006 -0.1419 -0.0411
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 552
+
+ 0.144
+
+ 0.145
+
+ 0.08726646
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0674 0.0365 -0.0854
+ pelvis
+
+
+ -0.0258 -0.055 -0.0811
+ pelvis
+
+
+ -0.0288 -0.0805 -0.0816
+ pelvis
+ -1.5708 0.785398
+ hip_flexion_l
+
+
+ 0.0017 -0.0543 -0.0057
+ femur_l
+
+
+ -0.0193 -0.0621 -0.0129
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 1073
+
+ 0.1
+
+ 0.1
+
+ 0.12217305
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0647 0.0887 -0.0289
+ pelvis
+
+
+ -0.0238 -0.057 -0.0759
+ pelvis
+
+
+ -0.0288 -0.0805 -0.0816
+ pelvis
+ -1.5708 0.785398
+ hip_flexion_l
+
+
+ 0.0016 -0.0507 -0.0038
+ femur_l
+
+
+ -0.0188 -0.0597 -0.0104
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 1113
+
+ 0.1
+
+ 0.16
+
+ 0.13962634
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.1143 -0.1151 -0.052
+ pelvis
+
+
+ -0.0381 -0.0359 -0.0366
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 381
+
+ 0.054
+
+ 0.024
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.1133 -0.082 -0.0714
+ pelvis
+
+
+ -0.0142 -0.0033 -0.0443
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 164
+
+ 0.024
+
+ 0.039
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.1396 0.0003 -0.0235
+ pelvis
+
+
+ -0.1193 -0.0276 -0.0657
+ pelvis
+
+
+ -0.0148 -0.0036 -0.0437
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 444
+
+ 0.026
+
+ 0.115
+
+ 0.17453293
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0295 -0.0311 -0.0968
+ pelvis
+
+
+ 0.0334 -0.403 -0.0019
+ femur_l
+ -2.61799 -1.45997
+ knee_angle_l
+
+
+ 0 0 0
+ tibia_l
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0155805 0.0179938 0.0275081 0.0296564 0.0307615 0.0365695 0.0422074 0.0450902 0.048391 0.0534299 0.0617576 0.0617669 0.0617762 0.0633083 0.066994 0.0733035 0.0573481
+
+
+ knee_angle_l
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0234116 0.0237613 0.0251141 0.0252795 0.0253146 0.0249184 0.0242373 0.0238447 0.0234197 0.0227644 0.020984 0.0209814 0.0209788 0.0205225 0.0191754 0.0159554 -0.0673774
+
+
+ knee_angle_l
+
+
+ -2.0944 0.1745
+ -0.0014 -0.0014
+
+
+ knee_angle_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 1169
+
+ 0.114
+
+ 0.31
+
+ 0.08726646
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ 0.029 -0.1924 -0.031
+ femur_l
+
+
+ 0.0335 -0.2084 -0.0285
+ femur_l
+
+
+ 0.0343 -0.403 -0.0055
+ femur_l
+ -2.61799 -1.42
+ knee_angle_l
+
+
+ 0 0 0
+ tibia_l
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0082733 0.0106866 0.0202042 0.022353 0.0234583 0.0292715 0.0349465 0.037871 0.0412569 0.0465287 0.0554632 0.0554735 0.0554837 0.0571717 0.061272 0.0684368 0.0648818
+
+
+ knee_angle_l
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.025599 0.0259487 0.0273124 0.0274796 0.0275151 0.0271363 0.0265737 0.0263073 0.0261187 0.0260129 0.0252923 0.0252911 0.0252898 0.0250526 0.0242191 0.0218288 -0.0685706
+
+
+ knee_angle_l
+
+
+ -2.0944 2.0944
+ -0.0018 -0.0018
+
+
+ knee_angle_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 5000
+
+ 0.107
+
+ 0.116
+
+ 0.05235988
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.019 -0.3929 0.0235
+ femur_l
+
+
+ -0.03 -0.4022 0.0258
+ femur_l
+ -0.785398 0.174533
+ knee_angle_l
+
+
+ 0 0.031 0.0053
+ calcn_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 2500
+
+ 0.09
+
+ 0.36
+
+ 0.29670597
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0024 -0.1533 -0.0071
+ tibia_l
+
+
+ 0 0.031 0.0053
+ calcn_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 4000
+
+ 0.05
+
+ 0.25
+
+ 0.43633231
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.0094 -0.1348 -0.0019
+ tibia_l
+
+
+ -0.0144 -0.4051 0.0229
+ tibia_l
+
+
+ 0.0417 0.0334 0.0286
+ calcn_l
+
+
+ 0.0772 0.0159 0.0281
+ calcn_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 3600
+
+ 0.031
+
+ 0.31
+
+ 0.20943951
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ 0.0179 -0.1624 -0.0115
+ tibia_l
+
+
+ 0.0329 -0.3951 0.0177
+ tibia_l
+
+
+ 0.1166 0.0178 0.0305
+ calcn_l
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 3000
+
+ 0.098
+
+ 0.223
+
+ 0.08726646
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.14 0.0439 0.0436
+ pelvis
+
+
+ -0.055 0.11 0.0241
+ torso
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 2500
+
+ 0.12
+
+ 0.03
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.14 0.0439 -0.0436
+ pelvis
+
+
+ -0.055 0.11 -0.0241
+ torso
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 2500
+
+ 0.12
+
+ 0.03
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.04 0.07 0.1157
+ pelvis
+
+
+ 0.07 0.16 0.015
+ torso
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 900
+
+ 0.1
+
+ 0.1
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.04 0.07 -0.1157
+ pelvis
+
+
+ 0.07 0.16 -0.015
+ torso
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 900
+
+ 0.1
+
+ 0.1
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.03 -0.0636 0.01
+ pelvis
+
+
+ 0.065 0.11 0.11
+ torso
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 900
+
+ 0.12
+
+ 0.14
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+ -0.03 -0.0636 -0.01
+ pelvis
+
+
+ 0.065 0.11 -0.11
+ torso
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ -0 0 -0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1
+
+ 900
+
+ 0.12
+
+ 0.14
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.033
+
+ 0.6
+
+ 0.5
+
+ 4
+
+ 0.3
+
+ 1.8
+
+
+
+
+ glut_max1_r glut_med1_r glut_med2_r glut_med3_r peri_r sar_r tfl_r
+
+
+ glut_med1_r grac_r iliacus_r pect_r psoas_r rect_fem_r sar_r tfl_r
+
+
+ glut_med1_r iliacus_r psoas_r tfl_r
+
+
+ gem_r glut_med3_r peri_r quad_fem_r
+
+
+ add_mag2_r bifemlh_r glut_max1_r glut_max2_r glut_max3_r glut_med3_r
+
+
+ add_mag2_r bifemlh_r grac_r pect_r
+
+
+ bifemlh_r bifemsh_r grac_r med_gas_r sar_r
+
+
+ rect_fem_r vas_int_r
+
+
+ med_gas_r soleus_r tib_post_r
+
+
+ tib_ant_r tib_post_r
+
+
+ tib_ant_r
+
+
+ glut_max1_l glut_med1_l glut_med2_l glut_med3_l peri_l sar_l tfl_l
+
+
+ glut_med1_l grac_l iliacus_l pect_l psoas_l rect_fem_l sar_l tfl_l
+
+
+ glut_med1_l iliacus_l psoas_l tfl_l
+
+
+ gem_l glut_med3_l peri_l quad_fem_l
+
+
+ add_mag2_l bifemlh_l glut_max1_l glut_max2_l glut_max3_l glut_med3_l
+
+
+ add_mag2_l bifemlh_l grac_l pect_l
+
+
+ bifemlh_l bifemsh_l grac_l med_gas_l sar_l
+
+
+ rect_fem_l vas_int_l
+
+
+ med_gas_l soleus_l tib_post_l
+
+
+ tib_ant_l tib_post_l
+
+
+ tib_ant_l
+
+
+ ercspn_l ercspn_r
+
+
+ ercspn_r extobl_r intobl_r
+
+
+ ercspn_r extobl_l intobl_r
+
+
+ ercspn_l extobl_l intobl_l
+
+
+ ercspn_l extobl_r intobl_l
+
+
+ extobl_l extobl_r intobl_l intobl_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Bindings/Python/tutorials/resources/Tutorial 5/subject01_Setup_IK.xml b/Bindings/Python/tutorials/resources/Tutorial 5/subject01_Setup_IK.xml
new file mode 100644
index 0000000000..c2f329293b
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 5/subject01_Setup_IK.xml
@@ -0,0 +1,251 @@
+
+
+
+
+ subject01_simbody.osim
+
+ 20
+
+ 1e-005
+
+
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 0.5
+
+
+
+ true
+
+ 0.5
+
+
+
+ true
+
+ 0.1
+
+
+
+ true
+
+ 10
+
+
+
+ true
+
+ 10
+
+
+
+ true
+
+ 10
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 10
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 10
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 10
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 1
+
+
+
+ true
+
+ 10
+
+
+
+ true
+
+ 1000
+
+ default_value
+
+ 0
+
+
+
+ true
+
+ 1000
+
+ default_value
+
+ 0
+
+
+
+ true
+
+ 1000
+
+ default_value
+
+ 0
+
+
+
+ true
+
+ 1000
+
+ default_value
+
+ 0
+
+
+
+
+
+ subject01_walk1.trc
+
+
+
+ 0.4 1.6
+
+ subject01_walk1_ik.mot
+
+
diff --git a/Bindings/Python/tutorials/resources/Tutorial 5/subject01_Setup_InverseDynamics.xml b/Bindings/Python/tutorials/resources/Tutorial 5/subject01_Setup_InverseDynamics.xml
new file mode 100644
index 0000000000..e4b00a42f0
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 5/subject01_Setup_InverseDynamics.xml
@@ -0,0 +1,31 @@
+
+
+
+
+ ResultsInverseDynamics
+
+
+
+ subject01_simbody.osim
+
+ 0.40000000 1.60000000
+
+ Muscles
+
+ subject01_walk1_grf.xml
+
+ subject01_walk1_ik.mot
+
+ 6.00000000
+
+ inverse_dynamics.sto
+
+
+
diff --git a/Bindings/Python/tutorials/resources/Tutorial 5/subject01_static.trc b/Bindings/Python/tutorials/resources/Tutorial 5/subject01_static.trc
new file mode 100644
index 0000000000..8660c5b0a0
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 5/subject01_static.trc
@@ -0,0 +1,306 @@
+PathFileType 4 (X/Y/Z) subject01_static.trc
+DataRate CameraRate NumFrames NumMarkers Units OrigDataRate OrigDataStartFrame OrigNumFrames
+60.00 60.00 300 49 mm 60.00 1 300
+Frame# Time R.ASIS L.ASIS V.Sacral R.Thigh.Upper R.Thigh.Front R.Thigh.Rear L.Thigh.Upper L.Thigh.Front L.Thigh.Rear R.Knee.Lat R.Knee.Med L.Knee.Lat L.Knee.Med R.Shank.Upper R.Shank.Front R.Shank.Rear L.Shank.Upper L.Shank.Front L.Shank.Rear R.Ankle.Lat R.Ankle.Med L.Ankle.Lat L.Ankle.Med R.Heel R.Midfoot.Sup R.Midfoot.Lat R.Toe.Tip L.Heel L.Midfoot.Sup L.Midfoot.Lat L.Toe.Tip Sternum R.Acromium L.Acromium R.Bicep L.Bicep R.Elbow L.Elbow R.Wrist.Med R.Wrist.Lat L.Wrist.Med L.Wrist.Lat R.Toe.Lat R.Toe.Med L.Toe.Lat L.Toe.Med R.Temple L.Temple Top.Head
+ X1 Y1 Z1 X2 Y2 Z2 X3 Y3 Z3 X4 Y4 Z4 X5 Y5 Z5 X6 Y6 Z6 X7 Y7 Z7 X8 Y8 Z8 X9 Y9 Z9 X10 Y10 Z10 X11 Y11 Z11 X12 Y12 Z12 X13 Y13 Z13 X14 Y14 Z14 X15 Y15 Z15 X16 Y16 Z16 X17 Y17 Z17 X18 Y18 Z18 X19 Y19 Z19 X20 Y20 Z20 X21 Y21 Z21 X22 Y22 Z22 X23 Y23 Z23 X24 Y24 Z24 X25 Y25 Z25 X26 Y26 Z26 X27 Y27 Z27 X28 Y28 Z28 X29 Y29 Z29 X30 Y30 Z30 X31 Y31 Z31 X32 Y32 Z32 X33 Y33 Z33 X34 Y34 Z34 X35 Y35 Z35 X36 Y36 Z36 X37 Y37 Z37 X38 Y38 Z38 X39 Y39 Z39 X40 Y40 Z40 X41 Y41 Z41 X42 Y42 Z42 X43 Y43 Z43 X44 Y44 Z44 X45 Y45 Z45 X46 Y46 Z46 X47 Y47 Z47 X48 Y48 Z48 X49 Y49 Z49
+
+1 0.000000 608.664310 1072.713130 157.442150 610.637270 1060.495000 -103.888650 411.416170 1079.594120 35.938600 544.204960 756.665040 224.033950 594.615660 681.149540 134.620710 523.435970 636.808530 226.152360 519.331180 767.923340 -168.781510 606.596370 718.091430 -111.824120 506.826110 658.231990 -160.364240 477.811160 553.746700 216.375120 470.077030 525.795230 97.880180 478.466770 528.674560 -150.387880 499.956300 519.403140 -36.690100 442.731140 469.209050 236.210100 514.687680 424.146450 184.598160 453.980160 383.783910 253.054860 468.815220 450.184690 -170.554470 517.972660 393.308260 -128.095630 446.394170 409.518520 -181.487780 437.704470 98.115020 255.683150 444.270570 103.766630 165.133670 442.973880 93.640570 -172.212040 465.029450 109.253060 -81.647740 366.581480 70.651880 210.265470 507.368290 79.931870 164.823090 509.392670 63.613420 272.876920 657.167910 50.652440 195.336530 372.470520 75.413370 -114.765080 544.812990 77.038730 -94.775080 523.926880 66.102290 -191.767330 654.724120 48.575230 -127.248150 607.435000 1423.897340 24.486960 491.302830 1549.965580 194.138080 489.843110 1560.595460 -147.294250 525.285160 1504.258670 358.660400 533.769900 1506.658450 -324.694000 519.261230 1471.409670 462.660640 498.831790 1474.214110 -425.565120 671.209350 1467.399660 687.415950 610.803340 1475.488400 711.568420 624.059020 1441.513550 -644.900330 551.747250 1446.319580 -662.181700 600.127750 39.554170 276.710600 594.261660 49.267220 168.035320 585.345090 39.916630 -201.712390 605.791380 51.731220 -101.035780 604.606810 1656.773930 131.052700 671.874390 1644.925170 9.873910 593.032100 1814.390140 32.174850
+2 0.017000 608.614440 1072.714110 157.562670 610.729190 1060.485230 -103.827290 411.412080 1079.595830 35.937720 544.470760 756.616090 224.045150 594.653440 681.263610 134.691640 523.491330 636.859800 226.200560 519.351260 768.052920 -168.817580 606.742800 718.173710 -111.809170 506.984800 658.292300 -160.383850 477.914920 553.738280 216.363890 470.295010 525.797360 97.824960 478.472840 528.708250 -150.406540 499.956300 519.403140 -36.690100 442.789310 469.209080 236.195300 514.690370 424.045650 184.559620 454.148830 383.844880 253.032960 468.881740 450.168150 -170.589830 517.945800 393.294340 -127.990160 446.579160 409.706020 -181.427290 437.679260 98.110490 255.630330 444.162290 103.690200 165.112110 443.038420 93.681530 -172.189650 465.019290 109.208370 -81.670640 366.635770 70.634250 210.276020 507.529790 80.161510 164.899630 509.378660 63.692890 272.871860 657.167660 50.652390 195.336290 371.892940 75.454630 -115.399580 544.812990 77.038730 -94.775080 523.835270 66.117900 -191.777880 654.436890 48.343820 -127.543140 607.394840 1423.976560 24.509160 491.243260 1549.991460 193.985410 489.800990 1560.558590 -147.437910 525.375000 1504.305420 358.516480 533.398500 1506.742190 -324.837740 519.383120 1471.423220 462.308650 498.309690 1474.517580 -425.827910 670.903200 1467.405880 687.602170 611.004030 1475.894900 711.671690 624.139650 1441.430660 -644.899600 551.942690 1446.172240 -662.120850 600.126590 39.556600 276.713870 594.256040 49.319660 168.043330 585.345090 39.916630 -201.712390 605.848880 51.609020 -100.991170 604.659910 1656.772580 130.964950 671.808720 1644.885130 9.683670 593.024290 1814.353270 32.046080
+3 0.033000 608.585330 1072.709350 157.650510 610.801210 1060.485230 -103.781220 411.413420 1079.595090 35.938080 544.703610 756.573300 224.054930 594.684810 681.343870 134.774800 523.536740 636.900700 226.240080 519.327510 768.107060 -168.807920 606.855710 718.221620 -111.794560 507.108150 658.340450 -160.396970 478.003390 553.722230 216.351670 470.461980 525.796690 97.791790 478.492710 528.724240 -150.408070 499.956300 519.403140 -36.690100 442.825990 469.200620 236.185060 514.690430 423.977260 184.537230 454.294280 383.896480 253.016890 468.936680 450.156250 -170.618260 517.942380 393.288790 -127.952110 446.697300 409.831820 -181.384050 437.657230 98.106530 255.580730 444.069060 103.633280 165.099380 443.078770 93.707150 -172.175640 465.008940 109.162970 -81.693910 366.695740 70.614790 210.287660 507.652310 80.306510 164.950380 509.373660 63.738330 272.876280 657.167360 50.652340 195.335980 371.531190 75.479210 -115.796530 544.812990 77.038730 -94.775080 523.557860 66.063710 -191.842300 654.250060 48.194920 -127.733460 607.367800 1424.034910 24.523630 491.190430 1550.015380 193.843690 489.780400 1560.535030 -147.537230 525.466980 1504.362300 358.376040 533.179570 1506.799190 -324.999270 519.508540 1471.493530 462.078580 497.981080 1474.675780 -425.992710 670.788940 1467.506230 687.682620 611.237550 1476.241700 711.738040 624.222780 1441.353270 -644.903870 552.119870 1446.008910 -662.067380 600.124570 39.562280 276.721710 594.249270 49.345420 168.053250 585.345090 39.916630 -201.712390 605.902830 51.501950 -100.955770 604.727360 1656.774170 130.889130 671.764590 1644.817990 9.486160 593.018490 1814.319460 31.922810
+4 0.050000 608.578310 1072.702270 157.691040 610.849300 1060.499510 -103.755070 411.426300 1079.589360 35.941060 544.859310 756.544860 224.061420 594.720150 681.383730 134.847520 523.566040 636.923650 226.265550 519.243410 768.069950 -168.753980 606.915340 718.224240 -111.782150 507.191310 658.371830 -160.398850 478.064270 553.697690 216.342040 470.551330 525.794010 97.781880 478.530360 528.730830 -150.389210 499.956300 519.403140 -36.690100 442.830930 469.187840 236.182460 514.686830 423.957000 184.536800 454.389830 383.932340 253.011230 468.977600 450.151180 -170.637440 517.979430 393.297760 -127.987120 446.732910 409.876950 -181.360150 437.633090 98.102200 255.519680 443.997890 103.608740 165.096330 443.110630 93.727360 -172.164600 465.000340 109.125240 -81.713250 366.748720 70.597590 210.297940 507.701320 80.351330 164.967380 509.369020 63.756370 272.884740 657.167050 50.652290 195.335740 371.416500 75.499740 -115.889210 544.812990 77.038730 -94.775080 523.176820 65.975510 -191.935150 654.199710 48.167010 -127.778860 607.348630 1424.079710 24.532350 491.148100 1550.036620 193.720900 489.790740 1560.535640 -147.572880 525.554630 1504.451290 358.243840 533.130980 1506.823490 -325.143650 519.621340 1471.680050 462.062320 497.870880 1474.695070 -426.038020 671.003720 1467.777710 687.610050 611.510130 1476.508910 711.746280 624.325440 1441.303590 -644.909180 552.273930 1445.843260 -662.041320 600.121520 39.572620 276.736180 594.240170 49.344350 168.067020 585.345090 39.916630 -201.712390 605.944820 51.441130 -100.937070 604.804200 1656.785640 130.829900 671.737180 1644.727660 9.271410 593.013240 1814.292970 31.807830
+5 0.067000 608.586000 1072.697020 157.689030 610.879640 1060.522830 -103.745090 411.455380 1079.576660 35.947670 544.909180 756.535520 224.063580 594.762570 681.389710 134.883510 523.584410 636.930730 226.281460 519.136410 767.983090 -168.692090 606.935300 718.203370 -111.772310 507.244290 658.387150 -160.390730 478.101140 553.674990 216.342590 470.567020 525.791810 97.777090 478.574980 528.744450 -150.355880 499.956300 519.403140 -36.690100 442.818420 469.182220 236.185040 514.686220 423.974400 184.555770 454.425450 383.951870 253.016970 469.014500 450.151000 -170.651700 518.052120 393.318880 -128.054310 446.713840 409.866970 -181.347580 437.604100 98.097020 255.440350 443.968230 103.612850 165.097690 443.154940 93.755490 -172.149230 464.993990 109.097290 -81.727580 366.769500 70.590840 210.301970 507.659450 80.332500 164.957730 509.355590 63.772540 272.887880 657.167180 50.652310 195.335850 371.422670 75.545070 -115.788930 544.812990 77.038730 -94.775080 522.939030 65.938160 -191.987380 654.256650 48.239220 -127.709030 607.331050 1424.115840 24.538000 491.116880 1550.056880 193.620570 489.821590 1560.557370 -147.561900 525.635560 1504.586060 358.124240 533.191470 1506.830810 -325.231510 519.708190 1472.018800 462.314970 497.913090 1474.639400 -426.002990 671.512390 1468.200320 687.417360 611.782780 1476.712770 711.698060 624.467960 1441.299800 -644.905700 552.422420 1445.692500 -662.041020 600.118960 39.584290 276.752810 594.230900 49.336730 168.082290 585.345090 39.916630 -201.712390 605.962890 51.448250 -100.934060 604.888240 1656.810420 130.778960 671.701350 1644.647220 9.036720 593.002560 1814.278440 31.700130
+6 0.083000 608.605350 1072.691530 157.658840 610.895630 1060.544190 -103.746420 411.497190 1079.558840 35.956980 544.857180 756.543330 224.061890 594.789670 681.365300 134.886800 523.599240 636.927730 226.294250 519.071350 767.898130 -168.653080 606.952090 718.194460 -111.763290 507.268460 658.385930 -160.379170 478.127500 553.667600 216.355040 470.538210 525.790470 97.762500 478.606600 528.762510 -150.317000 499.956300 519.403140 -36.690100 442.816650 469.186740 236.185930 514.694210 423.998570 184.584640 454.419430 383.955510 253.029860 469.058040 450.150150 -170.667080 518.130190 393.341460 -128.114300 446.674710 409.839600 -181.341950 437.577910 98.092330 255.364670 444.014070 103.624750 165.096710 443.193390 93.779900 -172.135880 464.987520 109.068950 -81.742100 366.747220 70.598080 210.297650 507.551510 80.280840 164.932100 509.344790 63.785910 272.888550 657.168270 50.652500 195.336900 371.422090 75.612630 -115.675930 544.812990 77.038730 -94.775080 523.006290 65.995970 -191.957400 654.357420 48.345830 -127.594440 607.322200 1424.125490 24.537000 491.095490 1550.078250 193.540970 489.849910 1560.581300 -147.545840 525.719060 1504.744510 358.022190 533.304020 1506.840090 -325.266110 519.804320 1472.481930 462.828740 498.051700 1474.523190 -425.940310 672.123600 1468.655270 687.175960 612.020510 1476.873410 711.612730 624.653080 1441.333500 -644.885010 552.590330 1445.542600 -662.026430 600.120180 39.589150 276.760470 594.228150 49.337000 168.089770 585.345090 39.916630 -201.712390 605.953430 51.504180 -100.939510 604.988650 1656.840580 130.721590 671.639890 1644.607180 8.790720 592.977360 1814.277950 31.595390
+7 0.100000 608.627810 1072.687130 157.617280 610.896360 1060.555540 -103.757090 411.536410 1079.543090 35.965240 544.737120 756.560670 224.058200 594.782900 681.320430 134.873840 523.604860 636.914550 226.298970 519.082400 767.852480 -168.646680 606.975100 718.215330 -111.757090 507.263520 658.368530 -160.369640 478.150150 553.680910 216.368800 470.501770 525.787840 97.741560 478.610660 528.768680 -150.286030 499.956300 519.403140 -36.690100 442.836820 469.196320 236.181750 514.703610 424.002500 184.606640 454.404390 383.940120 253.041670 469.104770 450.142880 -170.684430 518.174190 393.352230 -128.148220 446.641910 409.813930 -181.344450 437.563780 98.089800 255.325330 444.142730 103.631020 165.086490 443.190640 93.778160 -172.136830 464.981840 109.044060 -81.754850 366.700870 70.613120 210.288650 507.444370 80.215810 164.903210 509.349490 63.780520 272.894040 657.171140 50.652980 195.339610 371.391480 75.666550 -115.643170 544.812990 77.038730 -94.775080 523.337650 66.126250 -191.859420 654.440860 48.428990 -127.500890 607.327390 1424.100710 24.528180 491.081180 1550.101200 193.475600 489.858730 1560.588870 -147.560500 525.808290 1504.879760 357.941500 533.419190 1506.857670 -325.274660 519.980830 1472.982790 463.452910 498.226960 1474.358760 -425.896640 672.653500 1469.032590 686.946350 612.243710 1477.010250 711.509580 624.858700 1441.379760 -644.845890 552.778080 1445.381100 -661.973080 600.127810 39.582120 276.752500 594.237300 49.344770 168.083050 585.345090 39.916630 -201.712390 605.930180 51.564110 -100.949610 605.099370 1656.862550 130.651210 671.564330 1644.612920 8.548500 592.927670 1814.290410 31.487700
+8 0.117000 608.634950 1072.693360 157.579220 610.882140 1060.554810 -103.778340 411.557560 1079.537960 35.968160 544.607970 756.576110 224.055160 594.754460 681.279540 134.851780 523.591490 636.894350 226.287260 519.156430 767.864140 -168.668850 606.985230 718.255980 -111.763070 507.240480 658.342410 -160.363820 478.171300 553.714050 216.369160 470.479340 525.781190 97.727390 478.588840 528.755860 -150.275860 499.956300 519.403140 -36.690100 442.862520 469.207890 236.176420 514.702820 423.984340 184.608630 454.402620 383.906890 253.046460 469.139740 450.129090 -170.699630 518.164670 393.341000 -128.154710 446.632750 409.790440 -181.353200 437.564480 98.089920 255.335890 444.311800 103.647160 165.065060 443.148530 93.751420 -172.151440 464.981170 109.041070 -81.756390 366.662600 70.625550 210.281220 507.396450 80.172110 164.886630 509.362270 63.765350 272.904630 657.175840 50.653780 195.344130 371.363650 75.678310 -115.683910 544.812990 77.038730 -94.775080 523.721010 66.253380 -191.753660 654.486820 48.482570 -127.445960 607.334590 1424.062380 24.517540 491.070920 1550.121090 193.419220 489.846440 1560.574830 -147.613540 525.886780 1504.963500 357.880920 533.502380 1506.877320 -325.275120 520.276250 1473.428220 463.845430 498.383850 1474.192630 -425.897520 673.015200 1469.294190 686.769960 612.491390 1477.157840 711.392400 625.051510 1441.415160 -644.794620 552.961490 1445.233400 -661.906370 600.140870 39.567850 276.735600 594.254580 49.358330 168.068410 585.345090 39.916630 -201.712390 605.911010 51.598360 -100.968330 605.199460 1656.870480 130.574450 671.509340 1644.647580 8.330740 592.845210 1814.312260 31.372300
+9 0.133000 608.617370 1072.714230 157.554890 610.858030 1060.542720 -103.810010 411.557400 1079.547490 35.963810 544.533750 756.580510 224.054690 594.728880 681.264280 134.828480 523.567500 636.881290 226.266420 519.248900 767.911500 -168.703350 606.989320 718.297300 -111.789150 507.216800 658.319700 -160.361050 478.196140 553.765440 216.348370 470.477630 525.767880 97.726740 478.558750 528.735410 -150.289780 499.956300 519.403140 -36.690100 442.874330 469.218170 236.174620 514.691530 423.961460 184.594210 454.413760 383.868590 253.045260 469.154690 450.115260 -170.712830 518.120540 393.310090 -128.143740 446.646730 409.768280 -181.360820 437.576660 98.092080 255.381530 444.462770 103.697810 165.042160 443.106750 93.724910 -172.165940 464.984310 109.054850 -81.749330 366.646270 70.630840 210.278050 507.411900 80.178080 164.889940 509.371890 63.761520 272.916350 657.180730 50.654610 195.348820 371.356290 75.643750 -115.779490 544.812990 77.038730 -94.775080 523.968810 66.318370 -191.690810 654.512390 48.517110 -127.414050 607.324400 1424.035030 24.508920 491.061680 1550.130130 193.369870 489.821870 1560.542850 -147.687640 525.929380 1504.999150 357.837280 533.555180 1506.890010 -325.266630 520.660100 1473.768550 463.661590 498.513670 1474.054690 -425.934510 673.202090 1469.455440 686.665770 612.748780 1477.355470 711.258670 625.212460 1441.420530 -644.739380 553.121150 1445.129520 -661.857300 600.153260 39.555150 276.721040 594.270320 49.377790 168.056550 585.345090 39.916630 -201.712390 605.902220 51.605030 -101.000520 605.283570 1656.867680 130.499940 671.498780 1644.687870 8.161230 592.727600 1814.339970 31.249240
+10 0.150000 608.587460 1072.740110 157.546160 610.832760 1060.523930 -103.846410 411.545170 1079.569090 35.953610 544.556580 756.572330 224.056790 594.717350 681.272830 134.814160 523.555110 636.888310 226.255800 519.303830 767.941530 -168.725740 607.017090 718.329100 -111.829440 507.205050 658.309080 -160.360230 478.225710 553.826420 216.310530 470.500920 525.749330 97.735560 478.539920 528.721370 -150.317700 499.956300 519.403140 -36.690100 442.872890 469.220280 236.175580 514.679440 423.949190 184.578480 454.427060 383.840180 253.041990 469.153200 450.108250 -170.734020 518.081120 393.277190 -128.129550 446.663850 409.749330 -181.361880 437.592680 98.094940 255.433400 444.558500 103.772070 165.033740 443.089570 93.714000 -172.171910 464.985320 109.059230 -81.747080 366.639130 70.633170 210.276660 507.450130 80.211060 164.902690 509.378300 63.764810 272.922490 657.180420 50.654560 195.348530 371.395780 75.582210 -115.870540 544.812990 77.038730 -94.775080 524.075500 66.326270 -191.670230 654.531370 48.517650 -127.400660 607.287350 1424.020750 24.497590 491.048520 1550.125120 193.321350 489.798490 1560.501710 -147.761930 525.916930 1505.002930 357.807650 533.596310 1506.891720 -325.246120 521.045720 1474.014400 462.891450 498.631650 1473.943120 -425.984040 673.257810 1469.557370 686.616580 612.920230 1477.609990 711.124880 625.339600 1441.380490 -644.687990 553.251890 1445.068120 -661.830020 600.152220 39.550090 276.713650 594.273250 49.391330 168.050610 585.345090 39.916630 -201.712390 605.905270 51.591900 -101.042270 605.355770 1656.857910 130.427700 671.525760 1644.720580 8.053110 592.581790 1814.371950 31.126290
+11 0.167000 608.563350 1072.759280 157.547150 610.809570 1060.508540 -103.881340 411.531490 1079.593380 35.942140 544.670100 756.556270 224.060180 594.717960 681.287780 134.804950 523.562010 636.910710 226.261990 519.284790 767.923890 -168.726680 607.067020 718.346370 -111.866810 507.208710 658.312560 -160.360470 478.248690 553.877750 216.271390 470.543520 525.732360 97.745360 478.537480 528.711240 -150.338960 499.956300 519.403140 -36.690100 442.871370 469.215730 236.176100 514.672670 423.951170 184.570400 454.436710 383.828310 253.038250 469.139710 450.111570 -170.776920 518.068050 393.259190 -128.124500 446.660920 409.732670 -181.355260 437.603490 98.096870 255.466520 444.582520 103.821010 165.048480 443.080900 93.708500 -172.174910 464.983670 109.051990 -81.750790 366.627040 70.637090 210.274320 507.468870 80.221440 164.907500 509.381960 63.757410 272.915100 657.164980 50.651940 195.333720 371.499080 75.534300 -115.855600 544.812990 77.038730 -94.775080 524.096800 66.295940 -191.676380 654.547300 48.481020 -127.403770 607.228940 1424.006590 24.477590 491.024600 1550.112300 193.262240 489.788450 1560.466920 -147.831150 525.838560 1504.989260 357.788700 533.627140 1506.884770 -325.225100 521.317500 1474.208740 461.876220 498.726500 1473.863890 -426.038850 673.242550 1469.657470 686.583130 612.875180 1477.878300 711.026120 625.426150 1441.287110 -644.653630 553.349000 1445.027710 -661.817080 600.116390 39.556590 276.711940 594.248410 49.381820 168.046920 585.345090 39.916630 -201.712390 605.920100 51.565520 -101.088750 605.396420 1656.839970 130.353040 671.568600 1644.752320 7.995790 592.424320 1814.407710 31.017960
+12 0.183000 608.549870 1072.769040 157.553450 610.781560 1060.506100 -103.913890 411.514070 1079.609500 35.934290 544.810240 756.539920 224.063370 594.725100 681.296810 134.790340 523.573550 636.930180 226.272090 519.203310 767.878780 -168.723510 607.101620 718.342530 -111.887260 507.223750 658.327090 -160.361600 478.252140 553.906370 216.247510 470.581210 525.725340 97.751140 478.545750 528.697880 -150.338230 499.956300 519.403140 -36.690100 442.877140 469.220060 236.175720 514.671510 423.966890 184.570560 454.443050 383.834630 253.032710 469.115170 450.125670 -170.845340 518.075200 393.259370 -128.131260 446.627410 409.715880 -181.341190 437.605560 98.097240 255.474560 444.548070 103.820010 165.082750 443.061250 93.696020 -172.181730 464.983950 109.053290 -81.750120 366.616060 70.640660 210.272190 507.454500 80.201310 164.900760 509.378230 63.743450 272.894380 657.122250 50.644680 195.292680 371.621920 75.544640 -115.683910 544.812990 77.038730 -94.775080 524.050540 66.244700 -191.700710 654.572630 48.448750 -127.398960 607.164120 1423.985960 24.450150 490.986150 1550.102170 193.185490 489.796480 1560.455930 -147.904390 525.699710 1504.970460 357.777400 533.635010 1506.872440 -325.220180 521.392210 1474.380370 460.973820 498.767970 1473.836060 -426.109160 673.191830 1469.813840 686.541990 612.541810 1478.097290 710.990050 625.458070 1441.146240 -644.653020 553.408810 1444.988040 -661.809390 600.021300 39.577770 276.711700 594.177610 49.351330 168.040890 585.345090 39.916630 -201.712390 605.938420 51.534500 -101.141680 605.369320 1656.807500 130.271420 671.612790 1644.799800 7.961540 592.276920 1814.446900 30.939330
+13 0.200000 608.542110 1072.772830 157.562440 610.747070 1060.515380 -103.940190 411.485320 1079.613530 35.931720 544.900090 756.530090 224.065230 594.732060 681.298830 134.770390 523.575380 636.935120 226.273730 519.113340 767.846560 -168.735210 607.096440 718.318540 -111.888760 507.240840 658.346370 -160.364150 478.239010 553.919490 216.240200 470.585050 525.732060 97.753880 478.561550 528.691650 -150.323000 499.956300 519.403140 -36.690100 442.885710 469.242190 236.175800 514.677920 423.991820 184.579910 454.448300 383.860630 253.023070 469.080900 450.147980 -170.922270 518.089540 393.273100 -128.140900 446.574710 409.702240 -181.322250 437.604710 98.097080 255.472690 444.513700 103.800460 165.125990 443.041440 93.683450 -172.188600 464.985320 109.059210 -81.747090 366.621400 70.638920 210.273220 507.416530 80.181580 164.891360 509.368530 63.740070 272.871550 657.047490 50.632000 195.220950 371.699160 75.618150 -115.413670 544.812990 77.038730 -94.775080 524.023320 66.232300 -191.709300 654.615360 48.460460 -127.365560 607.109310 1423.964110 24.419980 490.937650 1550.100460 193.095690 489.823090 1560.470830 -147.990200 525.526000 1504.955440 357.769930 533.618650 1506.854610 -325.232510 521.288940 1474.530030 460.336610 498.744780 1473.865480 -426.202510 673.099610 1470.049190 686.499390 611.970580 1478.229130 711.018740 625.433960 1440.976810 -644.691770 553.441590 1444.935910 -661.801940 599.861080 39.612340 276.707820 594.055300 49.318680 168.029240 585.345090 39.916630 -201.712390 605.948610 51.508460 -101.194350 605.266970 1656.750610 130.177810 671.659420 1644.874510 7.925460 592.158750 1814.488160 30.897950
+14 0.217000 608.537540 1072.772220 157.566470 610.724790 1060.527470 -103.945720 411.451630 1079.609380 35.932690 544.894960 756.531070 224.065000 594.728390 681.295290 134.746190 523.567810 636.928470 226.267140 519.067260 767.845950 -168.757170 607.070310 718.288700 -111.878380 507.249690 658.364320 -160.369370 478.223940 553.929500 216.235380 470.546810 525.751890 97.756290 478.582430 528.707030 -150.317490 499.956300 519.403140 -36.690100 442.888030 469.269470 236.176040 514.690860 424.010350 184.594310 454.453060 383.904600 253.009120 469.042300 450.174440 -170.979800 518.104740 393.289730 -128.148860 446.537630 409.703460 -181.306230 437.605900 98.097310 255.474110 444.526920 103.795790 165.166180 443.043670 93.684880 -172.187820 464.981380 109.041990 -81.755910 366.646480 70.630780 210.278090 507.367680 80.168890 164.882430 509.364590 63.743810 272.860750 656.964050 50.617850 195.140850 371.702300 75.700900 -115.199890 544.812990 77.038730 -94.775080 524.139590 66.307410 -191.665480 654.658630 48.509950 -127.317530 607.074460 1423.942870 24.387650 490.890530 1550.104130 193.005970 489.869020 1560.497440 -148.087230 525.339360 1504.942380 357.760530 533.586670 1506.831180 -325.250820 521.109070 1474.650880 459.933200 498.655120 1473.942990 -426.313600 672.934880 1470.307620 686.470520 611.292110 1478.273560 711.092710 625.365660 1440.800540 -644.760930 553.461980 1444.858890 -661.817320 599.691770 39.649090 276.700870 593.920650 49.292920 168.015210 585.345090 39.916630 -201.712390 605.945680 51.495780 -101.225870 605.127320 1656.666260 130.070330 671.713200 1644.974980 7.877220 592.079530 1814.528440 30.889300
+15 0.233000 608.530270 1072.769780 157.559720 610.737180 1060.537230 -103.922750 411.426360 1079.602660 35.935080 544.782530 756.545040 224.062190 594.703130 681.283690 134.707350 523.554020 636.915160 226.255130 519.081600 767.868710 -168.775590 607.057560 718.264830 -111.865350 507.242610 658.376590 -160.378270 478.210660 553.927370 216.221740 470.490450 525.780520 97.757620 478.596100 528.735960 -150.336650 499.956300 519.403140 -36.690100 442.873780 469.279790 236.175200 514.699040 424.007810 184.596130 454.454470 383.955410 252.995440 469.011930 450.200900 -171.006270 518.122440 393.291690 -128.165820 446.546720 409.727110 -181.301280 437.605070 98.097150 255.471410 444.554720 103.798510 165.188890 443.067290 93.699870 -172.179630 464.971590 108.998920 -81.777990 366.679690 70.620000 210.284530 507.324310 80.145870 164.871570 509.374970 63.737370 272.867340 656.925660 50.611320 195.103960 371.637210 75.734860 -115.183110 544.812990 77.038730 -94.775080 524.363830 66.417100 -191.592290 654.677920 48.569460 -127.281970 607.060970 1423.915770 24.352520 490.853790 1550.107540 192.925870 489.925600 1560.520020 -148.182890 525.152830 1504.922490 357.741150 533.538820 1506.805420 -325.274410 520.936710 1474.743650 459.645260 498.480380 1474.057860 -426.423770 672.670230 1470.441890 686.460330 610.630680 1478.252930 711.186340 625.271610 1440.632930 -644.848450 553.467410 1444.749270 -661.907100 599.630370 39.669240 276.702450 593.858280 49.269940 168.013290 585.345090 39.916630 -201.712390 605.932740 51.502280 -101.220920 604.992250 1656.573490 129.946490 671.759950 1645.088130 7.814100 592.036680 1814.564210 30.899190
+16 0.250000 608.505130 1072.772580 157.546890 610.782650 1060.546390 -103.886170 411.414220 1079.594600 35.938400 544.587590 756.571590 224.056660 594.657100 681.264340 134.643840 523.532230 636.894780 226.236150 519.148560 767.905880 -168.789630 607.059080 718.243470 -111.853990 507.218200 658.378850 -160.389360 478.180240 553.888610 216.200790 470.454070 525.806520 97.752520 478.585540 528.755980 -150.372670 499.956300 519.403140 -36.690100 442.833400 469.258610 236.173580 514.689510 423.989440 184.568220 454.447480 383.995940 252.989500 469.007810 450.221590 -171.015340 518.148010 393.270690 -128.198810 446.587770 409.759250 -181.306470 437.596980 98.095700 255.454090 444.529690 103.787610 165.184140 443.087920 93.712970 -172.172470 464.962890 108.960750 -81.797550 366.708160 70.610760 210.290070 507.308960 80.124360 164.864380 509.392730 63.723560 272.882750 656.964050 50.617840 195.140850 371.536100 75.711590 -115.366900 544.812990 77.038730 -94.775080 524.532170 66.467250 -191.547670 654.669920 48.622280 -127.267550 607.063960 1423.882320 24.320680 490.826320 1550.112790 192.852140 489.971920 1560.531620 -148.259570 524.994690 1504.897220 357.700620 533.472960 1506.776860 -325.316010 520.791750 1474.801760 459.385650 498.216250 1474.187870 -426.504390 672.283260 1470.304200 686.472530 610.089970 1478.203980 711.275330 625.176880 1440.489140 -644.945620 553.438540 1444.620610 -662.118650 599.735110 39.659810 276.717560 593.917720 49.257920 168.030530 585.345090 39.916630 -201.712390 605.919860 51.523430 -101.180460 604.873050 1656.506100 129.794740 671.765630 1645.197510 7.723510 592.018070 1814.591800 30.911380
+17 0.267000 608.453670 1072.788210 157.535980 610.841490 1060.558720 -103.855510 411.412260 1079.582760 35.943580 544.387210 756.603820 224.049560 594.606260 681.248720 134.564590 523.507570 636.872250 226.214710 519.243160 767.951480 -168.793210 607.044620 718.215700 -111.839680 507.189330 658.371150 -160.397340 478.113950 553.813170 216.177600 470.461670 525.813480 97.733140 478.554900 528.761410 -150.407820 499.956330 519.403140 -36.690110 442.776370 469.211330 236.172360 514.664550 423.975950 184.517260 454.429440 384.015560 252.995740 469.035550 450.229860 -171.025220 518.180050 393.239590 -128.233750 446.612640 409.771150 -181.313160 437.584660 98.093480 255.428590 444.453280 103.766580 165.161710 443.090420 93.714550 -172.171600 464.959900 108.947670 -81.804260 366.728360 70.604190 210.293990 507.337460 80.138830 164.871350 509.408200 63.720000 272.897460 657.047490 50.632000 195.220950 371.448210 75.660760 -115.635700 544.812990 77.038730 -94.775080 524.603030 66.460320 -191.537920 654.653200 48.660100 -127.264690 607.072750 1423.852290 24.300040 490.798100 1550.128780 192.771840 489.992100 1560.535770 -148.306320 524.894710 1504.881960 357.631770 533.393370 1506.733400 -325.382600 520.661620 1474.786740 459.194270 497.905000 1474.296260 -426.536440 671.764400 1469.909670 686.520570 609.752620 1478.164430 711.336790 625.105590 1440.383910 -645.043700 553.356200 1444.510250 -662.456300 599.925290 39.626210 276.731990 594.050720 49.274660 168.052140 585.345090 39.916630 -201.712390 605.921390 51.542570 -101.113440 604.783750 1656.479740 129.604810 671.697940 1645.292360 7.576460 592.007630 1814.607790 30.915710
+18 0.283000 608.391240 1072.816040 157.530410 610.891970 1060.574710 -103.837270 411.416170 1079.565430 35.951190 544.269710 756.629580 224.043430 594.568180 681.249450 134.497420 523.495670 636.861450 226.204330 519.313660 767.984860 -168.766720 607.002560 718.185240 -111.818420 507.179530 658.362060 -160.396770 478.024690 553.740480 216.154190 470.510500 525.794980 97.696970 478.537020 528.767270 -150.429340 499.956360 519.403140 -36.690110 442.734310 469.162260 236.173000 514.641540 423.982790 184.473600 454.406590 384.014950 253.010120 469.076230 450.224090 -171.039600 518.211910 393.220090 -128.249730 446.592190 409.745760 -181.315630 437.574490 98.091650 255.408250 444.392850 103.756420 165.145000 443.088440 93.713290 -172.172290 464.959960 108.947950 -81.804120 366.741420 70.599960 210.296520 507.411620 80.190280 164.892960 509.425900 63.724640 272.914400 657.122250 50.644680 195.292680 371.383850 75.606290 -115.915240 544.812990 77.038730 -94.775070 524.659120 66.468890 -191.525670 654.647280 48.678080 -127.261860 607.076840 1423.828610 24.287860 490.757320 1550.161380 192.678590 489.984010 1560.538820 -148.323530 524.854860 1504.887450 357.541750 533.304500 1506.657840 -325.467190 520.526060 1474.642210 459.203580 497.601810 1474.354250 -426.533810 671.186830 1469.462400 686.598080 609.641780 1478.147950 711.354980 625.066410 1440.322630 -645.129390 553.216800 1444.460570 -662.863340 600.084110 39.588010 276.734380 594.173280 49.313280 168.062820 585.345090 39.916630 -201.712390 605.944520 51.545180 -101.036380 604.789610 1656.478640 129.377940 671.542660 1645.367070 7.339760 591.989690 1814.610230 30.911740
+19 0.300000 608.340450 1072.847660 157.531860 610.912720 1060.588620 -103.835840 411.422060 1079.547360 35.959010 544.263060 756.640200 224.040470 594.551640 681.264220 134.467850 523.503300 636.868230 226.210970 519.316100 767.983760 -168.715070 606.949950 718.166140 -111.799380 507.199400 658.362000 -160.388170 477.942750 553.707400 216.132420 470.573700 525.765080 97.655550 478.559140 528.786680 -150.434810 499.956330 519.403140 -36.690110 442.727050 469.133880 236.176970 514.634030 424.008850 184.458980 454.394040 384.000060 253.021620 469.104340 450.208220 -171.051710 518.235470 393.222260 -128.242510 446.539830 409.695680 -181.313160 437.568970 98.090660 255.397110 444.380800 103.760410 165.144580 443.094730 93.717290 -172.170100 464.960270 108.949240 -81.803450 366.743680 70.599220 210.296970 507.505650 80.239440 164.916340 509.451110 63.720290 272.936920 657.164980 50.651940 195.333710 371.288480 75.545310 -116.254070 544.812990 77.038740 -94.775060 524.658750 66.480290 -191.522050 654.650390 48.680140 -127.258800 607.074950 1423.796510 24.275150 490.696900 1550.204350 192.584980 489.954470 1560.542970 -148.319990 524.852050 1504.905270 357.452330 533.216130 1506.548950 -325.555820 520.348940 1474.351810 459.485810 497.334870 1474.352660 -426.536100 670.718870 1469.171880 686.661740 609.724370 1478.139890 711.330140 625.050600 1440.296510 -645.189390 553.038760 1444.490600 -663.248050 600.161070 39.561600 276.727420 594.245970 49.348390 168.061290 585.345090 39.916630 -201.712390 605.977910 51.533680 -100.972060 604.984440 1656.480590 129.121110 671.304020 1645.417600 6.991920 591.950560 1814.599730 30.906600
+20 0.317000 608.299010 1072.874270 157.540600 610.887150 1060.596920 -103.862070 411.426210 1079.540160 35.961870 544.320560 756.638120 224.040480 594.555300 681.280210 134.481870 523.516600 636.880070 226.222490 519.261660 767.953430 -168.677250 606.892030 718.156980 -111.795490 507.233730 658.370180 -160.377200 477.886720 553.711120 216.113450 470.620880 525.746460 97.628180 478.612520 528.815490 -150.432240 499.956270 519.403140 -36.690090 442.741640 469.131620 236.184110 514.637940 424.040560 184.466170 454.400790 383.974000 253.023860 469.111510 450.186920 -171.057360 518.236450 393.235320 -128.227840 446.499420 409.660100 -181.306200 437.566800 98.090280 255.390030 444.376100 103.754980 165.150540 443.093780 93.716680 -172.170440 464.963590 108.963870 -81.795960 366.729310 70.603890 210.294160 507.563140 80.257620 164.927660 509.474090 63.705680 272.956210 657.180420 50.654560 195.348530 371.124940 75.476130 -116.667790 544.812990 77.038740 -94.775050 524.441890 66.396770 -191.585600 654.642330 48.669960 -127.267960 607.074160 1423.741940 24.259160 490.618960 1550.241090 192.512890 489.916380 1560.544800 -148.309160 524.852660 1504.912350 357.388060 533.141240 1506.425420 -325.636140 520.086360 1473.982670 459.953060 497.106510 1474.297970 -426.573030 670.478640 1469.082890 686.675840 609.941160 1478.107910 711.282650 625.042180 1440.288570 -645.221070 552.860410 1444.573970 -663.538210 600.150510 39.551500 276.713530 594.274290 49.373250 168.048650 585.345090 39.916630 -201.712390 605.999760 51.524020 -100.931740 605.408200 1656.474610 128.845260 671.014220 1645.448490 6.536230 591.879880 1814.580440 30.909860
+21 0.333000 608.235840 1072.888920 157.552000 610.814640 1060.601810 -103.918760 411.425290 1079.550050 35.957610 544.364990 756.634830 224.040990 594.569210 681.292660 134.539030 523.516420 636.879940 226.222320 519.200320 767.922360 -168.679110 606.819400 718.137880 -111.806060 507.258120 658.375240 -160.368410 477.866270 553.732600 216.099460 470.644500 525.751530 97.622730 478.664220 528.838070 -150.429690 499.956120 519.403140 -36.690040 442.756650 469.145600 236.191930 514.643490 424.060000 184.482480 454.418520 383.938570 253.021700 469.107510 450.164460 -171.058330 518.208740 393.242680 -128.222310 446.512270 409.670810 -181.297700 437.565770 98.090100 255.378910 444.340940 103.720340 165.153550 443.067840 93.700220 -172.179440 464.972440 109.002780 -81.776020 366.705380 70.611650 210.289520 507.548580 80.254100 164.925050 509.484100 63.693030 272.964360 657.180730 50.654610 195.348830 370.936980 75.421040 -117.034950 544.812990 77.038740 -94.775050 524.014220 66.202670 -191.720400 654.608280 48.632120 -127.305470 607.077330 1423.672000 24.239180 490.537720 1550.254760 192.474750 489.879850 1560.540530 -148.299180 524.828130 1504.891480 357.357730 533.080510 1506.307130 -325.700440 519.734920 1473.645750 460.424320 496.915130 1474.214480 -426.637300 670.428590 1469.102050 686.646300 610.197570 1478.012450 711.243230 625.027220 1440.282590 -645.233460 552.725710 1444.649290 -663.707280 600.051450 39.555180 276.689150 594.277470 49.402920 168.021990 585.345090 39.916630 -201.712390 605.997560 51.528510 -100.910880 605.997990 1656.443480 128.562060 670.739200 1645.478150 5.996390 591.772340 1814.559570 30.929590
+22 0.350000 608.127010 1072.886840 157.559340 610.710630 1060.606570 -103.991120 411.416500 1079.567630 35.951850 544.351010 756.639280 224.039840 594.585020 681.308350 134.642180 523.503600 636.868590 226.211120 519.166990 767.907410 -168.702450 606.744570 718.102910 -111.818510 507.261960 658.368410 -160.362810 477.889830 553.769410 216.098220 470.658050 525.772090 97.629700 478.693730 528.845210 -150.426850 499.955840 519.403200 -36.689960 442.766850 469.159060 236.196790 514.650270 424.054900 184.508000 454.434510 383.904940 253.020460 469.104640 450.146060 -171.058200 518.170170 393.243260 -128.223450 446.575840 409.716030 -181.293460 437.564090 98.089820 255.357640 444.304290 103.667140 165.158810 443.026890 93.674210 -172.193650 464.981810 109.043840 -81.754970 366.689580 70.616790 210.286450 507.499790 80.250940 164.918500 509.483670 63.688430 272.965850 657.175840 50.653790 195.344160 370.800900 75.402240 -117.229100 544.812990 77.038710 -94.775090 523.632570 66.020770 -191.843480 654.545720 48.540240 -127.383340 607.074650 1423.608890 24.204490 490.473180 1550.239750 192.467830 489.842530 1560.532710 -148.287170 524.768680 1504.846440 357.350310 533.026860 1506.199220 -325.742000 519.367610 1473.415040 460.764950 496.769930 1474.136230 -426.697480 670.453670 1469.126710 686.591000 610.365910 1477.836180 711.227170 625.000790 1440.268800 -645.237430 552.657410 1444.667600 -663.759770 599.872680 39.568170 276.651700 594.271790 49.450460 167.980010 585.345090 39.916630 -201.712390 605.976680 51.546450 -100.903680 606.636290 1656.358890 128.271900 670.536440 1645.533940 5.385560 591.630680 1814.544070 30.971440
+23 0.367000 607.998660 1072.874880 157.556230 610.593750 1060.615970 -104.064800 411.397280 1079.577150 35.953100 544.296260 756.649600 224.037350 594.603820 681.331910 134.771030 523.498540 636.864140 226.206790 519.160770 767.904970 -168.717940 606.701170 718.077030 -111.822940 507.253080 658.352050 -160.360340 477.961330 553.826720 216.116500 470.670040 525.790280 97.639470 478.707820 528.843140 -150.421720 499.955570 519.403260 -36.689890 442.774510 469.162230 236.197170 514.661320 424.026120 184.539790 454.445920 383.893190 253.017290 469.106960 450.137080 -171.058840 518.140380 393.249210 -128.212450 446.644260 409.754670 -181.300030 437.561430 98.089370 255.328610 444.318420 103.630000 165.168980 442.992550 93.652440 -172.205550 464.983950 109.053190 -81.750180 366.686580 70.617760 210.285870 507.485290 80.258050 164.918550 509.475740 63.693320 272.965610 657.171140 50.652990 195.339660 370.765750 75.420330 -117.214220 544.812990 77.038650 -94.775190 523.544370 65.975690 -191.872890 654.459840 48.397110 -127.497330 607.045470 1423.566410 24.133110 490.436680 1550.204710 192.480290 489.794530 1560.528810 -148.270230 524.682310 1504.795170 357.351100 532.980530 1506.101200 -325.759160 519.084960 1473.298100 460.945070 496.680270 1474.085330 -426.733030 670.465330 1469.110960 686.510800 610.353270 1477.609740 711.220340 624.974910 1440.249020 -645.237490 552.650090 1444.618160 -663.708920 599.675720 39.583470 276.611330 594.265870 49.504950 167.934770 585.345090 39.916630 -201.712390 605.949460 51.570240 -100.907460 607.234440 1656.208980 127.966810 670.404110 1645.631350 4.702280 591.465940 1814.538210 31.038280
+24 0.383000 607.915040 1072.873540 157.534550 610.475040 1060.637080 -104.142200 411.368010 1079.571040 35.965060 544.242610 756.659120 224.034910 594.630430 681.358090 134.875560 523.515930 636.879760 226.222240 519.156370 767.913330 -168.725660 606.705260 718.090150 -111.819850 507.245270 658.333190 -160.361940 478.068020 553.891300 216.150250 470.678250 525.800170 97.653620 478.715360 528.840520 -150.418080 499.955630 519.403260 -36.689910 442.775240 469.159210 236.195140 514.674380 423.985170 184.565320 454.456270 383.914030 253.007580 469.115260 450.137850 -171.060850 518.116580 393.266450 -128.177640 446.673340 409.766690 -181.321550 437.558810 98.088930 255.303850 444.384250 103.640990 165.166630 442.973820 93.640540 -172.212050 464.978880 109.030940 -81.761580 366.686980 70.617640 210.285960 507.513340 80.272780 164.925490 509.452670 63.711270 272.957980 657.168330 50.652510 195.336940 370.841370 75.463790 -116.996020 544.813050 77.038540 -94.775340 523.712040 66.053380 -191.819530 654.376830 48.259430 -127.608400 606.966740 1423.541020 24.007330 490.425600 1550.165650 192.498380 489.727080 1560.529300 -148.251740 524.581670 1504.750730 357.354950 532.947880 1506.027470 -325.768950 518.930790 1473.262450 461.004300 496.640110 1474.062010 -426.745670 670.425960 1469.055660 686.402280 610.177430 1477.387820 711.198060 624.977840 1440.235720 -645.230900 552.689640 1444.516480 -663.569820 599.583370 39.591220 276.592990 594.261840 49.529330 167.914080 585.345090 39.916630 -201.712390 605.926330 51.591130 -100.917050 607.749450 1656.010990 127.648140 670.295650 1645.760250 3.970420 591.292360 1814.541380 31.128570
+25 0.400000 607.885310 1072.890380 157.493770 610.358090 1060.669680 -104.225640 411.333920 1079.552370 35.984440 544.210820 756.664610 224.033230 594.669560 681.380430 134.918030 523.547910 636.908450 226.250520 519.129330 767.932130 -168.740660 606.737980 718.142400 -111.814190 507.241330 658.312620 -160.369370 478.161740 553.926570 216.189070 470.687530 525.809200 97.670870 478.707150 528.830510 -150.418060 499.956570 519.403140 -36.690190 442.764500 469.154940 236.192310 514.686520 423.944980 184.576390 454.467620 383.955840 252.992890 469.131440 450.140560 -171.064100 518.087650 393.285370 -128.136000 446.655240 409.767520 -181.353700 437.557130 98.088630 255.291670 444.437130 103.695260 165.136320 442.967590 93.636570 -172.214220 464.973390 109.006870 -81.773920 366.685610 70.618100 210.285710 507.529110 80.286410 164.930770 509.412080 63.739930 272.937410 657.167180 50.652310 195.335820 370.998470 75.515500 -116.606880 544.813050 77.038440 -94.775480 523.861210 66.124630 -191.771360 654.345760 48.203510 -127.653530 606.829590 1423.521730 23.835400 490.428990 1550.135740 192.511700 489.639860 1560.523560 -148.232860 524.479550 1504.711060 357.363010 532.932680 1505.997920 -325.797880 518.879580 1473.267820 461.000150 496.633820 1474.055180 -426.746770 670.341060 1468.985720 686.282650 609.950680 1477.207890 711.149350 625.030400 1440.236690 -645.213380 552.760250 1444.390870 -663.370970 599.667050 39.586140 276.611760 594.259280 49.498100 167.934300 585.345090 39.916630 -201.712390 605.915950 51.599310 -100.924880 608.165770 1655.793210 127.332660 670.170650 1645.897090 3.245190 591.120060 1814.546630 31.234150
+26 0.417000 607.813170 1072.899900 157.452740 610.242980 1060.702640 -104.297540 411.299990 1079.530150 36.005040 544.199650 756.666380 224.032410 594.722170 681.398320 134.896030 523.573490 636.931460 226.273360 519.085450 767.949770 -168.763230 606.772890 718.206540 -111.809320 507.226930 658.284300 -160.383560 478.181400 553.899350 216.223690 470.704900 525.820310 97.678470 478.673250 528.799260 -150.415590 499.959110 519.402710 -36.690920 442.747280 469.144230 236.186950 514.699950 423.915310 184.577160 454.477330 383.993680 252.979610 469.148680 450.137730 -171.065800 518.051150 393.290370 -128.121120 446.617830 409.777070 -181.384080 437.556400 98.088500 255.290130 444.401090 103.743900 165.095250 442.967960 93.636800 -172.214100 464.971500 108.998550 -81.778180 366.690030 70.616680 210.286590 507.497160 80.297230 164.929860 509.372770 63.763730 272.912200 657.166870 50.652260 195.335560 371.186190 75.554680 -116.140530 544.813050 77.038480 -94.775440 523.811460 66.106720 -191.785550 654.397220 48.259370 -127.598620 606.657780 1423.498290 23.651160 490.434480 1550.121340 192.514160 489.546660 1560.503050 -148.211730 524.391170 1504.671260 357.376370 532.933530 1506.012330 -325.849150 518.882690 1473.284910 460.976380 496.651520 1474.054200 -426.747220 670.233150 1468.929080 686.191960 609.778810 1477.080080 711.082030 625.120240 1440.246340 -645.186220 552.836360 1444.282230 -663.171140 599.856320 39.573250 276.652620 594.257690 49.428450 167.978470 585.345090 39.916630 -201.712390 605.919680 51.591700 -100.930310 608.502500 1655.583980 127.043660 670.011230 1646.023800 2.572130 590.950010 1814.544920 31.340370
+27 0.433000 607.605960 1072.871950 157.435420 610.122310 1060.725950 -104.337030 411.269500 1079.506590 36.024780 544.200500 756.665830 224.032670 594.772950 681.414060 134.820740 523.581180 636.938420 226.280260 519.046020 767.957950 -168.786390 606.797120 718.255000 -111.808110 507.182980 658.248960 -160.402150 478.113710 553.813230 216.244860 470.713810 525.828060 97.670960 478.616550 528.751890 -150.407580 499.963470 519.401980 -36.692140 442.732910 469.125920 236.179150 514.715880 423.910370 184.577120 454.477690 384.007390 252.973630 469.144010 450.131560 -171.059540 518.007570 393.279420 -128.139740 446.597140 409.800020 -181.401920 437.557460 98.088680 255.300930 444.270630 103.752300 165.074800 442.970370 93.638340 -172.213260 464.973390 109.006870 -81.773920 366.712100 70.609500 210.290860 507.450380 80.317220 164.929700 509.355530 63.768000 272.896730 657.166870 50.652260 195.335540 371.364870 75.578150 -115.715330 544.812930 77.038860 -94.774880 523.665770 66.055730 -191.826630 654.503170 48.387010 -127.476720 606.500790 1423.469240 23.486190 490.434390 1550.121090 192.503520 489.469240 1560.476560 -148.191310 524.328610 1504.636230 357.395290 532.942630 1506.053220 -325.898350 518.902710 1473.299190 460.955290 496.694060 1474.054440 -426.754490 670.103520 1468.890990 686.169740 609.699580 1476.997800 711.015010 625.210020 1440.256470 -645.157900 552.893980 1444.239260 -663.045590 600.032710 39.561000 276.690460 594.257260 49.355240 168.018620 585.345090 39.916630 -201.712390 605.926150 51.578790 -100.944020 608.805790 1655.421750 126.803210 669.809690 1646.128540 1.969830 590.775150 1814.529050 31.429920
+28 0.450000 607.297850 1072.809690 157.445950 609.984440 1060.739260 -104.344600 411.248020 1079.474000 36.046360 544.204530 756.664310 224.034680 594.787900 681.425420 134.708070 523.575870 636.933040 226.274480 519.002200 767.964900 -168.814210 606.794490 718.274230 -111.809090 507.103850 658.220950 -160.419040 478.003850 553.707090 216.246890 470.687070 525.829350 97.663010 478.543270 528.713200 -150.402820 499.968110 519.401120 -36.693430 442.725800 469.113680 236.174160 514.723940 423.945740 184.576970 454.455960 383.989870 252.977970 469.096890 450.130860 -171.040210 517.954350 393.267790 -128.156630 446.603940 409.830050 -181.406420 437.561950 98.089470 255.329710 444.122340 103.740790 165.080890 442.972530 93.639720 -172.212490 464.978880 109.030940 -81.761580 366.748020 70.597790 210.297780 507.448940 80.351980 164.938860 509.358030 63.754860 272.895750 657.166870 50.652260 195.335560 371.490540 75.602380 -115.434410 544.812620 77.039860 -94.773450 523.593440 66.056050 -191.838760 654.595760 48.516140 -127.361830 606.396970 1423.445430 23.350170 490.429080 1550.127080 192.482790 489.423830 1560.465450 -148.180360 524.294680 1504.615970 357.418670 532.947020 1506.109380 -325.922060 518.920720 1473.307130 460.943270 496.764920 1474.058720 -426.770690 669.923460 1468.828250 686.227720 609.698000 1476.948000 710.963680 625.269350 1440.266480 -645.137080 552.934330 1444.293210 -663.037050 600.145690 39.553070 276.714600 594.257810 49.297120 168.043200 585.345090 39.916630 -201.712390 605.922060 51.575820 -100.975260 609.099240 1655.342770 126.625680 669.570860 1646.205320 1.450060 590.587100 1814.500000 31.488540
+29 0.467000 607.011960 1072.744020 157.468750 609.835140 1060.745360 -104.336870 411.237460 1079.431760 36.070910 544.204100 756.662900 224.039340 594.741270 681.424740 134.593930 523.563600 636.920100 226.259920 518.919370 767.976750 -168.848690 606.744020 718.269350 -111.801820 506.998750 658.215270 -160.428250 477.893100 553.617250 216.235490 470.622380 525.827390 97.671330 478.461760 528.698490 -150.409560 499.968290 519.400940 -36.693390 442.722600 469.113920 236.174030 514.712460 424.012210 184.567570 454.397740 383.947810 252.993000 469.018620 450.138700 -171.012370 517.887020 393.267300 -128.135160 446.615360 409.853150 -181.405720 437.570830 98.091030 255.372010 444.027440 103.732510 165.093920 442.973790 93.640520 -172.212070 464.983950 109.053200 -81.750180 366.776920 70.588270 210.303240 507.497710 80.381750 164.952710 509.369510 63.732620 272.906040 657.167180 50.652310 195.335830 371.503750 75.620020 -115.394130 544.812130 77.041510 -94.771060 523.561710 66.084160 -191.835080 654.625920 48.594440 -127.309140 606.346070 1423.434810 23.240830 490.421720 1550.131230 192.458850 489.408660 1560.482180 -148.183590 524.282840 1504.612060 357.441040 532.937320 1506.174680 -325.914460 518.931030 1473.309940 460.938900 496.859530 1474.075070 -426.792180 669.681880 1468.676270 686.335630 609.732480 1476.921020 710.932680 625.296630 1440.278810 -645.125790 552.988950 1444.422850 -663.118040 600.201900 39.549080 276.726590 594.259340 49.255360 168.054180 585.345090 39.916630 -201.712390 605.906010 51.588180 -101.018940 609.355040 1655.346190 126.509610 669.327450 1646.257080 1.037350 590.385500 1814.467900 31.508470
+30 0.483000 606.832150 1072.699100 157.488240 609.700560 1060.743040 -104.329580 411.228240 1079.394900 36.096780 544.192870 756.663150 224.046540 594.642150 681.409670 134.516860 523.541930 636.896790 226.233550 518.783330 767.985050 -168.873930 606.648190 718.260620 -111.775460 506.878600 658.232240 -160.428650 477.776310 553.553100 216.222850 470.541140 525.823970 97.695440 478.385280 528.698000 -150.422970 499.954860 519.402890 -36.689450 442.713470 469.108460 236.171020 514.685850 424.070470 184.541290 454.299500 383.902890 253.016170 468.948060 450.148530 -170.989840 517.807190 393.271880 -128.079060 446.603940 409.854520 -181.407880 437.583590 98.093310 255.417010 443.992000 103.709530 165.095150 442.974240 93.640800 -172.211910 464.981810 109.043850 -81.754960 366.786800 70.584850 210.304950 507.532380 80.376370 164.955750 509.388890 63.706640 272.923220 657.168400 50.652510 195.336980 371.410130 75.594790 -115.596570 544.811580 77.043240 -94.768590 523.433530 66.060660 -191.864300 654.594300 48.599530 -127.327770 606.316770 1423.430910 23.157690 490.410710 1550.130620 192.437240 489.399570 1560.514530 -148.191590 524.277890 1504.616210 357.454990 532.914860 1506.238040 -325.886870 518.934880 1473.309940 460.938750 496.968750 1474.110110 -426.814790 669.437810 1468.445310 686.436400 609.752260 1476.915530 710.919860 625.313480 1440.297360 -645.118710 553.101810 1444.547490 -663.198120 600.212950 39.548270 276.728880 594.262450 49.229190 168.054550 585.345090 39.916630 -201.712390 605.890200 51.605450 -101.063960 609.525760 1655.388310 126.437690 669.127750 1646.292480 0.753360 590.183290 1814.448610 31.487280
+31 0.500000 606.754760 1072.679690 157.498990 609.596130 1060.730470 -104.330910 411.203490 1079.378660 36.124710 544.167180 756.667110 224.053220 594.521730 681.389280 134.480590 523.511290 636.864440 226.197360 518.616460 767.986020 -168.878370 606.536620 718.266050 -111.727750 506.753480 658.261050 -160.423370 477.632600 553.507450 216.218480 470.462650 525.818420 97.724780 478.317900 528.695560 -150.432950 499.916320 519.409000 -36.678420 442.688260 469.079960 236.157840 514.655640 424.095340 184.493160 454.179870 383.883270 253.043460 468.907930 450.154140 -170.980900 517.729250 393.270110 -128.021940 446.569460 409.833920 -181.413800 437.597020 98.095710 255.454650 443.992770 103.648960 165.078800 442.974240 93.640810 -172.211910 464.972470 109.002800 -81.776000 366.786800 70.584660 210.304730 507.499050 80.330520 164.940030 509.406040 63.693470 272.934750 657.171200 50.653000 195.339710 371.322910 75.523410 -115.849780 544.811580 77.043130 -94.768740 523.193970 65.973440 -191.932880 654.534480 48.538250 -127.392460 606.275630 1423.429320 23.097410 490.387850 1550.126710 192.420350 489.365910 1560.536990 -148.187500 524.265380 1504.624880 357.458920 532.890810 1506.295780 -325.864010 518.935000 1473.308960 460.940160 497.086400 1474.164060 -426.839660 669.276000 1468.231810 686.492000 609.728450 1476.935300 710.918640 625.345210 1440.328610 -645.108580 553.298890 1444.585330 -663.182370 600.166930 39.551440 276.718990 594.267940 49.230360 168.042130 585.345090 39.916630 -201.712390 605.885680 51.613880 -101.106120 609.590520 1655.423710 126.386760 668.997740 1646.319580 0.581620 590.004030 1814.456050 31.424390
+32 0.517000 606.731510 1072.680540 157.502490 609.515320 1060.710450 -104.340390 411.149810 1079.387820 36.157070 544.127810 756.676640 224.053680 594.404240 681.377440 134.464070 523.479550 636.833740 226.165130 518.450130 767.989690 -168.876300 606.435120 718.288210 -111.665170 506.635740 658.293580 -160.416460 477.462800 553.477050 216.226940 470.390170 525.812440 97.754250 478.247250 528.690120 -150.439180 499.847600 519.420530 -36.659000 442.645970 469.040160 236.138850 514.623900 424.109500 184.420410 454.064090 383.900420 253.072460 468.881100 450.157350 -170.979420 517.670470 393.260470 -127.983720 446.533480 409.806880 -181.419940 437.604770 98.097090 255.473720 444.017880 103.566430 165.053380 442.974120 93.640720 -172.211960 464.963590 108.963900 -81.795940 366.785550 70.585130 210.304550 507.416780 80.277660 164.916440 509.398010 63.713180 272.925570 657.175900 50.653790 195.344210 371.346620 75.459550 -115.915750 544.813290 77.037700 -94.776570 522.960140 65.883040 -192.001530 654.479920 48.447960 -127.466070 606.210140 1423.442630 23.050760 490.342930 1550.123170 192.409710 489.291290 1560.542110 -148.167880 524.243960 1504.647220 357.458280 532.879210 1506.353150 -325.864410 518.933650 1473.307370 460.941800 497.204010 1474.233520 -426.872680 669.211240 1468.100340 686.512570 609.675350 1476.980830 710.918640 625.406490 1440.376460 -645.090330 553.562320 1444.538090 -663.044560 600.026370 39.561190 276.688810 594.275880 49.278400 168.008710 585.345090 39.916630 -201.712390 605.889160 51.614630 -101.144340 609.563960 1655.443730 126.340610 668.926940 1646.341550 0.479500 589.874210 1814.495360 31.320420
+33 0.533000 606.715030 1072.696040 157.501860 609.450930 1060.690920 -104.349960 411.065430 1079.417850 36.190410 544.077880 756.690430 224.046750 594.304380 681.383790 134.455370 523.447390 636.813480 226.152600 518.297670 767.999570 -168.888080 606.346370 718.317810 -111.602970 506.534940 658.327090 -160.411740 477.279600 553.463870 216.246900 470.311550 525.806150 97.786300 478.162320 528.692440 -150.448970 499.753200 519.437500 -36.632710 442.597500 469.013090 236.124400 514.587340 424.146790 184.336530 453.958590 383.934810 253.102170 468.842770 450.161620 -170.978030 517.633540 393.249180 -127.954390 446.513850 409.789370 -181.423780 437.604190 98.096990 255.471920 444.064540 103.504180 165.042080 442.973970 93.640630 -172.212010 464.960270 108.949260 -81.803440 366.774200 70.589590 210.303180 507.352020 80.256450 164.902910 509.365480 63.754160 272.900180 657.180660 50.654600 195.348790 371.448270 75.456540 -115.788790 544.818050 77.022640 -94.798260 522.880190 65.859440 -192.022640 654.441350 48.367080 -127.525910 606.130550 1423.485600 23.012440 490.272640 1550.123540 192.402950 489.177430 1560.552370 -148.150050 524.220280 1504.691410 357.458440 532.887570 1506.411010 -325.878970 518.931880 1473.304930 460.943450 497.304900 1474.312870 -426.922000 669.213990 1468.049930 686.521550 609.634340 1477.049800 710.915340 625.494510 1440.439580 -645.059270 553.840760 1444.484740 -662.837710 599.757510 39.579840 276.631100 594.284420 49.375900 167.945710 585.345090 39.916630 -201.712390 605.896300 51.612520 -101.175330 609.477720 1655.469600 126.295400 668.890320 1646.353390 0.426840 589.813900 1814.560300 31.180860
+34 0.550000 606.680300 1072.721560 157.499630 609.401430 1060.678340 -104.352170 410.958010 1079.457280 36.213380 544.022770 756.701600 224.040990 594.229490 681.406310 134.453050 523.401000 636.803220 226.169910 518.160710 768.004030 -168.915280 606.257260 718.344240 -111.561200 506.456910 658.356380 -160.412830 477.085690 553.464480 216.273150 470.210750 525.796940 97.825700 478.067630 528.705750 -150.461730 499.631590 519.462280 -36.599070 442.556610 469.004430 236.118970 514.542420 424.199490 184.265520 453.862790 383.957760 253.129240 468.796080 450.164950 -170.980070 517.606510 393.240910 -127.921040 446.515350 409.787930 -181.424940 437.601320 98.096470 255.464340 444.135830 103.481380 165.063640 442.973880 93.640580 -172.212040 464.959960 108.947890 -81.804150 366.744020 70.601390 210.299450 507.347690 80.267830 164.904910 509.338650 63.779940 272.879850 657.180180 50.654520 195.348310 371.501710 75.502940 -115.698270 544.826350 76.996330 -94.836170 523.037840 65.928370 -191.973820 654.408570 48.300860 -127.575330 606.054930 1423.555420 22.987260 490.190430 1550.129880 192.391280 489.038600 1560.589360 -148.155690 524.196410 1504.749390 357.459470 532.910890 1506.463620 -325.888060 518.929750 1473.301760 460.945220 497.362790 1474.396240 -426.994080 669.280090 1468.072510 686.516600 609.650510 1477.135130 710.916560 625.594670 1440.511600 -645.007810 554.087220 1444.494380 -662.642880 599.401610 39.604530 276.554690 594.286500 49.489960 167.861530 585.345090 39.916630 -201.712390 605.915950 51.597560 -101.193790 609.363280 1655.512570 126.255810 668.868650 1646.342770 0.431330 589.829100 1814.636110 31.019170
+35 0.567000 606.632200 1072.750850 157.497040 609.360470 1060.670040 -104.349330 410.835750 1079.487550 36.215690 543.967100 756.700130 224.046570 594.165770 681.432800 134.450440 523.324830 636.798160 226.220290 518.039670 767.992310 -168.946410 606.150450 718.358460 -111.554160 506.401310 658.374940 -160.420520 476.878880 553.469060 216.304000 470.087980 525.784970 97.872400 477.977330 528.720400 -150.468290 499.472410 519.499880 -36.554480 442.526400 469.001890 236.120360 514.479190 424.230350 184.206910 453.788120 383.964900 253.147480 468.760680 450.163570 -170.989210 517.577700 393.236850 -127.895760 446.533570 409.801270 -181.423840 437.601810 98.096570 255.464250 444.224210 103.475620 165.103470 442.973850 93.640560 -172.212040 464.959870 108.947460 -81.804360 366.708620 70.616220 210.296140 507.378200 80.282040 164.911940 509.331850 63.781870 272.874240 657.164430 50.651850 195.333220 371.441350 75.537370 -115.801860 544.835630 76.966940 -94.878500 523.350950 66.034390 -191.886750 654.366580 48.234170 -127.629610 605.992430 1423.638550 22.981680 490.121000 1550.142700 192.367610 488.891780 1560.645870 -148.192210 524.165590 1504.803960 357.459170 532.935060 1506.506100 -325.893770 518.927370 1473.298580 460.946840 497.355930 1474.478390 -427.085850 669.405820 1468.154170 686.482670 609.763120 1477.220340 710.934080 625.688960 1440.584960 -644.935120 554.277040 1444.580320 -662.518430 599.128970 39.623440 276.496150 594.266240 49.558400 167.796690 585.345090 39.916630 -201.712390 605.950320 51.561990 -101.188310 609.246580 1655.554930 126.229470 668.841860 1646.299680 0.487780 589.907840 1814.705080 30.854430
+36 0.583000 606.597110 1072.778560 157.493260 609.319820 1060.661380 -104.347370 410.705050 1079.492680 36.200840 543.905760 756.679200 224.065480 594.084840 681.458620 134.436690 523.218020 636.794310 226.296940 517.928770 767.967100 -168.969670 606.017330 718.355650 -111.583820 506.355990 658.384340 -160.431500 476.674160 553.471250 216.341420 469.968810 525.773620 97.917310 477.902530 528.725950 -150.462970 499.283420 519.550960 -36.499440 442.497740 468.993160 236.125410 514.390500 424.222870 184.136310 453.742710 383.973720 253.152340 468.735720 450.159670 -170.996930 517.548770 393.240300 -127.906570 446.555240 409.821200 -181.421070 437.603490 98.096870 255.467220 444.282500 103.466890 165.123920 442.973850 93.640560 -172.212050 464.962800 108.960370 -81.797750 366.691860 70.625110 210.296570 507.383120 80.280040 164.912020 509.324920 63.787680 272.873540 657.121460 50.644550 195.291920 371.332550 75.530010 -115.990190 544.839900 76.953410 -94.898000 523.570130 66.068880 -191.838590 654.312010 48.167820 -127.692050 605.940370 1423.726440 22.991130 490.080570 1550.160890 192.333280 488.748260 1560.697630 -148.248500 524.118530 1504.847050 357.456850 532.945190 1506.534300 -325.919740 518.925660 1473.298830 460.946930 497.299160 1474.550540 -427.180910 669.598270 1468.286990 686.399290 609.986210 1477.285890 710.973140 625.761110 1440.655880 -644.857180 554.403080 1444.711430 -662.476810 599.129460 39.623410 276.496280 594.203800 49.527780 167.797930 585.345090 39.916630 -201.712390 605.980960 51.518280 -101.144560 609.143740 1655.568120 126.222020 668.783260 1646.221920 0.558950 590.023930 1814.753170 30.705020
+37 0.600000 606.604310 1072.809200 157.484420 609.280400 1060.653320 -104.346360 410.576140 1079.472290 36.184990 543.833190 756.638920 224.093640 593.978450 681.495670 134.412170 523.098210 636.790160 226.383270 517.818050 767.942380 -168.969920 605.873960 718.343690 -111.636530 506.308070 658.393860 -160.441930 476.503360 553.471680 216.384550 469.883240 525.765440 97.949390 477.844940 528.719480 -150.445310 499.100710 519.607540 -36.441920 442.460780 468.975160 236.131730 514.294620 424.195500 184.049740 453.716800 383.994630 253.145540 468.694270 450.162350 -170.989840 517.534550 393.253880 -127.955250 446.556950 409.833310 -181.417450 437.604190 98.096990 255.468550 444.262210 103.471820 165.112640 442.973880 93.640560 -172.212040 464.971470 108.998420 -81.778250 366.700990 70.621950 210.298130 507.349640 80.269130 164.905400 509.305240 63.806840 272.872310 657.046810 50.631890 195.220280 371.282810 75.509060 -116.058880 544.835630 76.966940 -94.878500 523.491700 65.979250 -191.880710 654.265630 48.125200 -127.740650 605.895450 1423.817020 23.003720 490.067840 1550.185180 192.293320 488.620030 1560.730350 -148.303700 524.052430 1504.880130 357.454190 532.936100 1506.542970 -325.980410 518.927430 1473.308840 460.942500 497.243260 1474.601680 -427.259160 669.902280 1468.493160 686.241580 610.279660 1477.320310 711.023620 625.806640 1440.719120 -644.793580 554.474790 1444.831300 -662.490780 599.402160 39.604500 276.554810 594.092590 49.399540 167.865490 585.345090 39.916630 -201.712390 605.991880 51.479220 -101.067260 609.053710 1655.536620 126.234560 668.683900 1646.114380 0.601400 590.148860 1814.775390 30.583290
+38 0.617000 606.672670 1072.855830 157.464770 609.248960 1060.645870 -104.346600 410.463560 1079.440060 36.180330 543.761780 756.587710 224.125610 593.870120 681.556400 134.389510 522.991150 636.786070 226.459660 517.705260 767.931640 -168.931630 605.748840 718.333370 -111.685680 506.256990 658.409850 -160.449460 476.384800 553.471370 216.432360 469.839900 525.761230 97.965480 477.803530 528.705990 -150.418880 498.964420 519.656490 -36.393300 442.414090 468.952910 236.137310 514.221680 424.173860 183.974400 453.690830 384.022400 253.133320 468.612090 450.180630 -170.960590 517.536870 393.263090 -127.996110 446.512760 409.825780 -181.414020 437.609220 98.097900 255.479390 444.185270 103.510150 165.094920 442.973880 93.640560 -172.212040 464.981320 109.041750 -81.756040 366.724980 70.603210 210.291110 507.328220 80.264000 164.901630 509.295840 63.810090 272.880860 656.964480 50.617910 195.141220 371.309780 75.502240 -115.989410 544.826350 76.996330 -94.836170 523.179930 65.833150 -191.980450 654.256590 48.121080 -127.748320 605.860110 1423.903690 23.012990 490.069640 1550.213870 192.253460 488.523500 1560.748290 -148.342710 523.965270 1504.903560 357.453160 532.914490 1506.529790 -326.060180 518.937190 1473.336550 460.929660 497.226230 1474.629270 -427.310700 670.305110 1468.760130 686.021300 610.548650 1477.321900 711.056700 625.836790 1440.759400 -644.744930 554.511900 1444.885740 -662.514950 599.755430 39.579990 276.630650 593.970030 49.233240 167.951720 585.345090 39.916630 -201.712390 605.987550 51.439050 -100.988550 608.960080 1655.462770 126.263980 668.568540 1645.989140 0.596010 590.264100 1814.776120 30.494100
+39 0.633000 606.797240 1072.927250 157.431520 609.226870 1060.632080 -104.354320 410.375890 1079.411870 36.188270 543.710570 756.541560 224.153500 593.781310 681.639530 134.377200 522.917180 636.782960 226.511920 517.601320 767.941960 -168.861240 605.657780 718.323120 -111.714670 506.207640 658.430110 -160.453350 476.308140 553.471560 216.490170 469.827550 525.760010 97.969960 477.780400 528.692320 -150.394170 498.890080 519.688170 -36.361880 442.364320 468.928800 236.142180 514.170780 424.166630 183.933670 453.646300 384.049710 253.120770 468.488100 450.216220 -170.908970 517.521060 393.240630 -127.978840 446.407350 409.796300 -181.412860 437.622220 98.100230 255.507220 444.121310 103.567210 165.091640 442.973880 93.640570 -172.212040 464.985470 109.060010 -81.746680 366.747960 70.565430 210.263260 507.353450 80.270590 164.906270 509.319030 63.780160 272.904390 656.928830 50.611870 195.107040 371.360570 75.496080 -115.919280 544.818050 77.022640 -94.798260 522.876710 65.734630 -192.063450 654.284670 48.139680 -127.719960 605.837520 1423.974850 23.018980 490.061460 1550.231450 192.222350 488.463930 1560.757080 -148.360030 523.857480 1504.914920 357.452420 532.891420 1506.500980 -326.129090 518.959660 1473.384890 460.906460 497.232790 1474.641600 -427.333440 670.690060 1469.005000 685.801640 610.683410 1477.295650 711.054380 625.862610 1440.760990 -644.697270 554.526550 1444.857670 -662.516480 600.017330 39.561830 276.686890 593.917600 49.105480 168.012890 585.345090 39.916630 -201.712390 605.980530 51.397240 -100.937500 608.847720 1655.363650 126.302300 668.469790 1645.864500 0.554330 590.363950 1814.765010 30.435750
+40 0.650000 606.936830 1073.012570 157.390900 609.209720 1060.609860 -104.375640 410.310670 1079.398320 36.206200 543.683720 756.515380 224.166640 593.706180 681.729490 134.373540 522.880370 636.781250 226.537580 517.525880 767.978030 -168.797410 605.601320 718.307010 -111.736230 506.153990 658.449950 -160.452870 476.255650 553.479800 216.565190 469.830600 525.760190 97.968760 477.771910 528.676700 -150.380430 498.863740 519.704410 -36.345290 442.323640 468.898320 236.148560 514.110600 424.165070 183.926730 453.577880 384.073760 253.110310 468.345950 450.262540 -170.844560 517.450130 393.182620 -127.908030 446.251530 409.746280 -181.418750 437.634190 98.102390 255.532850 444.093570 103.612590 165.095050 442.973880 93.640570 -172.212040 464.984650 109.056270 -81.748600 366.757050 70.509480 210.208530 507.390630 80.283690 164.913930 509.356080 63.745990 272.926850 656.971980 50.619190 195.148450 371.420200 75.457920 -115.905990 544.813290 77.037700 -94.776570 522.752260 65.715060 -192.090760 654.311400 48.154820 -127.694110 605.826970 1424.021240 23.022510 490.003200 1550.207400 192.207350 488.428770 1560.748050 -148.352330 523.751530 1504.918330 357.448210 532.872740 1506.468990 -326.168950 518.993160 1473.444210 460.877170 497.211000 1474.647340 -427.324800 670.941220 1469.152470 685.646360 610.614320 1477.261960 711.038640 625.879940 1440.725100 -644.648990 554.515140 1444.772580 -662.495480 600.147160 39.552830 276.714750 593.981630 49.060530 168.039280 585.345090 39.916630 -201.712390 605.976810 51.380250 -100.915800 608.722600 1655.267090 126.339540 668.402770 1645.757930 0.507450 590.449710 1814.750120 30.402180
+41 0.667000 607.036740 1073.085820 157.356280 609.192750 1060.586910 -104.410320 410.264430 1079.400510 36.228800 543.674320 756.513120 224.159910 593.630620 681.798580 134.373690 522.870360 636.780700 226.544370 517.488460 768.036250 -168.781560 605.570500 718.289860 -111.768710 506.074950 658.468690 -160.442580 476.217770 553.500240 216.655140 469.838290 525.760680 97.965980 477.767210 528.651370 -150.374920 498.859710 519.715520 -36.332570 442.303710 468.862270 236.157070 514.017150 424.154300 183.938490 453.503540 384.091060 253.104660 468.223080 450.308040 -170.786000 517.336670 393.119810 -127.833840 446.092900 409.680570 -181.435640 437.631290 98.101870 255.526750 444.067570 103.631990 165.092010 442.973880 93.640570 -172.212040 464.985050 109.058050 -81.747680 366.749790 70.452640 210.144030 507.387450 80.288510 164.914760 509.372070 63.742430 272.928890 657.060300 50.634170 195.233230 371.494690 75.378690 -115.906900 544.811580 77.043130 -94.768740 522.815430 65.737400 -192.072860 654.311770 48.166820 -127.691200 605.824950 1424.042480 23.023820 489.848330 1550.114010 192.208470 488.400600 1560.705810 -148.318860 523.684330 1504.928590 357.438510 532.855410 1506.441650 -326.178310 519.028380 1473.495730 460.850740 497.130160 1474.647830 -427.287570 671.016050 1469.183110 685.584530 610.374390 1477.253050 711.034790 625.876950 1440.666990 -644.615840 554.464780 1444.667970 -662.467710 600.184080 39.550270 276.722690 594.112060 49.083530 168.042920 585.345090 39.916630 -201.712390 605.976870 51.408430 -100.912060 608.607910 1655.195070 126.371150 668.367310 1645.675420 0.484760 590.521850 1814.734010 30.385900
+42 0.683000 607.073790 1073.130250 157.337860 609.171140 1060.571170 -104.448030 410.232120 1079.410400 36.249980 543.671140 756.525630 224.143970 593.558590 681.822750 134.375900 522.873170 636.780700 226.542220 517.472410 768.098570 -168.818680 605.550900 718.287170 -111.805660 505.958980 658.485660 -160.415830 476.188660 553.516480 216.739240 469.845790 525.760860 97.963570 477.759370 528.622560 -150.368760 498.860870 519.726750 -36.318730 442.304380 468.830570 236.165280 513.892330 424.128690 183.956100 453.451480 384.095490 253.108350 468.147710 450.339200 -170.748950 517.231320 393.082060 -127.789020 445.989470 409.619080 -181.454960 437.611880 98.098380 255.485260 444.031190 103.632880 165.086530 442.973880 93.640570 -172.212040 464.987180 109.067460 -81.742860 366.733760 70.430570 210.111860 507.351960 80.275860 164.907390 509.365690 63.760080 272.913510 657.134700 50.646800 195.304690 371.547240 75.299380 -115.905610 544.811580 77.043240 -94.768590 522.964540 65.761450 -192.039870 654.318050 48.207370 -127.675670 605.827090 1424.045530 23.023170 489.579710 1549.947880 192.220600 488.367460 1560.631590 -148.267060 523.670100 1504.957640 357.425140 532.827210 1506.414920 -326.163150 519.065920 1473.529910 460.830900 497.006710 1474.639530 -427.235350 670.914980 1469.105470 685.625060 610.095210 1477.283330 711.029360 625.848080 1440.602290 -644.609860 554.361630 1444.567380 -662.440670 600.179500 39.550580 276.721710 594.222600 49.120760 168.037930 585.345090 39.916630 -201.712390 605.979800 51.463070 -100.920220 608.520690 1655.148930 126.398590 668.355040 1645.613160 0.492140 590.577880 1814.715580 30.380670
+43 0.700000 607.062440 1073.149660 157.338010 609.139220 1060.563480 -104.471050 410.194950 1079.418580 36.269210 543.662540 756.541020 224.136370 593.506770 681.810180 134.380200 522.879210 636.780940 226.537900 517.444760 768.144960 -168.875520 605.530580 718.309200 -111.829370 505.825710 658.500180 -160.375780 476.165920 553.509030 216.790330 469.851750 525.760500 97.962080 477.741700 528.608090 -150.354110 498.861850 519.736020 -36.307110 442.314820 468.810580 236.170820 513.767460 424.101810 183.972690 453.427400 384.084260 253.125380 468.123720 450.347290 -170.737270 517.170900 393.075380 -127.768420 445.964170 409.588990 -181.456700 437.588010 98.094090 255.434250 444.015230 103.634200 165.091380 442.973880 93.640570 -172.212040 464.985470 109.059970 -81.746700 366.722320 70.461550 210.138700 507.337190 80.260270 164.901720 509.359010 63.767470 272.898190 657.162050 50.651440 195.330900 371.534700 75.284600 -115.912920 544.812130 77.041510 -94.771060 523.080080 65.777470 -192.015170 654.375370 48.300770 -127.602780 605.828860 1424.037230 23.020770 489.247250 1549.747190 192.237780 488.325780 1560.552490 -148.212300 523.686890 1505.000000 357.414030 532.776120 1506.382930 -326.131930 519.120540 1473.551510 460.813170 496.877260 1474.617430 -427.186040 670.649290 1468.931030 685.767030 609.896420 1477.346190 710.997920 625.786380 1440.544310 -644.634280 554.199100 1444.485110 -662.421080 600.168820 39.551320 276.719420 594.264710 49.128080 168.032900 585.345090 39.916630 -201.712390 605.981080 51.513920 -100.936650 608.463500 1655.121090 126.423150 668.350710 1645.566650 0.514180 590.613950 1814.694210 30.382240
+44 0.717000 607.029360 1073.157230 157.354540 609.092040 1060.554810 -104.471930 410.132840 1079.417850 36.287060 543.649540 756.555600 224.140210 593.485230 681.798950 134.382420 522.883970 636.781130 226.534550 517.378480 768.168950 -168.914140 605.506590 718.346440 -111.837680 505.703490 658.519100 -160.333620 476.150270 553.487490 216.810840 469.855160 525.759890 97.961650 477.695650 528.610050 -150.324890 498.860140 519.744630 -36.296490 442.323970 468.802120 236.173370 513.686830 424.093870 183.978530 453.406710 384.062650 253.154590 468.135960 450.335720 -170.745480 517.151920 393.092040 -127.763180 446.002040 409.593660 -181.434110 437.572390 98.091290 255.400850 444.037260 103.649380 165.110430 442.973880 93.640570 -172.212040 464.978880 109.030940 -81.761580 366.729950 70.518270 210.203260 507.362520 80.264620 164.905750 509.353360 63.765300 272.887910 657.134700 50.646800 195.304690 371.474640 75.348790 -115.914030 544.812620 77.039860 -94.773450 523.098750 65.792140 -192.007290 654.474120 48.431290 -127.483510 605.825680 1424.022090 23.016970 488.935940 1549.573120 192.254670 488.283170 1560.498660 -148.171860 523.697330 1505.039790 357.411290 532.703490 1506.348880 -326.096440 519.188290 1473.565800 460.795960 496.768100 1474.581790 -427.156280 670.267760 1468.701050 685.975340 609.804930 1477.435550 710.946040 625.673710 1440.506100 -644.697080 553.989500 1444.435790 -662.428340 600.165410 39.551560 276.718690 594.225460 49.098710 168.031920 585.345090 39.916630 -201.712390 605.973020 51.551440 -100.951330 608.432500 1655.110110 126.444100 668.339170 1645.535280 0.540750 590.625920 1814.672730 30.387540
+45 0.733000 606.993840 1073.160160 157.382340 609.031490 1060.533200 -104.461350 410.048860 1079.408450 36.298390 543.645450 756.570560 224.144120 593.491090 681.817570 134.378230 522.886410 636.781250 226.532820 517.264650 768.174500 -168.921840 605.482910 718.378230 -111.843710 505.605320 658.549990 -160.297580 476.136990 553.478820 216.832380 469.853060 525.759830 97.962690 477.606780 528.611270 -150.284330 498.853850 519.756590 -36.282060 442.323150 468.802460 236.173460 513.668580 424.107700 183.963230 453.368410 384.040650 253.188930 468.164280 450.315490 -170.765170 517.148990 393.119110 -127.774670 446.070680 409.603580 -181.402880 437.570860 98.091000 255.397550 444.081420 103.670410 165.137570 442.973880 93.640570 -172.212040 464.971830 109.000100 -81.777380 366.752840 70.563850 210.264210 507.390200 80.282270 164.913410 509.338100 63.774810 272.876800 657.060300 50.634170 195.233230 371.429380 75.431660 -115.899860 544.812930 77.038860 -94.774880 523.009520 65.798170 -192.020460 654.563960 48.556310 -127.370640 605.813230 1424.004880 23.013310 488.684200 1549.462520 192.268460 488.250820 1560.481200 -148.156480 523.670780 1505.064700 357.416840 532.624270 1506.322270 -326.068940 519.234190 1473.569820 460.785770 496.685640 1474.540160 -427.161290 669.896240 1468.510130 686.170720 609.780820 1477.535030 710.901550 625.501040 1440.494510 -644.806950 553.766780 1444.434450 -662.494810 600.162290 39.551780 276.718020 594.111940 49.050420 168.035060 585.345090 39.916630 -201.712390 605.955810 51.576840 -100.953140 608.421510 1655.114750 126.460650 668.314030 1645.518680 0.578720 590.607240 1814.654050 30.394090
+46 0.750000 606.951780 1073.155520 157.413090 608.969420 1060.495970 -104.449260 409.964570 1079.401000 36.298250 543.653810 756.584530 224.141780 593.510740 681.857480 134.370350 522.887150 636.781310 226.532300 517.120730 768.166380 -168.910660 605.462400 718.394780 -111.855960 505.536100 658.588750 -160.270130 476.113800 553.489010 216.866990 469.839420 525.761720 97.965890 477.485720 528.599670 -150.245060 498.845340 519.770140 -36.265930 442.303830 468.810730 236.171130 513.688540 424.126560 183.931500 453.319150 384.024900 253.221920 468.193420 450.294800 -170.788130 517.143680 393.141140 -127.799350 446.122410 409.589660 -181.371700 437.584290 98.093420 255.426240 444.121800 103.673020 165.164860 442.973880 93.640570 -172.212040 464.966130 108.974950 -81.790280 366.764800 70.590290 210.298840 507.377990 80.279980 164.911450 509.324770 63.788980 272.868500 656.971980 50.619190 195.148450 371.437040 75.463550 -115.889660 544.813050 77.038480 -94.775440 522.844670 65.777460 -192.055020 654.617190 48.640640 -127.298940 605.789730 1423.996090 23.013880 488.473180 1549.409670 192.279010 488.224460 1560.495240 -148.164470 523.594300 1505.070430 357.421970 532.551270 1506.309330 -326.054780 519.229860 1473.562380 460.788450 496.616090 1474.500850 -427.213750 669.670170 1468.445680 686.278560 609.778690 1477.612180 710.877080 625.296200 1440.511600 -644.953250 553.560910 1444.489750 -662.658330 600.135500 39.553630 276.712280 593.969300 49.004660 168.035930 585.345090 39.916630 -201.712390 605.937070 51.591750 -100.943930 608.422730 1655.125730 126.470760 668.275760 1645.512330 0.632280 590.547490 1814.638670 30.400570
+47 0.767000 606.883480 1073.141720 157.438610 608.917720 1060.450560 -104.431340 409.896700 1079.406740 36.287590 543.664120 756.597110 224.138900 593.528260 681.892640 134.362610 522.887080 636.781310 226.532410 516.984440 768.151180 -168.895390 605.442870 718.403630 -111.866530 505.494380 658.626530 -160.251270 476.066410 553.502930 216.900210 469.807710 525.767400 97.971680 477.355960 528.581180 -150.213000 498.838560 519.780210 -36.253970 442.259860 468.828090 236.166000 513.703490 424.133790 183.903260 453.275700 384.017270 253.250560 468.206600 450.281340 -170.802520 517.133480 393.151430 -127.825580 446.111510 409.559910 -181.327190 437.609100 98.097880 255.479310 444.138240 103.647480 165.181380 442.973880 93.640570 -172.212040 464.960820 108.951610 -81.802240 366.747190 70.606950 210.307080 507.329070 80.251550 164.898770 509.329010 63.785570 272.870150 656.928830 50.611870 195.107040 371.485780 75.433710 -115.867840 544.813050 77.038440 -94.775480 522.701600 65.741140 -192.090930 654.643920 48.675580 -127.265430 605.762020 1424.017700 23.026040 488.290410 1549.393800 192.285640 488.187290 1560.528690 -148.187910 523.476750 1505.062620 357.417630 532.484560 1506.310550 -326.053100 519.175110 1473.550780 460.803410 496.538150 1474.469730 -427.313930 669.599490 1468.496580 686.291930 609.768130 1477.648190 710.857300 625.109070 1440.560180 -645.098880 553.371890 1444.591550 -662.928160 600.050720 39.559510 276.694060 593.883060 48.990010 168.023180 585.345090 39.916630 -201.712390 605.918270 51.604270 -100.938800 608.427250 1655.131960 126.468550 668.219790 1645.511600 0.690050 590.434750 1814.623780 30.407380
+48 0.783000 606.784970 1073.128420 157.457600 608.883060 1060.411740 -104.398430 409.846470 1079.429810 36.269220 543.669130 756.613710 224.141430 593.537480 681.911190 134.357030 522.886720 636.781250 226.532670 516.884400 768.140750 -168.879870 605.421200 718.414060 -111.864890 505.467130 658.659060 -160.241300 475.989010 553.515380 216.931880 469.758390 525.777650 97.978650 477.233550 528.569210 -150.184650 498.835020 519.785220 -36.248050 442.197720 468.853610 236.158290 513.685670 424.124760 183.896480 453.244170 384.018100 253.271300 468.183170 450.286830 -170.794590 517.125310 393.158360 -127.841440 446.032590 409.550930 -181.259930 437.635890 98.102700 255.536580 444.135010 103.612470 165.171360 442.973880 93.640570 -172.212040 464.957820 108.938540 -81.808940 366.710420 70.619090 210.300170 507.282100 80.238560 164.890410 509.338900 63.773180 272.875700 656.964480 50.617910 195.141220 371.522370 75.385830 -115.805870 544.813050 77.038540 -94.775340 522.698300 65.742030 -192.091220 654.657470 48.676690 -127.254260 605.747070 1424.099000 23.056170 488.152830 1549.399780 192.286350 488.135680 1560.565430 -148.227250 523.342040 1505.058350 357.407530 532.419860 1506.325200 -326.063080 519.075680 1473.546880 460.828400 496.444670 1474.456910 -427.439150 669.584050 1468.586550 686.259030 609.726140 1477.650760 710.823000 624.963810 1440.643920 -645.204900 553.183290 1444.715580 -663.245480 599.883300 39.571130 276.658110 593.903260 49.034330 167.989400 585.345090 39.916630 -201.712390 605.896670 51.622580 -100.949390 608.422360 1655.132690 126.444470 668.138120 1645.516240 0.738540 590.264040 1814.607060 30.415940
+49 0.800000 606.671390 1073.119020 157.482120 608.869080 1060.395630 -104.348590 409.807250 1079.467410 36.245910 543.669250 756.636410 224.148990 593.545100 681.921630 134.358260 522.886410 636.781250 226.532880 516.820620 768.144410 -168.860470 605.397520 718.424870 -111.852940 505.441220 658.682740 -160.241930 475.896450 553.533020 216.974210 469.706150 525.789790 97.984180 477.129300 528.568120 -150.159090 498.833920 519.786560 -36.246460 442.140470 468.879460 236.150390 513.636110 424.103330 183.917590 453.224030 384.024810 253.281780 468.122250 450.314480 -170.763600 517.126100 393.174040 -127.840470 445.921360 409.583950 -181.179280 437.655610 98.106240 255.578700 444.146730 103.584280 165.128880 442.973880 93.640570 -172.212040 464.958710 108.942410 -81.806950 366.676850 70.626530 210.289980 507.271610 80.279560 164.900040 509.337860 63.775150 272.876710 657.046810 50.631890 195.220280 371.500580 75.363650 -115.724540 544.812990 77.038650 -94.775190 522.891600 65.827560 -192.031010 654.659610 48.664510 -127.255580 605.757870 1424.254880 23.098510 488.072850 1549.418090 192.280730 488.081480 1560.590940 -148.287380 523.215030 1505.072020 357.399510 532.359250 1506.356320 -326.083680 518.931090 1473.560550 460.862640 496.347200 1474.481080 -427.559300 669.560910 1468.677610 686.218930 609.641970 1477.632930 710.771970 624.849240 1440.760380 -645.264400 552.993040 1444.842530 -663.524660 599.662050 39.586470 276.610630 593.985050 49.124410 167.943100 585.345090 39.916630 -201.712390 605.878600 51.641410 -100.972530 608.392460 1655.134400 126.388400 668.030820 1645.526860 0.769850 590.048830 1814.590820 30.427490
+50 0.817000 606.559140 1073.105100 157.530120 608.867370 1060.401610 -104.286540 409.776580 1079.507810 36.224530 543.662600 756.658260 224.160400 593.557500 681.933900 134.368440 522.886230 636.781250 226.532990 516.777220 768.158690 -168.835460 605.373350 718.432370 -111.837470 505.416630 658.692260 -160.252620 475.817660 553.554140 217.020940 469.668370 525.797420 97.989580 477.055270 528.572020 -150.139660 498.834080 519.786190 -36.246930 442.102260 468.893590 236.146100 513.572140 424.072020 183.962950 453.215730 384.030760 253.284770 468.052700 450.350430 -170.726140 517.133360 393.195950 -127.827950 445.817840 409.640840 -181.100660 437.668760 98.108600 255.606840 444.197390 103.557600 165.074870 442.973880 93.640570 -172.212040 464.960420 108.949970 -81.803090 366.654940 70.630310 210.282150 507.301940 80.360330 164.924260 509.338290 63.782400 272.880430 657.121460 50.644550 195.291920 371.462710 75.374930 -115.622380 544.812990 77.038710 -94.775090 523.219480 65.972540 -191.928890 654.654170 48.642270 -127.265170 605.791560 1424.466550 23.132760 488.040830 1549.439330 192.272250 488.028930 1560.600830 -148.356770 523.114690 1505.096560 357.388580 532.308650 1506.409790 -326.110200 518.755550 1473.593380 460.901520 496.259030 1474.560060 -427.668030 669.530210 1468.752440 686.187130 609.532230 1477.596440 710.723690 624.754270 1440.896730 -645.302730 552.815800 1444.972530 -663.734310 599.480830 39.599040 276.571690 594.051390 49.199780 167.907760 585.345090 39.916630 -201.712390 605.873960 51.649910 -100.998000 608.326540 1655.138060 126.296910 667.907350 1645.538210 0.775190 589.824650 1814.583860 30.442110
+51 0.833000 606.461790 1073.086550 157.605440 608.856570 1060.410280 -104.220580 409.754820 1079.532590 36.216420 543.647340 756.673650 224.174330 593.568360 681.944700 134.379460 522.886170 636.781250 226.533040 516.742920 768.175660 -168.807720 605.350460 718.439270 -111.821090 505.405400 658.684450 -160.267400 475.770600 553.570620 217.055340 469.642820 525.796390 97.999480 477.023710 528.576660 -150.129520 498.834590 519.785400 -36.247910 442.063170 468.892330 236.146800 513.512880 424.031950 184.019680 453.216130 384.032870 253.284420 468.005190 450.376740 -170.699680 517.135680 393.205660 -127.818260 445.741120 409.677550 -181.038500 437.680300 98.110670 255.631470 444.258640 103.531080 165.044070 442.973880 93.640570 -172.212040 464.960850 108.951850 -81.802120 366.644870 70.631580 210.278060 507.337860 80.424650 164.944210 509.356870 63.770320 272.897800 657.164430 50.651850 195.333220 371.495790 75.396680 -115.481380 544.812990 77.038740 -94.775050 523.514100 66.080830 -191.844220 654.645260 48.600700 -127.284890 605.836240 1424.689820 23.142280 488.037720 1549.454710 192.265340 487.961980 1560.597660 -148.410170 523.051210 1505.112180 357.368840 532.261840 1506.486940 -326.133450 518.583860 1473.633910 460.935700 496.182890 1474.690550 -427.778110 669.489140 1468.762820 686.169190 609.439450 1477.541990 710.711730 624.691710 1441.039060 -645.345830 552.663390 1445.124510 -663.892880 599.402530 39.604470 276.554900 594.071840 49.217890 167.897320 585.345090 39.916630 -201.712390 605.878230 51.650430 -101.020000 608.226990 1655.136960 126.182300 667.781430 1645.539060 0.749030 589.636780 1814.596800 30.458450
+52 0.850000 606.390500 1073.077880 157.692960 608.829590 1060.409550 -104.163860 409.734280 1079.535400 36.229410 543.628780 756.685420 224.185970 593.565670 681.944640 134.380230 522.886170 636.781250 226.533020 516.710140 768.193120 -168.773680 605.331300 718.447690 -111.805450 505.416050 658.664000 -160.278020 475.752470 553.579040 217.072250 469.613400 525.788570 98.013080 477.039700 528.583800 -150.129900 498.835020 519.784730 -36.248680 441.996400 468.888980 236.148410 513.474240 423.995790 184.069270 453.214390 384.037050 253.282010 467.990480 450.387450 -170.690090 517.124020 393.191380 -127.819850 445.684080 409.653810 -181.006710 437.688540 98.112150 255.649060 444.275330 103.517880 165.051130 442.973880 93.640570 -172.212040 464.963620 108.963990 -81.795900 366.656040 70.627170 210.279400 507.334870 80.430790 164.943920 509.376590 63.748520 272.920350 657.180180 50.654520 195.348310 371.592990 75.403190 -115.370030 544.812990 77.038740 -94.775050 523.658870 66.093990 -191.815510 654.622620 48.544110 -127.322490 605.871150 1424.885500 23.133140 488.045260 1549.460080 192.261400 487.851500 1560.584230 -148.433200 523.018860 1505.115970 357.349520 532.194270 1506.581050 -326.143890 518.445860 1473.669800 460.957370 496.115110 1474.838620 -427.886080 669.442500 1468.696170 686.152340 609.405520 1477.486940 710.759340 624.687930 1441.188720 -645.398440 552.541080 1445.323000 -664.006960 599.411250 39.603860 276.556760 594.058780 49.195640 167.906800 585.345090 39.916630 -201.712390 605.876220 51.655040 -101.034130 608.112370 1655.128300 126.072860 667.666140 1645.519780 0.700660 589.516110 1814.636230 30.473930
+53 0.867000 606.345210 1073.088010 157.771740 608.807070 1060.410400 -104.126870 409.700710 1079.529050 36.261260 543.611690 756.698610 224.192350 593.548220 681.935610 134.370790 522.886170 636.781250 226.533020 516.665710 768.205200 -168.724270 605.315430 718.459170 -111.790090 505.441220 658.642520 -160.280380 475.751010 553.581540 217.076740 469.577090 525.775630 98.025140 477.088170 528.594600 -150.137990 498.835270 519.784420 -36.249080 441.913760 468.902250 236.144780 513.466000 423.989230 184.096660 453.202910 384.048550 253.277790 468.004880 450.389370 -170.694290 517.100040 393.164310 -127.826910 445.635040 409.566310 -181.013660 437.688110 98.112080 255.648210 444.231260 103.525270 165.084320 442.973880 93.640570 -172.212040 464.971920 109.000470 -81.777200 366.694400 70.614660 210.286790 507.296600 80.392850 164.928040 509.369380 63.745910 272.929020 657.180660 50.654600 195.348770 371.641630 75.398340 -115.386810 544.812990 77.038740 -94.775060 523.694700 66.063210 -191.819340 654.581300 48.498870 -127.372150 605.859310 1425.039180 23.133300 488.049900 1549.451660 192.260360 487.678830 1560.564580 -148.426860 522.999570 1505.120970 357.342010 532.084530 1506.679570 -326.139800 518.358280 1473.698970 460.963290 496.057250 1474.959230 -427.968840 669.416990 1468.613280 686.121700 609.441530 1477.457400 710.856260 624.756900 1441.360470 -645.446410 552.463500 1445.579470 -664.055850 599.509160 39.597080 276.577790 594.038700 49.162630 167.935590 585.345090 39.916630 -201.712390 605.864070 51.665600 -101.034020 608.005310 1655.117920 125.996470 667.555790 1645.484740 0.651170 589.462340 1814.699580 30.486060
+54 0.883000 606.311160 1073.105830 157.827290 608.805660 1060.424440 -104.109240 409.650090 1079.527220 36.300980 543.596680 756.711610 224.195970 593.526860 681.930480 134.361920 522.886230 636.781250 226.533000 516.599240 768.200440 -168.665920 605.299990 718.476930 -111.771730 505.467250 658.626770 -160.277650 475.755310 553.581050 217.075320 469.548550 525.756410 98.035250 477.137120 528.606510 -150.147550 498.835360 519.784300 -36.249200 441.853700 468.933350 236.135190 513.490780 424.029050 184.097950 453.188200 384.061550 253.273960 468.039730 450.390350 -170.707170 517.073910 393.144410 -127.830740 445.612270 409.456540 -181.055660 437.679080 98.110460 255.628850 444.170010 103.544610 165.129790 442.973880 93.640570 -172.212040 464.981450 109.042220 -81.755800 366.741000 70.599720 210.296050 507.272220 80.358810 164.916110 509.343930 63.758920 272.921110 657.175840 50.653790 195.344160 371.557040 75.411510 -115.532650 544.812990 77.038730 -94.775070 523.710270 66.070390 -191.814390 654.549320 48.492800 -127.401180 605.767700 1425.155760 23.170260 488.044040 1549.422490 192.263700 487.460820 1560.546140 -148.395140 522.978520 1505.129390 357.344450 531.939820 1506.767940 -326.130100 518.320070 1473.721310 460.958310 496.017210 1475.029910 -428.013920 669.425420 1468.571900 686.086360 609.520940 1477.464840 710.963500 624.876710 1441.567870 -645.469540 552.447940 1445.880000 -664.027040 599.711910 39.583010 276.621310 594.035950 49.129590 167.985080 585.345090 39.916630 -201.712390 605.851680 51.673080 -101.020590 607.912660 1655.113890 125.962460 667.430730 1645.451290 0.618760 589.448120 1814.775760 30.494060
+55 0.900000 606.276550 1073.115840 157.854600 608.808900 1060.437740 -104.107460 409.601200 1079.527590 36.332210 543.589420 756.716670 224.197590 593.511600 681.934020 134.360400 522.886230 636.781250 226.532990 516.515320 768.176210 -168.616870 605.291380 718.494450 -111.757090 505.487640 658.614750 -160.275180 475.759190 553.579650 217.072460 469.541600 525.737670 98.043020 477.166440 528.615360 -150.153810 498.835360 519.784300 -36.249170 441.835600 468.963130 236.125700 513.536930 424.104920 184.084670 453.181920 384.066190 253.273160 468.085080 450.390380 -170.725170 517.056030 393.138090 -127.833740 445.645020 409.376860 -181.115100 437.666870 98.108260 255.602750 444.141780 103.559520 165.175870 442.973880 93.640570 -172.212040 464.985200 109.058790 -81.747310 366.761600 70.593250 210.300280 507.290500 80.356780 164.921220 509.332670 63.761650 272.908230 657.171140 50.652990 195.339660 371.391300 75.451650 -115.707000 544.812990 77.038730 -94.775080 523.716060 66.117280 -191.798320 654.554380 48.524790 -127.387920 605.605470 1425.239380 23.244290 488.022310 1549.371830 192.271930 487.248050 1560.536870 -148.344280 522.946170 1505.132450 357.354220 531.787840 1506.839840 -326.125820 518.287900 1473.736940 460.959720 495.994510 1475.061770 -428.027710 669.440670 1468.566650 686.074400 609.600100 1477.500610 711.038940 624.990110 1441.815310 -645.457460 552.483150 1446.195560 -663.939880 599.943120 39.566980 276.670960 594.062320 49.116950 168.035190 585.345090 39.916630 -201.712390 605.846250 51.672880 -101.003460 607.823970 1655.119380 125.962840 667.288820 1645.432370 0.610950 589.438960 1814.850100 30.499070
+56 0.917000 606.246770 1073.116460 157.850710 608.787480 1060.425050 -104.124820 409.579800 1079.519650 36.341390 543.595700 756.708980 224.195920 593.504580 681.935060 134.361860 522.886230 636.781250 226.532990 516.433040 768.141600 -168.585170 605.303890 718.496520 -111.761890 505.499180 658.608830 -160.273320 475.760500 553.578370 217.070240 469.553680 525.736390 98.039710 477.181700 528.617130 -150.155410 498.835330 519.784360 -36.249100 441.856450 468.971800 236.122740 513.578190 424.183870 184.073170 453.183530 384.063570 253.274670 468.132870 450.384980 -170.746200 517.052060 393.137150 -127.842540 445.718570 409.354060 -181.165920 437.653840 98.105920 255.574920 444.138550 103.564460 165.200330 442.973880 93.640570 -172.212040 464.983890 109.052930 -81.750310 366.738250 70.600950 210.295880 507.322140 80.374400 164.939790 509.342710 63.750480 272.894470 657.168330 50.652510 195.336930 371.272310 75.488410 -115.821080 544.812990 77.038730 -94.775080 523.635010 66.121850 -191.810550 654.573850 48.560490 -127.361320 605.427430 1425.289430 23.327660 487.980010 1549.318730 192.281680 487.087830 1560.542240 -148.286540 522.890140 1505.135010 357.383270 531.647340 1506.905270 -326.128510 518.213380 1473.747800 460.981410 495.969820 1475.088130 -428.016690 669.418150 1468.559810 686.108400 609.649540 1477.554690 711.062260 625.038760 1442.096560 -645.413390 552.526060 1446.506710 -663.834050 600.075620 39.557790 276.699400 594.112240 49.154320 168.057170 585.345090 39.916630 -201.712390 605.850220 51.664540 -100.987370 607.729800 1655.137570 125.985550 667.140630 1645.428470 0.628900 589.412230 1814.910280 30.502380
+57 0.933000 606.232120 1073.115110 157.809340 608.738460 1060.389770 -104.169500 409.589870 1079.497800 36.327820 543.610350 756.694340 224.192060 593.504580 681.924680 134.360150 522.886230 636.781250 226.532970 516.380680 768.107790 -168.573590 605.337950 718.480040 -111.788040 505.497740 658.618160 -160.267730 475.759950 553.577580 217.069080 469.573550 525.758060 98.018900 477.190700 528.611020 -150.151340 498.835300 519.784420 -36.249030 441.915370 468.953370 236.128270 513.596370 424.230590 184.063710 453.183380 384.063390 253.274930 468.173950 450.372530 -170.765980 517.061580 393.136080 -127.853820 445.779240 409.381440 -181.187680 437.636440 98.102790 255.537750 444.107210 103.568230 165.187530 442.973880 93.640570 -172.212040 464.983760 109.052470 -81.750540 366.686740 70.617740 210.285930 507.318760 80.384120 164.960300 509.357030 63.738320 272.878970 657.167240 50.652320 195.335860 371.264340 75.488250 -115.851430 544.812990 77.038730 -94.775080 523.406860 66.021860 -191.881320 654.558040 48.562580 -127.371800 605.288760 1425.313110 23.390610 487.919830 1549.295530 192.291340 486.988220 1560.563230 -148.234730 522.798830 1505.153440 357.444850 531.518740 1506.981450 -326.128510 518.105100 1473.753910 461.014860 495.911900 1475.144780 -427.976620 669.365360 1468.562380 686.172850 609.664180 1477.623780 711.039550 625.002930 1442.385620 -645.341670 552.533690 1446.808960 -663.746400 600.030210 39.560930 276.689670 594.168030 49.249530 168.036040 585.345090 39.916630 -201.712390 605.867190 51.646060 -100.967840 607.633120 1655.171750 126.019040 666.983150 1645.436400 0.671330 589.363040 1814.948730 30.503310
+58 0.950000 606.234500 1073.115360 157.728850 608.681950 1060.364620 -104.242100 409.611390 1079.461300 36.301300 543.628420 756.682430 224.185060 593.511900 681.911620 134.355470 522.886230 636.781310 226.532960 516.383420 768.083500 -168.592700 605.375610 718.458370 -111.818650 505.485230 658.644590 -160.256150 475.760220 553.577450 217.068740 469.601620 525.783750 97.990100 477.187770 528.603150 -150.141220 498.835300 519.784420 -36.249000 442.011570 468.916900 236.139330 513.595760 424.230680 184.044250 453.181030 384.068020 253.271610 468.192840 450.356660 -170.775700 517.079220 393.139470 -127.858840 445.793850 409.433110 -181.178130 437.615840 98.099090 255.493680 444.033080 103.575260 165.152890 442.973880 93.640570 -172.212040 464.985810 109.061420 -81.745960 366.640930 70.632610 210.277050 507.277440 80.377510 164.974440 509.368100 63.727510 272.868530 657.167110 50.652300 195.335770 371.341280 75.457290 -115.762400 544.812990 77.038730 -94.775080 523.098080 65.856930 -191.986620 654.490360 48.516700 -127.437190 605.204530 1425.328370 23.430250 487.850280 1549.332890 192.308520 486.923370 1560.593380 -148.197160 522.672850 1505.191650 357.531830 531.397950 1507.074100 -326.115720 517.997740 1473.752440 461.041600 495.792450 1475.254760 -427.896420 669.336300 1468.625240 686.225400 609.655460 1477.697270 710.999270 624.910030 1442.642820 -645.243770 552.483830 1447.097780 -663.700740 599.791630 39.577470 276.638430 594.211490 49.384780 167.971620 585.345090 39.916630 -201.712390 605.895020 51.623070 -100.943360 607.547790 1655.217650 126.051060 666.815550 1645.452880 0.730490 589.299190 1814.962040 30.498950
+59 0.967000 606.245610 1073.112180 157.624940 608.630190 1060.375240 -104.323290 409.624420 1079.411990 36.272040 543.650700 756.678100 224.172550 593.526670 681.911070 134.347690 522.886230 636.781430 226.532940 516.443910 768.071720 -168.651570 605.397340 718.448610 -111.833920 505.469850 658.677860 -160.241350 475.765780 553.578130 217.068880 469.643980 525.790340 97.970950 477.166720 528.602110 -150.127940 498.835270 519.784420 -36.249020 442.124110 468.880130 236.150310 513.593690 424.198180 184.011760 453.185550 384.072200 253.263990 468.179660 450.343510 -170.769490 517.097900 393.152980 -127.854260 445.775630 409.480930 -181.152400 437.601590 98.096530 255.463210 443.972080 103.583850 165.127120 442.973880 93.640570 -172.212040 464.985320 109.059260 -81.747060 366.623380 70.638300 210.273640 507.243070 80.366550 164.977190 509.379520 63.714320 272.871000 657.167360 50.652350 195.336030 371.440090 75.436480 -115.529730 544.812990 77.038730 -94.775080 522.850280 65.723100 -192.071590 654.398010 48.433800 -127.533900 605.157960 1425.347780 23.473370 487.764430 1549.456420 192.347210 486.866240 1560.625000 -148.177200 522.535580 1505.237300 357.617740 531.288820 1507.174800 -326.089230 517.899350 1473.742550 461.053380 495.604980 1475.415650 -427.770360 669.332460 1468.724240 686.257630 609.643800 1477.749150 710.983700 624.814090 1442.847530 -645.134400 552.378360 1447.355960 -663.707580 599.432560 39.602380 276.561310 594.232240 49.523290 167.882840 585.345090 39.916630 -201.712390 605.922730 51.610940 -100.920670 607.490050 1655.263060 126.072430 666.660710 1645.471560 0.790950 589.231510 1814.948970 30.485650
+60 0.983000 606.250610 1073.096800 157.528290 608.585940 1060.417480 -104.387210 409.624790 1079.359740 36.247570 543.672970 756.679500 224.158020 593.544190 681.926030 134.327510 522.886230 636.781490 226.532910 516.532290 768.068050 -168.737430 605.394100 718.460940 -111.822910 505.457030 658.704590 -160.228880 475.781520 553.580140 217.069260 469.688900 525.776920 97.968630 477.131410 528.607910 -150.115890 498.835210 519.784420 -36.249110 442.218480 468.855960 236.157230 513.603700 424.160640 183.976560 453.197420 384.076780 253.250750 468.144380 450.339200 -170.752240 517.113280 393.173160 -127.843290 445.755550 409.508820 -181.128780 437.599640 98.096180 255.459060 443.976470 103.597600 165.122590 442.973880 93.640570 -172.212040 464.982480 109.046750 -81.753470 366.630830 70.635860 210.275070 507.249570 80.359520 164.966720 509.386960 63.704880 272.882050 657.167660 50.652400 195.336320 371.515350 75.449550 -115.249530 544.812990 77.038730 -94.775080 522.768130 65.680820 -192.099090 654.313960 48.339030 -127.629320 605.129580 1425.370360 23.533640 487.642300 1549.670780 192.414170 486.807800 1560.657470 -148.172100 522.425660 1505.274290 357.677520 531.198430 1507.276860 -326.056550 517.806400 1473.728390 461.052060 495.384310 1475.598630 -427.613710 669.304200 1468.757690 686.298220 609.640260 1477.756960 711.019410 624.760560 1443.011230 -645.048650 552.248960 1447.544800 -663.770810 599.146850 39.622200 276.500000 594.230160 49.608030 167.815610 585.345090 39.916630 -201.712390 605.944520 51.616910 -100.904590 607.463620 1655.300170 126.081100 666.543950 1645.485110 0.840310 589.167050 1814.909790 30.461140
+61 1.000000 606.241270 1073.070430 157.464420 608.549260 1060.462400 -104.430730 409.618100 1079.321040 36.232570 543.688540 756.682740 224.147580 593.552060 681.943660 134.281740 522.886170 636.781370 226.532940 516.601870 768.066830 -168.813800 605.370670 718.488650 -111.792130 505.445860 658.715580 -160.224760 475.809390 553.583560 217.069760 469.711400 525.761600 97.978130 477.091280 528.612000 -150.108570 498.835050 519.784420 -36.249320 442.277440 468.843630 236.160450 513.623960 424.136200 183.950100 453.206480 384.086820 253.233640 468.107120 450.346500 -170.734250 517.122070 393.185670 -127.834790 445.754360 409.519070 -181.118090 437.605900 98.097300 255.472410 444.028750 103.616330 165.127980 442.973880 93.640570 -172.212040 464.982480 109.046850 -81.753430 366.642910 70.631940 210.277400 507.287480 80.350190 164.948230 509.377170 63.711820 272.887510 657.167850 50.652430 195.336500 371.579320 75.473850 -115.067540 544.812990 77.038730 -94.775080 522.867370 65.720620 -192.069490 654.256960 48.266250 -127.698260 605.109310 1425.389040 23.586170 487.494140 1549.928220 192.498410 486.751340 1560.695190 -148.170790 522.364750 1505.290280 357.705540 531.129940 1507.378300 -326.027100 517.733460 1473.718140 461.043270 495.196590 1475.763180 -427.470860 669.249880 1468.695430 686.350830 609.632390 1477.721310 711.096190 624.755310 1443.154050 -645.014710 552.145020 1447.625370 -663.885680 599.136170 39.622990 276.497770 594.211790 49.589760 167.816570 585.345090 39.916630 -201.712390 605.962400 51.628970 -100.895390 607.452880 1655.327510 126.080150 666.467650 1645.488400 0.879230 589.108280 1814.847660 30.426030
+62 1.017000 606.226750 1073.045900 157.436480 608.505980 1060.473750 -104.469340 409.607480 1079.307740 36.225310 543.696290 756.685490 224.142880 593.538820 681.948060 134.211010 522.885990 636.780940 226.533080 516.619810 768.065670 -168.847410 605.342470 718.509340 -111.763910 505.428740 658.710630 -160.235370 475.840670 553.587340 217.070250 469.699680 525.754880 97.995960 477.055600 528.608950 -150.107830 498.834870 519.784420 -36.249610 442.304020 468.837890 236.161640 513.642580 424.123900 183.934040 453.208400 384.096650 253.221760 468.077150 450.359040 -170.721250 517.121150 393.179600 -127.836770 445.785860 409.524170 -181.125020 437.615660 98.099060 255.493300 444.080840 103.625780 165.130110 442.973880 93.640570 -172.212040 464.985440 109.059810 -81.746790 366.645940 70.630950 210.277980 507.329860 80.329120 164.929460 509.349300 63.732260 272.879820 657.167970 50.652440 195.336560 371.670680 75.466170 -115.033580 544.812990 77.038730 -94.775080 523.078000 65.795140 -192.009860 654.245670 48.252960 -127.713230 605.094970 1425.400150 23.608240 487.365480 1550.147580 192.579620 486.701200 1560.743290 -148.155120 522.343380 1505.280150 357.713530 531.083740 1507.472660 -326.005800 517.694030 1473.716060 461.032750 495.086640 1475.882810 -427.392970 669.216610 1468.616460 686.386350 609.603030 1477.664060 711.183960 624.769100 1443.280520 -645.020260 552.096620 1447.605830 -664.024410 599.402950 39.604560 276.555110 594.185420 49.475990 167.884520 585.345090 39.916630 -201.712390 605.971920 51.630130 -100.899580 607.431210 1655.342290 126.074920 666.411320 1645.481320 0.916540 589.054870 1814.769530 30.384470
+63 1.033000 606.222110 1073.031980 157.426700 608.435610 1060.436280 -104.511950 409.588810 1079.320920 36.215740 543.699710 756.686890 224.141420 593.506590 681.937070 134.136670 522.885800 636.780030 226.533360 516.575320 768.064390 -168.826520 605.320740 718.507200 -111.756890 505.391750 658.701900 -160.268570 475.855070 553.589050 217.070480 469.664280 525.750610 98.020360 477.029360 528.600890 -150.113430 498.834720 519.784360 -36.249790 442.299190 468.841060 236.160320 513.653140 424.116610 183.923900 453.209780 384.096370 253.221070 468.046260 450.363010 -170.711900 517.114140 393.164920 -127.845190 445.863920 409.532930 -181.152480 437.629640 98.101570 255.523180 444.108430 103.614600 165.127910 442.973880 93.640570 -172.212040 464.986180 109.063080 -81.745100 366.645570 70.631070 210.277910 507.361420 80.300040 164.915300 509.324770 63.745580 272.866360 657.167970 50.652440 195.336580 371.787410 75.405780 -115.099690 544.812990 77.038730 -94.775080 523.314090 65.874110 -191.944520 654.289610 48.306870 -127.662950 605.085940 1425.403560 23.606250 487.287260 1550.278690 192.644040 486.657560 1560.804810 -148.108000 522.340760 1505.253780 357.714840 531.049190 1507.552730 -325.989500 517.668090 1473.716190 461.022950 495.049710 1475.953610 -427.389430 669.221500 1468.588990 686.391240 609.552490 1477.615480 711.253780 624.775940 1443.380250 -645.027400 552.094300 1447.541500 -664.142700 599.754580 39.580240 276.630680 594.158020 49.327320 167.972120 585.345090 39.916630 -201.712390 605.962100 51.619460 -100.927410 607.375370 1655.343990 126.073620 666.349850 1645.467290 0.957230 589.006230 1814.686040 30.343870
+64 1.050000 606.231510 1073.027100 157.414380 608.336730 1060.365720 -104.558720 409.554440 1079.352050 36.188760 543.702580 756.686770 224.139180 593.469120 681.922670 134.082230 522.885740 636.778560 226.533780 516.472050 768.064390 -168.755540 605.298830 718.487730 -111.771080 505.325680 658.705140 -160.330580 475.840640 553.587340 217.070280 469.624330 525.743770 98.039890 477.009520 528.590880 -150.125380 498.834990 519.784420 -36.249460 442.258940 468.857060 236.155870 513.658450 424.115080 183.919250 453.213990 384.091130 253.223970 468.003140 450.350160 -170.702420 517.110470 393.162380 -127.847660 445.987850 409.545170 -181.198670 437.645450 98.104420 255.556990 444.102690 103.592760 165.123960 442.973880 93.640570 -172.212040 464.984560 109.055890 -81.748790 366.649110 70.629920 210.278590 507.383640 80.282790 164.909770 509.323610 63.737850 272.858640 657.167970 50.652440 195.336560 371.875310 75.318180 -115.209550 544.812990 77.038730 -94.775080 523.526430 65.953430 -191.883090 654.360720 48.383410 -127.583300 605.080200 1425.402100 23.592740 487.254610 1550.322880 192.685150 486.615690 1560.878780 -148.026060 522.342650 1505.231080 357.715760 531.003720 1507.616210 -325.971310 517.625730 1473.709960 461.014070 495.060940 1475.981690 -427.410740 669.251160 1468.630250 686.375370 609.496220 1477.594970 711.288570 624.774780 1443.447510 -645.017210 552.111150 1447.482910 -664.213750 600.016910 39.562050 276.687010 594.133120 49.199700 168.037430 585.345090 39.916630 -201.712390 605.933780 51.610350 -100.972110 607.279540 1655.343630 126.087910 666.277160 1645.448360 0.999360 588.962590 1814.608890 30.313050
+65 1.067000 606.242070 1073.024050 157.391460 608.229060 1060.289430 -104.609410 409.501500 1079.385500 36.128710 543.706360 756.684750 224.132260 593.439760 681.914250 134.054660 522.886110 636.777400 226.534120 516.333980 768.068180 -168.655290 605.261600 718.463870 -111.798120 505.241330 658.727600 -160.415730 475.809360 553.583680 217.069840 469.588620 525.739010 98.042570 476.987300 528.579160 -150.146000 498.836060 519.784480 -36.247970 442.187010 468.881130 236.150770 513.659970 424.121460 183.921660 453.214450 384.093350 253.221880 467.946590 450.326570 -170.690290 517.114440 393.177120 -127.839890 446.124420 409.561220 -181.248760 437.655730 98.106260 255.578960 444.063510 103.573230 165.114240 442.973880 93.640570 -172.212040 464.985020 109.057880 -81.747770 366.649110 70.629920 210.278590 507.408940 80.287460 164.913850 509.346890 63.709300 272.863250 657.167910 50.652440 195.336550 371.885250 75.245560 -115.338910 544.812990 77.038730 -94.775080 523.678530 66.020000 -191.835950 654.412050 48.428740 -127.528450 605.077270 1425.399660 23.577770 487.253690 1550.298220 192.699890 486.572690 1560.956670 -147.928590 522.343320 1505.224610 357.717470 530.936400 1507.662960 -325.949310 517.567440 1473.696660 461.007840 495.101530 1475.973750 -427.391720 669.291260 1468.736210 686.356380 609.452640 1477.596440 711.291930 624.771300 1443.491210 -645.000430 552.131350 1447.452510 -664.245000 600.146850 39.552810 276.714660 594.111330 49.109630 168.070210 585.345090 39.916630 -201.712390 605.902400 51.611800 -101.006820 607.163270 1655.356930 126.129220 666.206730 1645.423580 1.039170 588.926090 1814.547360 30.299050
+66 1.083000 606.230040 1073.012210 157.358960 608.129760 1060.224490 -104.662540 409.435060 1079.410400 36.027740 543.708860 756.680540 224.118760 593.425600 681.910220 134.046720 522.887330 636.778380 226.533830 516.204470 768.076480 -168.561260 605.207210 718.435910 -111.836900 505.163570 658.763920 -160.500990 475.781460 553.580750 217.069370 469.548160 525.736880 98.035260 476.956880 528.566280 -150.175540 498.838350 519.784610 -36.244770 442.090330 468.906920 236.147990 513.650210 424.129970 183.929950 453.205900 384.101140 253.220550 467.877010 450.307160 -170.671740 517.118960 393.191590 -127.832440 446.224850 409.584720 -181.282550 437.657990 98.106670 255.583770 444.015470 103.546570 165.093120 442.973880 93.640570 -172.212040 464.986080 109.062660 -81.745320 366.638240 70.633450 210.276490 507.435460 80.287350 164.918140 509.383090 63.669560 272.879880 657.167910 50.652440 195.336530 371.836910 75.198060 -115.443780 544.812990 77.038730 -94.775080 523.729130 66.043910 -191.819700 654.429930 48.432640 -127.512210 605.082460 1425.400510 23.579410 487.282780 1550.219730 192.693180 486.533690 1561.025760 -147.846740 522.343140 1505.228520 357.718930 530.860170 1507.693480 -325.928040 517.511170 1473.677370 461.010130 495.157040 1475.944090 -427.304170 669.292660 1468.830440 686.375120 609.432130 1477.598880 711.279540 624.761720 1443.523560 -644.989810 552.152650 1447.453980 -664.258480 600.181460 39.549770 276.721410 594.091490 49.049510 168.079620 585.345090 39.916630 -201.712390 605.880980 51.621590 -101.012700 607.060550 1655.384400 126.202660 666.150630 1645.393070 1.072470 588.901310 1814.507200 30.304230
+67 1.100000 606.182860 1072.984380 157.317990 608.038640 1060.183110 -104.712910 409.362700 1079.427370 35.902510 543.702760 756.674990 224.102310 593.425050 681.906680 134.048290 522.889770 636.784670 226.531970 516.116940 768.088010 -168.499110 605.149350 718.398680 -111.882090 505.107600 658.802920 -160.559620 475.765750 553.579530 217.069000 469.491180 525.729250 98.035180 476.920590 528.555730 -150.209380 498.841640 519.784850 -36.240150 441.963200 468.940800 236.145260 513.618650 424.134830 183.945950 453.190800 384.104130 253.229050 467.795170 450.303800 -170.645020 517.113650 393.186800 -127.838420 446.267210 409.607390 -181.297450 437.654360 98.106020 255.576070 444.002530 103.498890 165.061940 442.973880 93.640570 -172.212040 464.980560 109.038340 -81.757790 366.626250 70.637340 210.274150 507.434840 80.248290 164.909440 509.414520 63.640380 272.898160 657.167910 50.652440 195.336530 371.790800 75.167050 -115.432960 544.812990 77.038730 -94.775080 523.717590 66.037660 -191.823670 654.436580 48.418670 -127.510250 605.104130 1425.410890 23.613080 487.338650 1550.119260 192.680400 486.506100 1561.079470 -147.797210 522.344060 1505.228150 357.718320 530.795530 1507.713870 -325.914250 517.467100 1473.648800 461.030700 495.209870 1475.918820 -427.173070 669.183290 1468.779420 686.481380 609.433530 1477.584590 711.262150 624.741940 1443.551760 -644.978580 552.173830 1447.481690 -664.268490 600.170650 39.549400 276.717900 594.072140 49.012950 168.078490 585.345090 39.916630 -201.712390 605.871520 51.632670 -100.997960 606.996830 1655.409060 126.301620 666.109500 1645.361450 1.094370 588.894100 1814.491580 30.325650
+68 1.117000 606.116760 1072.947630 157.273090 607.947630 1060.181760 -104.750670 409.283630 1079.441410 35.793900 543.674990 756.669800 224.092150 593.427120 681.906560 134.052570 522.892820 636.799380 226.527570 516.073360 768.101320 -168.466490 605.099060 718.358030 -111.912110 505.069640 658.835820 -160.582500 475.760380 553.579590 217.068760 469.417600 525.710020 98.047010 476.883510 528.551510 -150.245120 498.844060 519.785100 -36.236700 441.802640 468.994050 236.135410 513.563600 424.137390 183.976910 453.170840 384.103640 253.243610 467.715880 450.318300 -170.616930 517.097720 393.163850 -127.857810 446.269170 409.611270 -181.310070 437.646360 98.104580 255.558960 444.049380 103.445530 165.027920 442.973880 93.640570 -172.212040 464.966800 108.977880 -81.788770 366.627440 70.636960 210.274400 507.385930 80.183420 164.888120 509.422150 63.644900 272.901860 657.167910 50.652440 195.336530 371.761840 75.156120 -115.282750 544.812990 77.038730 -94.775080 523.825620 66.093940 -191.787280 654.445250 48.408230 -127.506270 605.146610 1425.439330 23.673980 487.398040 1550.056400 192.680880 486.494480 1561.119750 -147.774700 522.342350 1505.216920 357.715000 530.749690 1507.734130 -325.911070 517.439210 1473.605470 461.080410 495.236300 1475.929080 -427.053710 668.960270 1468.552250 686.672910 609.448180 1477.548580 711.243470 624.717960 1443.581050 -644.952330 552.192440 1447.527710 -664.278750 600.150570 39.549550 276.712250 594.051880 48.997210 168.076630 585.345090 39.916630 -201.712390 605.869930 51.639370 -100.982980 606.968510 1655.415040 126.408970 666.078190 1645.333010 1.103430 588.908810 1814.502200 30.357000
+69 1.133000 606.060790 1072.916750 157.236040 607.857240 1060.225950 -104.767410 409.184970 1079.456180 35.734570 543.608760 756.665220 224.092650 593.421690 681.914060 134.056530 522.894290 636.822330 226.520770 516.055730 768.109500 -168.451050 605.050780 718.322570 -111.911990 505.039670 658.856510 -160.583210 475.760350 553.579530 217.068770 469.330930 525.677610 98.063750 476.850130 528.554440 -150.287120 498.841030 519.784970 -36.240740 441.636780 469.058870 236.111330 513.496150 424.136660 184.024840 453.143860 384.108250 253.254410 467.662020 450.341610 -170.597550 517.079530 393.137050 -127.879430 446.250370 409.586520 -181.329300 437.639860 98.103410 255.545070 444.127470 103.422170 165.001950 442.973880 93.640570 -172.212040 464.951720 108.911710 -81.822690 366.640440 70.632740 210.276930 507.302120 80.140560 164.867810 509.400600 63.684280 272.885010 657.167910 50.652440 195.336530 371.719360 75.162900 -115.124450 544.812990 77.038730 -94.775080 524.186580 66.283740 -191.665160 654.441830 48.402860 -127.510540 605.203610 1425.486940 23.742950 487.430450 1550.071900 192.703430 486.505000 1561.150390 -147.769790 522.328430 1505.198850 357.711300 530.715450 1507.758420 -325.911800 517.426880 1473.543460 461.162320 495.220090 1475.991940 -426.989530 668.702270 1468.265750 686.887270 609.459230 1477.500850 711.221560 624.697810 1443.619630 -644.911190 552.206180 1447.585210 -664.288330 600.139830 39.550080 276.709720 594.029910 48.992730 168.079390 585.345090 39.916630 -201.712390 605.871520 51.639840 -100.980950 606.953980 1655.399050 126.507390 666.055240 1645.311040 1.103490 588.944580 1814.536500 30.392110
+70 1.150000 606.028560 1072.898560 157.212840 607.782840 1060.293820 -104.765220 409.062470 1079.474980 35.725810 543.497440 756.658450 224.096510 593.407710 681.928410 134.059460 522.888790 636.847050 226.513470 516.047120 768.098270 -168.451660 604.989010 718.292790 -111.893780 505.010680 658.864440 -160.582890 475.761230 553.577330 217.069320 469.232360 525.632930 98.078840 476.827940 528.561710 -150.338710 498.825320 519.783940 -36.262470 441.506440 469.108120 236.070950 513.432560 424.124730 184.081380 453.109620 384.118530 253.258180 467.648220 450.358060 -170.591780 517.063420 393.119510 -127.894430 446.197300 409.531920 -181.342580 437.643680 98.104100 255.553190 444.176390 103.447020 164.999010 442.973880 93.640570 -172.212040 464.942570 108.871570 -81.843260 366.647890 70.630330 210.278380 507.220060 80.139310 164.857880 509.366640 63.730300 272.860900 657.167910 50.652440 195.336530 371.656710 75.168390 -115.113200 544.812990 77.038730 -94.775080 524.654790 66.534710 -191.505230 654.413510 48.389900 -127.536190 605.256770 1425.537480 23.804330 487.421110 1550.142940 192.740020 486.537900 1561.174190 -147.777710 522.299190 1505.175290 357.712740 530.689510 1507.783810 -325.901520 517.421880 1473.464970 461.261080 495.177220 1476.089840 -426.983890 668.482790 1468.038940 687.056950 609.439940 1477.459350 711.187500 624.680600 1443.672490 -644.869380 552.213200 1447.647340 -664.292790 600.144710 39.552920 276.714170 594.006040 48.979190 168.089040 585.345090 39.916630 -201.712390 605.872990 51.635480 -100.994500 606.955810 1655.369870 126.587910 666.045170 1645.297730 1.099920 588.995360 1814.586300 30.427580
+71 1.167000 606.013550 1072.890630 157.196750 607.744690 1060.355960 -104.755360 408.940000 1079.497190 35.747330 543.363950 756.648860 224.096530 593.388850 681.946230 134.061490 522.865720 636.866760 226.507580 516.037780 768.064270 -168.467850 604.909420 718.270320 -111.879320 504.975710 658.870540 -160.592010 475.760040 553.570980 217.070770 469.130430 525.586120 98.086440 476.821720 528.569890 -150.395170 498.789890 519.781560 -36.311870 441.427370 469.123840 236.024380 513.384520 424.100220 184.133640 453.070740 384.129150 253.257480 467.673030 450.360110 -170.599620 517.042970 393.121730 -127.901220 446.087460 409.453580 -181.336090 437.654970 98.106120 255.577360 444.157750 103.506950 165.025330 442.973880 93.640570 -172.212040 464.941770 108.868000 -81.845090 366.637050 70.633860 210.276280 507.174770 80.157140 164.856950 509.342290 63.750780 272.848450 657.167910 50.652440 195.336530 371.598790 75.169750 -115.266700 544.812990 77.038730 -94.775080 524.914980 66.686090 -191.412540 654.381350 48.380160 -127.562730 605.290470 1425.569210 23.849170 487.378570 1550.218630 192.777420 486.577640 1561.192750 -147.791660 522.265560 1505.143550 357.727690 530.684200 1507.809690 -325.865910 517.414310 1473.382080 461.348880 495.157140 1476.172000 -427.004730 668.321290 1467.896730 687.146850 609.366210 1477.434940 711.138550 624.662170 1443.729610 -644.836610 552.213810 1447.709840 -664.283750 600.162410 39.561270 276.728210 593.979800 48.937630 168.106170 585.345090 39.916630 -201.712390 605.872560 51.630370 -101.016040 607.002620 1655.344850 126.649170 666.052670 1645.289790 1.095720 589.053040 1814.635990 30.463060
+72 1.183000 606.000490 1072.888670 157.184250 607.742680 1060.407470 -104.749030 408.850890 1079.512700 35.773520 543.251460 756.640500 224.095840 593.368290 681.964600 134.062930 522.811340 636.883970 226.502180 516.018070 768.019410 -168.485260 604.827820 718.270020 -111.875490 504.932280 658.886720 -160.609120 475.755550 553.559690 217.073240 469.045990 525.551940 98.083510 476.825560 528.577330 -150.447910 498.736660 519.777650 -36.386540 441.384310 469.114380 235.994130 513.359070 424.079010 184.166020 453.034970 384.136320 253.255370 467.715760 450.356780 -170.617830 517.011600 393.149780 -127.900360 445.939330 409.373260 -181.316450 437.658390 98.106740 255.584660 444.078670 103.575900 165.066090 442.973880 93.640570 -172.212040 464.947880 108.894800 -81.831360 366.614440 70.641200 210.271880 507.178190 80.173480 164.861370 509.334290 63.743200 272.853970 657.167910 50.652440 195.336530 371.569670 75.198840 -115.464510 544.812990 77.038730 -94.775080 524.796510 66.651670 -191.443650 654.378910 48.410180 -127.552340 605.310550 1425.580320 23.869170 487.329100 1550.268920 192.809250 486.603610 1561.207890 -147.802750 522.233640 1505.107670 357.761200 530.718380 1507.840940 -325.799740 517.399230 1473.308720 461.407230 495.211210 1476.190310 -427.013760 668.216490 1467.817380 687.163210 609.238950 1477.424680 711.094600 624.645020 1443.771360 -644.810060 552.213930 1447.775150 -664.249080 600.179570 39.577670 276.750700 593.950380 48.871110 168.129120 585.345090 39.916630 -201.712390 605.869450 51.630340 -101.030450 607.095580 1655.333620 126.692440 666.076540 1645.275630 1.090670 589.113400 1814.667110 30.499580
+73 1.200000 605.975710 1072.891720 157.183270 607.738400 1060.455080 -104.749670 408.805910 1079.507450 35.786090 543.185120 756.635620 224.096250 593.349670 681.979800 134.063450 522.721620 636.904360 226.495150 515.979860 767.973080 -168.487870 604.760930 718.309940 -111.876310 504.892580 658.908330 -160.633640 475.749150 553.547000 217.075940 468.997280 525.531680 98.076870 476.828860 528.583680 -150.490310 498.684750 519.773380 -36.460210 441.346500 469.101870 235.993790 513.359620 424.081330 184.166120 453.015530 384.138490 253.253980 467.745820 450.357510 -170.640270 516.974790 393.196560 -127.892290 445.807250 409.316190 -181.299650 437.643430 98.104050 255.552700 443.978150 103.630680 165.099210 442.973880 93.640570 -172.212040 464.956360 108.932050 -81.812260 366.594090 70.647770 210.267900 507.214720 80.193570 164.870670 509.338100 63.728630 272.870570 657.167910 50.652440 195.336530 371.582120 75.284570 -115.541100 544.812990 77.038730 -94.775080 524.385310 66.477980 -191.569090 654.401310 48.476330 -127.511260 605.329590 1425.588990 23.863480 487.297000 1550.290410 192.836380 486.606840 1561.221310 -147.806640 522.187320 1505.073850 357.807710 530.799190 1507.881100 -325.712680 517.373470 1473.249020 461.437070 495.355900 1476.135740 -426.993870 668.182250 1467.788330 687.144780 609.081790 1477.421750 711.086240 624.632750 1443.791260 -644.785100 552.227360 1447.851680 -664.177430 600.167240 39.599640 276.770630 593.919490 48.808970 168.148100 585.345090 39.916630 -201.712390 605.863890 51.637750 -101.030260 607.192870 1655.322390 126.718110 666.110600 1645.238770 1.082540 589.180420 1814.664310 30.537640
+74 1.217000 605.935360 1072.900270 157.203400 607.683410 1060.485840 -104.751520 408.781830 1079.478150 35.786200 543.157650 756.630550 224.087460 593.334590 681.988530 134.062150 522.616880 636.925290 226.487140 515.930790 767.930110 -168.473680 604.705380 718.382750 -111.880690 504.870730 658.920470 -160.666840 475.743230 553.541440 217.077000 468.976680 525.510380 98.076720 476.825620 528.587340 -150.517550 498.660800 519.770390 -36.496120 441.296540 469.099090 236.008410 513.379090 424.108030 184.139360 453.010650 384.135500 253.254260 467.744200 450.358490 -170.661450 516.945310 393.238250 -127.882450 445.722020 409.291750 -181.284090 437.617000 98.099300 255.496190 443.895600 103.653230 165.112230 442.973880 93.640570 -172.212040 464.960390 108.949820 -81.803150 366.582180 70.651560 210.265520 507.257970 80.221680 164.882770 509.352080 63.715970 272.887970 657.167910 50.652440 195.336530 371.628540 75.397410 -115.423140 544.812990 77.038730 -94.775080 523.856930 66.251910 -191.731200 654.409000 48.519120 -127.491260 605.342590 1425.604740 23.847520 487.287570 1550.292720 192.861370 486.597020 1561.231320 -147.805980 522.114260 1505.041380 357.858670 530.910830 1507.928340 -325.625210 517.331910 1473.197750 461.448640 495.557010 1476.046390 -426.956880 668.222600 1467.798830 687.129880 608.914860 1477.421750 711.127690 624.621950 1443.806030 -644.764470 552.273320 1447.942260 -664.071900 600.086120 39.618870 276.767760 593.892400 48.783480 168.144170 585.345090 39.916630 -201.712390 605.858090 51.646930 -101.025030 607.256100 1655.286870 126.727280 666.155640 1645.163450 1.068990 589.266720 1814.621950 30.576190
+75 1.233000 605.890870 1072.913330 157.246260 607.571230 1060.482670 -104.744690 408.747100 1079.435670 35.788520 543.149170 756.620970 224.059630 593.320370 681.990660 134.058000 522.530880 636.938540 226.481350 515.892090 767.900760 -168.450640 604.647890 718.451050 -111.893490 504.863220 658.921260 -160.701030 475.734100 553.548580 217.074950 468.959840 525.483220 98.081450 476.815730 528.586430 -150.526570 498.671940 519.769410 -36.483740 441.246490 469.100520 236.014050 513.401490 424.139430 184.107650 452.990450 384.129210 253.255970 467.712100 450.355620 -170.679210 516.925050 393.249210 -127.880660 445.670720 409.303800 -181.256090 437.596950 98.095700 255.453290 443.847630 103.641040 165.103910 442.973880 93.640570 -172.212040 464.956330 108.932020 -81.812280 366.577270 70.653030 210.264430 507.288760 80.240040 164.890990 509.373110 63.696250 272.897370 657.167910 50.652440 195.336530 371.688140 75.466160 -115.202320 544.812990 77.038730 -94.775080 523.360600 66.036270 -191.884520 654.381770 48.498520 -127.521530 605.337520 1425.619140 23.840790 487.290710 1550.288700 192.882000 486.591740 1561.237180 -147.806730 522.031980 1505.012570 357.912660 531.020630 1507.979130 -325.557590 517.277470 1473.155030 461.450380 495.749790 1475.981570 -426.928590 668.298160 1467.827150 687.130680 608.754820 1477.419070 711.204350 624.605290 1443.842530 -644.751830 552.369930 1448.036010 -663.960940 599.920590 39.631470 276.733430 593.871950 48.796540 168.108460 585.345090 39.916630 -201.712390 605.858580 51.646170 -101.025020 607.281980 1655.224120 126.724880 666.217350 1645.046390 1.049370 589.387390 1814.548340 30.612490
+76 1.250000 605.861570 1072.926510 157.297560 607.444030 1060.456050 -104.720210 408.692720 1079.394410 35.802750 543.146360 756.608520 224.020070 593.303830 681.988220 134.050810 522.479980 636.940730 226.481670 515.875920 767.892400 -168.426160 604.594910 718.481080 -111.910460 504.856260 658.924070 -160.719710 475.709010 553.564640 217.070160 468.944400 525.471740 98.078840 476.804050 528.581910 -150.518390 498.693120 519.770020 -36.455830 441.213990 469.098240 236.015300 513.413820 424.156370 184.090150 452.928250 384.122960 253.258120 467.662170 450.354770 -170.689930 516.905330 393.226840 -127.889970 445.641600 409.364010 -181.218310 437.596950 98.095700 255.453310 443.838200 103.612140 165.085360 442.973880 93.640570 -172.212040 464.947850 108.894710 -81.831410 366.575990 70.653340 210.264050 507.305600 80.239920 164.892940 509.389250 63.669380 272.894680 657.167910 50.652440 195.336530 371.738830 75.471070 -115.036960 544.812990 77.038730 -94.775080 523.052860 65.898390 -191.980930 654.346800 48.445170 -127.569560 605.321780 1425.626830 23.847520 487.294680 1550.288210 192.894380 486.595760 1561.243410 -147.811020 521.965150 1504.998780 357.967010 531.103270 1508.033690 -325.522640 517.233640 1473.128660 461.447940 495.888120 1475.981200 -426.923890 668.358090 1467.853640 687.140320 608.643250 1477.410160 711.277280 624.579650 1443.917970 -644.741940 552.531430 1448.118290 -663.880550 599.731570 39.642370 276.690490 593.852360 48.810360 168.064070 585.345090 39.916630 -201.712390 605.873110 51.627360 -101.023740 607.288570 1655.162840 126.717400 666.282960 1644.904540 1.023720 589.551150 1814.464110 30.642870
+77 1.267000 605.856630 1072.933720 157.330250 607.346250 1060.431520 -104.677120 408.620640 1079.365230 35.827970 543.146000 756.599850 223.988430 593.288330 681.984010 134.043150 522.451970 636.935490 226.492360 515.873600 767.902280 -168.403960 604.572080 718.467770 -111.917640 504.845210 658.939390 -160.712780 475.659450 553.581850 217.064090 468.949980 525.496220 98.064190 476.797790 528.578800 -150.496520 498.689760 519.772340 -36.455710 441.194000 469.099370 236.036150 513.412900 424.153380 184.092030 452.835510 384.120000 253.259430 467.612850 450.359680 -170.686740 516.885930 393.194640 -127.902710 445.639400 409.474550 -181.184810 437.617160 98.099330 255.496510 443.875430 103.584970 165.074750 442.973880 93.640570 -172.212040 464.941710 108.867790 -81.845200 366.575990 70.653370 210.264100 507.323430 80.247910 164.897050 509.389040 63.653190 272.882780 657.167910 50.652440 195.336530 371.739750 75.467080 -115.033490 544.812990 77.038730 -94.775080 523.027470 65.888500 -191.988390 654.344360 48.415550 -127.583830 605.323910 1425.638060 23.855560 487.295900 1550.292600 192.901870 486.602970 1561.253420 -147.816120 521.913390 1505.006350 358.012360 531.156010 1508.094480 -325.521640 517.225650 1473.123170 461.445770 495.968600 1476.044800 -426.939390 668.384090 1467.870120 687.152890 608.632140 1477.406860 711.309810 624.553650 1444.022950 -644.720150 552.760930 1448.181030 -663.844180 599.646850 39.650290 276.674410 593.827330 48.783080 168.049960 585.345090 39.916630 -201.712390 605.899230 51.598070 -101.007300 607.289250 1655.133910 126.709030 666.318730 1644.768070 0.989360 589.752010 1814.391970 30.663830
+78 1.283000 605.865540 1072.932740 157.329560 607.290710 1060.427370 -104.627500 408.532100 1079.357180 35.855360 543.149050 756.600650 223.978680 593.284180 681.981140 134.040270 522.420170 636.933230 226.516720 515.867980 767.923100 -168.382600 604.589660 718.433290 -111.903430 504.837100 658.962710 -160.689790 475.592500 553.595760 217.058070 468.974850 525.538570 98.048930 476.794130 528.583740 -150.464230 498.652860 519.779850 -36.488590 441.156280 469.115970 236.072620 513.403870 424.137940 184.105970 452.745880 384.121730 253.259220 467.582610 450.365970 -170.668470 516.877260 393.178220 -127.909290 445.663670 409.608920 -181.161100 437.644070 98.104160 255.554080 443.959630 103.565120 165.080840 442.973880 93.640570 -172.212040 464.942500 108.871230 -81.843440 366.577270 70.653400 210.264830 507.350280 80.287320 164.910080 509.369690 63.664790 272.868160 657.167910 50.652440 195.336530 371.649050 75.490730 -115.207600 544.812990 77.038730 -94.775080 523.210510 65.984630 -191.926510 654.372680 48.418780 -127.562370 605.366390 1425.665650 23.855080 487.298680 1550.297490 192.911610 486.615170 1561.265630 -147.819690 521.856020 1505.023680 358.044490 531.190000 1508.157230 -325.543150 517.239260 1473.129520 461.445190 496.009890 1476.142330 -426.964200 668.384950 1467.877080 687.166440 608.718510 1477.425540 711.298030 624.551880 1444.125980 -644.671450 553.036380 1448.214970 -663.828920 599.730410 39.643000 276.690580 593.799990 48.719520 168.075290 585.345090 39.916630 -201.712390 605.922610 51.577270 -100.975660 607.279480 1655.136600 126.702030 666.300540 1644.662600 0.944260 589.968440 1814.346920 30.672240
+79 1.300000 605.864930 1072.929690 157.315310 607.265870 1060.452390 -104.590310 408.441960 1079.370850 35.874230 543.155880 756.611690 223.989150 593.294190 681.981380 134.043990 522.364870 636.946290 226.552860 515.851200 767.948180 -168.354520 604.622560 718.414610 -111.866590 504.837650 658.981450 -160.670780 475.519230 553.605960 217.052670 468.993260 525.557190 98.049970 476.773620 528.602170 -150.425290 498.602660 519.797000 -36.520450 441.075990 469.146480 236.087300 513.395750 424.124480 184.118300 452.674130 384.126980 253.257780 467.576320 450.372250 -170.644130 516.886540 393.187500 -127.904390 445.711300 409.723360 -181.151120 437.659970 98.107020 255.588010 444.056090 103.553600 165.094890 442.973880 93.640570 -172.212040 464.951630 108.911380 -81.822860 366.581880 70.653070 210.266950 507.365200 80.336730 164.924220 509.336640 63.702360 272.857730 657.167910 50.652440 195.336530 371.493870 75.517010 -115.456790 544.812990 77.038730 -94.775080 523.420590 66.109210 -191.850920 654.394290 48.423660 -127.544890 605.440550 1425.707760 23.850460 487.308810 1550.299070 192.923980 486.639800 1561.278810 -147.820500 521.784120 1505.031740 358.068210 531.216670 1508.212280 -325.570920 517.233150 1473.131960 461.445040 496.030150 1476.234620 -426.985470 668.368040 1467.879270 687.177550 608.831790 1477.458620 711.265750 624.609920 1444.200810 -644.593930 553.313480 1448.208370 -663.773500 599.903200 39.616780 276.712190 593.778750 48.665590 168.110760 585.345090 39.916630 -201.712390 605.931460 51.575350 -100.944600 607.244140 1655.148800 126.699330 666.236880 1644.597780 0.896790 590.169070 1814.331180 30.664310
+80 1.317000 605.836490 1072.933230 157.321330 607.256960 1060.499510 -104.579720 408.372380 1079.393800 35.881270 543.164610 756.628300 224.007370 593.301880 681.984070 134.048130 522.290770 636.976620 226.591320 515.826480 767.969300 -168.313580 604.635740 718.432430 -111.820420 504.843540 658.986690 -160.664600 475.447050 553.613590 217.047910 468.995730 525.536250 98.071630 476.719150 528.632020 -150.387600 498.563780 519.822570 -36.522340 440.970550 469.178990 236.057920 513.393680 424.120760 184.121580 452.606140 384.132200 253.256320 467.584500 450.380400 -170.626140 516.909610 393.216340 -127.888310 445.775600 409.782380 -181.161300 437.657590 98.106600 255.582980 444.102390 103.547870 165.100800 442.973880 93.640570 -172.212040 464.966800 108.977940 -81.788740 366.593080 70.651370 210.271210 507.336610 80.356760 164.925890 509.305790 63.742910 272.859250 657.167910 50.652440 195.336530 371.374660 75.524890 -115.598110 544.812990 77.038730 -94.775080 523.495240 66.181820 -191.814930 654.396730 48.419170 -127.544940 605.514220 1425.749020 23.848370 487.332310 1550.297240 192.933940 486.675020 1561.297850 -147.816440 521.724120 1505.025510 358.087040 531.241640 1508.253170 -325.593020 517.199710 1473.127320 461.445830 496.041020 1476.297000 -426.991730 668.330810 1467.877690 687.183290 608.903690 1477.482910 711.236150 624.760070 1444.243290 -644.498840 553.545230 1448.166020 -663.625430 600.052060 39.584670 276.720550 593.771300 48.651610 168.128560 585.345090 39.916630 -201.712390 605.928220 51.585380 -100.926460 607.176210 1655.160520 126.703220 666.159120 1644.565670 0.864840 590.322450 1814.337520 30.635590
+81 1.333000 605.780330 1072.945920 157.356310 607.251460 1060.545650 -104.590510 408.329530 1079.410770 35.881730 543.170650 756.643010 224.024250 593.283870 681.988220 134.043640 522.222900 637.011050 226.620850 515.794740 767.979250 -168.265080 604.624080 718.471250 -111.785190 504.849120 658.978090 -160.663640 475.387760 553.619080 217.044190 468.991640 525.496700 98.099510 476.641880 528.660160 -150.365650 498.547730 519.844730 -36.501730 440.882080 469.202420 236.002500 513.393920 424.120790 184.121370 452.525880 384.132840 253.256410 467.595760 450.385100 -170.620360 516.929870 393.252010 -127.866890 445.817870 409.772610 -181.179350 437.646420 98.104590 255.559100 444.070980 103.539220 165.093690 442.973880 93.640570 -172.212040 464.980800 109.039490 -81.757200 366.612490 70.647090 210.277110 507.268310 80.339920 164.913640 509.300050 63.759580 272.877350 657.167910 50.652440 195.336530 371.360530 75.532860 -115.541350 544.812990 77.038730 -94.775080 523.416930 66.179840 -191.828740 654.408260 48.423100 -127.535240 605.559510 1425.774050 23.846890 487.375760 1550.289310 192.937470 486.708220 1561.327030 -147.807880 521.713260 1505.016850 358.100650 531.264950 1508.277590 -325.604460 517.169680 1473.124270 461.449650 496.049470 1476.332890 -426.982450 668.281980 1467.865360 687.185120 608.924870 1477.482670 711.220030 625.010070 1444.256590 -644.397280 553.701480 1448.117190 -663.418880 600.138550 39.561130 276.720400 593.787600 48.679730 168.122450 585.345090 39.916630 -201.712390 605.924930 51.591710 -100.920000 607.093930 1655.180300 126.711750 666.099180 1644.550900 0.863150 590.406070 1814.355830 30.583850
+82 1.350000 605.711550 1072.963990 157.407730 607.233700 1060.578490 -104.594440 408.299190 1079.419560 35.884740 543.160460 756.650630 224.039720 593.230470 681.994140 134.027240 522.181030 637.035710 226.636610 515.754330 767.980960 -168.224700 604.607300 718.502260 -111.773220 504.854030 658.961670 -160.659440 475.351870 553.622070 217.042020 468.978580 525.459590 98.115180 476.580660 528.673710 -150.371780 498.547360 519.850460 -36.491950 440.827700 469.212860 235.953380 513.392940 424.119290 184.122830 452.444400 384.127200 253.258620 467.602510 450.380520 -170.622570 516.931090 393.286320 -127.846330 445.751100 409.707030 -181.162580 437.639830 98.103400 255.544980 444.009090 103.526780 165.084780 442.973880 93.640570 -172.212040 464.986790 109.065740 -81.743740 366.634520 70.639820 210.281270 507.203950 80.312360 164.899170 509.328890 63.746620 272.905910 657.167910 50.652440 195.336530 371.412510 75.559120 -115.400550 544.812990 77.038730 -94.775080 523.340820 66.157540 -191.848600 654.455260 48.454800 -127.489070 605.572390 1425.780520 23.843200 487.436520 1550.272830 192.934370 486.723450 1561.361080 -147.800830 521.751040 1505.015260 358.111450 531.290410 1508.283570 -325.603240 517.162410 1473.125490 461.455750 496.071690 1476.351930 -426.967040 668.250730 1467.839110 687.190370 608.935970 1477.453490 711.215150 625.332150 1444.241700 -644.299380 553.781860 1448.094480 -663.265930 600.179200 39.550950 276.722200 593.840090 48.752930 168.096130 585.345090 39.916630 -201.712390 605.928470 51.585920 -100.923510 607.043210 1655.215450 126.719780 666.080810 1644.544070 0.895190 590.411190 1814.376340 30.513650
+83 1.367000 605.646180 1072.984250 157.470180 607.193050 1060.605830 -104.567090 408.265720 1079.425780 35.895870 543.102840 756.649840 224.051560 593.156370 682.001650 134.004120 522.166320 637.047300 226.641110 515.713070 767.982730 -168.204160 604.593440 718.508180 -111.785450 504.862090 658.944580 -160.655650 475.337740 553.623050 217.041210 468.942080 525.423650 98.113280 476.570130 528.673890 -150.400880 498.541930 519.843200 -36.513050 440.789060 469.219020 235.932210 513.394840 424.124420 184.119110 452.387700 384.118440 253.261780 467.599120 450.374240 -170.625660 516.913880 393.315250 -127.828320 445.496430 409.625790 -181.071140 437.637970 98.103070 255.540990 443.983830 103.525030 165.083800 442.973880 93.640570 -172.212040 464.986210 109.063160 -81.745060 366.646550 70.629550 210.276810 507.180420 80.299560 164.893190 509.371150 63.721460 272.928650 657.167910 50.652440 195.336530 371.446470 75.587580 -115.354940 544.812990 77.038730 -94.775080 523.383730 66.157970 -191.840870 654.528320 48.520590 -127.410210 605.572020 1425.779910 23.841310 487.495910 1550.254880 192.931430 486.712950 1561.389400 -147.799240 521.792300 1505.015140 358.122860 531.332950 1508.271240 -325.587680 517.180790 1473.123780 461.458250 496.136780 1476.349850 -426.950040 668.245480 1467.805910 687.210020 608.978270 1477.399900 711.211000 625.668460 1444.202150 -644.220090 553.813720 1448.110230 -663.268860 600.195980 39.552750 276.731600 593.931950 48.870850 168.057600 585.345090 39.916630 -201.712390 605.930790 51.575820 -100.946070 607.063660 1655.261230 126.723920 666.114440 1644.546510 0.953520 590.344180 1814.391240 30.438690
+84 1.383000 605.591980 1073.002320 157.542270 607.137630 1060.635130 -104.515240 408.228060 1079.429690 35.911590 542.962040 756.641780 224.054110 593.092650 682.006530 133.983470 522.169370 637.049990 226.639560 515.684880 767.982480 -168.200130 604.575810 718.487300 -111.815160 504.871580 658.934330 -160.658000 475.336360 553.622990 217.041170 468.885010 525.383670 98.102250 476.609890 528.669620 -150.429350 498.516970 519.840450 -36.551160 440.748840 469.235140 235.945740 513.403990 424.145050 184.102810 452.360290 384.111360 253.264270 467.585600 450.379060 -170.626020 516.889160 393.330200 -127.813100 445.122530 409.576600 -180.929860 437.630710 98.101760 255.525470 444.001500 103.543000 165.086210 442.973880 93.640570 -172.212040 464.985840 109.061600 -81.745860 366.644290 70.612640 210.257580 507.194210 80.304300 164.896000 509.394320 63.700640 272.933010 657.167910 50.652440 195.336530 371.445430 75.586970 -115.435780 544.812990 77.038730 -94.775080 523.459170 66.144080 -191.832210 654.591060 48.602130 -127.331590 605.578000 1425.783940 23.848520 487.533110 1550.247190 192.940200 486.688930 1561.406860 -147.796950 521.795960 1505.005130 358.134030 531.409970 1508.243160 -325.558140 517.237180 1473.109620 461.446290 496.263950 1476.317750 -426.923920 668.224910 1467.775150 687.248660 609.057680 1477.331670 711.198490 625.957030 1444.141600 -644.174930 553.835210 1448.147830 -663.437620 600.192990 39.563910 276.747280 594.048100 49.007740 168.020480 585.345090 39.916630 -201.712390 605.918460 51.576320 -100.995930 607.144590 1655.304930 126.724400 666.193850 1644.563600 1.028320 590.224790 1814.394410 30.379090
+85 1.400000 605.549800 1073.009280 157.609590 607.088010 1060.656250 -104.465040 408.190310 1079.430420 35.927160 542.742920 756.629640 224.053890 593.063110 682.003540 133.971310 522.179080 637.049260 226.636570 515.675050 767.971740 -168.203400 604.552430 718.455750 -111.849370 504.872680 658.936460 -160.659550 475.339780 553.622620 217.041400 468.836400 525.353090 98.092480 476.670810 528.661250 -150.428890 498.480870 519.849060 -36.582600 440.721890 469.259670 235.987690 513.416260 424.175050 184.079940 452.348330 384.108090 253.265410 467.571230 450.392610 -170.623280 516.860410 393.320400 -127.803320 444.871830 409.576050 -180.833300 437.616180 98.099150 255.494460 444.016110 103.568040 165.085220 442.973880 93.640570 -172.212040 464.986270 109.063430 -81.744930 366.642330 70.582440 210.224350 507.212980 80.311790 164.900090 509.391850 63.684000 272.923490 657.167910 50.652440 195.336530 371.469820 75.557950 -115.500420 544.812990 77.038730 -94.775080 523.450500 66.076140 -191.855560 654.617860 48.660180 -127.286950 605.593630 1425.794920 23.870340 487.539550 1550.253300 192.965930 486.677460 1561.414920 -147.787720 521.773990 1504.982300 358.142850 531.522640 1508.205080 -325.520750 517.350340 1473.073240 461.407140 496.438870 1476.251100 -426.881930 668.144590 1467.757200 687.296390 609.158330 1477.255620 711.174320 626.167360 1444.055540 -644.166750 553.879270 1448.164790 -663.658570 600.148010 39.580300 276.756930 594.162110 49.121950 167.998600 585.345090 39.916630 -201.712390 605.889040 51.593740 -101.063870 607.235350 1655.336670 126.723270 666.300600 1644.594120 1.116070 590.082640 1814.382930 30.354150
+86 1.417000 605.516910 1072.999390 157.657000 607.058960 1060.657100 -104.433180 408.152500 1079.433590 35.943530 542.511050 756.619750 224.067950 593.066960 681.996030 133.969020 522.183840 637.049260 226.635850 515.674440 767.955200 -168.211090 604.529170 718.444270 -111.868660 504.856870 658.949100 -160.649250 475.343600 553.622440 217.041600 468.824550 525.357360 98.086200 476.724430 528.644100 -150.384690 498.460140 519.854490 -36.599560 440.730160 469.276090 236.044710 513.422790 424.196660 184.065310 452.343290 384.107600 253.265580 467.566160 450.401730 -170.618670 516.828610 393.288210 -127.802330 444.917450 409.600490 -180.848770 437.604520 98.097050 255.469480 444.009580 103.582700 165.085830 442.973880 93.640570 -172.212040 464.981780 109.043710 -81.755040 366.656800 70.543300 210.190460 507.217220 80.312480 164.900760 509.385740 63.664040 272.915190 657.167910 50.652440 195.336530 371.558780 75.539410 -115.423660 544.812990 77.038730 -94.775080 523.414550 66.003750 -191.886030 654.608400 48.657350 -127.291590 605.615050 1425.810670 23.910260 487.517060 1550.267330 193.002810 486.695740 1561.414670 -147.779430 521.774230 1504.953980 358.149140 531.644040 1508.162230 -325.487730 517.526860 1473.011960 461.336940 496.612370 1476.154540 -426.835300 668.015750 1467.765630 687.336120 609.262570 1477.177860 711.140010 626.309810 1443.937380 -644.177250 553.967830 1448.111210 -663.764650 600.017700 39.596020 276.738460 594.250430 49.185990 167.997070 585.345090 39.916630 -201.712390 605.856320 51.617920 -101.124050 607.293950 1655.354980 126.722890 666.403870 1644.625000 1.215260 589.949770 1814.358520 30.374440
+87 1.433000 605.489620 1072.981930 157.687820 607.050960 1060.647090 -104.419870 408.124300 1079.442140 35.958200 542.338200 756.621520 224.103130 593.086300 681.995420 133.975710 522.169560 637.052430 226.640730 515.664980 767.948300 -168.218440 604.515870 718.474240 -111.853320 504.823820 658.968630 -160.628460 475.346220 553.622620 217.041660 468.851960 525.406740 98.079780 476.760830 528.624210 -150.313460 498.469940 519.843930 -36.605840 440.771700 469.278380 236.100800 513.417720 424.193080 184.071030 452.338530 384.108670 253.265240 467.571260 450.406220 -170.614070 516.808290 393.261050 -127.808590 445.165340 409.624150 -180.942900 437.602750 98.096740 255.465730 444.010830 103.588090 165.097750 442.973880 93.640570 -172.212040 464.971890 109.000300 -81.777280 366.687010 70.517640 210.179430 507.223420 80.315210 164.902160 509.390440 63.642510 272.915130 657.167910 50.652440 195.336530 371.661870 75.565530 -115.254060 544.812990 77.038730 -94.775080 523.513370 66.028750 -191.864330 654.562620 48.578570 -127.352750 605.643490 1425.832150 23.965550 487.477600 1550.282230 193.037670 486.736910 1561.406370 -147.785290 521.819150 1504.928710 358.151400 531.732180 1508.115230 -325.467930 517.744570 1472.941280 461.252230 496.726320 1476.047610 -426.804930 667.904660 1467.794560 687.356570 609.348510 1477.109990 711.103700 626.417790 1443.793580 -644.177250 554.109310 1447.958860 -663.660640 599.765260 39.608700 276.676760 594.301700 49.200290 168.011830 585.345090 39.916630 -201.712390 605.841490 51.630450 -101.146320 607.302730 1655.365230 126.725010 666.474240 1644.644650 1.318030 589.850400 1814.328610 30.438060
+88 1.450000 605.468320 1072.970460 157.712720 607.056820 1060.645140 -104.417970 408.125370 1079.448360 35.960780 542.266600 756.644290 224.151050 593.102970 682.007930 133.987870 522.120970 637.058840 226.653690 515.638850 767.961120 -168.210890 604.524410 718.535580 -111.800330 504.785520 658.992370 -160.611240 475.347750 553.623230 217.041560 468.893220 525.476200 98.072640 476.785580 528.616820 -150.259080 498.494780 519.826170 -36.605590 440.827210 469.275090 236.137880 513.402160 424.162200 184.097020 452.333100 384.110050 253.264800 467.578310 450.417570 -170.611740 516.817690 393.270020 -127.815170 445.403200 409.646060 -181.037860 437.607180 98.097530 255.475160 444.032100 103.600850 165.119310 442.973880 93.640570 -172.212040 464.963440 108.963250 -81.796270 366.721950 70.522160 210.203110 507.251190 80.330500 164.909260 509.393980 63.633550 272.916110 657.167910 50.652440 195.336530 371.694820 75.630540 -115.132360 544.812990 77.038730 -94.775080 523.804930 66.186960 -191.769450 654.473940 48.445460 -127.468670 605.683290 1425.861330 24.019560 487.446110 1550.292720 193.053920 486.776430 1561.395020 -147.806520 521.890260 1504.909550 358.146090 531.767520 1508.055790 -325.453280 517.950070 1472.885500 461.180910 496.764310 1475.948610 -426.795930 667.876160 1467.798220 687.351680 609.400150 1477.063350 711.076050 626.529420 1443.640380 -644.147520 554.291870 1447.722290 -663.383540 599.425720 39.620520 276.586210 594.318120 49.176310 168.042540 585.345090 39.916630 -201.712390 605.854430 51.623580 -101.113810 607.253110 1655.371090 126.730140 666.507810 1644.660400 1.412510 589.791200 1814.304810 30.533130
+89 1.467000 605.455320 1072.964480 157.732730 607.074100 1060.647090 -104.417660 408.160710 1079.442630 35.945550 542.318910 756.688960 224.200820 593.109010 682.025880 133.998900 522.031430 637.064640 226.673600 515.621700 767.999450 -168.183980 604.557070 718.594420 -111.730920 504.762850 659.012390 -160.608890 475.348540 553.623900 217.041440 468.914400 525.516170 98.069730 476.803830 528.627500 -150.253740 498.512760 519.814940 -36.602230 440.871030 469.267000 236.140200 513.384640 424.122380 184.128390 452.344820 384.109590 253.264920 467.579470 450.435880 -170.612900 516.855220 393.310330 -127.817250 445.528900 409.664120 -181.095340 437.612460 98.098480 255.486480 444.040560 103.626890 165.135220 442.973880 93.640570 -172.212040 464.960690 108.951070 -81.802510 366.750370 70.547370 210.245320 507.288880 80.352560 164.919220 509.383820 63.646530 272.910830 657.167910 50.652440 195.336530 371.615450 75.690570 -115.166470 544.812990 77.038730 -94.775080 524.100460 66.365290 -191.668050 654.362240 48.312240 -127.604390 605.732790 1425.895630 24.050830 487.440770 1550.297000 193.044740 486.791930 1561.386720 -147.834080 521.961610 1504.891480 358.131230 531.776730 1507.971920 -325.426570 518.091060 1472.856690 461.139560 496.777400 1475.856080 -426.794280 667.929570 1467.736450 687.314940 609.421880 1477.039550 711.061890 626.667180 1443.487920 -644.085880 554.479490 1447.462400 -663.068910 599.156070 39.628420 276.512120 594.311950 49.109190 168.103640 585.345090 39.916630 -201.712390 605.883970 51.607120 -101.042660 607.148990 1655.371830 126.737050 666.520390 1644.685060 1.492800 589.758850 1814.297000 30.644240
+90 1.483000 605.451840 1072.956050 157.744510 607.104610 1060.631230 -104.408860 408.212520 1079.424930 35.919100 542.453800 756.739380 224.244540 593.109560 682.035580 134.003850 521.918880 637.063840 226.693620 515.654790 768.064700 -168.156970 604.596980 718.619690 -111.675870 504.763920 659.021970 -160.616880 475.348630 553.623780 217.041470 468.906950 525.498540 98.076550 476.812870 528.644290 -150.287020 498.521790 519.809570 -36.599910 440.884800 469.246890 236.109180 513.374330 424.095610 184.148300 452.387210 384.105870 253.266010 467.575130 450.446840 -170.617280 516.898010 393.347630 -127.814720 445.571350 409.657100 -181.125440 437.618740 98.099620 255.499940 444.007570 103.646610 165.130710 442.973880 93.640570 -172.212040 464.960270 108.949310 -81.803420 366.763920 70.573810 210.280810 507.310910 80.368070 164.925700 509.370150 63.672270 272.902980 657.167910 50.652440 195.336530 371.428770 75.696950 -115.419330 544.812990 77.038730 -94.775080 524.101260 66.382310 -191.665160 654.278870 48.231200 -127.700600 605.782530 1425.928470 24.053510 487.446200 1550.299800 193.026060 486.779050 1561.382690 -147.859410 522.019840 1504.867190 358.109620 531.801210 1507.862550 -325.384980 518.144290 1472.851320 461.128600 496.827210 1475.765500 -426.787290 668.002620 1467.629520 687.246460 609.430480 1477.029790 711.059690 626.819030 1443.340700 -644.003540 554.626040 1447.258790 -662.851870 599.123900 39.624150 276.495450 594.298030 48.990490 168.204990 585.345090 39.916630 -201.712390 605.908390 51.596450 -100.974240 607.021000 1655.365230 126.742860 666.524600 1644.715450 1.561670 589.727230 1814.307860 30.758430
+91 1.500000 605.458620 1072.949950 157.753830 607.142030 1060.592770 -104.387730 408.253080 1079.406010 35.896150 542.547790 756.771610 224.273590 593.112370 682.031370 134.002780 521.823180 637.054140 226.705310 515.739380 768.136660 -168.146880 604.617370 718.606630 -111.655960 504.776030 659.021790 -160.624250 475.347230 553.621400 217.041980 468.896640 525.445250 98.092440 476.811770 528.653500 -150.322420 498.529210 519.804570 -36.599440 440.863830 469.222200 236.071000 513.373720 424.089230 184.151460 452.439390 384.101010 253.267440 467.569790 450.440980 -170.625640 516.925660 393.363100 -127.808430 445.594150 409.616360 -181.151080 437.625270 98.100780 255.513850 443.955870 103.637260 165.104050 442.973880 93.640570 -172.212040 464.958620 108.941990 -81.807170 366.763210 70.591670 210.299470 507.307070 80.370780 164.925920 509.366120 63.694970 272.898900 657.167910 50.652440 195.336530 371.188080 75.634170 -115.868440 544.812990 77.038730 -94.775080 523.743590 66.193140 -191.783800 654.252260 48.214460 -127.729610 605.823120 1425.954220 24.038340 487.433650 1550.308110 193.024320 486.750490 1561.380250 -147.876950 522.061710 1504.831670 358.087830 531.849060 1507.743410 -325.342160 518.107360 1472.863160 461.144410 496.915470 1475.688720 -426.774290 668.036620 1467.528690 687.163150 609.442200 1477.022580 711.066220 626.944090 1443.207890 -643.921940 554.699340 1447.154170 -662.770750 599.301820 39.608860 276.529300 594.285400 48.853260 168.318050 585.345090 39.916630 -201.712390 605.916500 51.596950 -100.938510 606.913270 1655.352170 126.745160 666.521300 1644.739140 1.620020 589.672730 1814.329590 30.868090
+92 1.517000 605.475710 1072.959230 157.771580 607.170720 1060.556520 -104.357280 408.265350 1079.400880 35.889470 542.494930 756.775090 224.279820 593.111820 682.019840 133.996990 521.775390 637.039250 226.705170 515.823610 768.175050 -168.147770 604.603820 718.581300 -111.670630 504.786960 659.015140 -160.630390 475.342930 553.615110 217.043270 468.910190 525.398190 98.112130 476.804380 528.656130 -150.337080 498.535580 519.802490 -36.595170 440.810820 469.210850 236.052320 513.378910 424.095920 184.144290 452.464110 384.098660 253.268130 467.565670 450.425110 -170.638090 516.938420 393.366060 -127.799600 445.631770 409.565460 -181.182500 437.627660 98.101210 255.518970 443.946930 103.602980 165.067320 442.973880 93.640570 -172.212040 464.957860 108.938710 -81.808850 366.752260 70.601590 210.304120 507.288390 80.363080 164.921800 509.365750 63.707820 272.897250 657.167910 50.652440 195.336530 371.000950 75.535470 -116.322200 544.812990 77.038730 -94.775080 523.276610 65.938680 -191.938710 654.258970 48.235100 -127.717800 605.849300 1425.970460 24.019920 487.397670 1550.323000 193.056490 486.721890 1561.379390 -147.883000 522.086360 1504.786870 358.074430 531.898380 1507.635990 -325.310820 517.984380 1472.889040 461.186160 496.999210 1475.635500 -426.756680 668.023860 1467.463870 687.092100 609.464970 1477.011350 711.077940 627.003170 1443.095830 -643.861210 554.697020 1447.125610 -662.769840 599.488340 39.594840 276.567870 594.272580 48.760360 168.388060 585.345090 39.916630 -201.712390 605.913700 51.600860 -100.937900 606.848020 1655.336910 126.744670 666.502870 1644.753170 1.663600 589.587650 1814.348390 30.970640
+93 1.533000 605.496700 1072.979370 157.792190 607.184140 1060.549800 -104.319290 408.261080 1079.415410 35.897310 542.317320 756.755250 224.261600 593.099610 682.011540 133.988630 521.776670 637.025880 226.697040 515.855470 768.152770 -168.146900 604.566470 718.579770 -111.700040 504.796510 659.006840 -160.639400 475.334560 553.604370 217.045460 468.945590 525.377500 98.132550 476.792240 528.660340 -150.338820 498.541560 519.806400 -36.580470 440.747010 469.216520 236.055500 513.383730 424.104060 184.136780 452.446560 384.100250 253.267670 467.566410 450.411290 -170.648450 516.949830 393.367460 -127.792460 445.688350 409.531650 -181.215070 437.623750 98.100510 255.510620 444.020570 103.567490 165.043720 442.973880 93.640570 -172.212040 464.961120 108.953060 -81.801500 366.730220 70.608860 210.299970 507.273040 80.347080 164.915990 509.360260 63.712310 272.894810 657.167910 50.652440 195.336530 370.980770 75.459840 -116.494780 544.812990 77.038730 -94.775080 522.986080 65.774080 -192.035480 654.271610 48.269190 -127.694210 605.858090 1425.975590 24.009300 487.347600 1550.341310 193.126530 486.701260 1561.382320 -147.877490 522.088560 1504.744630 358.078580 531.929500 1507.557500 -325.293700 517.801640 1472.924560 461.248720 497.046540 1475.595830 -426.732120 667.992370 1467.441650 687.050540 609.495060 1476.996460 711.090520 626.982060 1442.998900 -643.824830 554.641910 1447.115720 -662.784300 599.563600 39.589490 276.584110 594.248960 48.736260 168.387920 585.345090 39.916630 -201.712390 605.907590 51.600790 -100.963640 606.817440 1655.321170 126.744950 666.462280 1644.765380 1.690200 589.483950 1814.352290 31.065900
+94 1.550000 605.508300 1072.988160 157.793700 607.194950 1060.568730 -104.275230 408.262820 1079.439580 35.907220 542.172670 756.724670 224.226060 593.088440 682.010250 133.984180 521.810550 637.022520 226.688890 515.826600 768.081730 -168.141010 604.532350 718.613040 -111.720990 504.810490 659.000790 -160.649640 475.323610 553.592900 217.047700 468.979490 525.380190 98.149930 476.775360 528.664000 -150.342770 498.555240 519.810790 -36.555170 440.702580 469.226620 236.070570 513.386050 424.108700 184.132810 452.397610 384.104680 253.266360 467.578890 450.400820 -170.648210 516.966190 393.361150 -127.794590 445.756320 409.521670 -181.240460 437.616790 98.099270 255.495760 444.147670 103.546170 165.058360 442.973880 93.640570 -172.212040 464.966920 108.978440 -81.788490 366.704250 70.615290 210.292790 507.263240 80.313240 164.906360 509.356350 63.712260 272.893460 657.167910 50.652440 195.336530 371.163090 75.444460 -116.250490 544.812990 77.038730 -94.775080 522.955200 65.732420 -192.051040 654.296940 48.317250 -127.654070 605.853090 1425.972290 24.008670 487.289580 1550.359250 193.223690 486.686000 1561.389770 -147.864760 522.065190 1504.719360 358.102750 531.935850 1507.511840 -325.288330 517.630800 1472.958010 461.314510 497.052030 1475.558230 -426.701260 667.958620 1467.455930 687.037110 609.523130 1476.982670 711.098570 626.887880 1442.909670 -643.804990 554.560000 1447.088260 -662.792300 599.605900 39.587850 276.595640 594.201840 48.745150 168.339040 585.345090 39.916630 -201.712390 605.898440 51.599590 -101.005870 606.802490 1655.303340 126.750930 666.402040 1644.783940 1.700530 589.384030 1814.338620 31.152490
+95 1.567000 605.502440 1072.976440 157.768360 607.215150 1060.588130 -104.239080 408.273900 1079.460690 35.912550 542.209780 756.696470 224.181900 593.102230 682.014220 133.991260 521.868710 637.032470 226.684280 515.770510 768.011660 -168.131360 604.524960 718.658570 -111.720950 504.832430 658.996090 -160.658800 475.314820 553.588380 217.048400 468.998200 525.405090 98.154290 476.757900 528.659120 -150.343570 498.577090 519.810360 -36.528240 440.685910 469.234440 236.095890 513.385990 424.109160 184.132770 452.337400 384.109920 253.264830 467.603450 450.388000 -170.636760 516.982360 393.337920 -127.810510 445.821870 409.538700 -181.255680 437.612670 98.098520 255.486920 444.255860 103.538890 165.112700 442.973880 93.640570 -172.212040 464.973110 109.005710 -81.774510 366.690220 70.617900 210.287990 507.251980 80.249690 164.889100 509.361020 63.710760 272.895290 657.167910 50.652440 195.336530 371.464050 75.482210 -115.737840 544.812990 77.038730 -94.775080 523.065190 65.757420 -192.023280 654.346190 48.380280 -127.590070 605.839660 1425.963870 24.015740 487.237550 1550.372070 193.322080 486.660370 1561.400390 -147.849850 522.025390 1504.718020 358.137660 531.914120 1507.488400 -325.295560 517.549010 1472.977420 461.366880 497.018280 1475.524290 -426.669460 667.930540 1467.495970 687.042180 609.545590 1476.972780 711.097960 626.738530 1442.834960 -643.801150 554.464480 1447.044680 -662.797610 599.724240 39.584290 276.628540 594.127440 48.745070 168.274630 585.345090 39.916630 -201.712390 605.886170 51.602700 -101.047480 606.788090 1655.287600 126.768140 666.336610 1644.813480 1.697500 589.306340 1814.314700 31.226020
+96 1.583000 605.485960 1072.959720 157.734420 607.233340 1060.599850 -104.229600 408.282750 1079.475340 35.915950 542.401490 756.676090 224.134860 593.144290 682.025450 134.011800 521.952330 637.047790 226.678240 515.731320 768.000790 -168.116610 604.551210 718.689760 -111.698520 504.857330 658.993650 -160.666060 475.312470 553.593320 217.047130 469.011510 525.460080 98.137860 476.747010 528.648380 -150.324910 498.591060 519.809080 -36.512950 440.694240 469.250520 236.138720 513.381350 424.101230 184.140460 452.291350 384.113530 253.263790 467.630800 450.374150 -170.622390 516.992860 393.307560 -127.832230 445.862580 409.595000 -181.258240 437.613950 98.098750 255.489650 444.292050 103.542270 165.173550 442.973880 93.640570 -172.212040 464.980100 109.036400 -81.758780 366.690770 70.616560 210.286850 507.242370 80.167550 164.867390 509.365600 63.709340 272.897090 657.167910 50.652440 195.336530 371.736210 75.542120 -115.242810 544.812990 77.038730 -94.775080 523.170410 65.806540 -191.989670 654.409060 48.447030 -127.515960 605.818300 1425.950560 24.030000 487.219420 1550.374630 193.397260 486.604830 1561.410400 -147.833130 521.986940 1504.733400 358.168270 531.856200 1507.474610 -325.321140 517.565610 1472.983150 461.411710 496.939450 1475.506350 -426.641450 667.937010 1467.546880 687.057860 609.567810 1476.964840 711.087770 626.554690 1442.793090 -643.823240 554.359250 1447.003300 -662.799500 599.898010 39.582520 276.681210 594.038940 48.735680 168.206500 585.345090 39.916630 -201.712390 605.874150 51.611350 -101.070260 606.766540 1655.284790 126.797100 666.281740 1644.854980 1.687550 589.257450 1814.293210 31.281080
+97 1.600000 605.470760 1072.955440 157.712510 607.229430 1060.611820 -104.239070 408.278900 1079.487670 35.923030 542.588750 756.660890 224.097870 593.190490 682.047420 134.038410 522.047490 637.056820 226.666310 515.730470 768.065120 -168.098190 604.602780 718.701900 -111.659290 504.875920 658.999510 -160.665730 475.318240 553.598020 217.046260 469.032140 525.537900 98.106400 476.747530 528.641420 -150.283370 498.590520 519.811520 -36.509120 440.733610 469.283200 236.202290 513.371460 424.083710 184.157030 452.279330 384.113950 253.263690 467.652650 450.363650 -170.614700 516.994200 393.290890 -127.843160 445.858640 409.680730 -181.243240 437.621250 98.100060 255.505260 444.252350 103.553230 165.208800 442.973880 93.640570 -172.212040 464.985170 109.058660 -81.747370 366.693700 70.615160 210.286940 507.232570 80.103570 164.850190 509.361850 63.708470 272.895870 657.167910 50.652440 195.336530 371.873990 75.599200 -114.945610 544.812990 77.038730 -94.775080 523.265010 65.892090 -191.946520 654.463440 48.495350 -127.457260 605.798220 1425.938230 24.044170 487.259640 1550.364140 193.445340 486.514860 1561.415280 -147.809510 521.963560 1504.746830 358.186490 531.752750 1507.473140 -325.367520 517.630740 1472.984740 461.461580 496.802000 1475.517580 -426.618040 668.004330 1467.583860 687.075500 609.599240 1476.953980 711.069820 626.352110 1442.789670 -643.876340 554.240720 1446.981810 -662.785280 600.044370 39.588340 276.734860 593.965580 48.744760 168.136060 585.345090 39.916630 -201.712390 605.864260 51.624600 -101.069500 606.737550 1655.299070 126.829250 666.241760 1644.904660 1.677720 589.234740 1814.285520 31.315560
+98 1.617000 605.461300 1072.964480 157.707470 607.207090 1060.619260 -104.234630 408.256740 1079.503050 35.937970 542.678830 756.650940 224.090620 593.212770 682.072080 134.056460 522.124880 637.056820 226.652010 515.759890 768.158450 -168.085300 604.664730 718.706600 -111.614350 504.883330 659.013920 -160.649810 475.336880 553.589170 217.049120 469.058230 525.602420 98.077920 476.761810 528.638120 -150.230190 498.598510 519.814510 -36.493470 440.808040 469.317990 236.274150 513.359800 424.062260 184.177200 452.299410 384.112270 253.264180 467.669190 450.351870 -170.618420 516.984500 393.292910 -127.835560 445.817660 409.744780 -181.215590 437.636350 98.102780 255.537520 444.171910 103.562130 165.218990 442.973880 93.640570 -172.212040 464.982640 109.047450 -81.753120 366.689390 70.616520 210.286070 507.209440 80.091050 164.844330 509.357700 63.708210 272.894350 657.167910 50.652440 195.336530 371.872340 75.632520 -114.860780 544.812990 77.038730 -94.775080 523.424990 66.020850 -191.878390 654.483640 48.493690 -127.443820 605.797360 1425.937740 24.044910 487.355290 1550.343140 193.480480 486.406340 1561.414790 -147.774830 521.956970 1504.746340 358.194340 531.603520 1507.498410 -325.423000 517.694400 1472.987060 461.505220 496.602450 1475.562010 -426.596920 668.122190 1467.598630 687.082820 609.647890 1476.932500 711.047360 626.139160 1442.804810 -643.952210 554.096920 1446.988160 -662.740300 600.131530 39.600800 276.776700 593.939150 48.794890 168.071840 585.345090 39.916630 -201.712390 605.856870 51.638660 -101.055890 606.703550 1655.320800 126.857670 666.211550 1644.955570 1.671100 589.233890 1814.297240 31.333130
+99 1.633000 605.455930 1072.979130 157.714660 607.192140 1060.610110 -104.199340 408.218810 1079.521240 35.959400 542.728760 756.651430 224.115620 593.204710 682.081180 134.054780 522.168820 637.052860 226.641050 515.797420 768.219790 -168.083100 604.720520 718.711180 -111.578180 504.877750 659.026980 -160.617200 475.380490 553.562990 217.057050 469.085690 525.620240 98.069930 476.789550 528.631040 -150.180620 498.637820 519.814700 -36.443290 440.901760 469.331510 236.332470 513.350400 424.044490 184.193560 452.333740 384.111850 253.264190 467.679290 450.334870 -170.631440 516.967100 393.300080 -127.816800 445.775820 409.740970 -181.193240 437.654570 98.106060 255.576510 444.086150 103.563080 165.216520 442.973880 93.640570 -172.212040 464.973050 109.005360 -81.774690 366.679230 70.619930 210.284230 507.179630 80.128550 164.850230 509.361180 63.708490 272.895260 657.167910 50.652440 195.336530 371.809420 75.610030 -114.943830 544.812990 77.038730 -94.775080 523.648190 66.147600 -191.800080 654.457210 48.440030 -127.484290 605.816470 1425.949460 24.031520 487.464360 1550.321780 193.517200 486.308650 1561.416630 -147.733280 521.958500 1504.740480 358.197480 531.427980 1507.553470 -325.463410 517.725040 1472.991820 461.523470 496.364560 1475.628170 -426.576690 668.268070 1467.630980 687.066890 609.711360 1476.891850 711.026730 625.922360 1442.815190 -644.033570 553.919740 1447.012940 -662.661740 600.175290 39.617210 276.807130 593.972900 48.884330 168.026980 585.345090 39.916630 -201.712390 605.855350 51.643700 -101.046210 606.666500 1655.333620 126.885940 666.185910 1645.002690 1.662980 589.252380 1814.328740 31.341100
+100 1.650000 605.453000 1072.994630 157.729460 607.201290 1060.591800 -104.146050 408.178620 1079.532960 35.977740 542.831240 756.664610 224.153810 593.186830 682.068120 134.039120 522.184630 637.049620 226.635030 515.822020 768.226930 -168.084810 604.754520 718.712400 -111.564240 504.858280 659.030940 -160.571180 475.457210 553.530520 217.067810 469.122860 525.598880 98.084740 476.823300 528.621150 -150.147160 498.697110 519.816280 -36.365220 440.982600 469.319060 236.364110 513.345520 424.036590 184.199680 452.376070 384.115230 253.262920 467.673220 450.324160 -170.645680 516.946290 393.301570 -127.797470 445.764590 409.678530 -181.191670 437.662960 98.107560 255.594450 444.008700 103.567760 165.201370 442.973880 93.640570 -172.212040 464.964320 108.967120 -81.794290 366.669650 70.623160 210.282490 507.178620 80.185830 164.864470 509.364260 63.709050 272.895840 657.167910 50.652440 195.336530 371.767940 75.520700 -115.152450 544.812990 77.038730 -94.775080 523.904300 66.244370 -191.725690 654.411680 48.391280 -127.536870 605.839540 1425.963750 24.015800 487.525120 1550.313480 193.558490 486.247500 1561.429930 -147.695860 521.957760 1504.743290 358.200840 531.261840 1507.619380 -325.473940 517.709780 1473.005000 461.532320 496.134860 1475.691770 -426.557190 668.451840 1467.740110 687.022280 609.769710 1476.828610 711.021120 625.707210 1442.822020 -644.101930 553.711670 1447.034670 -662.564820 600.193730 39.635700 276.831670 594.050840 48.990220 168.007450 585.345090 39.916630 -201.712390 605.864560 51.630900 -101.048260 606.629760 1655.330320 126.916260 666.159550 1645.047360 1.643810 589.286800 1814.376100 31.345620
+101 1.667000 605.454410 1073.008060 157.747210 607.231930 1060.586430 -104.091320 408.149690 1079.527950 35.982930 542.987550 756.691530 224.193240 593.185670 682.048340 134.030840 522.185240 637.048220 226.632460 515.820920 768.199340 -168.081710 604.763430 718.706480 -111.576240 504.831450 659.025090 -160.514760 475.550570 553.509090 217.076680 469.179440 525.576720 98.108430 476.854460 528.613530 -150.133990 498.748050 519.822330 -36.289560 441.034060 469.298370 236.369890 513.342410 424.038300 184.194810 452.439120 384.121580 253.260590 467.650050 450.332790 -170.652050 516.925900 393.299290 -127.783340 445.782930 409.608090 -181.208560 437.654140 98.105970 255.575560 443.952730 103.586240 165.177280 442.973880 93.640570 -172.212040 464.961400 108.954190 -81.800920 366.660430 70.626240 210.280780 507.238920 80.239320 164.884960 509.359250 63.709530 272.893590 657.167910 50.652440 195.336550 371.753230 75.416930 -115.424410 544.812990 77.038730 -94.775080 524.218440 66.347860 -191.639180 654.400330 48.408200 -127.540150 605.859250 1425.976070 24.003310 487.505280 1550.324710 193.599580 486.222320 1561.458620 -147.672360 521.954530 1504.753780 358.209200 531.137630 1507.673460 -325.466280 517.672000 1473.031980 461.576900 495.958440 1475.720830 -426.535640 668.691280 1467.927610 686.964970 609.808230 1476.745120 711.043520 625.493290 1442.852420 -644.146240 553.478330 1447.036740 -662.484250 600.191960 39.646650 276.843350 594.143740 49.095410 168.002560 585.345090 39.916630 -201.712390 605.881230 51.606150 -101.057030 606.594060 1655.322020 126.938870 666.130130 1645.094850 1.611330 589.327510 1814.433230 31.348470
+102 1.683000 605.465820 1073.014890 157.761950 607.273500 1060.599000 -104.041940 408.129000 1079.509770 35.977490 543.132450 756.736630 224.241270 593.207280 682.040770 134.048360 522.181030 637.047550 226.631930 515.796450 768.169860 -168.071780 604.762450 718.692080 -111.602380 504.810580 659.012080 -160.459490 475.620820 553.508000 217.079820 469.246640 525.579830 98.127860 476.881160 528.605470 -150.131970 498.779570 519.827030 -36.240970 441.078030 469.289400 236.356840 513.336120 424.046600 184.181180 452.524510 384.128600 253.257950 467.629490 450.354710 -170.647580 516.912900 393.295840 -127.777920 445.796630 409.570740 -181.221280 437.635650 98.102650 255.536060 443.935520 103.604730 165.162230 442.973880 93.640570 -172.212040 464.961180 108.953220 -81.801410 366.648800 70.630040 210.278560 507.353330 80.287860 164.910580 509.355380 63.709480 272.892300 657.167970 50.652440 195.336560 371.714170 75.376210 -115.653240 544.812990 77.038730 -94.775080 524.566960 66.480990 -191.537160 654.445130 48.480480 -127.481930 605.876220 1425.986690 23.993670 487.430510 1550.349000 193.636780 486.205200 1561.500000 -147.665120 521.961550 1504.756590 358.226140 531.062260 1507.710080 -325.469940 517.663150 1473.063600 461.675260 495.849790 1475.702150 -426.509610 668.944520 1468.104740 686.930050 609.849850 1476.647090 711.093510 625.277400 1442.935420 -644.176150 553.225220 1447.024900 -662.478390 600.173710 39.637290 276.827610 594.226320 49.194120 167.995820 585.345090 39.916630 -201.712390 605.895020 51.585450 -101.065290 606.554930 1655.326050 126.941910 666.100890 1645.148560 1.572630 589.358760 1814.492430 31.347080
+103 1.700000 605.494260 1073.013790 157.773270 607.310360 1060.612920 -104.006250 408.105100 1079.495970 35.975170 543.222470 756.797550 224.302550 593.240660 682.046450 134.095730 522.177250 637.045290 226.633510 515.769100 768.162290 -168.057690 604.765140 718.662230 -111.626850 504.801210 658.999080 -160.421050 475.638280 553.525630 217.076390 469.302280 525.599790 98.146560 476.899200 528.594360 -150.125950 498.796510 519.825680 -36.221940 441.151030 469.294070 236.332240 513.325560 424.061430 184.160510 452.612610 384.135190 253.255400 467.632600 450.372440 -170.637650 516.911680 393.284580 -127.782000 445.759770 409.574520 -181.204900 437.620880 98.100000 255.504460 443.958040 103.604840 165.164700 442.973880 93.640570 -172.212040 464.959900 108.947590 -81.804300 366.642030 70.632250 210.277250 507.463010 80.336040 164.935550 509.362580 63.708040 272.896510 657.167970 50.652440 195.336580 371.648560 75.417700 -115.715800 544.812990 77.038730 -94.775080 524.846920 66.607430 -191.448750 654.514950 48.541430 -127.409840 605.881960 1425.990360 23.991870 487.357120 1550.373050 193.666610 486.165250 1561.547360 -147.663880 521.996090 1504.739990 358.248440 531.011960 1507.739870 -325.506530 517.707280 1473.073360 461.794070 495.779540 1475.667720 -426.480930 669.136230 1468.167720 686.936040 609.928890 1476.546510 711.158020 625.074220 1443.073610 -644.222470 552.959230 1447.031860 -662.622560 600.152280 39.609330 276.787930 594.281620 49.270970 167.985760 585.345090 39.916630 -201.712390 605.901430 51.576500 -101.066890 606.512880 1655.346440 126.926400 666.073000 1645.206300 1.531990 589.363040 1814.546750 31.336250
+104 1.717000 605.540340 1073.010500 157.788590 607.323360 1060.616210 -103.996670 408.079620 1079.501220 35.987420 543.258610 756.858640 224.364460 593.276730 682.053410 134.163990 522.174680 637.038390 226.639040 515.761840 768.184270 -168.043090 604.769170 718.609920 -111.644950 504.798000 658.991330 -160.398270 475.609920 553.554380 217.068500 469.330660 525.608640 98.180140 476.899110 528.587460 -150.110110 498.801240 519.823550 -36.219910 441.259220 469.298890 236.303190 513.313170 424.076110 184.145000 452.690460 384.139650 253.253480 467.662630 450.378480 -170.632100 516.918760 393.262730 -127.791800 445.661620 409.610600 -181.156200 437.614960 98.098940 255.491850 444.006470 103.591270 165.172000 442.973880 93.640570 -172.212040 464.959140 108.944270 -81.806000 366.645780 70.631010 210.277970 507.495420 80.372590 164.948500 509.375150 63.704060 272.905460 657.167970 50.652440 195.336560 371.618380 75.487330 -115.582890 544.812990 77.038730 -94.775080 524.961910 66.672120 -191.408130 654.564090 48.545660 -127.373870 605.868770 1425.982180 24.000390 487.323390 1550.386350 193.683520 486.092620 1561.589600 -147.649480 522.067260 1504.707150 358.263030 530.957090 1507.772710 -325.567470 517.785710 1473.024050 461.886380 495.705600 1475.666750 -426.449920 669.254700 1468.086670 686.965030 610.044190 1476.458370 711.226870 624.917660 1443.236330 -644.309750 552.690920 1447.090580 -662.957820 600.141170 39.578270 276.746060 594.305180 49.307680 167.982150 585.345090 39.916630 -201.712390 605.901490 51.579300 -101.057670 606.479860 1655.371340 126.904890 666.041560 1645.260860 1.485090 589.328980 1814.592410 31.309630
+105 1.733000 605.591800 1073.009770 157.809660 607.304200 1060.612430 -104.015120 408.068570 1079.523560 36.018260 543.257390 756.901670 224.408920 593.306950 682.053890 134.231170 522.171330 637.025150 226.650910 515.776920 768.227780 -168.033290 604.762760 718.549990 -111.661700 504.797270 658.981510 -160.378130 475.575870 553.581970 217.060620 469.331940 525.591860 98.237630 476.881380 528.592410 -150.090770 498.795930 519.825680 -36.222750 441.365360 469.295320 236.280140 513.305480 424.077790 184.156340 452.763490 384.136990 253.253750 467.707370 450.376430 -170.637620 516.928100 393.245480 -127.801560 445.559200 409.667450 -181.097580 437.616670 98.099240 255.495440 444.061800 103.579780 165.174970 442.973880 93.640570 -172.212040 464.960910 108.952070 -81.802000 366.651090 70.629280 210.278990 507.427490 80.376080 164.941390 509.385740 63.697130 272.916960 657.167850 50.652430 195.336500 371.654270 75.529690 -115.370070 544.812990 77.038730 -94.775080 524.864930 66.642050 -191.434230 654.577640 48.505990 -127.379070 605.844060 1425.966190 24.008420 487.332580 1550.385500 193.687790 486.000730 1561.616090 -147.611570 522.170590 1504.669560 358.257900 530.887880 1507.808350 -325.620420 517.881590 1472.879030 461.941860 495.614110 1475.712520 -426.414370 669.385250 1467.921630 686.981260 610.173280 1476.389770 711.299190 624.824340 1443.381350 -644.426270 552.444210 1447.195310 -663.415770 600.142880 39.556680 276.719210 594.306520 49.309180 167.986560 585.345090 39.916630 -201.712390 605.893800 51.595130 -101.039540 606.463130 1655.389650 126.887100 666.002560 1645.304200 1.427510 589.256160 1814.628170 31.261610
+106 1.750000 605.629520 1073.009520 157.825380 607.261780 1060.613040 -104.046950 408.086400 1079.552860 36.070620 543.222170 756.914790 224.424220 593.317320 682.050540 134.270630 522.163760 637.008480 226.669130 515.797730 768.271850 -168.035580 604.725590 718.513240 -111.685660 504.798030 658.962400 -160.356510 475.575380 553.598080 217.056820 469.317470 525.561280 98.308650 476.864170 528.606450 -150.079240 498.790010 519.827760 -36.226380 441.421780 469.288970 236.275130 513.310850 424.066310 184.199520 452.837800 384.123200 253.257460 467.747340 450.370420 -170.649980 516.931580 393.251130 -127.804430 445.528260 409.725220 -181.059740 437.624940 98.100730 255.513170 444.096830 103.576600 165.183670 442.973880 93.640570 -172.212040 464.962400 108.958600 -81.798650 366.649510 70.629800 210.278690 507.301940 80.343080 164.918370 509.397550 63.689640 272.929500 657.167660 50.652400 195.336320 371.722200 75.543470 -115.218120 544.812990 77.038730 -94.775080 524.601930 66.538270 -191.513200 654.578190 48.467260 -127.391270 605.819400 1425.949220 24.001520 487.361020 1550.371830 193.692950 485.912780 1561.623410 -147.559720 522.293950 1504.635500 358.238490 530.808840 1507.843380 -325.640110 517.995120 1472.634030 461.990170 495.511020 1475.783570 -426.378690 669.638550 1467.773560 686.952760 610.311710 1476.333250 711.373900 624.776860 1443.483890 -644.532410 552.250850 1447.304570 -663.838260 600.150270 39.547860 276.710510 594.301570 49.301880 167.989610 585.345090 39.916630 -201.712390 605.879390 51.620110 -101.020360 606.456850 1655.399780 126.872490 665.960880 1645.332280 1.366080 589.155330 1814.654050 31.190930
+107 1.767000 605.642580 1073.006840 157.827090 607.214480 1060.626340 -104.074460 408.125730 1079.583980 36.148770 543.134700 756.894590 224.408430 593.299440 682.050230 134.272950 522.151980 636.996890 226.687190 515.813660 768.301210 -168.051790 604.642700 718.510310 -111.724440 504.791840 658.946110 -160.336520 475.603940 553.601990 217.057080 469.296050 525.533630 98.370900 476.863590 528.624570 -150.083880 498.790370 519.825260 -36.230480 441.406890 469.290280 236.293010 513.327090 424.053100 184.251850 452.904970 384.102940 253.263260 467.764740 450.367830 -170.658490 516.923830 393.278870 -127.793580 445.586430 409.758730 -181.063930 437.634830 98.102500 255.534270 444.082310 103.584960 165.202210 442.973880 93.640570 -172.212040 464.960940 108.952160 -81.801960 366.647770 70.630360 210.278340 507.185360 80.293010 164.892120 509.407870 63.686680 272.936460 657.167420 50.652350 195.336030 371.780790 75.539530 -115.201550 544.812990 77.038730 -94.775080 524.299190 66.419110 -191.605800 654.582580 48.459140 -127.387770 605.795900 1425.931760 23.977840 487.372740 1550.348390 193.721770 485.847630 1561.615840 -147.511830 522.421940 1504.607540 358.221950 530.718930 1507.876340 -325.625150 518.113950 1472.347290 462.052670 495.390530 1475.865230 -426.355620 670.029850 1467.691770 686.871580 610.476620 1476.267330 711.434570 624.745480 1443.544680 -644.595700 552.123780 1447.378300 -664.101990 600.147890 39.551050 276.715090 594.300960 49.308120 167.982220 585.345090 39.916630 -201.712390 605.865360 51.640870 -101.013170 606.462160 1655.405030 126.854350 665.927250 1645.346310 1.316350 589.043950 1814.668950 31.105250
+108 1.783000 605.636540 1073.004760 157.821460 607.177550 1060.649540 -104.091310 408.158360 1079.615230 36.245440 542.972720 756.848390 224.370540 593.263430 682.056880 134.253070 522.144530 636.995850 226.694170 515.826290 768.321590 -168.071820 604.532530 718.524410 -111.773870 504.770420 658.949650 -160.320360 475.617740 553.598880 217.058380 469.265560 525.506840 98.410800 476.868800 528.645940 -150.101290 498.791960 519.822880 -36.232860 441.333470 469.301940 236.326610 513.341130 424.042180 184.284790 452.948150 384.088650 253.267470 467.755800 450.376830 -170.658680 516.914000 393.311920 -127.770350 445.689360 409.753420 -181.111980 437.638430 98.103150 255.541960 444.013460 103.605100 165.210300 442.973880 93.640570 -172.212040 464.959080 108.944000 -81.806140 366.651890 70.629020 210.279140 507.121190 80.244650 164.872480 509.403260 63.690590 272.930240 657.167110 50.652300 195.335770 371.807310 75.494520 -115.347460 544.812990 77.038730 -94.775080 524.087830 66.335130 -191.673920 654.572080 48.474180 -127.387430 605.766240 1425.909910 23.949600 487.348330 1550.316280 193.789870 485.814670 1561.599240 -147.478100 522.535460 1504.583370 358.218900 530.608700 1507.903200 -325.589780 518.207210 1472.109250 462.111850 495.232420 1475.965580 -426.356990 670.461850 1467.647090 686.758730 610.685120 1476.160890 711.451720 624.708560 1443.571040 -644.603700 552.046200 1447.405030 -664.190610 600.112300 39.565680 276.725100 594.305970 49.331640 167.962880 585.345090 39.916630 -201.712390 605.860600 51.642400 -101.028410 606.489750 1655.408330 126.827930 665.907900 1645.350590 1.287660 588.940190 1814.672120 31.022710
+109 1.800000 605.626650 1073.006470 157.819230 607.156560 1060.672000 -104.100460 408.166900 1079.639530 36.333330 542.757080 756.794560 224.327900 593.236880 682.066770 134.227480 522.151060 637.000120 226.686070 515.825560 768.335690 -168.079770 604.436280 718.541380 -111.817290 504.743010 658.966370 -160.311400 475.589750 553.591250 217.059020 469.224210 525.470760 98.431850 476.850920 528.664860 -150.115660 498.789180 519.825200 -36.232140 441.242000 469.314090 236.361450 513.345640 424.033020 184.289950 452.953980 384.087490 253.267880 467.732600 450.391390 -170.652940 516.919680 393.335880 -127.748560 445.782140 409.709350 -181.182970 437.637790 98.103030 255.540560 443.931790 103.619360 165.191390 442.973880 93.640570 -172.212040 464.959560 108.946190 -81.805020 366.651670 70.629090 210.279100 507.118190 80.205820 164.862440 509.384640 63.696850 272.915920 657.167180 50.652320 195.335850 371.783330 75.398240 -115.607770 544.812990 77.038730 -94.775080 524.026430 66.303970 -191.700300 654.537660 48.493400 -127.405780 605.722900 1425.880370 23.928310 487.300930 1550.277340 193.889420 485.815770 1561.575320 -147.458770 522.623470 1504.557250 358.232910 530.482300 1507.917970 -325.554900 518.255000 1471.969120 462.137760 495.041440 1476.082150 -426.382600 670.815610 1467.583130 686.652040 610.922730 1475.986820 711.411990 624.653930 1443.563480 -644.555600 551.991760 1447.399050 -664.159480 600.018550 39.589950 276.729430 594.312680 49.367710 167.934810 585.345090 39.916630 -201.712390 605.871150 51.618100 -101.061230 606.539370 1655.410030 126.796920 665.900940 1645.349980 1.277310 588.858400 1814.665280 30.966890
+110 1.817000 605.620610 1073.009160 157.819670 607.149410 1060.685550 -104.105690 408.157960 1079.647830 36.383840 542.589170 756.757870 224.299620 593.241820 682.071590 134.196610 522.168210 637.002620 226.670590 515.787170 768.324520 -168.066600 604.381100 718.562810 -111.840310 504.729000 658.975400 -160.311290 475.545010 553.575560 217.060850 469.184360 525.430910 98.443410 476.797850 528.669370 -150.112290 498.786770 519.827510 -36.230930 441.179780 469.311770 236.384540 513.348080 424.033750 184.283770 452.921480 384.093200 253.266220 467.709350 450.396580 -170.644170 516.941960 393.344330 -127.741230 445.835970 409.635160 -181.244920 437.642640 98.103900 255.550990 443.904910 103.604970 165.159610 442.973880 93.640570 -172.212040 464.960390 108.949800 -81.803170 366.636080 70.634160 210.276060 507.164220 80.186210 164.863010 509.374690 63.698520 272.909210 657.168270 50.652500 195.336900 371.709080 75.296380 -115.834820 544.812990 77.038730 -94.775080 524.038940 66.287350 -191.706280 654.515140 48.515610 -127.416310 605.661800 1425.842040 23.917620 487.249760 1550.240600 193.993990 485.842680 1561.543950 -147.449490 522.694580 1504.521970 358.268710 530.368900 1507.920040 -325.541600 518.265140 1471.912840 462.121060 494.874630 1476.168580 -426.413510 671.022830 1467.450680 686.589170 611.116330 1475.743530 711.342590 624.576480 1443.521240 -644.463750 551.945310 1447.380620 -664.077330 599.861020 39.618520 276.717070 594.317320 49.412280 167.902910 585.345090 39.916630 -201.712390 605.891970 51.580570 -101.093540 606.600400 1655.407230 126.771210 665.901120 1645.348270 1.277620 588.807130 1814.653930 30.956160
+111 1.833000 605.608700 1073.011350 157.816130 607.149110 1060.690190 -104.112550 408.141480 1079.639770 36.386520 542.587400 756.753600 224.294010 593.273190 682.070190 134.159670 522.183470 637.004820 226.656740 515.704410 768.271360 -168.037380 604.376160 718.595830 -111.833820 504.733920 658.973690 -160.315110 475.532260 553.550540 217.066190 469.163670 525.408140 98.446950 476.730560 528.657170 -150.095660 498.789550 519.825200 -36.231640 441.163790 469.289670 236.389620 513.356630 424.049680 184.291430 452.876280 384.095980 253.265260 467.689450 450.391300 -170.636830 516.962400 393.339110 -127.745590 445.856480 409.552920 -181.278460 437.653260 98.105830 255.573870 443.959990 103.567680 165.138370 442.973880 93.640570 -172.212040 464.960140 108.948650 -81.803760 366.610810 70.642360 210.271160 507.237550 80.203730 164.876080 509.389040 63.692430 272.919620 657.171140 50.652980 195.339610 371.604740 75.255580 -115.901700 544.812990 77.038730 -94.775080 524.024840 66.244670 -191.719650 654.533450 48.542730 -127.394850 605.577030 1425.793580 23.923630 487.205630 1550.214600 194.080060 485.874660 1561.509770 -147.443940 522.768920 1504.473880 358.328090 530.272890 1507.920530 -325.549710 518.264340 1471.900880 462.079320 494.774900 1476.176270 -426.427250 671.098140 1467.242680 686.576900 611.151490 1475.455080 711.294980 624.488650 1443.456790 -644.362120 551.903810 1447.359990 -663.992250 599.693970 39.644030 276.693880 594.315980 49.444340 167.882370 585.345090 39.916630 -201.712390 605.906740 51.556550 -101.107980 606.666630 1655.397830 126.756960 665.904300 1645.347050 1.282340 588.788020 1814.644410 30.994430
+112 1.850000 605.580080 1073.017090 157.810810 607.145320 1060.693970 -104.130170 408.120120 1079.622560 36.343900 542.760070 756.771910 224.300700 593.308590 682.067020 134.126330 522.190250 637.008910 226.647990 515.605040 768.185550 -168.008930 604.420100 718.640200 -111.793960 504.745390 658.977290 -160.316540 475.570680 553.526610 217.073380 469.164090 525.414790 98.438130 476.684140 528.639710 -150.089660 498.792270 519.822940 -36.232440 441.173280 469.251620 236.378110 513.366460 424.067170 184.323620 452.859800 384.090240 253.266800 467.670140 450.388120 -170.636920 516.968510 393.331540 -127.750690 445.873840 409.501710 -181.287900 437.658140 98.106710 255.584560 444.038970 103.538210 165.128690 442.973880 93.640570 -172.212040 464.963100 108.961710 -81.797070 366.589200 70.649370 210.266970 507.313390 80.261980 164.899570 509.415800 63.681500 272.941070 657.175840 50.653780 195.344130 371.481990 75.310470 -115.822720 544.812990 77.038730 -94.775080 523.985720 66.195120 -191.736250 654.565670 48.557720 -127.366170 605.463010 1425.731930 23.952120 487.185640 1550.194580 194.141450 485.885500 1561.480710 -147.434510 522.866520 1504.415890 358.400360 530.137760 1507.937260 -325.545230 518.288330 1471.898440 462.047300 494.704500 1476.108030 -426.416530 671.111270 1467.001460 686.583740 610.972960 1475.149410 711.295290 624.418460 1443.390870 -644.290650 551.867680 1447.334960 -663.918520 599.630920 39.657570 276.685060 594.302610 49.421920 167.898040 585.345090 39.916630 -201.712390 605.905400 51.560760 -101.100290 606.732790 1655.384890 126.752490 665.908080 1645.347050 1.287940 588.796140 1814.639770 31.070080
+113 1.867000 605.542600 1073.028080 157.811450 607.129940 1060.703610 -104.160660 408.092290 1079.603760 36.266820 542.992190 756.786250 224.299530 593.332150 682.059020 134.102390 522.192320 637.008480 226.645680 515.533020 768.098390 -167.998540 604.491210 718.685910 -111.735500 504.751130 658.992800 -160.317120 475.638730 553.519840 217.077770 469.170350 525.435180 98.422980 476.680390 528.625550 -150.111080 498.789760 519.825260 -36.231350 441.184420 469.200740 236.358230 513.366030 424.065890 184.363430 452.890170 384.069030 253.273330 467.655360 450.392460 -170.645420 516.964360 393.330810 -127.754330 445.911040 409.506990 -181.288830 437.651000 98.105440 255.569550 444.063630 103.527850 165.114820 442.973880 93.640570 -172.212040 464.973330 109.006630 -81.774040 366.578030 70.653000 210.264800 507.364720 80.330500 164.922500 509.433320 63.674440 272.958890 657.180730 50.654610 195.348820 371.350100 75.429340 -115.716450 544.812990 77.038730 -94.775080 523.915530 66.148360 -191.757830 654.562130 48.540280 -127.373880 605.332890 1425.662840 23.993950 487.205020 1550.166990 194.186770 485.856320 1561.461670 -147.415830 523.000180 1504.354860 358.469420 529.920780 1507.974490 -325.495730 518.376830 1471.876950 462.048370 494.604340 1475.988400 -426.381770 671.140870 1466.785890 686.566830 610.704770 1474.849850 711.319210 624.379820 1443.331540 -644.259520 551.833740 1447.296750 -663.838620 599.728580 39.649650 276.700230 594.270510 49.330630 167.952650 585.345090 39.916630 -201.712390 605.893010 51.582350 -101.083390 606.785580 1655.373660 126.753000 665.911070 1645.347660 1.292270 588.821530 1814.638060 31.163130
+114 1.883000 605.517210 1073.034670 157.816270 607.102170 1060.714970 -104.192520 408.054630 1079.587520 36.180320 543.164250 756.774720 224.275100 593.341490 682.040530 134.084610 522.195500 636.996700 226.649920 515.511350 768.043520 -168.009000 604.552000 718.726560 -111.689220 504.753600 659.007260 -160.328660 475.704500 553.533330 217.077300 469.172520 525.439210 98.419510 476.716340 528.612430 -150.147080 498.787200 519.827510 -36.230330 441.187230 469.143710 236.341230 513.354130 424.044430 184.385700 452.945770 384.026820 253.286670 467.651820 450.397370 -170.655410 516.957030 393.336090 -127.761180 445.947630 409.548800 -181.286610 437.641570 98.103740 255.549330 444.039060 103.518600 165.088990 442.973880 93.640570 -172.212040 464.987150 109.067270 -81.742960 366.578090 70.652980 210.264820 507.373500 80.372300 164.933320 509.434780 63.681370 272.963010 657.180420 50.654560 195.348530 371.238310 75.539090 -115.675840 544.812990 77.038730 -94.775080 523.766910 66.083020 -191.800920 654.509890 48.494060 -127.426930 605.221560 1425.603390 24.031240 487.256380 1550.126590 194.225590 485.788360 1561.454710 -147.390520 523.162350 1504.298100 358.529360 529.682980 1508.007930 -325.417850 518.555600 1471.814090 462.077180 494.467070 1475.834110 -426.322080 671.246150 1466.633540 686.503540 610.604000 1474.586790 711.324340 624.352910 1443.268920 -644.239200 551.789250 1447.235840 -663.711240 599.908390 39.621250 276.719150 594.208920 49.202850 168.016880 585.345090 39.916630 -201.712390 605.880550 51.601580 -101.074390 606.813960 1655.366940 126.754960 665.911440 1645.347530 1.292500 588.853330 1814.633790 31.254270
+115 1.900000 605.514530 1073.023190 157.814000 607.064030 1060.720700 -104.219730 408.007110 1079.575320 36.113900 543.238830 756.737000 224.229570 593.341670 682.016970 134.071210 522.200500 636.977420 226.658020 515.523990 768.032650 -168.027130 604.572510 718.762450 -111.680670 504.761020 659.012330 -160.365940 475.749360 553.554990 217.074080 469.180630 525.419490 98.435270 476.769100 528.598820 -150.168880 498.789760 519.825260 -36.231330 441.192170 469.097050 236.331920 513.341490 424.021510 184.382570 452.993840 383.978360 253.302200 467.653660 450.398220 -170.657580 516.949040 393.345460 -127.770160 445.932130 409.593140 -181.270890 437.645110 98.104330 255.555910 444.024380 103.507870 165.058140 442.973880 93.640570 -172.212040 464.997070 109.110900 -81.720600 366.589360 70.649320 210.267000 507.356930 80.384490 164.933270 509.421880 63.706910 272.950780 657.164980 50.651940 195.333720 371.193600 75.603390 -115.675030 544.812990 77.038730 -94.775080 523.599550 66.030380 -191.845050 654.441040 48.450210 -127.492270 605.154660 1425.566890 24.053870 487.317290 1550.079350 194.257810 485.702120 1561.459840 -147.367690 523.327580 1504.250120 358.581090 529.554260 1508.002440 -325.367890 518.803280 1471.709350 462.125760 494.312010 1475.675050 -426.240630 671.438290 1466.523190 686.407470 610.855160 1474.398190 711.293580 624.293520 1443.192990 -644.193180 551.707340 1447.146610 -663.489990 600.060240 39.587410 276.725860 594.100520 49.066110 168.066380 585.345090 39.916630 -201.712390 605.874450 51.609640 -101.074430 606.821530 1655.364140 126.756700 665.906010 1645.344360 1.283820 588.883790 1814.623050 31.329870
+116 1.917000 605.524540 1072.992800 157.799840 607.015320 1060.720950 -104.256610 407.949250 1079.566530 36.080930 543.245120 756.692930 224.182020 593.338560 681.998600 134.063340 522.205990 636.960330 226.665830 515.543580 768.055050 -168.040680 604.541140 718.787900 -111.718230 504.768650 659.019590 -160.430470 475.770480 553.571660 217.071030 469.207340 525.399230 98.456110 476.808530 528.590450 -150.164220 498.792330 519.822940 -36.232350 441.236910 469.075230 236.322780 513.336790 424.013550 184.354110 453.030730 383.956760 253.309200 467.647670 450.398830 -170.649570 516.940980 393.362060 -127.774390 445.844270 409.639130 -181.232420 437.663880 98.107600 255.593550 444.033720 103.517940 165.032730 442.973880 93.640570 -172.212040 465.000240 109.124860 -81.713450 366.610630 70.642420 210.271130 507.352260 80.389140 164.932680 509.392790 63.743390 272.924500 657.122250 50.644680 195.292680 371.232600 75.639280 -115.650550 544.812990 77.038730 -94.775080 523.542420 66.050370 -191.848270 654.395810 48.441020 -127.529330 605.123660 1425.548950 24.060850 487.372620 1550.033080 194.278320 485.621490 1561.468990 -147.354080 523.474490 1504.203980 358.620360 529.604310 1507.940430 -325.385380 519.047670 1471.590820 462.206510 494.143650 1475.555180 -426.147740 671.726810 1466.416630 686.296200 611.434390 1474.309080 711.242920 624.157840 1443.103880 -644.108340 551.557010 1447.040530 -663.173890 600.147400 39.562470 276.724330 593.933170 48.917900 168.100020 585.345090 39.916630 -201.712390 605.876220 51.608920 -101.069370 606.824340 1655.364380 126.757610 665.890750 1645.335690 1.260420 588.911070 1814.606570 31.382440
+117 1.933000 605.531560 1072.955690 157.780040 606.957460 1060.717160 -104.314640 407.876590 1079.562990 36.075240 543.225040 756.661130 224.149520 593.335820 681.989070 134.060440 522.213870 636.954220 226.668990 515.562070 768.092040 -168.048890 604.467220 718.792790 -111.789900 504.763520 659.043640 -160.500560 475.773770 553.578250 217.069630 469.246220 525.396360 98.467400 476.812260 528.591610 -150.142700 498.789730 519.825260 -36.231370 441.334500 469.077360 236.305630 513.339290 424.021060 184.305210 453.074830 383.976010 253.302810 467.631840 450.399200 -170.637730 516.935550 393.383940 -127.773890 445.723140 409.697810 -181.178730 437.685180 98.111250 255.634890 444.046260 103.548400 165.015240 442.973880 93.640570 -172.212040 464.997070 109.110910 -81.720590 366.635010 70.634510 210.275860 507.361540 80.393950 164.935040 509.356290 63.771620 272.895390 657.047490 50.632000 195.220950 371.296570 75.663380 -115.630810 544.812990 77.038730 -94.775080 523.617130 66.135700 -191.808520 654.394470 48.471630 -127.520590 605.102600 1425.536130 24.054830 487.421540 1549.989380 194.288570 485.561000 1561.465210 -147.350330 523.591430 1504.140630 358.645260 529.774780 1507.837040 -325.459630 519.217530 1471.492430 462.329680 493.966400 1475.498290 -426.060460 672.145690 1466.336300 686.162540 612.144100 1474.309080 711.198240 623.928220 1443.007080 -643.993770 551.324280 1446.952150 -662.855350 600.184690 39.549810 276.721890 593.717710 48.757050 168.123060 585.345090 39.916630 -201.712390 605.884640 51.604790 -101.047180 606.843690 1655.367680 126.757500 665.864140 1645.320680 1.220720 588.938660 1814.589360 31.408950
+118 1.950000 605.530270 1072.921510 157.759520 606.898010 1060.708980 -104.381450 407.791930 1079.569950 36.082640 543.203920 756.645870 224.134770 593.335020 681.986080 134.060530 522.230590 636.964050 226.663040 515.583370 768.126220 -168.053620 604.375730 718.782530 -111.867070 504.742370 659.080440 -160.546840 475.766330 553.574710 217.070160 469.274660 525.398620 98.472660 476.774290 528.599790 -150.114260 498.787170 519.827510 -36.230370 441.430690 469.089750 236.284880 513.343750 424.034150 184.258930 453.124850 384.014100 253.289840 467.613650 450.391940 -170.630070 516.934940 393.395690 -127.779810 445.629390 409.751710 -181.132310 437.694820 98.112790 255.651140 444.063420 103.571200 165.005830 442.973880 93.640570 -172.212040 464.987150 109.067280 -81.742950 366.649140 70.629920 210.278610 507.353240 80.388440 164.936480 509.333980 63.780240 272.877870 656.964050 50.617850 195.140850 371.316130 75.671170 -115.663380 544.812990 77.038730 -94.775080 523.724180 66.216420 -191.764790 654.428530 48.517550 -127.480200 605.073790 1425.521610 24.040510 487.470210 1549.948490 194.294950 485.520360 1561.441770 -147.353010 523.667660 1504.049560 358.662540 529.947200 1507.728760 -325.550510 519.295230 1471.430910 462.469570 493.804110 1475.494510 -426.002900 672.647580 1466.318120 686.016170 612.779910 1474.353270 711.169370 623.630620 1442.912230 -643.873900 551.024600 1446.907470 -662.669680 600.189450 39.546270 276.719790 593.508730 48.613620 168.136150 585.345090 39.916630 -201.712390 605.895200 51.602620 -101.010130 606.899900 1655.374760 126.756230 665.831480 1645.302000 1.172810 588.972170 1814.578130 31.408550
+119 1.967000 605.528500 1072.895020 157.741180 606.850220 1060.702150 -104.436320 407.716310 1079.589720 36.091340 543.190730 756.642150 224.131680 593.336240 681.986330 134.061940 522.267150 636.983220 226.645680 515.604680 768.150820 -168.051420 604.292790 718.781130 -111.922550 504.712740 659.115300 -160.559490 475.753300 553.563290 217.072300 469.272860 525.385560 98.479870 476.704900 528.612240 -150.084990 498.789730 519.825260 -36.231370 441.461700 469.096220 236.271610 513.347960 424.046720 184.237080 453.155090 384.046810 253.278520 467.594300 450.379970 -170.630550 516.930110 393.382720 -127.798260 445.595150 409.770420 -181.114940 437.686160 98.111240 255.632860 444.093140 103.580830 165.017750 442.973880 93.640570 -172.212040 464.973330 109.006650 -81.774020 366.647860 70.630330 210.278350 507.319490 80.372920 164.939150 509.333920 63.778830 272.875400 656.925660 50.611320 195.103960 371.299100 75.651860 -115.708920 544.812990 77.038730 -94.775080 523.780210 66.247900 -191.745380 654.465700 48.544030 -127.444480 605.029480 1425.504390 24.021920 487.529910 1549.911500 194.292880 485.491180 1561.412720 -147.356660 523.707700 1503.954100 358.678040 530.050840 1507.644900 -325.624420 519.310730 1471.404790 462.572570 493.678680 1475.521360 -426.001460 673.092160 1466.346070 685.902280 613.254820 1474.393310 711.147460 623.327390 1442.833620 -643.789430 550.699710 1446.896360 -662.667600 600.160580 39.548610 276.714110 593.398010 48.540060 168.136440 585.345090 39.916630 -201.712390 605.901790 51.605530 -100.973270 606.999210 1655.385500 126.753770 665.802800 1645.282350 1.128370 589.014710 1814.579220 31.380750
+120 1.983000 605.538640 1072.884770 157.732710 606.826780 1060.699950 -104.470040 407.685820 1079.615480 36.098380 543.185180 756.643550 224.133580 593.338620 681.987610 134.063580 522.326540 636.995480 226.618640 515.614070 768.163570 -168.040150 604.233520 718.801450 -111.949710 504.683380 659.141970 -160.552550 475.740140 553.549680 217.074950 469.242740 525.359990 98.485610 476.628810 528.628850 -150.066910 498.792330 519.822940 -36.232380 441.422390 469.087860 236.271760 513.353520 424.060000 184.234600 453.146790 384.070310 253.270680 467.569580 450.380580 -170.637680 516.903810 393.348450 -127.818650 445.601810 409.748050 -181.128980 437.661040 98.107320 255.592900 444.125180 103.596080 165.063780 442.973880 93.640570 -172.212040 464.963100 108.961730 -81.797050 366.644010 70.631580 210.277600 507.281650 80.360860 164.950100 509.343350 63.778310 272.881710 656.964050 50.617850 195.140850 371.291630 75.588480 -115.726130 544.812990 77.038730 -94.775080 523.770940 66.239940 -191.749600 654.480590 48.543190 -127.434810 604.967410 1425.484380 24.001620 487.609650 1549.879640 194.266690 485.468900 1561.397460 -147.357590 523.740540 1503.903080 358.690610 530.087400 1507.593510 -325.668000 519.302370 1471.404540 462.600370 493.587370 1475.565060 -426.072200 673.380920 1466.386350 685.851140 613.553220 1474.408080 711.124390 623.078000 1442.784300 -643.780270 550.397280 1446.893680 -662.775270 600.076780 39.555810 276.697690 593.435790 48.561000 168.122510 585.345090 39.916630 -201.712390 605.903690 51.610850 -100.948430 607.120180 1655.397220 126.750270 665.786990 1645.257690 1.088420 589.063660 1814.596440 31.324490
+121 2.000000 605.562870 1072.893430 157.733370 606.830260 1060.690920 -104.485920 407.719790 1079.637210 36.113320 543.183840 756.645630 224.135940 593.340090 681.989010 134.064680 522.386470 636.990970 226.588790 515.598940 768.151980 -168.024770 604.199950 718.823670 -111.960530 504.660190 659.160710 -160.544690 475.733980 553.542910 217.076280 469.204680 525.340150 98.483480 476.572940 528.642460 -150.066250 498.789760 519.825200 -36.231390 441.361660 469.071960 236.283040 513.357970 424.069030 184.234310 453.111660 384.083680 253.266570 467.543330 450.400790 -170.646910 516.854190 393.307890 -127.829770 445.603970 409.711120 -181.153340 437.629520 98.103300 255.563570 444.139740 103.613540 165.130800 442.973880 93.640570 -172.212040 464.960140 108.948650 -81.803760 366.651000 70.629300 210.278980 507.246370 80.354150 164.964900 509.353970 63.773440 272.893340 657.047490 50.632000 195.220950 371.315430 75.469410 -115.742460 544.812990 77.038730 -94.775080 523.672790 66.195030 -191.780650 654.483830 48.544850 -127.431850 604.897830 1425.464230 23.984170 487.699160 1549.856810 194.214750 485.452390 1561.395140 -147.357790 523.791630 1503.922120 358.693730 530.086730 1507.569340 -325.684660 519.293400 1471.418580 462.555820 493.510350 1475.623170 -426.214420 673.517880 1466.420410 685.848820 613.680850 1474.403200 711.097290 622.898560 1442.769040 -643.858830 550.145320 1446.886350 -662.880000 599.914250 39.568290 276.664060 593.575990 48.647060 168.100140 585.345090 39.916630 -201.712390 605.902770 51.615560 -100.936830 607.227720 1655.405520 126.744860 665.789920 1645.217770 1.041070 589.111270 1814.629390 31.238930
+122 2.017000 605.592650 1072.907710 157.727140 606.851750 1060.661380 -104.491040 407.791930 1079.650630 36.149810 543.183410 756.646300 224.136640 593.336430 681.990910 134.064120 522.410460 636.975100 226.569730 515.559880 768.107730 -168.012330 604.186890 718.823060 -111.967350 504.645840 659.171390 -160.543900 475.738340 553.548030 217.075260 469.173430 525.334050 98.474810 476.539860 528.640560 -150.072160 498.787260 519.827450 -36.230410 441.327060 469.064120 236.298970 513.353390 424.060520 184.232300 453.081850 384.079350 253.268190 467.528810 450.426940 -170.655780 516.807860 393.278080 -127.833330 445.578130 409.695250 -181.162310 437.603520 98.101500 255.574520 444.114230 103.609790 165.186750 442.973880 93.640570 -172.212040 464.960390 108.949720 -81.803210 366.666600 70.624240 210.282000 507.207950 80.344770 164.967670 509.369510 63.760190 272.908840 657.122250 50.644680 195.292680 371.378570 75.320110 -115.774890 544.812990 77.038730 -94.775080 523.508540 66.109250 -191.836010 654.498290 48.567800 -127.411980 604.840150 1425.449220 23.975910 487.781620 1549.846920 194.153750 485.442020 1561.384160 -147.361510 523.860170 1503.982420 358.678500 530.070310 1507.566410 -325.686430 519.290650 1471.436650 462.469330 493.430020 1475.695070 -426.413540 673.561580 1466.430300 685.858830 613.679570 1474.391850 711.062810 622.761780 1442.783690 -644.002080 549.944640 1446.873900 -662.918460 599.690060 39.584500 276.616640 593.741150 48.748650 168.086470 585.345090 39.916630 -201.712390 605.897890 51.621580 -100.936810 607.307680 1655.408080 126.734040 665.817260 1645.156740 0.976730 589.148800 1814.671630 31.125530
+123 2.033000 605.622190 1072.912110 157.708190 606.880860 1060.620000 -104.489270 407.861330 1079.656740 36.209480 543.182250 756.645080 224.135410 593.321960 681.993840 134.060180 522.382570 636.960750 226.574280 515.512760 768.042970 -168.007290 604.189820 718.805180 -111.974010 504.639190 659.176510 -160.548170 475.748720 553.560180 217.072830 469.149440 525.336910 98.464600 476.511260 528.623290 -150.075320 498.789890 519.825070 -36.231430 441.323150 469.066010 236.314150 513.338260 424.032960 184.234970 453.067810 384.055600 253.276030 467.533910 450.444490 -170.665010 516.796200 393.276980 -127.830170 445.540890 409.710080 -181.151790 437.589140 98.102130 255.618190 444.044920 103.585570 165.203280 442.973880 93.640570 -172.212040 464.959530 108.945980 -81.805120 366.685090 70.618240 210.285580 507.179690 80.338370 164.953580 509.383240 63.752100 272.918520 657.164980 50.651940 195.333720 371.456940 75.198100 -115.830260 544.812990 77.038730 -94.775080 523.427000 66.030270 -191.875200 654.517640 48.589510 -127.389200 604.805540 1425.442140 23.978670 487.854550 1549.850710 194.094710 485.440890 1561.350340 -147.368560 523.932190 1504.035520 358.638400 530.045350 1507.583250 -325.686430 519.292910 1471.451170 462.364840 493.346160 1475.771000 -426.632390 673.573360 1466.408330 685.850770 613.610900 1474.383180 711.021060 622.627870 1442.824710 -644.166690 549.783630 1446.860600 -662.900020 599.473940 39.599730 276.570470 593.893310 48.832630 168.101390 585.345090 39.916630 -201.712390 605.890260 51.628240 -100.945570 607.375000 1655.407350 126.712740 665.872560 1645.084960 0.903540 589.172610 1814.712280 30.989810
+124 2.050000 605.648680 1072.906010 157.693660 606.911560 1060.596800 -104.481320 407.915680 1079.659420 36.282070 543.180660 756.643190 224.133450 593.292050 681.997860 134.051300 522.320070 636.957400 226.599440 515.476810 767.979490 -168.011110 604.203130 718.787600 -111.978540 504.636470 659.181340 -160.552320 475.758180 553.571230 217.070630 469.131560 525.342160 98.456470 476.484220 528.606810 -150.080340 498.792450 519.822810 -36.232430 441.336580 469.067720 236.323200 513.321410 424.002780 184.241360 453.047210 384.020630 253.287890 467.553560 450.453340 -170.674420 516.820430 393.310330 -127.812580 445.524630 409.731780 -181.140150 437.589360 98.103650 255.653050 443.965450 103.569980 165.176860 442.973880 93.640570 -172.212040 464.958980 108.943640 -81.806320 366.706820 70.611180 210.289810 507.181400 80.350560 164.936830 509.378360 63.759620 272.912290 657.180420 50.654560 195.348530 371.491820 75.146800 -115.940060 544.812990 77.038730 -94.775080 523.524840 66.018200 -191.862530 654.515380 48.583150 -127.393300 604.791020 1425.441040 23.984670 487.914550 1549.872070 194.033520 485.449800 1561.307250 -147.373900 523.998230 1504.063960 358.571870 530.013180 1507.619140 -325.694430 519.298100 1471.456300 462.245510 493.275390 1475.833860 -426.813350 673.589360 1466.378420 685.811650 613.536870 1474.383060 710.974120 622.471680 1442.897340 -644.317440 549.645750 1446.861940 -662.877810 599.299380 39.611830 276.532960 594.025150 48.899020 168.138610 585.345090 39.916630 -201.712390 605.885250 51.629700 -100.959750 607.449040 1655.406370 126.679030 665.954280 1645.022950 0.842190 589.189270 1814.738770 30.841660
+125 2.067000 605.668760 1072.898070 157.693440 606.938600 1060.607670 -104.469560 407.964260 1079.665040 36.352770 543.181640 756.643620 224.133870 593.251220 682.000980 134.038070 522.255000 636.964660 226.628400 515.464780 767.942930 -168.019960 604.213130 718.764220 -111.973920 504.635470 659.185610 -160.551320 475.763640 553.577640 217.069350 469.125310 525.345890 98.452650 476.478760 528.603820 -150.086960 498.789700 519.825260 -36.231360 441.372190 469.070590 236.321760 513.312810 423.987060 184.242840 453.015630 383.984920 253.300140 467.575740 450.460720 -170.679840 516.857060 393.354550 -127.784770 445.541440 409.735900 -181.141340 437.605620 98.105110 255.653870 443.917690 103.578190 165.134050 442.973880 93.640570 -172.212040 464.960850 108.951760 -81.802160 366.722020 70.606250 210.292760 507.206730 80.376970 164.928630 509.358250 63.770630 272.897130 657.180730 50.654610 195.348820 371.477330 75.173870 -116.039310 544.812990 77.038730 -94.775080 523.681820 66.061260 -191.822110 654.489870 48.556140 -127.422420 604.788640 1425.440670 23.974910 487.952480 1549.918820 193.958500 485.465670 1561.276730 -147.372860 524.054200 1504.081300 358.482480 529.979000 1507.668820 -325.714970 519.306950 1471.446780 462.108730 493.229980 1475.877320 -426.918300 673.614320 1466.372680 685.744140 613.510010 1474.397090 710.918820 622.289790 1443.008060 -644.448550 549.502200 1446.909550 -662.889160 599.138000 39.622940 276.498230 594.133180 48.972780 168.162490 585.345090 39.916630 -201.712390 605.885380 51.623180 -100.980160 607.530090 1655.400880 126.637180 666.056760 1644.982540 0.805570 589.215940 1814.741090 30.693380
+126 2.083000 605.686890 1072.896610 157.690440 606.957950 1060.633300 -104.460460 408.016510 1079.674680 36.403290 543.190670 756.651550 224.141750 593.215880 681.999880 134.024770 522.209780 636.975220 226.648250 515.481690 767.957760 -168.026250 604.206850 718.719420 -111.955150 504.637270 659.181700 -160.539510 475.765660 553.580020 217.068880 469.135590 525.348330 98.452970 476.507140 528.610110 -150.082460 498.786620 519.828000 -36.230160 441.429110 469.085910 236.313130 513.315730 423.991300 184.234730 453.011080 383.962040 253.307500 467.586270 450.469270 -170.676930 516.886230 393.368870 -127.771880 445.569120 409.724670 -181.146850 437.633450 98.106910 255.639280 443.911830 103.588230 165.102710 442.973880 93.640570 -172.212040 464.962400 108.958560 -81.798680 366.710750 70.609910 210.290570 507.224730 80.385240 164.922560 509.347600 63.770810 272.890110 657.175840 50.653780 195.344130 371.466000 75.268120 -115.974970 544.812990 77.038730 -94.775080 523.692140 66.080410 -191.814220 654.475770 48.542760 -127.437920 604.793700 1425.434080 23.920760 487.965210 1549.993410 193.863430 485.483150 1561.263180 -147.366290 524.099550 1504.098510 358.379300 529.954770 1507.725950 -325.746580 519.326110 1471.422360 461.952790 493.204350 1475.913570 -426.951570 673.641050 1466.405400 685.659790 613.518010 1474.430540 710.854130 622.093080 1443.151980 -644.574830 549.326420 1447.023800 -662.922910 599.042910 39.629460 276.477720 594.211000 49.057810 168.156490 585.345090 39.916630 -201.712390 605.887080 51.613930 -101.009060 607.606570 1655.375240 126.590190 666.166320 1644.960450 0.790870 589.274110 1814.715450 30.556120
+127 2.100000 605.709840 1072.906010 157.671420 606.968630 1060.645390 -104.459660 408.076870 1079.684200 36.421810 543.214170 756.672670 224.162890 593.200990 681.994690 134.016880 522.191160 636.979370 226.658290 515.519650 768.026920 -168.023360 604.192500 718.662960 -111.928170 504.643740 659.162110 -160.509740 475.765720 553.580080 217.068860 469.158940 525.354370 98.453700 476.556370 528.615110 -150.062440 498.788330 519.826480 -36.230820 441.477260 469.112760 236.304640 513.326660 424.009640 184.221980 453.055600 383.963990 253.305770 467.575740 450.475650 -170.667590 516.899780 393.333530 -127.790950 445.572600 409.716980 -181.139500 437.663940 98.109510 255.637790 443.925960 103.571780 165.088320 442.973880 93.640570 -172.212040 464.961150 108.953140 -81.801460 366.670720 70.622910 210.282790 507.220430 80.352180 164.909650 509.357570 63.765260 272.897340 657.171140 50.652980 195.339610 371.479580 75.398690 -115.737370 544.812990 77.038730 -94.775080 523.521420 66.032780 -191.858440 654.500370 48.566390 -127.410820 604.806950 1425.414670 23.794870 487.950740 1550.084110 193.759030 485.492190 1561.259400 -147.361450 524.138490 1504.111210 358.274540 529.952510 1507.783940 -325.782990 519.369690 1471.394410 461.778440 493.184810 1475.960330 -426.938930 673.679020 1466.480960 685.567870 613.472410 1474.488530 710.788390 621.900510 1443.311770 -644.705080 549.127870 1447.184080 -662.948000 599.151670 39.621870 276.501040 594.255310 49.125660 168.141600 585.345090 39.916630 -201.712390 605.886350 51.609960 -101.043690 607.677190 1655.316770 126.528950 666.261900 1644.945190 0.787420 589.379210 1814.664430 30.436010
+128 2.117000 605.730650 1072.924680 157.655610 606.972960 1060.639040 -104.465540 408.139560 1079.688600 36.413530 543.254090 756.708560 224.198840 593.207580 681.992490 134.018260 522.199100 636.969420 226.664170 515.559630 768.123720 -168.009660 604.199220 718.624270 -111.901120 504.654570 659.128050 -160.458470 475.765110 553.579350 217.069020 469.189000 525.368960 98.451130 476.605010 528.615230 -150.039060 498.789920 519.825070 -36.231450 441.485810 469.135960 236.298830 513.338260 424.029910 184.216480 453.113490 383.987550 253.296840 467.552490 450.476840 -170.657410 516.895140 393.271940 -127.827220 445.540440 409.722990 -181.117020 437.688810 98.112300 255.651950 443.934300 103.534330 165.083770 442.973880 93.640570 -172.212040 464.959840 108.947400 -81.804400 366.622740 70.638480 210.273480 507.219910 80.295750 164.894680 509.372830 63.763730 272.909790 657.168270 50.652500 195.336900 371.498660 75.504570 -115.500760 544.812990 77.038730 -94.775080 523.344420 65.976510 -191.906510 654.548770 48.615010 -127.356640 604.830690 1425.381230 23.595210 487.920840 1550.167970 193.661190 485.480220 1561.262700 -147.367190 524.175480 1504.113280 358.177220 529.970460 1507.833860 -325.817140 519.452640 1471.379640 461.590150 493.161410 1476.024290 -426.904820 673.759220 1466.605100 685.465270 613.332030 1474.580930 710.723630 621.736080 1443.468510 -644.830630 548.942380 1447.351200 -662.965090 599.465820 39.600070 276.568450 594.271970 49.164500 168.131480 585.345090 39.916630 -201.712390 605.887390 51.608340 -101.077290 607.752010 1655.231930 126.435570 666.335330 1644.922120 0.783980 589.531740 1814.595210 30.331800
+129 2.133000 605.736760 1072.947390 157.670330 606.978940 1060.631590 -104.471740 408.186040 1079.686890 36.395630 543.301510 756.751340 224.241620 593.228820 682.001280 134.030350 522.229980 636.948430 226.669460 515.589290 768.203550 -167.993820 604.244020 718.620540 -111.873820 504.666660 659.090940 -160.394470 475.764530 553.578670 217.069150 469.221800 525.390690 98.446390 476.643950 528.610530 -150.024200 498.787230 519.827450 -36.230400 441.441310 469.142850 236.297360 513.346250 424.045410 184.224170 453.139220 384.016940 253.286620 467.536590 450.474520 -170.645900 516.874270 393.224760 -127.852010 445.493770 409.734010 -181.091570 437.704130 98.114360 255.668410 443.932920 103.508250 165.085360 442.973880 93.640570 -172.212040 464.961180 108.953250 -81.801390 366.586700 70.650180 210.266480 507.256590 80.255460 164.889500 509.378020 63.762670 272.916870 657.167180 50.652320 195.335850 371.506770 75.535770 -115.416840 544.812990 77.038730 -94.775080 523.278380 65.973340 -191.918690 654.591130 48.658490 -127.308900 604.860720 1425.343630 23.361880 487.912660 1550.220580 193.574200 485.442720 1561.274660 -147.388240 524.208070 1504.110720 358.088530 529.990970 1507.865230 -325.845340 519.573360 1471.386470 461.394810 493.128880 1476.097660 -426.865110 673.910950 1466.771120 685.349060 613.175960 1474.721070 710.650760 621.617800 1443.606570 -644.936830 548.789730 1447.506710 -663.022640 599.801270 39.576800 276.640470 594.273130 49.196420 168.111690 585.345090 39.916630 -201.712390 605.897400 51.598530 -101.103250 607.831480 1655.145020 126.304180 666.400510 1644.880620 0.771590 589.714720 1814.516720 30.235970
+130 2.150000 605.730770 1072.970460 157.710080 606.995060 1060.634520 -104.474130 408.198030 1079.683470 36.385220 543.341370 756.787350 224.277660 593.257570 682.020750 134.050310 522.276670 636.929870 226.673480 515.611270 768.224730 -167.991500 604.313230 718.642210 -111.844460 504.676640 659.063350 -160.335330 475.764160 553.578250 217.069230 469.252620 525.410400 98.444600 476.677460 528.599240 -150.019640 498.787200 519.827510 -36.230390 441.346500 469.134120 236.306820 513.352110 424.058690 184.235700 453.132840 384.037320 253.279820 467.539430 450.470890 -170.627720 516.846370 393.206970 -127.852680 445.463100 409.731350 -181.072480 437.711270 98.115450 255.679210 443.941380 103.514270 165.094100 442.973880 93.640570 -172.212040 464.962680 108.959860 -81.798010 366.568540 70.656070 210.262950 507.325960 80.254280 164.898180 509.380280 63.755200 272.918400 657.167110 50.652300 195.335770 371.509920 75.501400 -115.474400 544.812990 77.038730 -94.775080 523.221800 65.982720 -191.925230 654.614990 48.675640 -127.285100 604.881710 1425.313960 23.154940 487.953250 1550.230220 193.494690 485.391140 1561.290770 -147.423370 524.234010 1504.113530 358.006130 529.994080 1507.867550 -325.866360 519.698180 1471.407230 461.213900 493.086790 1476.167110 -426.827640 674.127750 1466.930050 685.236080 613.123230 1474.901730 710.567440 621.542420 1443.712280 -645.015750 548.668820 1447.653320 -663.173160 599.978270 39.564530 276.678500 594.269470 49.245960 168.068940 585.345090 39.916630 -201.712390 605.910710 51.583400 -101.113110 607.899900 1655.078740 126.158810 666.473020 1644.821660 0.746540 589.899780 1814.438600 30.139390
+131 2.167000 605.726140 1072.993160 157.744600 607.019780 1060.638670 -104.472530 408.179810 1079.681640 36.386680 543.364930 756.808590 224.299000 593.285340 682.039670 134.069350 522.327390 636.921510 226.675700 515.632750 768.177310 -168.008000 604.385800 718.663090 -111.814900 504.685060 659.046880 -160.294720 475.764010 553.578060 217.069260 469.276820 525.423220 98.446690 476.712550 528.582820 -150.022720 498.797360 519.818360 -36.234340 441.232940 469.120790 236.328400 513.354860 424.067350 184.238910 453.127960 384.043700 253.277620 467.559080 450.461790 -170.604890 516.824890 393.200990 -127.838910 445.465610 409.697480 -181.064670 437.713650 98.115880 255.684370 443.972140 103.546170 165.107060 442.973880 93.640570 -172.212040 464.961820 108.956050 -81.799960 366.567840 70.656300 210.262830 507.391020 80.276240 164.911900 509.393650 63.743790 272.920810 657.167420 50.652350 195.336030 371.546300 75.442270 -115.541890 544.812990 77.038730 -94.775080 523.080140 65.941640 -191.962420 654.616150 48.660500 -127.290530 604.872680 1425.290280 23.007280 488.021760 1550.206300 193.420230 485.349210 1561.297360 -147.465150 524.265870 1504.119380 357.930910 529.971370 1507.834840 -325.872770 519.789000 1471.428220 461.080720 493.045440 1476.220580 -426.797210 674.347840 1466.989990 685.157710 613.262080 1475.080570 710.480290 621.487920 1443.777220 -645.070070 548.579960 1447.791260 -663.402950 599.942810 39.567000 276.670900 594.266360 49.321120 168.006900 585.345090 39.916630 -201.712390 605.916560 51.575960 -101.100330 607.942260 1655.040160 126.037990 666.552190 1644.759520 0.712090 590.058900 1814.370120 30.037130
+132 2.183000 605.723510 1073.009890 157.760800 607.045470 1060.630980 -104.467480 408.164670 1079.677490 36.387770 543.373840 756.816710 224.307110 593.306880 682.045590 134.079240 522.365970 636.917660 226.678300 515.657470 768.094600 -168.032390 604.459720 718.661070 -111.780820 504.696320 659.033870 -160.276140 475.764010 553.578060 217.069270 469.294130 525.436580 98.444760 476.750150 528.567750 -150.031100 498.813780 519.803650 -36.240710 441.149660 469.108000 236.350130 513.349180 424.061310 184.236760 453.144780 384.042300 253.277980 467.589050 450.442690 -170.588880 516.819890 393.190060 -127.826970 445.501740 409.633120 -181.072720 437.712710 98.115910 255.686920 444.013610 103.587880 165.118620 442.973880 93.640570 -172.212040 464.961000 108.952490 -81.801790 366.586060 70.650400 210.266360 507.428280 80.281220 164.917790 509.414370 63.732150 272.924410 657.167660 50.652400 195.336320 371.644070 75.378070 -115.545250 544.812990 77.038730 -94.775080 522.993710 65.892620 -191.992810 654.588620 48.615960 -127.327800 604.819150 1425.260740 22.907760 488.064910 1550.173100 193.351780 485.334290 1561.283690 -147.501630 524.329830 1504.117800 357.863280 529.930480 1507.771480 -325.849550 519.849120 1471.443970 461.007570 493.023350 1476.249020 -426.779080 674.474790 1466.879640 685.140990 613.640560 1475.216060 710.393130 621.434880 1443.804930 -645.110230 548.527040 1447.903320 -663.626400 599.756470 39.579920 276.630890 594.265440 49.407580 167.939320 585.345090 39.916630 -201.712390 605.914790 51.581130 -101.069980 607.955510 1655.021610 125.956110 666.627990 1644.709720 0.674040 590.174620 1814.318730 29.931850
+133 2.200000 605.711610 1073.014280 157.768040 607.065980 1060.617070 -104.457900 408.187840 1079.663940 36.372670 543.374390 756.817200 224.307630 593.325130 682.039060 134.081330 522.382200 636.910100 226.682660 515.689510 768.034420 -168.052090 604.544980 718.639100 -111.730320 504.715360 659.020940 -160.271990 475.764040 553.578130 217.069260 469.309600 525.460270 98.432310 476.788760 528.559450 -150.043210 498.827640 519.791260 -36.246080 441.112850 469.084200 236.359700 513.337160 424.042510 184.241320 453.174100 384.040530 253.278640 467.624940 450.419310 -170.587200 516.839600 393.187160 -127.822570 445.562040 409.572630 -181.092450 437.706390 98.115490 255.689970 444.053860 103.626340 165.133530 442.973880 93.640570 -172.212040 464.962370 108.958440 -81.798740 366.626500 70.637260 210.274220 507.456670 80.258250 164.915420 509.427060 63.718880 272.922820 657.167850 50.652430 195.336500 371.745480 75.319690 -115.563880 544.812990 77.038730 -94.775080 523.201780 65.952480 -191.938350 654.536070 48.551420 -127.390090 604.726200 1425.221800 22.829490 488.042970 1550.153200 193.294020 485.341310 1561.248540 -147.522830 524.445740 1504.106930 357.797940 529.889530 1507.694210 -325.794010 519.905400 1471.456180 460.978180 493.030240 1476.246580 -426.776180 674.444150 1466.617680 685.193850 614.234130 1475.301640 710.306460 621.384950 1443.804570 -645.145940 548.508670 1447.959960 -663.753300 599.540890 39.594870 276.584590 594.266480 49.474990 167.883510 585.345090 39.916630 -201.712390 605.912410 51.594120 -101.036330 607.943910 1655.009640 125.892100 666.697080 1644.679440 0.634440 590.242680 1814.286500 29.832290
+134 2.217000 605.691830 1073.012080 157.766830 607.076420 1060.614870 -104.444510 408.256740 1079.637570 36.336970 543.372250 756.815000 224.305250 593.345210 682.031560 134.083510 522.384640 636.898130 226.685730 515.729000 768.038390 -168.062260 604.635010 718.619140 -111.665530 504.746150 659.008910 -160.270980 475.764070 553.578130 217.069240 469.329070 525.491640 98.414900 476.829470 528.557250 -150.058640 498.835240 519.784480 -36.249030 441.090300 469.039220 236.357940 513.332460 424.028810 184.254840 453.202450 384.036830 253.279800 467.667420 450.400700 -170.595600 516.891170 393.217860 -127.819540 445.635350 409.553680 -181.113800 437.690280 98.114280 255.694790 444.093840 103.646510 165.162410 442.973880 93.640570 -172.212040 464.962370 108.958490 -81.798710 366.685420 70.618130 210.285660 507.501400 80.243920 164.917050 509.425420 63.708610 272.913850 657.167970 50.652440 195.336560 371.760220 75.297970 -115.659610 544.812990 77.038730 -94.775080 523.763240 66.175060 -191.771770 654.479430 48.484380 -127.455160 604.621830 1425.181760 22.762160 487.958130 1550.153080 193.250760 485.349400 1561.192990 -147.527660 524.610780 1504.096190 357.729250 529.860290 1507.623660 -325.726900 519.960270 1471.465820 460.971370 493.058470 1476.210210 -426.789370 674.286740 1466.303470 685.288450 614.919980 1475.337400 710.225710 621.355900 1443.780760 -645.181150 548.519290 1447.935060 -663.742190 599.359860 39.607430 276.545750 594.268250 49.518760 167.843670 585.345090 39.916630 -201.712390 605.916630 51.603280 -101.008760 607.913270 1654.995000 125.815570 666.762570 1644.669430 0.593130 590.269710 1814.268800 29.747940
+135 2.233000 605.683410 1073.017820 157.745420 607.074340 1060.629150 -104.433520 408.349820 1079.605100 36.291310 543.370420 756.812810 224.302540 593.365600 682.028320 134.089370 522.402280 636.884340 226.681000 515.760560 768.093260 -168.062960 604.704160 718.613100 -111.610730 504.786290 658.994690 -160.270690 475.764100 553.578190 217.069240 469.351350 525.518490 98.403100 476.871800 528.557070 -150.076480 498.837770 519.782170 -36.250020 441.059300 468.984830 236.351700 513.348270 424.032870 184.267750 453.227140 384.027280 253.282460 467.716430 450.386840 -170.605960 516.966250 393.275730 -127.812790 445.716310 409.574310 -181.137340 437.661160 98.111920 255.699190 444.133360 103.636990 165.200010 442.973880 93.640570 -172.212040 464.957280 108.936150 -81.810170 366.742000 70.599760 210.296630 507.543580 80.268460 164.928120 509.413600 63.711730 272.901000 657.167970 50.652440 195.336580 371.703670 75.327950 -115.733810 544.812990 77.038730 -94.775080 524.441280 66.463300 -191.564350 654.444340 48.433530 -127.497900 604.541080 1425.149900 22.713230 487.851900 1550.162720 193.215840 485.341950 1561.113400 -147.523850 524.796750 1504.090820 357.660950 529.834780 1507.569340 -325.671230 519.998900 1471.471680 460.973850 493.092680 1476.133910 -426.823390 674.112790 1466.046510 685.370360 615.540280 1475.307010 710.165410 621.358340 1443.728880 -645.213990 548.552670 1447.817630 -663.607970 599.186580 39.619450 276.508510 594.270020 49.565930 167.807540 585.345090 39.916630 -201.712390 605.929990 51.598030 -100.987360 607.872380 1654.977780 125.715640 666.824040 1644.678100 0.551240 590.267520 1814.257570 29.684210
+136 2.250000 605.701170 1073.036990 157.707120 607.063350 1060.642940 -104.433850 408.433990 1079.582400 36.254300 543.370000 756.811460 224.300380 593.380190 682.021970 134.095840 522.468990 636.868350 226.662060 515.766850 768.141910 -168.057790 604.738100 718.613280 -111.587250 504.820710 658.973820 -160.276820 475.764100 553.578190 217.069240 469.369570 525.532840 98.400410 476.911130 528.555600 -150.094420 498.837650 519.782290 -36.249970 441.061130 468.942540 236.339000 513.385740 424.047910 184.270720 453.246610 384.014620 253.285860 467.760470 450.372310 -170.613980 517.037600 393.318910 -127.808240 445.800350 409.609470 -181.167830 437.625310 98.108630 255.695740 444.159300 103.608060 165.221850 442.973880 93.640570 -172.212040 464.949070 108.900080 -81.828650 366.766510 70.591810 210.301390 507.541380 80.309810 164.938190 509.396940 63.724950 272.886780 657.167970 50.652440 195.336560 371.673950 75.365930 -115.698370 544.812990 77.038730 -94.775080 524.848750 66.628970 -191.442110 654.439090 48.412940 -127.508610 604.501650 1425.127930 22.687940 487.777370 1550.167360 193.177930 485.315980 1561.009640 -147.523480 524.962710 1504.083010 357.605770 529.794680 1507.521000 -325.633910 520.017090 1471.474000 460.978490 493.115360 1476.013550 -426.887660 674.038390 1465.905760 685.394350 616.001460 1475.212520 710.146240 621.379270 1443.640990 -645.235720 548.600460 1447.619510 -663.412230 599.049500 39.628950 276.479100 594.271180 49.609700 167.778990 585.345090 39.916630 -201.712390 605.945310 51.581000 -100.979320 607.833440 1654.966060 125.605530 666.875790 1644.702640 0.506640 590.247190 1814.247310 29.641050
+137 2.267000 605.739560 1073.060790 157.672490 607.050540 1060.639040 -104.448890 408.484250 1079.579220 36.238090 543.370540 756.810910 224.299040 593.386410 682.004880 134.101700 522.588930 636.850040 226.627150 515.748230 768.143010 -168.051830 604.746950 718.610600 -111.595470 504.833770 658.947330 -160.293290 475.764100 553.578190 217.069240 469.382170 525.533690 98.406820 476.941650 528.552670 -150.109150 498.836700 519.783140 -36.249590 441.165310 468.921880 236.312150 513.434570 424.062100 184.260760 453.258180 384.004580 253.288530 467.785100 450.355320 -170.618610 517.080870 393.317810 -127.815600 445.877010 409.646510 -181.197070 437.602200 98.105850 255.678090 444.156070 103.581110 165.209230 442.973880 93.640570 -172.212040 464.942140 108.869670 -81.844240 366.746460 70.598320 210.297500 507.488220 80.323520 164.935360 509.380770 63.733170 272.873440 657.167910 50.652440 195.336550 371.704010 75.350560 -115.635240 544.812990 77.038730 -94.775080 524.756100 66.561340 -191.479520 654.449040 48.423150 -127.498670 604.497010 1425.110230 22.678820 487.759250 1550.160400 193.136470 485.274990 1560.896730 -147.538250 525.080260 1504.060180 357.572170 529.727540 1507.460820 -325.615050 520.021300 1471.474120 460.982030 493.103850 1475.859990 -426.986180 674.143550 1465.886470 685.333560 616.294190 1475.091060 710.181270 621.385440 1443.515010 -645.233400 548.648440 1447.373540 -663.231870 599.046510 39.629160 276.478450 594.271360 49.608410 167.779850 585.345090 39.916630 -201.712390 605.951480 51.563890 -101.006170 607.806030 1654.967040 125.505580 666.906490 1644.741460 0.449630 590.214600 1814.238650 29.615140
+138 2.283000 605.781800 1073.079350 157.654620 607.042050 1060.621700 -104.470310 408.491180 1079.588870 36.241170 543.370360 756.810850 224.299010 593.387510 681.981930 134.111820 522.723330 636.833980 226.583950 515.711430 768.103940 -168.046420 604.744320 718.603030 -111.623810 504.826970 658.925420 -160.322070 475.764100 553.578190 217.069240 469.394380 525.521180 98.425260 476.959470 528.549930 -150.118130 498.835820 519.783940 -36.249250 441.379910 468.920230 236.275330 513.480290 424.080380 184.236680 453.262630 383.999360 253.289920 467.793430 450.341340 -170.622560 517.089900 393.288300 -127.833610 445.947630 409.679780 -181.215580 437.609410 98.105490 255.655170 444.138240 103.560230 165.168010 442.973880 93.640570 -172.212040 464.938350 108.852980 -81.852790 366.701020 70.613080 210.288680 507.418790 80.301190 164.921600 509.370000 63.736190 272.864590 657.167910 50.652440 195.336530 371.736880 75.288660 -115.642070 544.812990 77.038730 -94.775080 524.247680 66.319020 -191.643480 654.460820 48.447250 -127.483360 604.506040 1425.091060 22.670960 487.775420 1550.147950 193.097290 485.222380 1560.799930 -147.573030 525.153810 1504.021240 357.556430 529.629640 1507.383790 -325.619570 520.019290 1471.473630 460.983830 493.042850 1475.700560 -427.106540 674.461980 1465.973750 685.175960 616.448850 1474.980590 710.256230 621.344850 1443.357670 -645.203130 548.678160 1447.121220 -663.118770 599.152100 39.621840 276.501130 594.270690 49.571240 167.804890 585.345090 39.916630 -201.712390 605.942380 51.555670 -101.076480 607.791320 1654.978640 125.430040 666.900090 1644.795780 0.366560 590.169070 1814.237430 29.602500
+139 2.300000 605.818360 1073.090090 157.650100 607.039610 1060.613530 -104.484470 408.461210 1079.601810 36.256090 543.366820 756.810790 224.301610 593.384340 681.966000 134.126280 522.826480 636.824160 226.546550 515.660280 768.058960 -168.039090 604.725770 718.587830 -111.666760 504.813510 658.923340 -160.370180 475.764100 553.578190 217.069240 469.409120 525.499330 98.453820 476.963990 528.548770 -150.120650 498.835300 519.784360 -36.249060 441.627230 468.929750 236.245290 513.513370 424.115110 184.198140 453.262940 383.997740 253.290330 467.800600 450.340180 -170.631090 517.071170 393.266270 -127.851390 446.027770 409.696930 -181.230320 437.641750 98.107900 255.645480 444.136990 103.536700 165.114690 442.973880 93.640570 -172.212040 464.937070 108.847370 -81.855670 366.663120 70.625370 210.281330 507.362180 80.271840 164.907590 509.364650 63.750000 272.861110 657.167910 50.652440 195.336530 371.729770 75.248540 -115.673750 544.812990 77.038730 -94.775080 523.589420 66.049410 -191.841570 654.485720 48.477810 -127.455800 604.502440 1425.070190 22.649390 487.787450 1550.139160 193.056820 485.164760 1560.736080 -147.622410 525.205870 1503.980470 357.550380 529.507630 1507.296260 -325.652280 520.015930 1471.473020 460.984340 492.941130 1475.570070 -427.218720 674.949400 1466.145510 684.950930 616.496640 1474.892210 710.331120 621.246770 1443.180180 -645.160030 548.670840 1446.905150 -663.094670 599.224850 39.616790 276.516750 594.269590 49.556060 167.822620 585.345090 39.916630 -201.712390 605.919310 51.559410 -101.160740 607.781740 1654.994750 125.385220 666.846500 1644.863650 0.249140 590.106690 1814.250980 29.599600
+140 2.317000 605.852110 1073.093630 157.647920 607.040160 1060.625850 -104.486140 408.414830 1079.617190 36.277250 543.356690 756.810490 224.308580 593.373780 681.964110 134.132350 522.882200 636.816770 226.524990 515.609010 768.037290 -168.028820 604.677250 718.561040 -111.728910 504.800290 658.945740 -160.444380 475.764100 553.578190 217.069240 469.423070 525.477290 98.482040 476.954770 528.550170 -150.116260 498.835110 519.784550 -36.248990 441.821900 468.935940 236.228670 513.532290 424.152860 184.151580 453.261750 383.997990 253.290250 467.806610 450.355680 -170.644760 517.034360 393.260410 -127.862550 446.108550 409.692050 -181.251300 437.677120 98.111370 255.653870 444.142090 103.510000 165.061370 442.973880 93.640570 -172.212040 464.937130 108.847630 -81.855530 366.647460 70.630460 210.278270 507.313900 80.251360 164.896790 509.360870 63.777710 272.859830 657.167910 50.652440 195.336530 371.700290 75.251080 -115.666540 544.812990 77.038730 -94.775080 523.027710 65.853680 -191.999560 654.536560 48.522650 -127.402880 604.465820 1425.046260 22.605730 487.784000 1550.135990 193.006640 485.115690 1560.698730 -147.674560 525.246520 1503.953860 357.548430 529.377870 1507.192380 -325.705600 520.013430 1471.472660 460.984220 492.814120 1475.497680 -427.294130 675.471440 1466.353520 684.733580 616.456300 1474.815550 710.370180 621.100590 1442.982670 -645.132690 548.620060 1446.747070 -663.165410 599.223820 39.616860 276.516510 594.268370 49.576610 167.823900 585.345090 39.916630 -201.712390 605.889890 51.573950 -101.212960 607.763310 1655.015990 125.368170 666.752140 1644.938480 0.105730 590.027710 1814.284550 29.602790
+141 2.333000 605.886230 1073.089230 157.636340 607.039610 1060.644170 -104.481690 408.377080 1079.637450 36.299790 543.338870 756.809690 224.320620 593.357970 681.972110 134.119810 522.901550 636.805600 226.519350 515.581910 768.044740 -168.020080 604.603030 718.530270 -111.807380 504.784240 658.978390 -160.533170 475.764100 553.578190 217.069240 469.432400 525.462400 98.501070 476.929570 528.555110 -150.103740 498.835110 519.784550 -36.248990 441.939580 468.925080 236.216190 513.536930 424.159970 184.110260 453.260530 383.998750 253.290050 467.794040 450.379940 -170.656430 516.989440 393.250090 -127.868060 446.150210 409.675380 -181.273650 437.698030 98.113970 255.671740 444.117650 103.491150 165.023280 442.973880 93.640570 -172.212040 464.937620 108.849760 -81.854440 366.641820 70.632290 210.277180 507.263700 80.226740 164.884720 509.354370 63.802500 272.855650 657.167910 50.652440 195.336530 371.668210 75.239170 -115.676740 544.812990 77.038730 -94.775080 522.707580 65.748560 -192.087520 654.597530 48.575910 -127.338370 604.393490 1425.014160 22.544670 487.779570 1550.132930 192.948610 485.092010 1560.667720 -147.721450 525.269040 1503.947510 357.547700 529.251100 1507.052730 -325.760890 520.012210 1471.472410 460.983950 492.657230 1475.492920 -427.329530 675.879030 1466.524660 684.586910 616.346070 1474.738040 710.364260 620.918330 1442.747920 -645.147090 548.543700 1446.621580 -663.312070 599.243040 39.615530 276.520660 594.267150 49.587060 167.829730 585.345090 39.916630 -201.712390 605.863280 51.597060 -101.211880 607.720400 1655.053710 125.367710 666.636960 1645.014890 -0.039490 589.940980 1814.338750 29.607570
+142 2.350000 605.913390 1073.075560 157.609160 607.037660 1060.649410 -104.479700 408.364320 1079.658570 36.317100 543.318910 756.808780 224.334000 593.343810 681.981570 134.096010 522.902160 636.791990 226.522890 515.589480 768.065430 -168.020480 604.527280 718.510500 -111.883870 504.761510 659.005980 -160.607530 475.764100 553.578190 217.069240 469.436490 525.455810 98.509470 476.889040 528.563600 -150.083470 498.835170 519.784480 -36.249010 441.997380 468.899990 236.202800 513.524050 424.128660 184.090880 453.259800 383.999390 253.289890 467.755220 450.397800 -170.657640 516.948790 393.227810 -127.867940 446.126010 409.661470 -181.286350 437.698730 98.114960 255.693390 444.071410 103.495830 165.015950 442.973880 93.640570 -172.212040 464.938050 108.851680 -81.853450 366.631840 70.635530 210.275250 507.218510 80.193720 164.871140 509.343690 63.811080 272.846470 657.167910 50.652440 195.336530 371.616910 75.186190 -115.767770 544.812990 77.038730 -94.775080 522.670840 65.720590 -192.102750 654.640140 48.624370 -127.288470 604.301150 1424.972050 22.481330 487.782440 1550.124880 192.895750 485.099790 1560.629390 -147.767880 525.261470 1503.956050 357.548430 529.128780 1506.875490 -325.804630 520.011840 1471.472410 460.983730 492.466280 1475.524050 -427.341310 676.106140 1466.603760 684.510990 616.200870 1474.663450 710.328190 620.705990 1442.458740 -645.209470 548.456300 1446.478030 -663.485410 599.374450 39.606410 276.548860 594.265930 49.546350 167.860790 585.345090 39.916630 -201.712390 605.845340 51.624080 -101.168330 607.646730 1655.120120 125.369690 666.521790 1645.088500 -0.167190 589.863590 1814.408810 29.608480
+143 2.367000 605.921810 1073.056640 157.575120 607.037780 1060.642700 -104.481920 408.378850 1079.671630 36.323520 543.309690 756.808350 224.340150 593.335270 681.987980 134.075210 522.896360 636.781920 226.528410 515.620540 768.085140 -168.032350 604.471440 718.508240 -111.940040 504.737820 659.027830 -160.647250 475.764100 553.578190 217.069240 469.436130 525.455990 98.509120 476.843230 528.573490 -150.060440 498.835240 519.784480 -36.249030 442.009220 468.879390 236.196110 513.495850 424.088870 184.102510 453.259490 383.999690 253.289810 467.704860 450.400240 -170.646960 516.927060 393.216550 -127.861050 446.048030 409.665590 -181.282470 437.681000 98.114440 255.717390 444.043520 103.531560 165.038940 442.973880 93.640570 -172.212040 464.938290 108.852770 -81.852900 366.622010 70.638720 210.273350 507.181550 80.172650 164.861510 509.335210 63.804180 272.838130 657.167910 50.652440 195.336530 371.537930 75.159690 -115.860440 544.812990 77.038730 -94.775080 522.864690 65.769520 -192.054230 654.648990 48.668570 -127.264100 604.209660 1424.925540 22.428660 487.791990 1550.110600 192.858400 485.120670 1560.583010 -147.832610 525.211980 1503.967160 357.553310 529.019040 1506.692020 -325.835300 520.011960 1471.472530 460.983610 492.277040 1475.517580 -427.345490 676.176570 1466.590090 684.464420 616.063480 1474.610350 710.282840 620.479370 1442.130740 -645.300900 548.344360 1446.292240 -663.630680 599.620360 39.589360 276.601650 594.264470 49.456950 167.917910 585.345090 39.916630 -201.712390 605.838620 51.645730 -101.109680 607.557250 1655.214110 125.360340 666.418950 1645.150510 -0.277460 589.813480 1814.485230 29.600180
+144 2.383000 605.912600 1073.043210 157.552660 607.042600 1060.638920 -104.484910 408.416960 1079.672850 36.317120 543.318910 756.808780 224.334000 593.331970 681.990970 134.063520 522.890320 636.779360 226.531720 515.658940 768.100280 -168.050230 604.445310 718.516540 -111.967590 504.724120 659.048160 -160.652150 475.764100 553.578190 217.069240 469.431640 525.462100 98.500930 476.808530 528.581120 -150.042950 498.835270 519.784420 -36.249040 441.968110 468.876280 236.203740 513.464110 424.065670 184.133380 453.259490 383.999690 253.289810 467.661190 450.395750 -170.631520 516.932620 393.235080 -127.852440 445.948120 409.699580 -181.257160 437.653350 98.112880 255.737200 444.035680 103.588460 165.076190 442.973880 93.640570 -172.212040 464.938390 108.853170 -81.852690 366.624050 70.638050 210.273740 507.146300 80.179140 164.858990 509.341830 63.781730 272.842560 657.167910 50.652440 195.336530 371.463990 75.230080 -115.836810 544.812990 77.038730 -94.775080 523.165590 65.891800 -191.963990 654.628970 48.709100 -127.261600 604.136470 1424.879640 22.391060 487.817290 1550.091550 192.834840 485.119930 1560.531980 -147.939820 525.120790 1503.971800 357.563320 528.937560 1506.543210 -325.856230 520.012150 1471.472530 460.983610 492.153470 1475.406620 -427.357850 676.145320 1466.532350 684.418090 615.960750 1474.591550 710.237610 620.276670 1441.819340 -645.393980 548.201720 1446.076900 -663.712460 599.891480 39.570560 276.659880 594.263120 49.353400 167.980440 585.345090 39.916630 -201.712390 605.840580 51.655020 -101.065670 607.482240 1655.316280 125.328030 666.336000 1645.192140 -0.375050 589.800230 1814.555790 29.579150
+145 2.400000 605.897340 1073.042480 157.551500 607.050480 1060.637080 -104.488960 408.473690 1079.666140 36.300460 543.338930 756.809690 224.320650 593.331540 681.991700 134.059280 522.885560 636.786380 226.531160 515.695560 768.101070 -168.067260 604.449220 718.516850 -111.966930 504.723510 659.060790 -160.627170 475.764100 553.578190 217.069240 469.422760 525.474060 98.484860 476.795990 528.583740 -150.036670 498.835270 519.784420 -36.249050 441.859070 468.890410 236.223450 513.435240 424.050260 184.164720 453.259640 383.999570 253.289860 467.630190 450.398160 -170.619380 516.958370 393.267360 -127.850620 445.850980 409.750610 -181.214770 437.629390 98.110820 255.738170 444.007690 103.647670 165.107930 442.973880 93.640570 -172.212040 464.938390 108.853210 -81.852670 366.636170 70.634120 210.276090 507.116000 80.204550 164.861800 509.374150 63.737650 272.868960 657.167910 50.652440 195.336530 371.429810 75.361960 -115.740610 544.812990 77.038730 -94.775080 523.418700 66.038460 -191.873980 654.594910 48.730760 -127.276410 604.094360 1424.833980 22.369020 487.862820 1550.071040 192.818630 485.078370 1560.477540 -148.097520 525.014650 1503.972900 357.573360 528.891420 1506.446900 -325.871730 520.012330 1471.472530 460.983610 492.133970 1475.183350 -427.394230 676.059940 1466.496460 684.378300 615.898740 1474.606930 710.187010 620.135310 1441.582280 -645.471680 548.050660 1445.854000 -663.727660 600.090090 39.556790 276.702510 594.262820 49.267400 168.025330 585.345090 39.916630 -201.712390 605.848210 51.651440 -101.045230 607.446660 1655.404910 125.268190 666.282230 1645.211060 -0.451650 589.820370 1814.608150 29.545070
+146 2.417000 605.880550 1073.051880 157.568890 607.054080 1060.618900 -104.497700 408.530790 1079.659550 36.282410 543.356810 756.810550 224.308700 593.331910 681.991760 134.058690 522.881530 636.803710 226.526570 515.725890 768.078670 -168.078980 604.471130 718.494810 -111.946240 504.734280 659.053100 -160.573260 475.764100 553.578190 217.069240 469.410980 525.489870 98.463560 476.805480 528.580570 -150.041810 498.835270 519.784420 -36.249050 441.698850 468.919130 236.247420 513.402340 424.026150 184.192230 453.259740 383.999450 253.289890 467.613770 450.403900 -170.611740 516.989750 393.284270 -127.857120 445.767430 409.780300 -181.175630 437.613950 98.108320 255.711490 443.949430 103.692520 165.122340 442.973880 93.640570 -172.212040 464.938390 108.853190 -81.852680 366.642490 70.632070 210.277310 507.103880 80.233310 164.867600 509.426570 63.681870 272.912960 657.167910 50.652440 195.336530 371.448700 75.448590 -115.709470 544.812990 77.038730 -94.775080 523.494320 66.123990 -191.833680 654.551700 48.709010 -127.314620 604.077270 1424.791380 22.359990 487.903050 1550.056640 192.810390 485.015530 1560.424680 -148.275330 524.935730 1503.979490 357.575100 528.871640 1506.391480 -325.887540 520.012450 1471.472530 460.983610 492.198300 1474.909060 -427.454530 675.949340 1466.534910 684.373290 615.873410 1474.654790 710.121150 620.063780 1441.443600 -645.533630 547.909480 1445.637820 -663.707340 600.183780 39.550290 276.722630 594.263370 49.214980 168.045430 585.345090 39.916630 -201.712390 605.862730 51.637940 -101.029130 607.460390 1655.469360 125.191140 666.262330 1645.210690 -0.497920 589.859800 1814.632930 29.500760
+147 2.433000 605.859680 1073.064820 157.597080 607.045100 1060.586300 -104.507330 408.565220 1079.659550 36.273140 543.367070 756.811040 224.301860 593.331970 681.991820 134.058640 522.877750 636.827390 226.519500 515.747440 768.048100 -168.082870 604.494690 718.463260 -111.912540 504.755770 659.021610 -160.493790 475.764100 553.578190 217.069240 469.400670 525.503660 98.444970 476.826660 528.572940 -150.053560 498.835270 519.784420 -36.249050 441.545560 468.957150 236.269200 513.362670 423.997860 184.218990 453.259740 383.999600 253.289840 467.614990 450.397740 -170.603810 517.018310 393.281370 -127.864160 445.699220 409.758510 -181.157640 437.597110 98.105000 255.668670 443.913150 103.713360 165.123150 442.973880 93.640570 -172.212040 464.938420 108.853260 -81.852650 366.633820 70.634890 210.275630 507.121800 80.262180 164.876940 509.472410 63.647570 272.952550 657.167910 50.652440 195.336530 371.519680 75.437130 -115.758840 544.812990 77.038730 -94.775080 523.398860 66.113360 -191.853240 654.488220 48.622810 -127.392500 604.051880 1424.763550 22.354750 487.903050 1550.056150 192.814970 484.974300 1560.388430 -148.419170 524.907230 1503.996580 357.563200 528.859310 1506.356810 -325.907560 520.012450 1471.472530 460.983550 492.288570 1474.675780 -427.521180 675.815060 1466.647580 684.424870 615.879150 1474.733640 710.040040 620.043270 1441.387570 -645.591490 547.783390 1445.445920 -663.685730 600.181030 39.550480 276.722050 594.263920 49.208060 168.044050 585.345090 39.916630 -201.712390 605.881290 51.622850 -101.001690 607.518680 1655.507080 125.120190 666.266300 1645.196290 -0.522490 589.902040 1814.625980 29.450780
+148 2.450000 605.838200 1073.075930 157.625060 607.026730 1060.572020 -104.507480 408.575100 1079.668700 36.274970 543.370790 756.811220 224.299390 593.331360 681.992000 134.057710 522.875240 636.845640 226.513820 515.764280 768.040890 -168.080250 604.519040 718.448430 -111.862460 504.782500 658.977050 -160.405320 475.764100 553.578190 217.069240 469.396610 525.509030 98.437680 476.841640 528.564150 -150.063160 498.835270 519.784420 -36.249040 441.455380 468.992710 236.283000 513.326600 423.977940 184.241500 453.259430 384.000310 253.289600 467.630580 450.375980 -170.593430 517.040340 393.280210 -127.863690 445.648440 409.692080 -181.157810 437.575260 98.101420 255.629850 443.947510 103.711140 165.121690 442.973880 93.640570 -172.212040 464.938450 108.853440 -81.852550 366.621830 70.638790 210.273300 507.175320 80.297130 164.891980 509.482510 63.659160 272.962680 657.167910 50.652440 195.336530 371.596830 75.376710 -115.810500 544.812990 77.038730 -94.775080 523.311830 66.071580 -191.881410 654.394350 48.473460 -127.517330 603.988950 1424.764160 22.342570 487.864930 1550.067020 192.829130 484.976500 1560.382930 -148.496630 524.916020 1504.022580 357.536320 528.837830 1506.330930 -325.932830 520.012510 1471.472290 460.983370 492.355990 1474.548580 -427.583160 675.638920 1466.770140 684.528380 615.907960 1474.828610 709.957210 620.047910 1441.380250 -645.656560 547.680420 1445.320070 -663.672970 600.086730 39.557020 276.701780 594.263790 49.251900 168.023010 585.345090 39.916630 -201.712390 605.894960 51.614940 -100.972050 607.599790 1655.517460 125.074350 666.276790 1645.172000 -0.540890 589.935790 1814.589110 29.400100
+149 2.467000 605.822690 1073.082400 157.643830 607.013240 1060.599730 -104.494450 408.578250 1079.684450 36.281410 543.370850 756.811220 224.299350 593.330930 681.991460 134.056430 522.875610 636.845950 226.513570 515.783080 768.066650 -168.076490 604.556090 718.458370 -111.793920 504.809630 658.928960 -160.336750 475.764100 553.578190 217.069240 469.400630 525.503660 98.444950 476.838710 528.558410 -150.064160 498.835270 519.784420 -36.249040 441.436610 469.012390 236.285310 513.304570 423.968840 184.253940 453.258730 384.001830 253.289090 467.651090 450.347690 -170.585160 517.051450 393.295810 -127.856120 445.622530 409.620120 -181.161270 437.563660 98.099150 255.600910 444.023440 103.696010 165.122090 442.973880 93.640570 -172.212040 464.938480 108.853520 -81.852510 366.625270 70.637660 210.273970 507.254580 80.338880 164.911760 509.452060 63.703270 272.937960 657.167910 50.652440 195.336530 371.616180 75.349290 -115.820430 544.812990 77.038730 -94.775080 523.379460 66.075290 -191.868770 654.283020 48.302850 -127.664380 603.899050 1424.793700 22.322190 487.827300 1550.077150 192.840290 485.002810 1560.401730 -148.514400 524.927920 1504.051030 357.495210 528.803470 1506.310550 -325.964230 520.012450 1471.471920 460.983120 492.382690 1474.537230 -427.648530 675.409550 1466.831180 684.657410 615.930600 1474.923950 709.882320 620.057370 1441.393310 -645.723390 547.614140 1445.306640 -663.663210 599.902530 39.569790 276.662260 594.263850 49.333620 167.981540 585.345090 39.916630 -201.712390 605.901860 51.612580 -100.954490 607.667790 1655.504520 125.054010 666.287050 1645.139770 -0.556150 589.957400 1814.529790 29.353270
+150 2.483000 605.814760 1073.084720 157.652050 607.012210 1060.652950 -104.475830 408.591740 1079.696660 36.283280 543.369690 756.811160 224.300130 593.332520 681.988710 134.057650 522.878720 636.828370 226.518770 515.797610 768.096980 -168.073550 604.606810 718.482850 -111.720500 504.839630 658.877440 -160.307420 475.764100 553.578190 217.069240 469.410710 525.490170 98.463130 476.826690 528.558040 -150.059560 498.835270 519.784420 -36.249040 441.445770 469.005980 236.279620 513.298650 423.966000 184.256030 453.257690 384.003970 253.288380 467.669190 450.321320 -170.583620 517.050230 393.315000 -127.847650 445.626920 409.577180 -181.158520 437.575530 98.099210 255.578060 444.060490 103.683040 165.120590 442.973880 93.640570 -172.212040 464.938390 108.853120 -81.852720 366.648770 70.630040 210.278530 507.325650 80.374150 164.928960 509.403930 63.742820 272.896580 657.167910 50.652440 195.336530 371.597600 75.386800 -115.740460 544.812990 77.038730 -94.775080 523.543460 66.115850 -191.827960 654.190190 48.173180 -127.783360 603.820430 1424.833250 22.302260 487.817200 1550.077760 192.837770 485.021300 1560.418210 -148.498090 524.912050 1504.076420 357.443420 528.766170 1506.293820 -326.006200 520.012270 1471.471680 460.982910 492.373170 1474.609500 -427.728390 675.135620 1466.800900 684.784180 615.905640 1475.024900 709.811890 620.058290 1441.415530 -645.773010 547.602720 1445.397580 -663.650090 599.668950 39.585990 276.612090 594.264950 49.420640 167.927400 585.345090 39.916630 -201.712390 605.906310 51.608790 -100.953160 607.690430 1655.475710 125.046900 666.300660 1645.099490 -0.564590 589.968510 1814.459590 29.314020
+151 2.500000 605.812130 1073.084470 157.653400 607.018190 1060.698000 -104.461590 408.618840 1079.696780 36.276080 543.368590 756.811100 224.300870 593.338750 681.982060 134.066450 522.882390 636.805480 226.525680 515.792600 768.105530 -168.066300 604.654240 718.510250 -111.663090 504.869480 658.830930 -160.307800 475.764100 553.578190 217.069240 469.421940 525.475160 98.483380 476.823000 528.561830 -150.057310 498.835270 519.784420 -36.249040 441.433200 468.973300 236.275250 513.306820 423.964870 184.252300 453.256930 384.005400 253.287900 467.681790 450.301730 -170.587310 517.041200 393.311250 -127.841280 445.656250 409.563750 -181.152570 437.605100 98.101300 255.566570 444.026060 103.684500 165.117690 442.973880 93.640570 -172.212040 464.938050 108.851620 -81.853490 366.679990 70.619900 210.284590 507.356840 80.388490 164.936220 509.366270 63.752690 272.862370 657.167910 50.652440 195.336530 371.612060 75.464910 -115.526110 544.812990 77.038730 -94.775080 523.693480 66.149450 -191.791750 654.149540 48.121330 -127.833950 603.771300 1424.859860 22.289250 487.827060 1550.070070 192.819260 485.018460 1560.415280 -148.472290 524.857240 1504.105100 357.389250 528.739620 1506.276860 -326.065670 520.011960 1471.471800 460.983120 492.342990 1474.713620 -427.815430 674.855650 1466.683840 684.879820 615.826900 1475.141970 709.741820 620.043580 1441.448120 -645.792660 547.661870 1445.527710 -663.633060 599.481630 39.598980 276.571870 594.266910 49.473860 167.882430 585.345090 39.916630 -201.712390 605.910520 51.600950 -100.965950 607.660580 1655.436400 125.043000 666.319210 1645.054080 -0.569460 589.972290 1814.390500 29.284380
+152 2.517000 605.812810 1073.083860 157.651960 607.024410 1060.721680 -104.454730 408.646120 1079.683470 36.263230 543.367920 756.811100 224.301320 593.352050 681.971310 134.088410 522.885010 636.788450 226.530910 515.770510 768.107970 -168.050990 604.684020 718.534910 -111.630330 504.885190 658.812870 -160.312150 475.764100 553.578190 217.069240 469.429930 525.464420 98.497830 476.834840 528.565800 -150.062120 498.835270 519.784420 -36.249040 441.393070 468.931520 236.280840 513.326050 423.963040 184.250080 453.257810 384.003110 253.288670 467.689210 450.291050 -170.591980 517.027530 393.274320 -127.833770 445.693970 409.564940 -181.150940 437.639010 98.104710 255.576950 443.975040 103.698300 165.121840 442.973880 93.640570 -172.212040 464.937350 108.848590 -81.855040 366.704590 70.611920 210.289370 507.361360 80.389630 164.937030 509.353060 63.730570 272.847870 657.167910 50.652440 195.336530 371.657380 75.549710 -115.234210 544.812990 77.038730 -94.775080 523.832150 66.184810 -191.756900 654.170650 48.148770 -127.807650 603.731570 1424.860350 22.280600 487.843690 1550.058840 192.786440 485.000980 1560.393920 -148.458150 524.776060 1504.145870 357.342830 528.732240 1506.259280 -326.141240 520.011470 1471.473020 460.984310 492.310060 1474.802610 -427.887600 674.651550 1466.528200 684.902100 615.732480 1475.269780 709.672360 620.017330 1441.489260 -645.787600 547.786500 1445.639160 -663.618530 599.400880 39.604580 276.554530 594.268920 49.477500 167.861270 585.345090 39.916630 -201.712390 605.916440 51.588120 -100.981610 607.595640 1655.395630 125.038990 666.336300 1645.010860 -0.581130 589.971130 1814.332640 29.263280
+153 2.533000 605.816710 1073.084230 157.650740 607.028690 1060.733150 -104.451690 408.659940 1079.659300 36.248560 543.367610 756.811100 224.301500 593.370730 681.960820 134.124440 522.886110 636.780090 226.533600 515.756470 768.133360 -168.033360 604.702820 718.557620 -111.611110 504.879120 658.836980 -160.306080 475.764100 553.578190 217.069240 469.433780 525.459350 98.504690 476.860470 528.566350 -150.074360 498.835270 519.784420 -36.249040 441.370180 468.904080 236.295780 513.349300 423.961460 184.259540 453.262600 383.992280 253.292300 467.694950 450.288420 -170.595790 517.008790 393.222840 -127.820460 445.721530 409.577090 -181.154040 437.669340 98.108710 255.608220 443.980410 103.709610 165.138460 442.973880 93.640570 -172.212040 464.936400 108.844500 -81.857140 366.717590 70.607690 210.291900 507.380190 80.399180 164.941640 509.362610 63.687270 272.852630 657.167910 50.652440 195.336530 371.684880 75.615480 -114.980260 544.812990 77.038730 -94.775080 523.976930 66.247230 -191.712330 654.235840 48.234870 -127.726310 603.673340 1424.829710 22.270990 487.868130 1550.047360 192.743500 484.984500 1560.348880 -148.476440 524.691530 1504.186400 357.309970 528.742550 1506.246340 -326.215640 520.011230 1471.476200 460.987030 492.284300 1474.854490 -427.931270 674.591740 1466.408570 684.822140 615.665410 1475.391360 709.600160 619.997990 1441.523440 -645.770510 547.949220 1445.719360 -663.610840 599.406980 39.604160 276.555850 594.270750 49.445780 167.859940 585.345090 39.916630 -201.712390 605.923280 51.572760 -100.983670 607.524840 1655.368770 125.031000 666.341060 1644.975460 -0.610480 589.965760 1814.291140 29.245240
+154 2.550000 605.825320 1073.087040 157.651630 607.030880 1060.742310 -104.449130 408.672580 1079.630130 36.229340 543.367610 756.811100 224.301540 593.388730 681.960270 134.167940 522.886110 636.777890 226.534410 515.772340 768.176700 -168.024580 604.729610 718.579770 -111.587720 504.861270 658.884700 -160.292620 475.764130 553.578190 217.069240 469.434910 525.458370 98.506200 476.890690 528.563350 -150.088700 498.835270 519.784420 -36.249040 441.407500 468.899630 236.309250 513.363830 423.963170 184.287550 453.273500 383.968540 253.300230 467.703280 450.292360 -170.599500 516.987430 393.184940 -127.804090 445.737240 409.597050 -181.160100 437.691740 98.112270 255.645170 444.055790 103.705370 165.164050 442.973880 93.640570 -172.212040 464.935850 108.842010 -81.858410 366.721250 70.606510 210.292600 507.416600 80.418460 164.950740 509.384920 63.640920 272.869600 657.167910 50.652440 195.336530 371.694920 75.641460 -114.829970 544.812990 77.038730 -94.775080 524.067200 66.308990 -191.677220 654.314090 48.338970 -127.629620 603.586240 1424.769170 22.257180 487.891970 1550.041260 192.700270 484.981290 1560.267700 -148.536700 524.622500 1504.199830 357.288210 528.760500 1506.240360 -326.266820 520.011660 1471.481450 460.991180 492.266240 1474.873900 -427.950320 674.652100 1466.347660 684.666750 615.654480 1475.477660 709.524480 620.014470 1441.527830 -645.739750 548.122010 1445.783450 -663.603700 599.498960 39.597780 276.575590 594.271730 49.389100 167.879180 585.345090 39.916630 -201.712390 605.920170 51.564800 -100.972390 607.477840 1655.366330 125.010390 666.328610 1644.946290 -0.661130 589.955080 1814.268430 29.220250
+155 2.567000 605.839720 1073.092530 157.655460 607.031250 1060.750980 -104.446040 408.715970 1079.608030 36.201570 543.367610 756.811160 224.301570 593.402340 681.977050 134.212460 522.885930 636.778500 226.534160 515.815430 768.209110 -168.030930 604.772710 718.599000 -111.554210 504.848880 658.918700 -160.278580 475.764130 553.578190 217.069240 469.435000 525.459660 98.505080 476.909360 528.560300 -150.094210 498.835270 519.784420 -36.249040 441.483550 468.907320 236.311610 513.361080 423.969270 184.327560 453.289920 383.933810 253.311830 467.715730 450.302120 -170.604600 516.972780 393.169530 -127.795530 445.759490 409.611270 -181.172200 437.704070 98.114520 255.672380 444.157290 103.679260 165.192340 442.973880 93.640570 -172.212040 464.937040 108.847220 -81.855740 366.718320 70.607450 210.292040 507.426910 80.423910 164.953320 509.408570 63.608650 272.891170 657.167910 50.652440 195.336530 371.711550 75.630690 -114.780260 544.812990 77.038730 -94.775080 524.054870 66.319630 -191.675920 654.382260 48.414180 -127.552040 603.476750 1424.687010 22.236360 487.891750 1550.044430 192.665560 484.989780 1560.154050 -148.623490 524.579160 1504.175900 357.269130 528.775570 1506.236690 -326.285280 520.013980 1471.486690 460.994840 492.254970 1474.875610 -427.954930 674.767580 1466.323120 684.496090 615.716130 1475.490110 709.462890 620.097050 1441.491090 -645.675480 548.298890 1445.846800 -663.583010 599.692260 39.584380 276.617100 594.271180 49.311420 167.923460 585.345090 39.916630 -201.712390 605.894230 51.572320 -100.970270 607.463810 1655.385620 124.968700 666.307740 1644.917240 -0.723210 589.936400 1814.265260 29.176050
+156 2.583000 605.856260 1073.099000 157.661480 607.030150 1060.762700 -104.441020 408.797970 1079.602050 36.170070 543.367680 756.811280 224.301610 593.414180 682.008610 134.255800 522.886350 636.779480 226.533290 515.859560 768.212460 -168.048260 604.820920 718.613280 -111.520580 504.849550 658.916630 -160.269300 475.764130 553.578190 217.069240 469.435150 525.461850 98.503190 476.907470 528.559390 -150.082090 498.835270 519.784420 -36.249040 441.539550 468.909910 236.303090 513.347530 423.977510 184.369450 453.306300 383.901400 253.322630 467.726990 450.316190 -170.611270 516.975160 393.170140 -127.799530 445.792240 409.615660 -181.186780 437.708500 98.115480 255.685550 444.232090 103.632850 165.214420 442.973880 93.640570 -172.212040 464.942080 108.869410 -81.844370 366.710050 70.610150 210.290440 507.381530 80.399610 164.941890 509.422330 63.599890 272.909850 657.167910 50.652440 195.336530 371.715000 75.611420 -114.795110 544.812990 77.038730 -94.775080 523.972470 66.273090 -191.704860 654.425350 48.428800 -127.515240 603.368960 1424.594600 22.208570 487.861720 1550.053100 192.638870 484.992650 1560.033450 -148.709210 524.561650 1504.127810 357.245540 528.783940 1506.229490 -326.279940 520.018920 1471.485840 460.992740 492.254580 1474.873410 -427.952180 674.915340 1466.333500 684.355830 615.834960 1475.406860 709.448610 620.266540 1441.423220 -645.567020 548.495610 1445.912720 -663.540530 599.915410 39.568900 276.665010 594.269470 49.239200 167.976180 585.345090 39.916630 -201.712390 605.849670 51.592540 -100.995870 607.466250 1655.416020 124.903140 666.292360 1644.885740 -0.779690 589.907230 1814.281620 29.103450
+157 2.600000 605.865970 1073.102540 157.668530 607.028140 1060.780520 -104.433070 408.876980 1079.609130 36.150720 543.367740 756.811280 224.301620 593.425660 682.044310 134.299550 522.888370 636.779360 226.531810 515.880800 768.195430 -168.066790 604.855410 718.623110 -111.502980 504.859410 658.886470 -160.269910 475.764070 553.578190 217.069240 469.435550 525.463750 98.501640 476.890870 528.559880 -150.052490 498.835270 519.784420 -36.249040 441.542630 468.899440 236.292220 513.336180 423.985530 184.414200 453.315280 383.888030 253.327060 467.725650 450.330290 -170.617310 516.995000 393.184050 -127.808790 445.804200 409.627720 -181.186840 437.709080 98.115650 255.688460 444.257750 103.586720 165.214830 442.973880 93.640570 -172.212040 464.952820 108.916550 -81.820210 366.696990 70.614380 210.287890 507.307980 80.360030 164.923320 509.415250 63.618360 272.916990 657.167910 50.652440 195.336530 371.670040 75.602090 -114.836440 544.812990 77.038730 -94.775080 523.909300 66.224910 -191.731060 654.428890 48.379810 -127.530570 603.293210 1424.505000 22.181010 487.821080 1550.059570 192.616680 484.970980 1559.930790 -148.777540 524.559690 1504.074830 357.214080 528.787900 1506.214480 -326.269380 520.026180 1471.467900 460.975740 492.271850 1474.876220 -427.946170 675.086850 1466.377200 684.273860 615.939700 1475.239140 709.502380 620.521120 1441.339600 -645.427920 548.721560 1445.975460 -663.488040 600.054990 39.559220 276.694980 594.267580 49.208080 168.010470 585.345090 39.916630 -201.712390 605.812930 51.612510 -101.042710 607.464420 1655.448360 124.818510 666.286990 1644.855350 -0.822240 589.867610 1814.315430 29.002580
+158 2.617000 605.863530 1073.100100 157.680590 607.026000 1060.797970 -104.425030 408.890780 1079.616330 36.160070 543.367800 756.811160 224.301470 593.435730 682.074460 134.355220 522.892460 636.778020 226.529750 515.883240 768.190800 -168.080200 604.866520 718.628910 -111.510380 504.869750 658.854430 -160.279710 475.764010 553.578190 217.069240 469.435300 525.463930 98.501370 476.870390 528.560180 -150.015080 498.835270 519.784420 -36.249050 441.475340 468.881470 236.291380 513.332280 423.992070 184.458880 453.314210 383.898620 253.323490 467.707310 450.338650 -170.619580 517.020630 393.208100 -127.816690 445.774410 409.662170 -181.161990 437.708950 98.115540 255.686160 444.253540 103.571140 165.186390 442.973880 93.640570 -172.212040 464.968080 108.983510 -81.785890 366.682800 70.618990 210.285140 507.264190 80.336170 164.912220 509.389040 63.657650 272.910340 657.167910 50.652440 195.336530 371.596950 75.595910 -114.879800 544.812990 77.038730 -94.775080 523.937320 66.236980 -191.722440 654.402830 48.307950 -127.576060 603.258180 1424.431030 22.164860 487.794070 1550.060420 192.598590 484.927700 1559.848750 -148.823100 524.557980 1504.027950 357.176480 528.794740 1506.188840 -326.266300 520.031860 1471.419680 460.934110 492.310880 1474.887330 -427.941100 675.266110 1466.429930 684.249450 615.933110 1475.014160 709.601810 620.821780 1441.248660 -645.282350 548.961430 1446.029540 -663.453800 600.054630 39.559240 276.694920 594.266050 49.231330 168.012530 585.345090 39.916630 -201.712390 605.810670 51.617140 -101.088230 607.449830 1655.478030 124.725150 666.287290 1644.833860 -0.857580 589.822080 1814.361820 28.885700
+159 2.633000 605.854060 1073.092770 157.708210 607.025330 1060.801880 -104.422790 408.813050 1079.609500 36.199750 543.367980 756.810730 224.300980 593.444210 682.093380 134.432940 522.897640 636.776250 226.527800 515.885500 768.216740 -168.089570 604.856140 718.627930 -111.539540 504.871670 658.843020 -160.289750 475.763850 553.578190 217.069230 469.432620 525.459720 98.503650 476.850890 528.560910 -149.984760 498.835270 519.784420 -36.249050 441.334260 468.862730 236.308350 513.333250 423.996150 184.492310 453.304020 383.926120 253.314390 467.683470 450.337400 -170.616010 517.036380 393.231110 -127.822810 445.733700 409.705410 -181.127670 437.709320 98.115410 255.682420 444.248080 103.588030 165.141780 442.973880 93.640570 -172.212040 464.981660 109.043170 -81.755310 366.671690 70.622590 210.282990 507.277500 80.343320 164.915600 509.365450 63.694600 272.900450 657.167910 50.652440 195.336530 371.564000 75.580810 -114.923670 544.812990 77.038730 -94.775080 524.015750 66.293270 -191.690980 654.385440 48.274440 -127.600810 603.243840 1424.370240 22.169200 487.793520 1550.056030 192.584660 484.887510 1559.776120 -148.840450 524.546940 1503.981570 357.140230 528.816410 1506.152470 -326.270780 520.026120 1471.336670 460.867130 492.372710 1474.903930 -427.941310 675.445860 1466.460690 684.241210 615.761720 1474.753780 709.682620 621.100590 1441.158940 -645.150150 549.191960 1446.076170 -663.457520 599.922420 39.568410 276.666500 594.265500 49.295250 167.983320 585.345090 39.916630 -201.712390 605.844600 51.601080 -101.111600 607.425480 1655.502810 124.634320 666.286380 1644.822750 -0.902130 589.779170 1814.412720 28.773440
+160 2.650000 605.843140 1073.082520 157.755190 607.026730 1060.785520 -104.429390 408.675140 1079.587280 36.251780 543.368230 756.809750 224.299990 593.448430 682.098450 134.517350 522.899900 636.776430 226.528110 515.896790 768.245970 -168.100940 604.827700 718.612060 -111.581450 504.861420 658.856320 -160.292280 475.763730 553.578250 217.069210 469.425110 525.448180 98.509950 476.829860 528.563660 -149.967590 498.835270 519.784420 -36.249050 441.163790 468.842380 236.339580 513.336790 423.998840 184.518550 453.284670 383.958650 253.303850 467.667630 450.330260 -170.606960 517.030150 393.241910 -127.826070 445.721530 409.726990 -181.109790 437.709260 98.115300 255.680050 444.233520 103.607320 165.098130 442.973880 93.640570 -172.212040 464.987210 109.067530 -81.742830 366.659000 70.626710 210.280520 507.317570 80.366740 164.926240 509.362430 63.705730 272.898530 657.167910 50.652440 195.336530 371.607670 75.547410 -114.984210 544.812990 77.038730 -94.775080 524.037050 66.315440 -191.680040 654.398740 48.309070 -127.577050 603.224180 1424.296510 22.199470 487.803310 1550.051510 192.577060 484.870730 1559.707030 -148.826720 524.526860 1503.917600 357.109560 528.865840 1506.109740 -326.278750 519.992610 1471.235720 460.793300 492.455320 1474.920290 -427.950710 675.606870 1466.425780 684.207150 615.455570 1474.462400 709.686280 621.304990 1441.083250 -645.041380 549.394900 1446.116700 -663.494140 599.729550 39.581790 276.625120 594.265990 49.364770 167.938550 585.345090 39.916630 -201.712390 605.898800 51.569880 -101.103330 607.398800 1655.521970 124.557720 666.279480 1644.814090 -0.972060 589.748110 1814.459350 28.685250
+161 2.667000 605.826230 1073.069950 157.805420 607.028690 1060.757810 -104.440860 408.530270 1079.562740 36.291610 543.368590 756.808530 224.298630 593.443540 682.091430 134.579190 522.890810 636.782840 226.534620 515.922120 768.246340 -168.119340 604.789310 718.574650 -111.628100 504.841030 658.883180 -160.289610 475.763760 553.578250 217.069230 469.411740 525.428410 98.520480 476.803800 528.569760 -149.956390 498.835270 519.784420 -36.249050 441.022920 468.820830 236.374240 513.342470 424.001920 184.551130 453.254940 383.980260 253.297320 467.661010 450.330020 -170.595790 517.002260 393.242400 -127.822150 445.730160 409.711490 -181.115630 437.705720 98.115070 255.681840 444.180690 103.610010 165.065640 442.973880 93.640570 -172.212040 464.986330 109.063670 -81.744800 366.637050 70.633830 210.276260 507.337800 80.383420 164.932880 509.369450 63.695430 272.901860 657.167910 50.652440 195.336530 371.682400 75.486760 -115.081730 544.812990 77.038730 -94.775080 523.947450 66.255650 -191.714080 654.435490 48.405300 -127.512790 603.184630 1424.184940 22.256160 487.792540 1550.054690 192.579710 484.879000 1559.649660 -148.789930 524.499940 1503.827390 357.082950 528.947630 1506.069820 -326.292820 519.912410 1471.144780 460.740360 492.544950 1474.936650 -427.972440 675.718870 1466.279420 684.138120 615.122560 1474.133420 709.612370 621.429440 1441.031740 -644.958680 549.554380 1446.149410 -663.543030 599.595830 39.591060 276.596410 594.266720 49.401410 167.906560 585.345090 39.916630 -201.712390 605.954220 51.533580 -101.074120 607.375430 1655.539180 124.506110 666.268490 1644.798950 -1.071100 589.735410 1814.493160 28.630240
+162 2.683000 605.793950 1073.056760 157.835950 607.028560 1060.736330 -104.449620 408.414760 1079.548220 36.306930 543.368770 756.807680 224.297780 593.429080 682.080440 134.607420 522.858090 636.800420 226.552120 515.958190 768.226140 -168.140210 604.756960 718.526000 -111.670660 504.813720 658.913570 -160.288600 475.764280 553.578190 217.069260 469.396390 525.406920 98.531420 476.776760 528.577390 -149.947620 498.835270 519.784420 -36.249030 440.936070 468.811040 236.400330 513.348690 424.005430 184.587800 453.214290 383.975160 253.299930 467.660520 450.348390 -170.588000 516.968990 393.250060 -127.808310 445.732060 409.665680 -181.133930 437.694370 98.114480 255.691010 444.100190 103.602620 165.050990 442.973880 93.640570 -172.212040 464.985750 109.061130 -81.746110 366.610410 70.642490 210.271090 507.335690 80.392590 164.934970 509.367220 63.689990 272.900880 657.167910 50.652440 195.336530 371.699620 75.411370 -115.233150 544.812990 77.038730 -94.775080 523.767090 66.135170 -191.782970 654.484860 48.535630 -127.427440 603.124820 1424.043090 22.328860 487.763430 1550.063480 192.588910 484.902070 1559.617430 -148.751820 524.467470 1503.726320 357.061340 529.047060 1506.043700 -326.318910 519.780940 1471.078000 460.718320 492.616420 1474.963870 -428.010530 675.759280 1466.013790 684.050960 614.902710 1473.779050 709.512080 621.502870 1441.012080 -644.902830 549.665710 1446.172360 -663.586300 599.575440 39.592480 276.592010 594.266780 49.401990 167.901350 585.345090 39.916630 -201.712390 605.988890 51.507220 -101.048000 607.356690 1655.558230 124.480760 666.260740 1644.776610 -1.187950 589.742740 1814.507320 28.604620
+163 2.700000 605.741210 1073.047490 157.847560 607.023740 1060.727050 -104.452270 408.344540 1079.542600 36.303060 543.368100 756.809270 224.299420 593.412660 682.076780 134.614530 522.792910 636.830930 226.582140 515.981750 768.213500 -168.148960 604.739380 718.493100 -111.697850 504.783660 658.945430 -160.287140 475.765560 553.578000 217.069340 469.388090 525.398990 98.534000 476.758940 528.579530 -149.944520 498.835240 519.784480 -36.249010 440.900330 468.829710 236.409880 513.353450 424.008270 184.616910 453.164950 383.941010 253.312070 467.669950 450.383330 -170.588520 516.949950 393.271940 -127.790250 445.724150 409.604370 -181.153120 437.671970 98.113330 255.709760 444.048400 103.589630 165.054700 442.973880 93.640570 -172.212040 464.985870 109.061670 -81.745830 366.589480 70.649280 210.267030 507.344180 80.408410 164.939800 509.357360 63.704790 272.894260 657.167910 50.652440 195.336530 371.637760 75.361040 -115.408580 544.812990 77.038730 -94.775080 523.550600 66.011360 -191.859440 654.535830 48.653040 -127.346930 603.067140 1423.898680 22.391440 487.755490 1550.064820 192.592970 484.926240 1559.617310 -148.741760 524.436650 1503.637210 357.048610 529.133540 1506.036250 -326.353730 519.626710 1471.026980 460.707920 492.656920 1475.011350 -428.072240 675.707890 1465.669920 683.973330 614.865110 1473.436400 709.437260 621.559630 1441.021850 -644.876280 549.746460 1446.186160 -663.619260 599.589230 39.591520 276.594970 594.267090 49.405750 167.905200 585.345090 39.916630 -201.712390 605.988400 51.505060 -101.039280 607.344060 1655.574460 124.472150 666.263850 1644.750980 -1.306370 589.767820 1814.495970 28.596520
+164 2.717000 605.667420 1073.042240 157.870620 607.011840 1060.718020 -104.452190 408.317660 1079.540890 36.293000 543.365780 756.816040 224.306670 593.403320 682.085270 134.617200 522.698490 636.867070 226.619020 515.967220 768.211790 -168.135480 604.733150 718.493960 -111.700890 504.757970 658.975650 -160.276810 475.767700 553.577820 217.069490 469.391170 525.415160 98.520870 476.755770 528.570190 -149.947620 498.835210 519.784550 -36.248970 440.907500 468.876620 236.405350 513.356140 424.009980 184.634340 453.116970 383.902800 253.325230 467.693910 450.419860 -170.598400 516.948970 393.288640 -127.779880 445.715760 409.547060 -181.168430 437.642400 98.111800 255.734530 444.059300 103.566370 165.068280 442.973880 93.640570 -172.212040 464.980930 109.040020 -81.756930 366.577910 70.653030 210.264790 507.370970 80.423830 164.946320 509.349730 63.735160 272.886290 657.167910 50.652440 195.336530 371.596500 75.356770 -115.498990 544.812990 77.038730 -94.775080 523.346860 65.925670 -191.922560 654.572940 48.713410 -127.298670 603.049740 1423.768190 22.412760 487.793430 1550.049440 192.585600 484.937160 1559.642090 -148.779880 524.422060 1503.562990 357.043950 529.185670 1506.043950 -326.388400 519.497500 1470.972900 460.676420 492.681640 1475.068360 -428.160370 675.555480 1465.303470 683.928280 614.948610 1473.130980 709.400700 621.625120 1441.042600 -644.883970 549.820980 1446.193360 -663.644710 599.567990 39.592990 276.590420 594.269650 49.437780 167.901470 585.345090 39.916630 -201.712390 605.957890 51.528390 -101.048490 607.343440 1655.577030 124.470510 666.289430 1644.721800 -1.415490 589.806030 1814.455320 28.593570
+165 2.733000 605.577760 1073.033570 157.931140 606.994930 1060.698360 -104.453560 408.316620 1079.544310 36.286470 543.361210 756.830570 224.322190 593.404970 682.098750 134.622120 522.585270 636.895020 226.653670 515.911380 768.200500 -168.102400 604.736210 718.523990 -111.677090 504.741730 658.994690 -160.260500 475.769930 553.577580 217.069630 469.398350 525.450070 98.492810 476.764980 528.555600 -149.960130 498.835140 519.784550 -36.248930 440.948430 468.930050 236.398300 513.357180 424.010740 184.641560 453.091030 383.902950 253.325490 467.723240 450.442440 -170.614490 516.955810 393.284210 -127.780620 445.709960 409.517910 -181.181300 437.618070 98.110560 255.754850 444.104280 103.539270 165.081440 442.973880 93.640570 -172.212040 464.970610 108.994640 -81.780180 366.573610 70.654440 210.263950 507.394320 80.413000 164.945590 509.342590 63.766450 272.878750 657.167910 50.652440 195.336530 371.676790 75.375930 -115.430160 544.812990 77.038730 -94.775080 523.222110 65.903070 -191.953990 654.578250 48.698150 -127.301980 603.086490 1423.657230 22.383670 487.851140 1550.021970 192.574520 484.923980 1559.677000 -148.859650 524.435550 1503.488160 357.040280 529.207460 1506.062990 -326.422850 519.420590 1470.898560 460.605770 492.716860 1475.102540 -428.259740 675.322200 1464.958010 683.923220 615.038450 1472.867550 709.377750 621.710940 1441.049800 -644.926330 549.893920 1446.193600 -663.663210 599.577820 39.592310 276.592530 594.275880 49.469050 167.904650 585.345090 39.916630 -201.712390 605.915100 51.565230 -101.070220 607.363160 1655.560420 124.471980 666.346560 1644.684570 -1.508580 589.852910 1814.383910 28.588050
+166 2.750000 605.490540 1073.017700 158.021740 606.980590 1060.678470 -104.454870 408.325590 1079.554440 36.281510 543.355220 756.851380 224.344410 593.417540 682.111880 134.630220 522.460940 636.908260 226.681370 515.831730 768.173100 -168.058290 604.746640 718.569210 -111.633440 504.734280 658.996150 -160.252030 475.769780 553.577580 217.069610 469.400730 525.488830 98.458280 476.783110 528.548160 -149.986630 498.835140 519.784550 -36.248950 440.994840 468.969510 236.401020 513.356570 424.010380 184.637420 453.100710 383.957210 253.307890 467.740110 450.445800 -170.632350 516.965390 393.275090 -127.780960 445.709690 409.532100 -181.193480 437.607240 98.110000 255.763990 444.136720 103.526950 165.092770 442.973880 93.640570 -172.212040 464.962220 108.957890 -81.799020 366.574310 70.654200 210.264080 507.414520 80.383070 164.940570 509.336430 63.779650 272.875490 657.167910 50.652440 195.336530 371.833830 75.403900 -115.278180 544.812990 77.038730 -94.775080 523.253480 65.970040 -191.932480 654.533020 48.607290 -127.369900 603.142330 1423.577270 22.331870 487.874240 1549.997920 192.574040 484.889950 1559.709720 -148.949480 524.472110 1503.405640 357.029970 529.214900 1506.090820 -326.462340 519.388670 1470.798340 460.510440 492.769500 1475.093020 -428.342100 675.049320 1464.667850 683.953130 615.062010 1472.647220 709.342410 621.809630 1441.029420 -644.989620 549.947390 1446.186040 -663.672490 599.699040 39.583900 276.618560 594.285280 49.461200 167.932660 585.345090 39.916630 -201.712390 605.880070 51.597400 -101.091710 607.409480 1655.526980 124.475040 666.427430 1644.637210 -1.572770 589.905580 1814.282960 28.577630
+167 2.767000 605.427490 1073.001830 158.115010 606.973750 1060.678710 -104.450550 408.342500 1079.564330 36.261990 543.350710 756.870480 224.364720 593.437070 682.129640 134.641200 522.336240 636.914980 226.702000 515.751040 768.146850 -168.013200 604.753850 718.618100 -111.589330 504.734830 658.984620 -160.258180 475.762760 553.578310 217.069150 469.398930 525.517210 98.430770 476.808070 528.551450 -150.021350 498.835300 519.784360 -36.249120 441.006680 468.998080 236.416810 513.353520 424.008240 184.615110 453.132840 384.030980 253.283770 467.740450 450.432560 -170.647320 516.980220 393.288390 -127.770260 445.723360 409.577910 -181.202670 437.607360 98.110020 255.764310 444.144810 103.537560 165.113250 442.973880 93.640570 -172.212040 464.961030 108.952590 -81.801730 366.580380 70.652240 210.265260 507.453740 80.384360 164.949230 509.344330 63.765480 272.883850 657.167910 50.652440 195.336530 371.928040 75.464190 -115.174510 544.812990 77.038730 -94.775080 523.395870 66.100960 -191.872240 654.434750 48.453610 -127.499000 603.166870 1423.541990 22.298840 487.833650 1549.990600 192.590350 484.855320 1559.733520 -149.017810 524.510930 1503.327880 357.012420 529.216740 1506.120120 -326.502200 519.379520 1470.673950 460.424500 492.822200 1475.055660 -428.391020 674.776370 1464.460210 684.005550 614.992800 1472.468380 709.291810 621.902280 1440.989260 -645.048770 549.964540 1446.174190 -663.674870 599.886960 39.570870 276.658910 594.292360 49.418500 167.975940 585.345090 39.916630 -201.712390 605.865420 51.611900 -101.098430 607.480960 1655.478030 124.477830 666.513310 1644.577510 -1.591510 589.963070 1814.157710 28.563470
+168 2.783000 605.394290 1072.995850 158.188810 606.971190 1060.701170 -104.438950 408.367340 1079.562740 36.209400 543.349180 756.880000 224.374830 593.454220 682.150880 134.646510 522.232790 636.926940 226.714070 515.688840 768.134160 -167.979830 604.748780 718.659730 -111.562780 504.747220 658.966490 -160.274380 475.743350 553.580380 217.067890 469.397580 525.525940 98.421680 476.833160 528.560850 -150.052220 498.835720 519.783810 -36.249540 440.989840 469.036500 236.434160 513.346680 424.003390 184.565660 453.158600 384.075620 253.268980 467.734070 450.406220 -170.655730 516.995970 393.321470 -127.753900 445.756350 409.618900 -181.210740 437.618620 98.110650 255.756040 444.138310 103.559660 165.152010 442.973880 93.640570 -172.212040 464.964900 108.969570 -81.793030 366.594060 70.647800 210.267910 507.506810 80.440420 164.980160 509.369320 63.736220 272.904600 657.167910 50.652440 195.336530 371.876620 75.562230 -115.181440 544.812990 77.038730 -94.775080 523.471560 66.186220 -191.834750 654.315920 48.275410 -127.651440 603.144780 1423.547240 22.303690 487.753540 1549.997920 192.615860 484.842860 1559.745120 -149.053600 524.536740 1503.272830 356.994540 529.213810 1506.140870 -326.529480 519.375790 1470.526000 460.370910 492.855590 1475.025270 -428.412990 674.524540 1464.335450 684.061340 614.817870 1472.325070 709.237670 621.976320 1440.950680 -645.084290 549.951480 1446.164310 -663.675660 600.043460 39.560020 276.692500 594.282350 49.360260 168.014830 585.345090 39.916630 -201.712390 605.866270 51.614120 -101.087440 607.561460 1655.413450 124.478630 666.594180 1644.501460 -1.558450 590.027160 1814.017820 28.548410
+169 2.800000 605.380550 1073.004270 158.230620 606.969420 1060.725950 -104.427050 408.388400 1079.542850 36.123080 543.346190 756.883610 224.378940 593.458620 682.159610 134.629810 522.170720 636.947880 226.712280 515.661500 768.132200 -167.968630 604.737060 718.679500 -111.555900 504.776700 658.940730 -160.296490 475.709350 553.583920 217.065640 469.393550 525.515200 98.429480 476.843140 528.574340 -150.070070 498.836430 519.782960 -36.250230 440.997190 469.093720 236.438800 513.336240 423.995820 184.489930 453.151180 384.074550 253.269350 467.724030 450.376740 -170.657550 517.003170 393.339900 -127.746830 445.792300 409.624360 -181.223790 437.643590 98.112020 255.737140 444.112490 103.578550 165.195300 442.973880 93.640570 -172.212040 464.970640 108.994770 -81.780120 366.616390 70.640560 210.272260 507.536770 80.507810 165.019010 509.390320 63.713370 272.926670 657.167910 50.652440 195.336530 371.701230 75.654960 -115.301700 544.812990 77.038730 -94.775080 523.402280 66.142790 -191.857700 654.224980 48.134620 -127.769930 603.093080 1423.556640 22.337560 487.688170 1550.003540 192.636840 484.861180 1559.744140 -149.061600 524.545410 1503.247680 356.982760 529.204350 1506.150630 -326.540280 519.371030 1470.361820 460.350400 492.860350 1475.027340 -428.423280 674.300420 1464.254640 684.100220 614.541200 1472.217650 709.184750 622.029050 1440.930300 -645.092710 549.934880 1446.158450 -663.676820 600.128600 39.554120 276.710780 594.229860 49.274650 168.045320 585.345090 39.916630 -201.712390 605.867740 51.620090 -101.064930 607.625980 1655.339600 124.477190 666.671940 1644.415890 -1.477510 590.101870 1813.878300 28.536420
+170 2.817000 605.374690 1073.023930 158.238590 606.967530 1060.730960 -104.425350 408.389470 1079.507930 36.029900 543.332890 756.891110 224.388090 593.447080 682.144530 134.585820 522.149780 636.976010 226.694850 515.673950 768.135560 -167.977220 604.729680 718.666320 -111.561400 504.821200 658.904970 -160.323650 475.671420 553.587950 217.063160 469.377170 525.490840 98.444140 476.827480 528.593200 -150.071580 498.837190 519.782100 -36.250900 441.053830 469.155150 236.429900 513.325130 423.987640 184.410630 453.097170 384.045140 253.279800 467.704590 450.360230 -170.654480 517.001160 393.317260 -127.758260 445.804470 409.594970 -181.241670 437.673920 98.113680 255.713960 444.071140 103.589500 165.212280 442.973880 93.640570 -172.212040 464.978060 109.027340 -81.763420 366.640840 70.632630 210.277010 507.515010 80.530820 165.042400 509.385930 63.709780 272.937070 657.167910 50.652440 195.336530 371.492000 75.706120 -115.486520 544.812990 77.038730 -94.775080 523.314760 66.015820 -191.907390 654.192630 48.080470 -127.814250 603.030520 1423.527950 22.380370 487.677520 1549.992190 192.644320 484.896790 1559.733520 -149.052870 524.531920 1503.250120 356.978520 529.186040 1506.156740 -326.543980 519.366580 1470.203130 460.352390 492.838990 1475.063720 -428.432650 674.111690 1464.181760 684.112060 614.209530 1472.156980 709.122440 622.058170 1440.931880 -645.082280 549.940190 1446.155760 -663.678160 600.156560 39.552170 276.716800 594.108830 49.130890 168.076110 585.345090 39.916630 -201.712390 605.866760 51.631890 -101.034050 607.661740 1655.270510 124.478040 666.751040 1644.337280 -1.356020 590.192140 1813.758420 28.532850
+171 2.833000 605.373960 1073.045900 158.222120 606.962220 1060.714110 -104.438180 408.367400 1079.467160 35.965150 543.304570 756.900570 224.400440 593.426570 682.115540 134.532840 522.150630 637.006470 226.670240 515.708980 768.138370 -167.992430 604.726380 718.624390 -111.575150 504.866090 658.862850 -160.350620 475.653960 553.589780 217.062000 469.345550 525.455440 98.462490 476.799380 528.613950 -150.063800 498.837220 519.782170 -36.250740 441.133300 469.201600 236.414900 513.317570 423.981720 184.360200 453.019100 384.013340 253.291660 467.679290 450.361510 -170.646770 516.999330 393.269010 -127.782110 445.793430 409.552610 -181.257050 437.696500 98.114850 255.695390 444.061220 103.591670 165.190460 442.973880 93.640570 -172.212040 464.984830 109.057190 -81.748120 366.652010 70.629000 210.279190 507.449190 80.499560 165.035640 509.364930 63.721780 272.935970 657.167910 50.652440 195.336530 371.354610 75.726920 -115.625350 544.812990 77.038730 -94.775080 523.335880 65.909830 -191.932600 654.228640 48.120670 -127.772300 602.971980 1423.462890 22.414090 487.722410 1549.961790 192.638660 484.922060 1559.719600 -149.040830 524.490230 1503.272090 356.980530 529.163510 1506.164670 -326.548710 519.364620 1470.075320 460.364650 492.813780 1475.110960 -428.443600 673.964840 1464.134030 684.104060 613.903200 1472.149780 709.043460 622.059570 1440.951540 -645.063900 549.971620 1446.157100 -663.682190 600.154360 39.552330 276.716310 593.922120 48.926350 168.113070 585.345090 39.916630 -201.712390 605.872380 51.636610 -100.997280 607.676940 1655.213500 124.493430 666.831730 1644.271730 -1.206640 590.300720 1813.677980 28.544100
+172 2.850000 605.382630 1073.063600 158.189350 606.952390 1060.700810 -104.460380 408.331570 1079.430540 35.940290 543.267940 756.894900 224.397370 593.408020 682.092290 134.491550 522.154240 637.030700 226.650830 515.738280 768.130620 -168.006160 604.717040 718.569460 -111.598820 504.891050 658.825740 -160.370800 475.671450 553.587950 217.063160 469.305820 525.412480 98.485360 476.787570 528.628720 -150.062870 498.835050 519.784970 -36.248300 441.206120 469.225860 236.396480 513.314270 423.978610 184.347520 452.973940 384.000270 253.296970 467.662960 450.371250 -170.635850 517.000790 393.240330 -127.799730 445.782410 409.518800 -181.261900 437.705930 98.115090 255.681840 444.124300 103.583600 165.148280 442.973880 93.640570 -172.212040 464.986360 109.063780 -81.744750 366.640840 70.632630 210.277010 507.381590 80.446390 165.004320 509.355010 63.731730 272.935120 657.167910 50.652440 195.336530 371.330410 75.741500 -115.649390 544.812990 77.038730 -94.775080 523.437810 65.884800 -191.920380 654.321590 48.227290 -127.658490 602.929140 1423.402220 22.431790 487.788450 1549.926030 192.627460 484.919010 1559.712160 -149.030760 524.416990 1503.302730 356.986850 529.151060 1506.171630 -326.553890 519.364870 1469.993770 460.377410 492.816310 1475.138670 -428.447510 673.853090 1464.154170 684.094670 613.690060 1472.184810 708.963320 622.032590 1440.989260 -645.039490 550.008610 1446.166380 -663.692870 600.142520 39.553150 276.713780 593.728520 48.712990 168.148510 585.345090 39.916630 -201.712390 605.885560 51.629890 -100.964160 607.687990 1655.158690 124.539820 666.905520 1644.208860 -1.052870 590.424620 1813.651490 28.575620
+173 2.867000 605.404850 1073.084720 158.140060 606.942080 1060.716310 -104.483280 408.291140 1079.406130 35.937740 543.237670 756.859800 224.362300 593.393310 682.082580 134.450090 522.154480 637.040530 226.642870 515.741580 768.101320 -168.020220 604.695560 718.514710 -111.635000 504.887850 658.812620 -160.387760 475.709380 553.583920 217.065640 469.263670 525.374450 98.501840 476.804500 528.636410 -150.082500 498.828860 519.792720 -36.241860 441.275330 469.230130 236.371320 513.311650 423.975740 184.347950 452.995510 384.014950 253.292180 467.662450 450.385040 -170.626910 516.997250 393.256070 -127.800030 445.780790 409.510500 -181.253390 437.703460 98.114230 255.667040 444.225340 103.566720 165.103760 442.973880 93.640570 -172.212040 464.983800 109.052580 -81.750490 366.616390 70.640530 210.272230 507.350980 80.407590 164.970060 509.361910 63.727530 272.939700 657.167910 50.652440 195.336530 371.367190 75.744090 -115.615800 544.812990 77.038730 -94.775080 523.534970 65.941530 -191.884610 654.425780 48.355470 -127.521130 602.902770 1423.377810 22.437850 487.836850 1549.900630 192.618930 484.892970 1559.718140 -149.015660 524.311950 1503.335080 356.993440 529.157710 1506.173460 -326.558720 519.365970 1469.958130 460.385890 492.854740 1475.137940 -428.431980 673.764470 1464.250000 684.101620 613.598270 1472.239870 708.913330 621.978270 1441.048340 -645.002930 550.023190 1446.185790 -663.709840 600.131960 39.553880 276.711520 593.609010 48.564920 168.167470 585.345090 39.916630 -201.712390 605.897160 51.620950 -100.944290 607.702210 1655.091800 124.625590 666.950810 1644.141360 -0.925130 590.553710 1813.682370 28.629100
+174 2.883000 605.438170 1073.120730 158.072270 606.935970 1060.754150 -104.501020 408.254880 1079.394290 35.933930 543.222230 756.799870 224.299390 593.374210 682.076170 134.375020 522.156190 637.033330 226.644960 515.712100 768.043330 -168.038820 604.668150 718.469730 -111.680500 504.869630 658.838130 -160.414350 475.743350 553.580380 217.067890 469.225590 525.360110 98.490640 476.835630 528.642820 -150.123050 498.817720 519.806270 -36.230950 441.352750 469.215940 236.338580 513.306640 423.971650 184.335070 453.055570 384.048030 253.280850 467.667240 450.403530 -170.624860 516.987000 393.292660 -127.795560 445.779050 409.535030 -181.235110 437.692380 98.112340 255.645570 444.277590 103.544210 165.060030 442.973880 93.640570 -172.212040 464.983400 109.050840 -81.751380 366.594020 70.647710 210.267810 507.344790 80.387480 164.945740 509.366460 63.716710 272.943080 657.167910 50.652440 195.336530 371.409360 75.713230 -115.585320 544.812990 77.038730 -94.775080 523.581850 66.032570 -191.847370 654.490600 48.467070 -127.417070 602.885740 1423.387450 22.438290 487.857760 1549.889400 192.614460 484.863650 1559.734500 -148.988370 524.185670 1503.366090 356.993500 529.176210 1506.170530 -326.563570 519.367740 1469.957640 460.390050 492.906830 1475.125370 -428.396850 673.686830 1464.378300 684.133000 613.612610 1472.302610 708.920040 621.895260 1441.117800 -644.956910 550.007510 1446.212280 -663.728820 600.126530 39.554260 276.710330 593.592100 48.515100 168.164660 585.345090 39.916630 -201.712390 605.902830 51.615680 -100.937330 607.713380 1655.011720 124.737330 666.946040 1644.075930 -0.844240 590.672610 1813.760010 28.700630
+175 2.900000 605.473270 1073.162960 157.988490 606.936220 1060.787230 -104.512260 408.233120 1079.383670 35.918850 543.218260 756.738280 224.233470 593.350040 682.059810 134.263470 522.171570 637.012700 226.650710 515.657590 767.957210 -168.066500 604.647160 718.445740 -111.723720 504.858550 658.892210 -160.458820 475.762760 553.578310 217.069150 469.210910 525.383540 98.438820 476.860750 528.646420 -150.173030 498.804870 519.821350 -36.219380 441.420620 469.181400 236.307050 513.301880 423.969670 184.307240 453.107910 384.081120 253.269700 467.663730 450.415470 -170.628910 516.984130 393.308010 -127.806990 445.772190 409.573940 -181.213270 437.678340 98.110050 255.620850 444.229060 103.519280 165.026960 442.973880 93.640570 -172.212040 464.985750 109.061220 -81.746060 366.580350 70.652030 210.265030 507.315310 80.363530 164.925700 509.364230 63.711100 272.942050 657.167910 50.652440 195.336530 371.475490 75.644820 -115.514740 544.812990 77.038730 -94.775080 523.557010 66.085170 -191.834990 654.518980 48.548340 -127.359990 602.872620 1423.404910 22.435560 487.861210 1549.887450 192.610780 484.850010 1559.749270 -148.949570 524.059270 1503.389890 356.983150 529.195430 1506.162600 -326.562680 519.370670 1469.981930 460.391720 492.949920 1475.121830 -428.353790 673.596740 1464.477540 684.184330 613.672000 1472.378300 708.986760 621.806400 1441.173710 -644.916440 549.979920 1446.238890 -663.746400 600.126950 39.554230 276.710420 593.639950 48.539360 168.148560 585.345090 39.916630 -201.712390 605.903500 51.614400 -100.938070 607.710020 1654.932370 124.845830 666.897090 1644.021000 -0.810720 590.765630 1813.862920 28.781870
+176 2.917000 605.501160 1073.184940 157.897710 606.936950 1060.804080 -104.520400 408.230410 1079.365110 35.895970 543.222110 756.698240 224.190060 593.331360 682.033450 134.153990 522.218750 636.986270 226.650570 515.601990 767.865420 -168.107820 604.636660 718.449220 -111.752850 504.861270 658.947270 -160.512660 475.769710 553.577580 217.069610 469.235900 525.440980 98.354810 476.870540 528.638000 -150.224610 498.796660 519.828130 -36.217260 441.444700 469.129760 236.288410 513.304080 423.976870 184.273100 453.138400 384.100370 253.263180 467.648800 450.406310 -170.634700 517.002200 393.291200 -127.835810 445.768010 409.593170 -181.193590 437.669310 98.108600 255.605820 444.103820 103.499700 165.020860 442.973880 93.640570 -172.212040 464.985930 109.061920 -81.745700 366.574250 70.653900 210.263720 507.247250 80.325390 164.904370 509.370450 63.713090 272.940310 657.167910 50.652440 195.336530 371.591000 75.548850 -115.386130 544.812990 77.038730 -94.775080 523.512760 66.083820 -191.843250 654.551030 48.601860 -127.324670 602.863710 1423.406980 22.430890 487.854000 1549.890990 192.605610 484.858730 1559.753050 -148.905360 523.950260 1503.400150 356.967250 529.211120 1506.148800 -326.548890 519.375310 1470.023800 460.392460 492.980070 1475.135380 -428.314610 673.475160 1464.515010 684.242920 613.683040 1472.477290 709.086120 621.777100 1441.204960 -644.896480 549.967590 1446.260010 -663.760990 600.133240 39.553780 276.711760 593.699100 48.592830 168.131420 585.345090 39.916630 -201.712390 605.897890 51.619150 -100.944730 607.688230 1654.870610 124.930680 666.837280 1643.976320 -0.809210 590.821230 1813.965450 28.864310
+177 2.933000 605.521060 1073.175780 157.813900 606.925600 1060.820920 -104.531940 408.241580 1079.344600 35.873900 543.230650 756.684200 224.174330 593.324040 682.008000 134.081240 522.318120 636.960080 226.635360 515.576290 767.812740 -168.161350 604.633420 718.474060 -111.765200 504.857940 658.991330 -160.556340 475.769740 553.577580 217.069610 469.286960 525.509220 98.264440 476.861630 528.619020 -150.283540 498.791500 519.820430 -36.238040 441.422390 469.075290 236.283050 513.320800 424.000340 184.231380 453.155430 384.102570 253.262070 467.628230 450.383090 -170.640030 517.036800 393.268310 -127.865810 445.773250 409.585940 -181.179920 437.668550 98.108570 255.606510 443.977260 103.501240 165.041900 442.973880 93.640570 -172.212040 464.983730 109.052290 -81.750630 366.573460 70.654190 210.263610 507.174770 80.288170 164.886470 509.382290 63.725350 272.934720 657.167910 50.652440 195.336530 371.696960 75.439690 -115.323970 544.812990 77.038730 -94.775080 523.610230 66.111370 -191.818080 654.595150 48.634680 -127.295550 602.862670 1423.390380 22.426860 487.848140 1549.895870 192.596850 484.880650 1559.745000 -148.863720 523.867800 1503.395750 356.956050 529.222470 1506.133420 -326.526030 519.380680 1470.069340 460.392240 493.002500 1475.166020 -428.287750 673.339290 1464.508910 684.294130 613.576840 1472.601200 709.179380 621.876890 1441.224850 -644.906620 549.992800 1446.275270 -663.776120 600.144470 39.553000 276.714170 593.739750 48.640830 168.122070 585.345090 39.916630 -201.712390 605.887270 51.628810 -100.955060 607.656190 1654.836430 124.991190 666.793580 1643.938720 -0.816670 590.835140 1814.044800 28.943920
+178 2.950000 605.532040 1073.151370 157.748370 606.898010 1060.853640 -104.550640 408.252170 1079.338990 35.863630 543.234310 756.681700 224.171260 593.324280 681.991640 134.048860 522.473080 636.935790 226.602390 515.595700 767.823490 -168.218260 604.638790 718.502500 -111.767110 504.829590 659.031740 -160.579570 475.767400 553.577820 217.069460 469.334410 525.565670 98.191760 476.835140 528.603880 -150.354020 498.773740 519.803220 -36.292320 441.399930 469.034390 236.278990 513.355770 424.041140 184.176250 453.165710 384.094700 253.264130 467.610110 450.365970 -170.644230 517.067870 393.262760 -127.885230 445.788940 409.577270 -181.175220 437.670290 98.108920 255.611080 443.923250 103.532210 165.074810 442.973880 93.640570 -172.212040 464.983800 109.052580 -81.750490 366.577790 70.653240 210.264920 507.136570 80.270250 164.878680 509.376710 63.749270 272.916690 657.167910 50.652440 195.336530 371.702330 75.344670 -115.471190 544.812990 77.038730 -94.775080 523.913820 66.231790 -191.728070 654.628970 48.656670 -127.275640 602.868040 1423.367070 22.425160 487.854710 1549.898440 192.584240 484.899410 1559.727170 -148.828230 523.811280 1503.381100 356.960940 529.228700 1506.122680 -326.504610 519.383850 1470.094240 460.389860 493.022400 1475.210210 -428.275670 673.236210 1464.492680 684.326970 613.375180 1472.726440 709.245540 622.124150 1441.245000 -644.941590 550.068240 1446.288570 -663.801390 600.156010 39.552200 276.716670 593.757200 48.658800 168.126620 585.345090 39.916630 -201.712390 605.877690 51.637240 -100.963860 607.625180 1654.830570 125.036100 666.766050 1643.913450 -0.807530 590.810550 1814.085690 29.022250
+179 2.967000 605.528200 1073.129150 157.698040 606.865480 1060.890380 -104.573280 408.249150 1079.360350 35.872330 543.225650 756.675720 224.165420 593.327510 681.985170 134.043140 522.646300 636.913760 226.560260 515.649230 767.867490 -168.271220 604.651670 718.512880 -111.771650 504.790590 659.067200 -160.589550 475.765170 553.578060 217.069320 469.366970 525.607670 98.143230 476.806030 528.600710 -150.422550 498.729770 519.785830 -36.380110 441.426670 469.009280 236.264800 513.404360 424.089260 184.112350 453.173520 384.083830 253.267170 467.601780 450.359130 -170.645260 517.074770 393.267670 -127.893810 445.811580 409.578160 -181.179730 437.669040 98.108700 255.608630 443.966090 103.569020 165.104140 442.973880 93.640570 -172.212040 464.985140 109.058460 -81.747470 366.589510 70.650600 210.268430 507.145660 80.277210 164.882610 509.348360 63.774090 272.888240 657.167910 50.652440 195.336530 371.599400 75.292100 -115.810420 544.812990 77.038730 -94.775080 524.225100 66.371320 -191.630520 654.644960 48.671460 -127.265410 602.868650 1423.350590 22.423800 487.853360 1549.904660 192.572660 484.900480 1559.700680 -148.796490 523.765750 1503.357670 356.997890 529.233030 1506.114750 -326.483860 519.383060 1470.085450 460.384770 493.050660 1475.251100 -428.271550 673.207090 1464.476560 684.342710 613.180110 1472.803100 709.282530 622.466980 1441.253540 -644.965390 550.192020 1446.295290 -663.836730 600.155700 39.552240 276.716610 593.758970 48.625700 168.150800 585.345090 39.916630 -201.712390 605.873900 51.640210 -100.967390 607.597110 1654.845340 125.073500 666.737370 1643.907470 -0.760420 590.756350 1814.084110 29.103090
+180 2.983000 605.501830 1073.110600 157.650920 606.841980 1060.905270 -104.592880 408.235630 1079.401120 35.893760 543.209410 756.665040 224.155000 593.332760 681.986630 134.050460 522.774110 636.894040 226.524190 515.718810 767.896300 -168.321350 604.655580 718.492920 -111.793450 504.773350 659.084050 -160.598830 475.764130 553.578130 217.069260 469.392490 525.641420 98.114470 476.798800 528.602660 -150.470950 498.667210 519.773320 -36.482530 441.493930 468.984830 236.241180 513.452390 424.130430 184.057390 453.183720 384.071750 253.270520 467.605260 450.350220 -170.642260 517.056030 393.263950 -127.892560 445.831970 409.569030 -181.189190 437.667850 98.108490 255.605970 444.069310 103.574360 165.121170 442.973880 93.640570 -172.212040 464.981350 109.041900 -81.755960 366.610840 70.645610 210.274660 507.190220 80.301480 164.894640 509.315520 63.792130 272.860050 657.167910 50.652440 195.336530 371.481600 75.280300 -116.150620 544.812990 77.038730 -94.775080 524.299190 66.401890 -191.608140 654.652400 48.673120 -127.261960 602.855710 1423.348510 22.418370 487.803830 1549.924320 192.568220 484.871730 1559.668330 -148.766240 523.719730 1503.321900 357.085300 529.241640 1506.099980 -326.450500 519.379760 1470.056760 460.379270 493.104400 1475.259280 -428.263640 673.267460 1464.456420 684.351010 613.086730 1472.789670 709.295470 622.816770 1441.235350 -644.935970 550.350950 1446.279050 -663.866760 600.121280 39.554680 276.709260 593.753780 48.536670 168.198070 585.345090 39.916630 -201.712390 605.878050 51.637540 -100.964120 607.563350 1654.868770 125.109760 666.690800 1643.917720 -0.668810 590.684810 1814.048460 29.187190
+181 3.000000 605.432310 1073.091670 157.607890 606.831910 1060.892580 -104.605290 408.218960 1079.437500 35.915410 543.195190 756.655400 224.145630 593.341490 681.994260 134.063160 522.813290 636.877010 226.503170 515.793760 767.901250 -168.369960 604.634340 718.453860 -111.833070 504.786990 659.079710 -160.612580 475.764530 553.578060 217.069290 469.413970 525.665770 98.100700 476.820530 528.601070 -150.495330 498.608760 519.766300 -36.569560 441.544980 468.949860 236.219890 513.483830 424.159300 184.030590 453.192600 384.063110 253.272920 467.615020 450.335660 -170.636900 517.032100 393.251620 -127.878010 445.849820 409.537600 -181.202590 437.670320 98.108920 255.610890 444.174680 103.547950 165.125980 442.973880 93.640570 -172.212040 464.971830 109.000080 -81.777400 366.638280 70.638730 210.282120 507.245700 80.328130 164.908200 509.290710 63.812640 272.837520 657.167910 50.652440 195.336530 371.437770 75.280690 -116.308720 544.812990 77.038730 -94.775080 524.150570 66.311440 -191.662350 654.647030 48.657800 -127.271850 602.834230 1423.360600 22.404740 487.695950 1549.956050 192.574510 484.807740 1559.635130 -148.736630 523.683290 1503.277590 357.225740 529.257260 1506.074220 -326.398010 519.375550 1470.025020 460.379460 493.190190 1475.218380 -428.242740 673.406860 1464.439820 684.354130 613.124270 1472.690550 709.294800 623.106750 1441.200320 -644.855470 550.530820 1446.228390 -663.880920 600.025390 39.561400 276.688750 593.748720 48.417740 168.261700 585.345090 39.916630 -201.712390 605.890870 51.631740 -100.953490 607.518370 1654.892580 125.150960 666.627500 1643.937620 -0.541530 590.607730 1813.997070 29.269750
+182 3.017000 605.294620 1073.076660 157.587310 606.829830 1060.875610 -104.610460 408.196320 1079.448730 35.932600 543.187500 756.649840 224.140140 593.354980 682.006650 134.077760 522.765200 636.867310 226.495130 515.860170 767.909790 -168.407290 604.593750 718.428220 -111.870000 504.811190 659.068300 -160.628250 475.766270 553.577820 217.069410 469.421660 525.675290 98.095560 476.847660 528.595640 -150.504180 498.571110 519.763610 -36.622250 441.548370 468.914340 236.209060 513.493350 424.177060 184.037570 453.188660 384.066220 253.272130 467.624570 450.327760 -170.630200 517.023010 393.250670 -127.850040 445.881160 409.509640 -181.222470 437.672730 98.109300 255.614970 444.247830 103.530050 165.125060 442.973880 93.640570 -172.212040 464.963530 108.963580 -81.796100 366.661040 70.631200 210.286410 507.300840 80.348790 164.920180 509.272000 63.840540 272.821870 657.167910 50.652440 195.336530 371.442630 75.274730 -116.307290 544.812990 77.038730 -94.775080 523.982910 66.205290 -191.724850 654.609130 48.623900 -127.311230 602.817930 1423.386960 22.381340 487.567930 1549.979980 192.592470 484.715240 1559.605220 -148.709880 523.669740 1503.243410 357.392150 529.276060 1506.043820 -326.338070 519.368410 1469.984010 460.394470 493.293820 1475.139530 -428.205410 673.595700 1464.446290 684.351380 613.265500 1472.550050 709.295290 623.309200 1441.170650 -644.762700 550.723330 1446.142580 -663.885010 599.857790 39.573100 276.652860 593.751710 48.315300 168.320710 585.345090 39.916630 -201.712390 605.909420 51.628730 -100.937540 607.471500 1654.912600 125.199650 666.567630 1643.967410 -0.384280 590.531250 1813.951780 29.342940
+183 3.033000 605.114260 1073.073120 157.602980 606.828550 1060.877690 -104.608930 408.167690 1079.428220 35.947740 543.185910 756.647280 224.137500 593.369810 682.019290 134.090150 522.665160 636.870730 226.494670 515.899050 767.936460 -168.420380 604.557130 718.442500 -111.876940 504.824550 659.059690 -160.642180 475.768770 553.577580 217.069580 469.404210 525.663510 98.096620 476.853550 528.589420 -150.505650 498.558010 519.763610 -36.638810 441.523710 468.894530 236.203660 513.488340 424.178530 184.066190 453.168060 384.080230 253.268420 467.632200 450.334870 -170.621520 517.032100 393.272460 -127.820340 445.938450 409.520900 -181.243730 437.671480 98.108970 255.609910 444.277710 103.549090 165.123610 442.973880 93.640570 -172.212040 464.960850 108.951730 -81.802180 366.673920 70.620650 210.282140 507.362430 80.365900 164.932210 509.260890 63.857840 272.815950 657.167910 50.652440 195.336530 371.413240 75.261380 -116.293440 544.812990 77.038730 -94.775080 523.879940 66.148680 -191.760480 654.530330 48.562280 -127.390070 602.814090 1423.431400 22.352080 487.469020 1549.970580 192.623170 484.609190 1559.579350 -148.696910 523.673400 1503.235110 357.537930 529.291750 1506.017700 -326.288790 519.353820 1469.907350 460.434080 493.394900 1475.041990 -428.150820 673.794800 1464.480470 684.356570 613.466610 1472.412600 709.306880 623.418400 1441.149170 -644.684690 550.932130 1446.016600 -663.886350 599.670590 39.586060 276.612640 593.774110 48.267360 168.353060 585.345090 39.916630 -201.712390 605.927060 51.634080 -100.921310 607.440490 1654.926640 125.250280 666.526490 1644.005740 -0.192700 590.451720 1813.930420 29.401290
+184 3.050000 604.979860 1073.082150 157.645950 606.824340 1060.894650 -104.601230 408.142210 1079.383060 35.964990 543.188780 756.645690 224.135570 593.376890 682.024170 134.093380 522.554200 636.889770 226.500600 515.903990 767.964480 -168.407150 604.543150 718.490840 -111.842480 504.822390 659.048400 -160.651660 475.770320 553.577580 217.069640 469.356900 525.619690 98.113100 476.836790 528.582280 -150.501980 498.569210 519.765320 -36.621510 441.486820 468.893740 236.197110 513.473750 424.155330 184.099240 453.137360 384.093870 253.264760 467.639310 450.348180 -170.611400 517.051940 393.296810 -127.807580 446.021550 409.565490 -181.260640 437.670470 98.108620 255.603790 444.253330 103.587390 165.120390 442.973880 93.640570 -172.212040 464.960630 108.950820 -81.802640 366.682950 70.600090 210.265090 507.414950 80.375630 164.941420 509.266910 63.844160 272.820430 657.167910 50.652440 195.336530 371.363590 75.229220 -116.281720 544.812990 77.038730 -94.775080 523.739870 66.091960 -191.802430 654.433290 48.473670 -127.492170 602.803890 1423.484620 22.329340 487.412720 1549.918950 192.672450 484.504760 1559.554320 -148.713230 523.684510 1503.246090 357.628360 529.300540 1505.997800 -326.256770 519.328740 1469.773190 460.499420 493.483890 1474.937130 -428.071690 673.969970 1464.502560 684.384090 613.713870 1472.286130 709.327030 623.453250 1441.116090 -644.623840 551.164670 1445.840210 -663.878420 599.584590 39.591740 276.593870 593.827390 48.289010 168.352800 585.345090 39.916630 -201.712390 605.935550 51.643210 -100.911030 607.432370 1654.934200 125.290840 666.498290 1644.044430 0.026470 590.354980 1813.941530 29.445810
+185 3.067000 604.947450 1073.094360 157.698840 606.815730 1060.909180 -104.590700 408.125210 1079.333250 35.987270 543.194150 756.643490 224.132800 593.369260 682.018250 134.084120 522.451840 636.921630 226.516830 515.881160 767.970830 -168.371340 604.553890 718.545650 -111.780430 504.809940 659.029540 -160.653550 475.767300 553.578310 217.069350 469.286070 525.542970 98.154990 476.814880 528.573300 -150.495680 498.606380 519.768430 -36.568630 441.426570 468.907380 236.191650 513.445980 424.112150 184.130000 453.099950 384.100280 253.263030 467.646450 450.353820 -170.603240 517.071900 393.290860 -127.821840 446.124240 409.604890 -181.278820 437.673070 98.108910 255.605270 444.164180 103.608740 165.111620 442.973880 93.640570 -172.212040 464.959350 108.945230 -81.805510 366.690800 70.566710 210.233750 507.419010 80.367100 164.940140 509.289860 63.807930 272.829160 657.167910 50.652440 195.336530 371.390290 75.165250 -116.156680 544.812990 77.038730 -94.775080 523.495540 65.975590 -191.881200 654.363770 48.400840 -127.568270 602.744380 1423.513060 22.333150 487.371150 1549.844360 192.746400 484.415410 1559.526730 -148.764070 523.707460 1503.252930 357.666470 529.301390 1505.979610 -326.234710 519.296450 1469.593020 460.574160 493.563720 1474.831670 -427.953950 674.108340 1464.445560 684.418150 614.028990 1472.138790 709.344910 623.462710 1441.055050 -644.577270 551.406620 1445.624760 -663.841130 599.672180 39.584960 276.611940 593.913820 48.388300 168.323460 585.345090 39.916630 -201.712390 605.924740 51.644280 -100.915730 607.437440 1654.936890 125.313250 666.464660 1644.085080 0.248010 590.221980 1813.984250 29.483690
+186 3.083000 604.957280 1073.093140 157.760710 606.803590 1060.918700 -104.583370 408.113620 1079.305910 36.009930 543.199100 756.640630 224.129380 593.348690 682.009950 134.068980 522.359010 636.957030 226.547120 515.839290 767.959410 -168.314190 604.583440 718.590210 -111.713100 504.794370 659.012330 -160.644450 475.754240 553.580440 217.068310 469.212950 525.460020 98.215260 476.805420 528.564510 -150.492220 498.667630 519.772950 -36.482690 441.354220 468.932130 236.192760 513.405520 424.065980 184.161500 453.056490 384.103390 253.262160 467.651150 450.350280 -170.600750 517.084960 393.252500 -127.853680 446.225920 409.621770 -181.301380 437.674160 98.109120 255.607850 444.023830 103.604410 165.099000 442.973880 93.640570 -172.212040 464.959080 108.943960 -81.806160 366.692020 70.531880 210.197300 507.377200 80.346030 164.929960 509.314580 63.777580 272.834200 657.167910 50.652440 195.336530 371.510830 75.094300 -115.918510 544.812990 77.038730 -94.775080 523.252500 65.841550 -191.965450 654.357790 48.404780 -127.569530 602.618710 1423.488400 22.374490 487.308690 1549.780880 192.840360 484.350040 1559.501950 -148.828640 523.750060 1503.236080 357.684940 529.293640 1505.960820 -326.212460 519.266170 1469.414670 460.633540 493.643650 1474.732300 -427.795290 674.218690 1464.281620 684.426030 614.397400 1471.934810 709.357600 623.498900 1440.974850 -644.547180 551.618470 1445.408940 -663.761050 599.863830 39.570480 276.651790 594.021120 48.567360 168.265270 585.345090 39.916630 -201.712390 605.892400 51.634400 -100.940740 607.437010 1654.937990 125.323370 666.401920 1644.138430 0.446640 590.039310 1814.051030 29.524020
+187 3.100000 604.893130 1073.064700 157.840790 606.794370 1060.934940 -104.582000 408.092990 1079.315430 36.024850 543.197750 756.639710 224.128520 593.320430 682.011840 134.060230 522.279300 636.984070 226.587100 515.796140 767.968380 -168.241470 604.625370 718.627500 -111.653340 504.784240 659.005620 -160.619090 475.726590 553.584230 217.066280 469.160220 525.405820 98.274230 476.812350 528.557980 -150.484820 498.738530 519.778020 -36.383510 441.313540 468.965450 236.205150 513.364930 424.031400 184.191530 453.018980 384.107540 253.261030 467.652890 450.344180 -170.603810 517.085880 393.217470 -127.879400 446.286710 409.625920 -181.315020 437.667790 98.108530 255.607150 443.885890 103.594050 165.092360 442.973880 93.640570 -172.212040 464.962370 108.958540 -81.798680 366.685240 70.518220 210.179090 507.349760 80.335080 164.923890 509.330780 63.761140 272.835600 657.167910 50.652440 195.336530 371.632450 75.065250 -115.731660 544.812990 77.038730 -94.775080 523.199830 65.799830 -191.987790 654.408140 48.492850 -127.499150 602.472960 1423.427120 22.434910 487.214360 1549.747920 192.941730 484.309050 1559.497190 -148.861790 523.812870 1503.190190 357.710390 529.273990 1505.946410 -326.184390 519.245610 1469.286130 460.665650 493.728640 1474.647340 -427.627260 674.313900 1464.052490 684.398990 614.735780 1471.677250 709.376160 623.566530 1440.903440 -644.524170 551.766910 1445.233520 -663.657590 600.040160 39.557030 276.688350 594.127690 48.787430 168.185910 585.345090 39.916630 -201.712390 605.859560 51.620770 -100.975330 607.407290 1654.940430 125.334270 666.288390 1644.208500 0.605260 589.810060 1814.130490 29.572460
+188 3.117000 604.700010 1073.008180 157.933610 606.793640 1060.964360 -104.582240 408.032620 1079.346440 36.036710 543.180660 756.646610 224.137270 593.288820 682.029360 134.069260 522.220520 636.999210 226.624860 515.777830 768.031860 -168.170470 604.668700 718.662600 -111.607830 504.785060 659.003300 -160.569610 475.687500 553.588440 217.063690 469.128140 525.381470 98.324100 476.823330 528.552800 -150.446670 498.797240 519.782170 -36.301430 441.322240 469.006260 236.227140 513.338930 424.015840 184.209290 453.002720 384.109860 253.260390 467.659270 450.336360 -170.608600 517.065800 393.217770 -127.878420 446.274080 409.620240 -181.305590 437.655730 98.107910 255.617160 443.807650 103.593440 165.099950 442.973880 93.640570 -172.212040 464.966890 108.978320 -81.788550 366.678280 70.536340 210.194640 507.373960 80.344520 164.929140 509.341460 63.742150 272.839940 657.167910 50.652440 195.336530 371.681820 75.092580 -115.690560 544.812990 77.038730 -94.775080 523.457090 65.921490 -191.905120 654.475160 48.608120 -127.407360 602.365840 1423.368530 22.484390 487.101230 1549.741940 193.040620 484.280550 1559.522090 -148.832950 523.894840 1503.124760 357.746730 529.236510 1505.946530 -326.145780 519.235840 1469.220950 460.675720 493.802800 1474.593510 -427.499970 674.397580 1463.813840 684.359070 614.975160 1471.404540 709.410520 623.610960 1440.868290 -644.474370 551.844420 1445.125000 -663.572270 600.146670 39.549710 276.711300 594.212890 48.973190 168.107910 585.345090 39.916630 -201.712390 605.851680 51.607250 -101.002910 607.323000 1654.946040 125.353940 666.128480 1644.292110 0.714190 589.556210 1814.209840 29.628350
+189 3.133000 604.411250 1072.941770 158.017530 606.796630 1061.000610 -104.577930 407.914430 1079.369140 36.057550 543.137270 756.669620 224.165220 593.261600 682.057310 134.104740 522.180050 637.011470 226.651340 515.793760 768.135070 -168.119220 604.704710 718.690860 -111.580200 504.795200 658.994020 -160.496110 475.647980 553.590450 217.061600 469.103700 525.360230 98.370790 476.828490 528.546880 -150.359920 498.831480 519.784610 -36.253550 441.339630 469.053560 236.246000 513.330200 424.016690 184.211380 453.008700 384.107880 253.260890 467.680300 450.324950 -170.612960 517.023500 393.244450 -127.849890 446.193020 409.596740 -181.277270 437.642240 98.108180 255.650990 443.785490 103.601200 165.114200 442.973880 93.640570 -172.212040 464.969300 108.988910 -81.783120 366.680630 70.570000 210.231780 507.409760 80.355370 164.935990 509.348600 63.717190 272.849880 657.167910 50.652440 195.336530 371.681640 75.142280 -115.691540 544.812990 77.038730 -94.775080 523.946960 66.166590 -191.743390 654.528440 48.694180 -127.336950 602.302920 1423.322390 22.518700 486.980870 1549.750730 193.131300 484.243040 1559.562870 -148.756990 523.988400 1503.060670 357.790740 529.181030 1505.967770 -326.090850 519.233090 1469.201900 460.674470 493.828370 1474.594120 -427.439300 674.466060 1463.581670 684.334960 615.122990 1471.150020 709.461360 623.581790 1440.885740 -644.368350 551.857910 1445.098880 -663.531920 600.184330 39.550990 276.723540 594.264280 49.075730 168.053050 585.345090 39.916630 -201.712390 605.870120 51.591610 -101.017130 607.178590 1654.954710 125.385020 665.963810 1644.385130 0.774800 589.310730 1814.278320 29.685920
+190 3.150000 604.085390 1072.886350 158.077070 606.792850 1061.032960 -104.568210 407.769440 1079.370480 36.083840 543.066220 756.714230 224.218510 593.248170 682.085210 134.167160 522.146240 637.031250 226.666400 515.824710 768.228210 -168.089070 604.735470 718.705930 -111.566210 504.810790 658.973880 -160.416890 475.606410 553.588260 217.060410 469.089050 525.334530 98.411830 476.836240 528.540950 -150.247180 498.844420 519.785340 -36.235800 441.308560 469.100100 236.255710 513.328490 424.019170 184.210070 453.033630 384.105770 253.261400 467.718050 450.314940 -170.618670 516.976200 393.260350 -127.813800 446.084170 409.557160 -181.249070 437.630920 98.109180 255.696870 443.767700 103.607220 165.117870 442.973880 93.640570 -172.212040 464.969360 108.989200 -81.782970 366.690830 70.597530 210.266620 507.396330 80.338870 164.929860 509.347960 63.705310 272.861630 657.167910 50.652440 195.336530 371.686520 75.181700 -115.626010 544.812990 77.038730 -94.775080 524.395750 66.396550 -191.593490 654.562740 48.734150 -127.297770 602.255860 1423.276980 22.551530 486.854220 1549.760990 193.211120 484.179110 1559.597780 -148.668690 524.076110 1503.014770 357.840910 529.119200 1506.011350 -326.019990 519.232670 1469.204710 460.669560 493.770080 1474.664310 -427.437350 674.520690 1463.356570 684.347780 615.219540 1470.934450 709.521300 623.496830 1440.956540 -644.219360 551.816890 1445.167970 -663.540770 600.161130 39.563350 276.730070 594.280640 49.105070 168.026790 585.345090 39.916630 -201.712390 605.897090 51.576080 -101.019210 607.008790 1654.966670 125.423930 665.842830 1644.477910 0.798320 589.102050 1814.330320 29.738640
+191 3.167000 603.773440 1072.848390 158.113460 606.775390 1061.056030 -104.556200 407.651460 1079.363530 36.101390 542.986020 756.775450 224.290210 593.249150 682.106200 134.241550 522.116270 637.055850 226.673980 515.843510 768.274540 -168.069900 604.761050 718.712710 -111.558770 504.830630 658.947270 -160.356190 475.543430 553.582820 217.059080 469.099180 525.323120 98.437120 476.859440 528.538510 -150.153780 498.845730 519.784730 -36.235230 441.218080 469.131500 236.269760 513.323670 424.010860 184.218920 453.076320 384.106900 253.261020 467.762820 450.313840 -170.626110 516.947810 393.249210 -127.791020 445.993260 409.522640 -181.233550 437.629850 98.110450 255.728470 443.737210 103.602910 165.107390 442.973880 93.640570 -172.212040 464.966220 108.975400 -81.790040 366.697600 70.612970 210.286730 507.335240 80.291950 164.910370 509.341770 63.715270 272.872220 657.167910 50.652440 195.336530 371.686250 75.224150 -115.555320 544.812990 77.038730 -94.775080 524.570560 66.497150 -191.531560 654.583860 48.736070 -127.282510 602.211850 1423.234380 22.584870 486.730040 1549.760500 193.280170 484.086000 1559.621700 -148.587540 524.143860 1502.989620 357.889530 529.065610 1506.072880 -325.942780 519.231570 1469.212400 460.664610 493.625670 1474.797610 -427.473050 674.566960 1463.170900 684.404910 615.279910 1470.785890 709.580690 623.428830 1441.064330 -644.077090 551.736630 1445.339230 -663.593140 600.073300 39.588260 276.731320 594.268070 49.098810 168.018140 585.345090 39.916630 -201.712390 605.913020 51.570530 -101.018180 606.867980 1654.981200 125.459550 665.780760 1644.558960 0.800250 588.942630 1814.366330 29.783200
+192 3.183000 603.531560 1072.828740 158.134000 606.743160 1061.076050 -104.542790 407.579130 1079.366460 36.110840 542.924620 756.836060 224.359820 593.254090 682.121150 134.304570 522.099430 637.073550 226.675130 515.842100 768.273800 -168.059660 604.766780 718.727720 -111.558670 504.848360 658.929440 -160.321620 475.456790 553.577510 217.056780 469.133510 525.332580 98.446780 476.892760 528.541560 -150.102690 498.843660 519.783020 -36.241010 441.107480 469.139800 236.300490 513.315730 423.994810 184.239750 453.124150 384.107210 253.260860 467.793730 450.322510 -170.629360 516.951480 393.237120 -127.784730 445.934020 409.517940 -181.223390 437.643100 98.111850 255.734300 443.733550 103.591170 165.097750 442.973880 93.640570 -172.212040 464.958590 108.941850 -81.807240 366.693600 70.620640 210.292740 507.278470 80.247460 164.892320 509.342010 63.730540 272.881040 657.167910 50.652440 195.336530 371.624820 75.303750 -115.568280 544.812990 77.038730 -94.775080 524.524900 66.496990 -191.539340 654.592100 48.713010 -127.286080 602.168640 1423.205570 22.615650 486.626010 1549.743530 193.341520 483.977970 1559.646480 -148.517290 524.186520 1502.979860 357.926510 529.030520 1506.140140 -325.872920 519.229000 1469.217160 460.660580 493.441930 1474.958370 -427.523800 674.603150 1463.076660 684.491880 615.292540 1470.728760 709.637210 623.432740 1441.185300 -643.982420 551.635250 1445.594120 -663.671020 599.916500 39.620140 276.720090 594.236330 49.087790 168.007890 585.345090 39.916630 -201.712390 605.908630 51.580920 -101.026850 606.783260 1654.994020 125.483490 665.746950 1644.622680 0.794900 588.827090 1814.391600 29.820880
+193 3.200000 603.393550 1072.827270 158.143490 606.702270 1061.104610 -104.526250 407.532530 1079.380250 36.127780 542.895260 756.879700 224.408890 593.254150 682.132630 134.342830 522.099300 637.079590 226.670790 515.829040 768.251100 -168.061950 604.731380 718.761230 -111.573930 504.847960 658.940920 -160.303730 475.375980 553.576720 217.053630 469.165860 525.341490 98.451770 476.914030 528.548520 -150.082750 498.842350 519.780580 -36.247100 441.022280 469.136440 236.341980 513.310000 423.981170 184.268780 453.150390 384.101750 253.262340 467.791410 450.334560 -170.621810 516.981570 393.251250 -127.787870 445.880460 409.542630 -181.203770 437.658480 98.112890 255.727130 443.791410 103.584590 165.102020 442.973880 93.640570 -172.212040 464.949010 108.899820 -81.828790 366.681550 70.624670 210.290530 507.257140 80.246180 164.889800 509.352200 63.737820 272.884610 657.167910 50.652440 195.336530 371.497470 75.413770 -115.625080 544.812990 77.038730 -94.775080 524.495910 66.501500 -191.542790 654.577580 48.674930 -127.311820 602.111020 1423.188600 22.654210 486.537540 1549.712400 193.400590 483.878140 1559.682620 -148.457750 524.203670 1502.980830 357.950810 529.017090 1506.195680 -325.821660 519.227170 1469.219480 460.657650 493.288480 1475.097050 -427.570220 674.616460 1463.105350 684.578740 615.234440 1470.759030 709.689700 623.498110 1441.295170 -643.936650 551.526180 1445.873290 -663.744140 599.733280 39.642520 276.691100 594.197020 49.086890 167.985370 585.345090 39.916630 -201.712390 605.889530 51.602540 -101.044360 606.741640 1654.994750 125.497730 665.695500 1644.667110 0.789250 588.740300 1814.412840 29.855690
+194 3.217000 603.342960 1072.835210 158.146220 606.662230 1061.138790 -104.508300 407.483090 1079.395390 36.163760 542.895320 756.906010 224.437230 593.250920 682.138180 134.358570 522.103270 637.080510 226.666690 515.808170 768.226680 -168.069980 604.642400 718.793760 -111.611080 504.819430 658.983220 -160.294250 475.327970 553.581050 217.050630 469.172790 525.332280 98.459470 476.904170 528.555970 -150.072130 498.842130 519.778630 -36.251040 440.990690 469.139310 236.381010 513.309080 423.974880 184.303990 453.123660 384.090790 253.265660 467.758210 450.340970 -170.606490 517.014100 393.274380 -127.799830 445.803160 409.571560 -181.173540 437.660030 98.112960 255.725540 443.892180 103.586920 165.116350 442.973880 93.640570 -172.212040 464.941650 108.867510 -81.845340 366.667790 70.627120 210.285710 507.259280 80.292690 164.902280 509.364990 63.742170 272.882170 657.167910 50.652440 195.336530 371.352110 75.500470 -115.673080 544.812990 77.038730 -94.775080 524.554750 66.522180 -191.526170 654.534000 48.624060 -127.363430 602.019410 1423.168950 22.719000 486.436280 1549.676030 193.459440 483.802090 1559.726930 -148.406680 524.197630 1502.988650 357.974330 529.014530 1506.227780 -325.789400 519.232120 1469.225340 460.657170 493.203800 1475.185670 -427.602540 674.595280 1463.243160 684.640200 615.076780 1470.856930 709.728210 623.568790 1441.371340 -643.917420 551.418760 1446.104130 -663.785400 599.635380 39.639640 276.659730 594.157780 49.082490 167.966260 585.345090 39.916630 -201.712390 605.867190 51.626300 -101.060340 606.718020 1654.977420 125.509000 665.615910 1644.689700 0.783320 588.667660 1814.433840 29.891470
+195 3.233000 603.342040 1072.836550 158.151250 606.627990 1061.156980 -104.495390 407.411900 1079.410770 36.217260 542.920230 756.927120 224.458310 593.250000 682.132930 134.359940 522.100160 637.082890 226.667070 515.777280 768.204100 -168.070510 604.502080 718.784850 -111.671860 504.771060 659.033450 -160.290850 475.315220 553.583860 217.049440 469.157230 525.317570 98.465900 476.858830 528.561160 -150.057450 498.839750 519.779910 -36.251720 441.012630 469.148650 236.411010 513.311830 423.974910 184.337650 453.023040 384.073970 253.271180 467.714970 450.337460 -170.594940 517.021970 393.267240 -127.822570 445.702330 409.583500 -181.146470 437.647980 98.112240 255.733460 443.977600 103.591460 165.127090 442.973880 93.640570 -172.212040 464.937900 108.851010 -81.853800 366.651430 70.630490 210.280460 507.258510 80.344710 164.915540 509.384280 63.738900 272.886470 657.167910 50.652440 195.336530 371.229740 75.518010 -115.745990 544.812990 77.038730 -94.775080 524.535830 66.472910 -191.545210 654.477050 48.563100 -127.428740 601.890140 1423.130000 22.821540 486.317810 1549.643070 193.516880 483.752990 1559.766720 -148.357890 524.168400 1503.004390 358.014770 529.001100 1506.235470 -325.761290 519.252870 1469.244020 460.662630 493.174770 1475.226440 -427.618470 674.546450 1463.426760 684.669800 614.834170 1471.005740 709.745000 623.580870 1441.395630 -643.905030 551.322630 1446.247680 -663.779790 599.700200 39.614140 276.651180 594.118900 49.040940 167.974720 585.345090 39.916630 -201.712390 605.851010 51.643870 -101.068270 606.698670 1654.947880 125.522970 665.537410 1644.687500 0.777680 588.602540 1814.454830 29.929760
+196 3.250000 603.362550 1072.822880 158.168960 606.599060 1061.146970 -104.491460 407.326510 1079.428470 36.273860 542.958920 756.948550 224.478870 593.250310 682.117250 134.352570 522.096250 637.084350 226.668590 515.736760 768.183110 -168.058500 604.328430 718.719120 -111.750170 504.719760 659.072200 -160.289280 475.330170 553.580690 217.050810 469.128880 525.316470 98.464490 476.779970 528.564210 -150.034010 498.829410 519.789060 -36.247880 441.055080 469.149510 236.433260 513.314880 423.978550 184.352510 452.863220 384.048130 253.279830 467.675170 450.332030 -170.595340 516.994930 393.224730 -127.847500 445.595210 409.581820 -181.129970 437.637850 98.111640 255.739960 444.005250 103.596210 165.126740 442.973880 93.640570 -172.212040 464.936800 108.846220 -81.856250 366.630650 70.636080 210.275190 507.249390 80.365550 164.919420 509.422330 63.709610 272.911680 657.167910 50.652440 195.336530 371.159790 75.474330 -115.845670 544.812990 77.038730 -94.775080 524.329710 66.327430 -191.626880 654.437740 48.509270 -127.478640 601.737490 1423.060790 22.960920 486.216280 1549.615110 193.575580 483.728580 1559.794190 -148.303790 524.113040 1503.030400 358.077180 528.959720 1506.225460 -325.711880 519.297490 1469.283080 460.679050 493.161680 1475.229130 -427.613830 674.495610 1463.585940 684.674190 614.597900 1471.185300 709.745360 623.488890 1441.365600 -643.880430 551.240050 1446.316650 -663.721010 599.868350 39.583660 276.667210 594.077580 48.953850 168.007860 585.345090 39.916630 -201.712390 605.846860 51.650820 -101.060460 606.680420 1654.913820 125.545170 665.483400 1644.661250 0.775730 588.546450 1814.472900 29.969220
+197 3.267000 603.386290 1072.800900 158.195710 606.571780 1061.126710 -104.491000 407.254580 1079.442140 36.315750 542.990660 756.962890 224.492290 593.244690 682.098880 134.337660 522.100340 637.080140 226.667940 515.683040 768.164180 -168.038100 604.161930 718.637510 -111.822210 504.678890 659.098140 -160.285110 475.367980 553.577330 217.053220 469.084320 525.325380 98.457160 476.672060 528.570560 -150.001480 498.805050 519.811100 -36.238040 441.089510 469.134280 236.450590 513.316960 423.984990 184.341340 452.707920 384.018920 253.289690 467.636660 450.341220 -170.606720 516.941710 393.183010 -127.861770 445.498750 409.588350 -181.115040 437.639250 98.111660 255.737670 443.993070 103.599660 165.120680 442.973880 93.640570 -172.212040 464.937040 108.847210 -81.855750 366.618040 70.639720 210.272260 507.256530 80.366550 164.919880 509.471340 63.659340 272.950160 657.167910 50.652440 195.336530 371.160610 75.418910 -115.886440 544.812990 77.038730 -94.775080 524.031860 66.170010 -191.727940 654.428960 48.480010 -127.496890 601.581730 1422.965820 23.121790 486.161160 1549.590580 193.641620 483.722440 1559.812990 -148.240590 524.037780 1503.060550 358.144440 528.888000 1506.207280 -325.623500 519.362850 1469.348750 460.710660 493.131470 1475.197510 -427.578580 674.464110 1463.699830 684.657900 614.455440 1471.371950 709.742550 623.289370 1441.304320 -643.822750 551.158020 1446.348510 -663.612790 600.024720 39.562050 276.689270 594.033200 48.849890 168.043910 585.345090 39.916630 -201.712390 605.853700 51.649600 -101.034140 606.663940 1654.876220 125.580860 665.446960 1644.620240 0.778340 588.505490 1814.484500 30.006440
+198 3.283000 603.401550 1072.782590 158.211470 606.541320 1061.123660 -104.483630 407.208220 1079.444460 36.336940 542.998600 756.961180 224.490070 593.229490 682.085690 134.311610 522.108030 637.070680 226.668720 515.609440 768.140870 -168.015500 604.057620 718.607730 -111.857690 504.653810 659.116210 -160.278780 475.415620 553.581540 217.054350 469.021120 525.325990 98.452990 476.556460 528.587160 -149.966690 498.766480 519.845890 -36.222660 441.116150 469.107330 236.464650 513.320370 423.996030 184.322420 452.631530 384.001160 253.295880 467.595250 450.373350 -170.623810 516.883480 393.176420 -127.863200 445.434690 409.611970 -181.098600 437.642610 98.111820 255.734470 443.990450 103.595410 165.119490 442.973880 93.640570 -172.212040 464.937620 108.849780 -81.854430 366.632230 70.635080 210.274980 507.295930 80.373800 164.925750 509.503750 63.621050 272.976990 657.167910 50.652440 195.336530 371.240690 75.386800 -115.798070 544.812990 77.038730 -94.775080 523.759160 66.072730 -191.805370 654.435240 48.479600 -127.492710 601.441890 1422.865230 23.270950 486.150450 1549.570800 193.713990 483.722530 1559.828000 -148.170620 523.956730 1503.083620 358.190580 528.796570 1506.187870 -325.509090 519.426760 1469.451290 460.756320 493.078700 1475.131840 -427.502500 674.447750 1463.791750 684.622800 614.414550 1471.551640 709.750920 623.029480 1441.244260 -643.730290 551.061100 1446.363890 -663.481080 600.116210 39.551830 276.704770 593.986270 48.760990 168.070770 585.345090 39.916630 -201.712390 605.865540 51.643750 -101.002680 606.652470 1654.835210 125.628650 665.414370 1644.577030 0.781780 588.484680 1814.488530 30.037620
+199 3.300000 603.405330 1072.770390 158.204100 606.507570 1061.142820 -104.466520 407.174530 1079.436890 36.345660 542.982420 756.939510 224.468030 593.206050 682.074520 134.264390 522.116460 637.056270 226.674120 515.523380 768.106630 -167.995930 604.043950 718.655270 -111.853920 504.643220 659.125980 -160.273680 475.444370 553.593080 217.053070 468.954650 525.308350 98.458780 476.465580 528.612730 -149.940370 498.725220 519.883000 -36.206390 441.130770 469.071590 236.478560 513.327030 424.010740 184.319870 452.661040 383.996640 253.297580 467.552830 450.415100 -170.643750 516.845280 393.205630 -127.856790 445.424410 409.636960 -181.098040 437.636230 98.111490 255.739760 444.009090 103.583340 165.124830 442.973880 93.640570 -172.212040 464.938110 108.851920 -81.853330 366.676670 70.620760 210.283720 507.336400 80.383310 164.932600 509.503510 63.616130 272.977290 657.167910 50.652440 195.336530 371.407440 75.369480 -115.602040 544.812990 77.038730 -94.775080 523.485230 66.001630 -191.874590 654.448120 48.515510 -127.469040 601.327940 1422.779790 23.371830 486.163390 1549.559570 193.779920 483.715360 1559.831420 -148.100490 523.873960 1503.093870 358.200440 528.698910 1506.168460 -325.404080 519.457580 1469.597170 460.804960 493.021240 1475.036010 -427.388820 674.416380 1463.879640 684.584660 614.421330 1471.721070 709.785160 622.785280 1441.203130 -643.631350 550.944820 1446.353270 -663.367800 600.151000 39.549340 276.712160 593.937500 48.697970 168.088670 585.345090 39.916630 -201.712390 605.879460 51.631860 -100.982360 606.647340 1654.796510 125.677010 665.384160 1644.533080 0.781490 588.484560 1814.487060 30.060330
+200 3.317000 603.402650 1072.760860 158.183330 606.474000 1061.169310 -104.445170 407.136900 1079.428830 36.354450 542.954770 756.900820 224.428500 593.174560 682.055970 134.187960 522.136050 637.034060 226.678770 515.449220 768.065670 -167.985550 604.094240 718.741270 -111.839160 504.643370 659.123900 -160.272720 475.435420 553.606690 217.049710 468.910310 525.281370 98.470320 476.410680 528.637020 -149.925110 498.698820 519.906740 -36.196030 441.108920 469.022400 236.497270 513.334110 424.022190 184.339200 452.776370 383.991060 253.298950 467.513210 450.442840 -170.666310 516.836610 393.247770 -127.845720 445.465240 409.645260 -181.126370 437.623110 98.110820 255.750840 444.025630 103.571170 165.129530 442.973880 93.640570 -172.212040 464.938390 108.853160 -81.852700 366.732600 70.602730 210.294710 507.327940 80.372160 164.928760 509.479890 63.635490 272.957950 657.167910 50.652440 195.336530 371.626340 75.348500 -115.403700 544.812990 77.038730 -94.775080 523.156560 65.896710 -191.963960 654.475460 48.588370 -127.419990 601.236760 1422.716310 23.411990 486.179140 1549.557620 193.826510 483.691860 1559.807740 -148.037090 523.785030 1503.092900 358.176480 528.600650 1506.148680 -325.327850 519.440060 1469.773440 460.841340 492.970430 1474.924190 -427.262600 674.338260 1463.946290 684.573300 614.410950 1471.872560 709.854060 622.615050 1441.179570 -643.559200 550.803100 1446.304080 -663.295840 600.155330 39.550270 276.714390 593.888120 48.652330 168.101360 585.345090 39.916630 -201.712390 605.895940 51.611700 -100.977580 606.643800 1654.769040 125.713380 665.357060 1644.480100 0.775460 588.501340 1814.484250 30.074700
+201 3.333000 603.398320 1072.755490 158.163540 606.439700 1061.191770 -104.423420 407.089200 1079.429320 36.370660 542.929260 756.853520 224.379710 593.136540 682.032780 134.095200 522.171940 637.008000 226.675890 515.410710 768.034240 -167.990310 604.156310 718.816470 -111.837030 504.649020 659.112730 -160.275450 475.402470 553.618040 217.045580 468.898040 525.262940 98.474200 476.375700 528.651000 -149.914410 498.694610 519.910520 -36.194380 441.045780 468.958680 236.521640 513.338320 424.025760 184.366680 452.932460 383.979830 253.301560 467.480410 450.449430 -170.686870 516.845090 393.288270 -127.833080 445.522430 409.632780 -181.168460 437.607510 98.110020 255.763980 444.042180 103.568710 165.132160 442.973880 93.640570 -172.212040 464.938510 108.853630 -81.852460 366.773070 70.589670 210.302640 507.262850 80.335350 164.911940 509.448940 63.664740 272.932280 657.167910 50.652440 195.336530 371.799930 75.334580 -115.317340 544.812990 77.038730 -94.775080 522.862300 65.790650 -192.047850 654.511050 48.667190 -127.362430 601.164670 1422.672730 23.408320 486.185910 1549.562130 193.852860 483.650790 1559.754640 -147.982970 523.696840 1503.086060 358.134950 528.501100 1506.133060 -325.271150 519.392640 1469.954590 460.857180 492.914760 1474.817140 -427.156430 674.207520 1463.954590 684.611210 614.359560 1471.990480 709.951840 622.524600 1441.169310 -643.525510 550.617860 1446.226200 -663.251040 600.151920 39.551690 276.714940 593.838810 48.614040 168.112630 585.345090 39.916630 -201.712390 605.912840 51.588130 -100.981830 606.634460 1654.758790 125.739170 665.327450 1644.417360 0.765500 588.527220 1814.483890 30.083920
+202 3.350000 603.394350 1072.755980 158.150120 606.401610 1061.208740 -104.401090 407.037080 1079.439210 36.393050 542.917050 756.806700 224.330370 593.099670 682.020140 134.017290 522.205690 636.991520 226.667590 515.416260 768.028750 -168.007490 604.195430 718.868230 -111.847440 504.654600 659.101930 -160.278590 475.371640 553.625430 217.041600 468.898280 525.254700 98.463840 476.340820 528.653080 -149.902370 498.704470 519.901670 -36.198230 440.979490 468.895750 236.544450 513.339540 424.025630 184.380740 453.057560 383.972230 253.302920 467.459780 450.449070 -170.695370 516.851990 393.329960 -127.823550 445.560700 409.609470 -181.196580 437.584350 98.108830 255.783390 444.078670 103.584840 165.136520 442.973880 93.640570 -172.212040 464.938480 108.853550 -81.852500 366.788940 70.584540 210.305770 507.181030 80.292020 164.891490 509.418460 63.702200 272.907230 657.167910 50.652440 195.336530 371.839940 75.351170 -115.386310 544.812990 77.038730 -94.775080 522.754520 65.770420 -192.072590 654.533390 48.710070 -127.328480 601.115360 1422.647220 23.387440 486.181730 1549.569210 193.867780 483.597410 1559.692140 -147.935530 523.628780 1503.078610 358.095580 528.403380 1506.127560 -325.220460 519.351260 1470.114010 460.853420 492.843720 1474.732670 -427.086610 674.045100 1463.897830 684.702390 614.288940 1472.064210 710.066280 622.479740 1441.171510 -643.523250 550.381840 1446.149660 -663.206420 600.152590 39.552350 276.715850 593.789490 48.581690 168.125020 585.345090 39.916630 -201.712390 605.922850 51.574120 -100.984610 606.615300 1654.767460 125.774140 665.291930 1644.360720 0.757260 588.552250 1814.487180 30.094630
+203 3.367000 603.392330 1072.757810 158.143460 606.363830 1061.222050 -104.379750 406.992950 1079.453740 36.414970 542.929690 756.768860 224.288930 593.072450 682.026730 133.977170 522.205320 636.996280 226.662810 515.454100 768.043030 -168.025560 604.199280 718.906370 -111.861500 504.657470 659.097470 -160.280080 475.355070 553.628600 217.037730 468.885350 525.238280 98.448560 476.296940 528.648560 -149.887760 498.718990 519.888670 -36.203890 440.951630 468.853270 236.558110 513.338500 424.025850 184.368610 453.084260 383.969820 253.302920 467.456210 450.456180 -170.686220 516.845700 393.370640 -127.821320 445.567020 409.590090 -181.194380 437.555180 98.107330 255.807770 444.111660 103.617590 165.138990 442.973880 93.640570 -172.212040 464.938320 108.852910 -81.852820 366.795230 70.582500 210.306990 507.122680 80.261740 164.876820 509.392700 63.743060 272.886410 657.167910 50.652440 195.336530 371.762330 75.395900 -115.537530 544.812990 77.038730 -94.775080 522.880860 65.862710 -192.021510 654.526250 48.692990 -127.339040 601.090330 1422.636840 23.367780 486.173340 1549.574100 193.879290 483.538670 1559.644040 -147.890690 523.591430 1503.073610 358.070310 528.315550 1506.130620 -325.173680 519.334350 1470.228520 460.836520 492.769350 1474.680660 -427.049440 673.881290 1463.817380 684.834350 614.219910 1472.097530 710.189700 622.441100 1441.185180 -643.541020 550.123660 1446.097050 -663.155460 600.157530 39.552280 276.717190 593.739870 48.552820 168.138440 585.345090 39.916630 -201.712390 605.921080 51.577430 -100.981490 606.591430 1654.793090 125.845440 665.254330 1644.329710 0.757170 588.566220 1814.491700 30.117550
+204 3.383000 603.392270 1072.759520 158.140670 606.336300 1061.230100 -104.364680 406.967710 1079.467770 36.430100 542.968080 756.750180 224.266360 593.053470 682.047730 133.977550 522.142270 637.021240 226.669920 515.498110 768.056950 -168.035060 604.168330 718.940800 -111.877790 504.658600 659.097290 -160.280620 475.350250 553.626710 217.034040 468.856990 525.205570 98.440820 476.243230 528.643370 -149.872820 498.735350 519.873960 -36.210250 440.969910 468.834960 236.563980 513.333680 424.021820 184.336880 453.003450 383.961760 253.305160 467.470640 450.469570 -170.666050 516.826350 393.393520 -127.827100 445.533450 409.581020 -181.160520 437.530580 98.106060 255.828290 444.093050 103.646580 165.132510 442.973880 93.640570 -172.212040 464.938020 108.851550 -81.853520 366.805420 70.579190 210.308960 507.102020 80.251010 164.871020 509.371550 63.776600 272.868930 657.167910 50.652440 195.336530 371.673610 75.449650 -115.604190 544.812990 77.038730 -94.775080 523.136350 66.002450 -191.933330 654.484680 48.612850 -127.398670 601.083010 1422.635620 23.355960 486.171810 1549.570680 193.889340 483.479030 1559.622920 -147.844390 523.576970 1503.071410 358.060850 528.244020 1506.135010 -325.133000 519.334840 1470.283940 460.814880 492.710820 1474.660030 -427.033750 673.749210 1463.755980 684.974670 614.143740 1472.098510 710.310060 622.387630 1441.207640 -643.569640 549.889710 1446.070920 -663.113890 600.154480 39.552520 276.716550 593.689820 48.521660 168.149430 585.345090 39.916630 -201.712390 605.910950 51.591190 -100.980200 606.579040 1654.829470 125.968460 665.220580 1644.326540 0.766820 588.561460 1814.492310 30.167530
+205 3.400000 603.390440 1072.770630 158.134810 606.327210 1061.229740 -104.361030 406.959990 1079.479980 36.438300 543.010560 756.759890 224.274150 593.028320 682.075440 134.012270 522.003050 637.052000 226.692110 515.526060 768.073550 -168.031650 604.116880 718.976260 -111.899120 504.659300 659.099370 -160.281250 475.348110 553.617190 217.032330 468.824130 525.172610 98.441700 476.184420 528.639340 -149.861940 498.746310 519.864140 -36.214510 441.015080 468.835270 236.566600 513.324460 424.008940 184.301570 452.869230 383.937560 253.313340 467.495360 450.478180 -170.649660 516.804870 393.389800 -127.837040 445.464200 409.585330 -181.109440 437.509860 98.105000 255.845580 444.024080 103.650630 165.118970 442.973880 93.640570 -172.212040 464.937530 108.849430 -81.854610 366.810520 70.577530 210.309940 507.116820 80.258210 164.873400 509.350070 63.801760 272.850190 657.167910 50.652440 195.336530 371.640630 75.503740 -115.486860 544.812990 77.038730 -94.775080 523.324040 66.089020 -191.873730 654.419680 48.495810 -127.489790 601.084900 1422.637570 23.351840 486.181120 1549.558350 193.898330 483.421260 1559.627200 -147.792950 523.568360 1503.071660 358.065580 528.188170 1506.136230 -325.095980 519.338930 1470.279420 460.796450 492.673520 1474.659180 -427.028870 673.677430 1463.721070 685.085020 614.030820 1472.065550 710.410220 622.317500 1441.237060 -643.601930 549.702700 1446.067870 -663.083860 600.119690 39.554860 276.709010 593.638180 48.491180 168.152280 585.345090 39.916630 -201.712390 605.894960 51.607960 -100.993930 606.592590 1654.865600 126.129650 665.191530 1644.338380 0.781710 588.535400 1814.482910 30.260890
+206 3.417000 603.383180 1072.800050 158.122100 606.337340 1061.222780 -104.368420 406.954070 1079.492550 36.445990 543.023070 756.797360 224.313660 592.986880 682.106320 134.076640 521.806520 637.069580 226.723010 515.528440 768.111390 -168.012730 604.065730 719.005680 -111.921200 504.658570 659.107180 -160.280980 475.337250 553.597230 217.037480 468.785340 525.157900 98.442960 476.130310 528.635860 -149.857760 498.739500 519.870240 -36.211880 441.058470 468.850650 236.566270 513.314090 423.991820 184.274460 452.743650 383.898960 253.327120 467.513700 450.476290 -170.647710 516.794190 393.378110 -127.846310 445.399380 409.617070 -181.065350 437.484440 98.103690 255.866790 443.949830 103.631790 165.109560 442.973880 93.640570 -172.212040 464.937040 108.847310 -81.855700 366.791500 70.583690 210.306240 507.158360 80.278850 164.882230 509.331540 63.817710 272.833500 657.167910 50.652440 195.336530 371.631900 75.548700 -115.272180 544.812990 77.038730 -94.775080 523.349980 66.088600 -191.869480 654.365050 48.407200 -127.563510 601.090820 1422.637820 23.353960 486.190430 1549.545290 193.909190 483.369870 1559.646120 -147.738110 523.549990 1503.073730 358.084140 528.138490 1506.136230 -325.056640 519.334590 1470.232790 460.787900 492.648860 1474.665890 -427.026460 673.670720 1463.699710 685.148930 613.865780 1471.993290 710.480530 622.238770 1441.275630 -643.632260 549.556270 1446.086060 -663.042360 600.024350 39.561400 276.688450 593.583560 48.469780 168.140370 585.345090 39.916630 -201.712390 605.869810 51.631270 -101.025400 606.628780 1654.891720 126.290880 665.160640 1644.357180 0.796070 588.491640 1814.459840 30.409000
+207 3.433000 603.371340 1072.841190 158.109790 606.356630 1061.218020 -104.378540 406.938350 1079.503300 36.456400 542.971070 756.845400 224.367860 592.940920 682.136960 134.162730 521.608760 637.065120 226.749100 515.507020 768.165340 -167.982380 604.028200 719.010440 -111.929900 504.654910 659.122920 -160.278490 475.307500 553.568480 217.057070 468.733090 525.165040 98.437830 476.093110 528.630800 -149.854570 498.716030 519.891300 -36.202770 441.073270 468.868900 236.564240 513.306460 423.978300 184.259510 452.642150 383.859280 253.342040 467.513550 450.467680 -170.658970 516.793820 393.386410 -127.849310 445.387180 409.683200 -181.044010 437.457060 98.102280 255.889630 443.896360 103.603040 165.116170 442.973880 93.640570 -172.212040 464.937100 108.847530 -81.855590 366.744050 70.599100 210.297030 507.206630 80.303350 164.894070 509.328860 63.809700 272.830510 657.167910 50.652440 195.336530 371.592320 75.570260 -115.130330 544.812990 77.038730 -94.775080 523.332460 66.071940 -191.877810 654.359990 48.411250 -127.566830 601.099060 1422.633300 23.361730 486.187260 1549.541140 193.924510 483.324040 1559.667850 -147.686800 523.514770 1503.077270 358.115450 528.086910 1506.139530 -325.013670 519.313290 1470.177370 460.794740 492.627260 1474.676030 -427.021580 673.705320 1463.682740 685.175170 613.670410 1471.887570 710.520020 622.166630 1441.321780 -643.654790 549.443910 1446.118040 -662.981750 599.857120 39.572950 276.652500 593.526310 48.455760 168.110490 585.345090 39.916630 -201.712390 605.839050 51.662240 -101.056020 606.668090 1654.905150 126.420800 665.122500 1644.378780 0.806500 588.438720 1814.423710 30.610340
+208 3.450000 603.358150 1072.876460 158.112630 606.371090 1061.221560 -104.382710 406.917140 1079.507200 36.465810 542.817320 756.881710 224.414020 592.908390 682.162410 134.252000 521.465330 637.047180 226.762820 515.474670 768.205260 -167.953480 604.007020 718.982180 -111.911420 504.648620 659.138310 -160.274440 475.254550 553.541690 217.098270 468.673580 525.184570 98.426950 476.084780 528.621400 -149.842530 498.693180 519.911740 -36.193890 441.037570 468.875030 236.563860 513.302730 423.971250 184.254460 452.544070 383.825290 253.355360 467.500310 450.457950 -170.673750 516.788760 393.417630 -127.839420 445.436520 409.752990 -181.048260 437.437070 98.101250 255.906310 443.859380 103.565500 165.141890 442.973880 93.640570 -172.212040 464.938660 108.854380 -81.852070 366.687840 70.617360 210.286120 507.229610 80.317050 164.903990 509.347900 63.768630 272.847660 657.167910 50.652440 195.336530 371.505340 75.573370 -115.165070 544.812990 77.038730 -94.775080 523.385860 66.100040 -191.859730 654.409610 48.504860 -127.496210 601.109250 1422.623170 23.374600 486.172300 1549.545410 193.944840 483.266480 1559.685420 -147.639830 523.469060 1503.081300 358.153380 528.040280 1506.148190 -324.972440 519.280520 1470.134030 460.817320 492.607600 1474.688480 -427.014250 673.747860 1463.669680 685.180420 613.474850 1471.768680 710.535160 622.123900 1441.365720 -643.663510 549.367550 1446.148800 -662.926270 599.669800 39.585930 276.612270 593.470760 48.434640 168.074420 585.345090 39.916630 -201.712390 605.818600 51.687670 -101.061280 606.685610 1654.907710 126.520230 665.081730 1644.396000 0.811640 588.386410 1814.380370 30.846310
+209 3.467000 603.341920 1072.900270 158.138600 606.378850 1061.228880 -104.381840 406.898040 1079.505490 36.472010 542.531130 756.896480 224.442640 592.889470 682.181580 134.325730 521.385740 637.032780 226.769500 515.441100 768.202880 -167.937740 604.000000 718.943850 -111.868610 504.640900 659.136900 -160.269670 475.184080 553.530330 217.160830 468.621950 525.203610 98.414600 476.107540 528.609500 -149.825380 498.685360 519.918760 -36.190850 440.940030 468.875550 236.562700 513.301820 423.969120 184.254670 452.435030 383.794490 253.367310 467.490110 450.451080 -170.681560 516.774050 393.450960 -127.813160 445.521480 409.781280 -181.077880 437.427340 98.100750 255.914430 443.835660 103.524680 165.174770 442.973880 93.640570 -172.212040 464.942930 108.873120 -81.842470 366.653690 70.628430 210.279500 507.209530 80.314010 164.911440 509.376130 63.715190 272.877170 657.167910 50.652440 195.336530 371.407350 75.571260 -115.352010 544.812990 77.038730 -94.775080 523.426570 66.129190 -191.843440 654.479490 48.623670 -127.400610 601.118470 1422.611330 23.388640 486.153560 1549.552730 193.970580 483.176030 1559.694460 -147.589400 523.425290 1503.084350 358.190370 528.014650 1506.158200 -324.934110 519.252690 1470.098750 460.849910 492.593020 1474.701540 -427.006900 673.776980 1463.661740 685.178220 613.293640 1471.663700 710.536560 622.128420 1441.400150 -643.654480 549.324460 1446.165040 -662.895260 599.583010 39.591940 276.593630 593.427120 48.395570 168.060850 585.345090 39.916630 -201.712390 605.822940 51.689680 -101.036430 606.653690 1654.901730 126.613220 665.043820 1644.407350 0.811700 588.342290 1814.339600 31.085330
+210 3.483000 603.316470 1072.925420 158.177000 606.385680 1061.232910 -104.381110 406.883880 1079.503300 36.476230 542.137390 756.894100 224.457280 592.873600 682.197270 134.377730 521.344850 637.031560 226.777510 515.402890 768.148190 -167.937940 604.009950 718.933470 -111.819160 504.630860 659.106870 -160.261520 475.111390 553.535830 217.231170 468.584930 525.215700 98.403630 476.144620 528.600770 -149.819210 498.690640 519.914060 -36.192900 440.788540 468.889400 236.554930 513.302120 423.969450 184.256560 452.324190 383.772920 253.375840 467.491580 450.449070 -170.679140 516.763430 393.470340 -127.773840 445.613890 409.762360 -181.127580 437.424840 98.100620 255.916520 443.827580 103.504500 165.191620 442.973880 93.640570 -172.212040 464.950320 108.905620 -81.825810 366.656950 70.627380 210.280120 507.163360 80.306560 164.922710 509.391240 63.687340 272.902100 657.167910 50.652440 195.336530 371.366210 75.556340 -115.564240 544.812990 77.038730 -94.775080 523.343570 66.096860 -191.867870 654.532530 48.709600 -127.329250 601.119140 1422.606080 23.396660 486.136690 1549.561040 194.000520 483.056210 1559.694460 -147.533000 523.387940 1503.085330 358.225830 528.014280 1506.162480 -324.890230 519.232790 1470.071040 460.888730 492.583100 1474.715450 -427.000310 673.788760 1463.657960 685.175960 613.144100 1471.590700 710.532590 622.178340 1441.424930 -643.630070 549.312260 1446.161620 -662.880550 599.669680 39.585930 276.612240 593.414060 48.364190 168.085830 585.345090 39.916630 -201.712390 605.852970 51.662280 -100.996610 606.549560 1654.888550 126.721690 664.999880 1644.421510 0.807860 588.308960 1814.311770 31.294590
+211 3.500000 603.281430 1072.957280 158.204240 606.391240 1061.232910 -104.380170 406.874300 1079.503300 36.479520 541.770630 756.885250 224.463470 592.858090 682.210390 134.409380 521.322810 637.039920 226.787450 515.361510 768.059510 -167.948870 604.042850 718.960570 -111.776600 504.616640 659.052060 -160.244030 475.052430 553.544310 217.289550 468.559360 525.223080 98.395310 476.170380 528.598510 -149.830290 498.694670 519.910400 -36.194490 440.607850 468.917660 236.541870 513.302730 423.970460 184.258290 452.239780 383.768800 253.378450 467.497960 450.448270 -170.674320 516.767760 393.474700 -127.733080 445.683930 409.729550 -181.175600 437.425780 98.100670 255.915760 443.835110 103.520270 165.178710 442.973880 93.640570 -172.212040 464.958500 108.941480 -81.807430 366.686710 70.617710 210.285900 507.121150 80.309500 164.939440 509.387420 63.700780 272.914250 657.167910 50.652440 195.336530 371.396940 75.515640 -115.703060 544.812990 77.038730 -94.775080 523.183290 66.021100 -191.919340 654.552370 48.741490 -127.302690 601.100340 1422.613160 23.398430 486.126430 1549.568970 194.031490 482.946080 1559.690190 -147.482070 523.350590 1503.082640 358.265840 528.027830 1506.157350 -324.833770 519.203370 1470.067260 460.937070 492.574980 1474.730100 -426.994200 673.789120 1463.656980 685.175290 613.044250 1471.542970 710.528260 622.254880 1441.435550 -643.598750 549.344480 1446.142090 -662.865110 599.861390 39.572640 276.653410 593.454280 48.401910 168.128940 585.345090 39.916630 -201.712390 605.893740 51.617910 -100.963290 606.375180 1654.870610 126.849480 664.926760 1644.447270 0.801460 588.283080 1814.302370 31.452760
+212 3.517000 603.249940 1072.983640 158.204880 606.389950 1061.232420 -104.375560 406.860810 1079.506590 36.485250 541.619870 756.879580 224.463590 592.846190 682.220210 134.422350 521.312930 637.049380 226.795320 515.331300 767.977360 -167.964190 604.090640 719.000060 -111.747480 504.601010 658.995240 -160.215700 475.013890 553.543330 217.325290 468.542660 525.228030 98.390090 476.171970 528.602600 -149.854750 498.687070 519.917240 -36.191580 440.437320 468.940730 236.532970 513.303220 423.971310 184.259280 452.205840 383.773740 253.377790 467.495390 450.444120 -170.676680 516.780270 393.470180 -127.705190 445.698060 409.706050 -181.194430 437.427520 98.100760 255.914310 443.860350 103.557240 165.146180 442.973880 93.640570 -172.212040 464.962040 108.956990 -81.799480 366.722110 70.606230 210.292770 507.099490 80.322360 164.950160 509.383880 63.734470 272.920170 657.167910 50.652440 195.336530 371.441890 75.460570 -115.754300 544.812990 77.038730 -94.775080 523.043400 65.959010 -191.962970 654.534970 48.717900 -127.324720 601.053100 1422.629520 23.407140 486.124660 1549.573610 194.061900 482.885740 1559.690670 -147.450940 523.304990 1503.074710 358.312930 528.039790 1506.143070 -324.770020 519.148250 1470.097050 460.999150 492.567540 1474.741820 -426.989260 673.787540 1463.658570 685.172490 612.996700 1471.498660 710.524110 622.337400 1441.424190 -643.569270 549.440250 1446.116820 -662.842650 600.040890 39.560190 276.691960 593.554080 48.534420 168.158660 585.345090 39.916630 -201.712390 605.923830 51.579240 -100.954470 606.164610 1654.850830 126.981990 664.808290 1644.483760 0.793600 588.255680 1814.310060 31.556190
+213 3.533000 603.238890 1073.002440 158.181050 606.376650 1061.234740 -104.366290 406.832950 1079.513060 36.496850 541.755860 756.880800 224.458710 592.838130 682.227480 134.416900 521.311040 637.055600 226.799450 515.321290 767.930730 -167.982190 604.128720 719.034060 -111.741760 504.592830 658.967960 -160.189000 474.993680 553.534000 217.340730 468.537840 525.226990 98.387440 476.155730 528.614870 -149.892350 498.672210 519.930540 -36.185840 440.316560 468.942990 236.535100 513.303530 423.971800 184.259640 452.219120 383.775300 253.377840 467.477870 450.441040 -170.684310 516.785710 393.461700 -127.698270 445.652830 409.682560 -181.183010 437.428890 98.100830 255.913160 443.899260 103.586430 165.108700 442.973880 93.640570 -172.212040 464.957760 108.938230 -81.809100 366.745850 70.598520 210.297380 507.103850 80.332530 164.944340 509.393340 63.763690 272.924190 657.167910 50.652440 195.336530 371.482270 75.417550 -115.690900 544.812990 77.038730 -94.775080 522.979000 65.946560 -191.977870 654.480960 48.643070 -127.393550 600.977910 1422.648070 23.435610 486.122920 1549.572750 194.090290 482.861660 1559.698360 -147.438550 523.243710 1503.057250 358.360470 528.041380 1506.123290 -324.713590 519.062810 1470.150760 461.071010 492.562130 1474.748290 -426.986450 673.794310 1463.664310 685.159670 612.998780 1471.450930 710.516780 622.409910 1441.394530 -643.546020 549.597050 1446.094970 -662.811400 600.156250 39.552190 276.716710 593.680050 48.698680 168.165770 585.345090 39.916630 -201.712390 605.929570 51.564260 -100.972080 605.966190 1654.832030 127.098370 664.657040 1644.517580 0.784330 588.214600 1814.327390 31.615870
+214 3.550000 603.250310 1073.031490 158.144030 606.344850 1061.244630 -104.353940 406.793820 1079.516720 36.510820 542.036070 756.884770 224.450910 592.831180 682.232850 134.390370 521.312810 637.058350 226.800750 515.320980 767.914860 -168.001170 604.134830 719.066100 -111.770580 504.599000 658.986080 -160.183180 474.986450 553.523990 217.343720 468.546420 525.216000 98.385890 476.134610 528.639590 -149.939210 498.661290 519.940310 -36.181630 440.256620 468.930150 236.544750 513.303590 423.971950 184.259660 452.255190 383.783230 253.375180 467.453160 450.447660 -170.686980 516.772220 393.449890 -127.711780 445.585660 409.642460 -181.168750 437.429500 98.100860 255.912610 443.940800 103.593440 165.065860 442.973880 93.640570 -172.212040 464.949040 108.899870 -81.828760 366.747410 70.598010 210.297680 507.137660 80.326700 164.926510 509.405580 63.782410 272.922150 657.167910 50.652440 195.336530 371.567960 75.394070 -115.492640 544.812990 77.038730 -94.775080 523.043760 65.998760 -191.950130 654.403200 48.536540 -127.492220 600.893190 1422.662350 23.480090 486.102810 1549.565430 194.109450 482.810790 1559.705570 -147.428510 523.158200 1503.023190 358.397830 528.032470 1506.104860 -324.675780 518.945980 1470.208250 461.137910 492.563720 1474.750000 -426.986970 673.819270 1463.676880 685.127930 613.048220 1471.414920 710.506290 622.461610 1441.365970 -643.527770 549.788570 1446.080080 -662.759030 600.209290 39.548510 276.728120 593.776370 48.797110 168.159290 585.345090 39.916630 -201.712390 605.913390 51.577850 -100.996930 605.816650 1654.816890 127.184220 664.506900 1644.537480 0.773940 588.147640 1814.345460 31.649190
+215 3.567000 603.265500 1073.084110 158.107500 606.289980 1061.266600 -104.344280 406.758120 1079.510010 36.519530 542.222900 756.883420 224.442440 592.823910 682.233340 134.340130 521.316040 637.059020 226.800580 515.313900 767.913820 -168.015900 604.104060 719.094540 -111.834770 504.615780 659.034850 -160.202530 474.986110 553.517330 217.341430 468.561680 525.197630 98.383720 476.116090 528.675420 -149.977940 498.661250 519.940370 -36.181540 440.240230 468.917850 236.554410 513.303590 423.971950 184.259550 452.286130 383.818760 253.362790 467.435390 450.464810 -170.679470 516.736020 393.433320 -127.737430 445.540070 409.590120 -181.172610 437.429350 98.100850 255.912660 443.986510 103.584630 165.014310 442.973880 93.640570 -172.212040 464.941680 108.867650 -81.845270 366.729550 70.603810 210.294220 507.199460 80.301410 164.908680 509.412140 63.786460 272.915340 657.167910 50.652440 195.336530 371.712950 75.368660 -115.249370 544.812990 77.038730 -94.775080 523.230160 66.097070 -191.886990 654.335940 48.445770 -127.577030 600.826290 1422.665650 23.526190 486.047910 1549.552250 194.112080 482.689510 1559.703980 -147.408290 523.051450 1502.968630 358.420500 528.015750 1506.092650 -324.656400 518.813480 1470.242920 461.180690 492.578640 1474.744510 -426.992800 673.866210 1463.696170 685.075070 613.129760 1471.401490 710.496460 622.492610 1441.365480 -643.508730 549.995420 1446.073850 -662.665040 600.203250 39.548940 276.726810 593.814640 48.793200 168.145510 585.345090 39.916630 -201.712390 605.890320 51.611250 -101.006480 605.722110 1654.807740 127.238150 664.382320 1644.550540 0.768170 588.047670 1814.358760 31.672210
+216 3.583000 603.264220 1073.155520 158.081760 606.215150 1061.301270 -104.346930 406.739010 1079.491210 36.519920 542.206120 756.871640 224.433490 592.818180 682.223390 134.272600 521.320250 637.059080 226.799970 515.303770 767.930970 -168.023320 604.047730 719.103700 -111.918790 504.632970 659.085630 -160.232570 474.987820 553.514100 217.338320 468.574860 525.179630 98.380920 476.103610 528.708620 -149.991170 498.672820 519.930110 -36.185750 440.250120 468.912110 236.561540 513.303590 423.971920 184.259430 452.293730 383.871340 253.344310 467.433900 450.486390 -170.664180 516.687560 393.414150 -127.760280 445.542720 409.547390 -181.192840 437.428410 98.100790 255.913310 444.041260 103.570160 164.965070 442.973880 93.640570 -172.212040 464.939030 108.856000 -81.851240 366.707000 70.611130 210.289840 507.267550 80.268300 164.897200 509.416260 63.771350 272.910550 657.167910 50.652440 195.336530 371.862430 75.316090 -115.083830 544.812990 77.038730 -94.775080 523.413020 66.182140 -191.828700 654.312740 48.415860 -127.605740 600.787170 1422.656130 23.566820 485.959810 1549.537350 194.104430 482.519040 1559.694340 -147.380220 522.954710 1502.901730 358.432220 527.992490 1506.088010 -324.647550 518.719910 1470.221310 461.188080 492.602840 1474.728030 -427.002470 673.926150 1463.714360 685.014100 613.210630 1471.400390 710.490780 622.515560 1441.408810 -643.481380 550.223020 1446.082890 -662.522160 600.117610 39.554910 276.708470 593.808960 48.735730 168.119090 585.345090 39.916630 -201.712390 605.877200 51.648750 -100.994830 605.652950 1654.803710 127.271680 664.280030 1644.577880 0.780050 587.915890 1814.366940 31.695820
+217 3.600000 603.242070 1073.229980 158.068070 606.130000 1061.345340 -104.368500 406.737760 1079.467530 36.518440 542.090820 756.852910 224.423370 592.816770 682.202640 134.205460 521.325010 637.059200 226.799360 515.310910 767.982480 -168.022860 603.983340 719.086000 -111.996890 504.643890 659.120970 -160.259670 474.989350 553.513060 217.336140 468.583040 525.170290 98.380000 476.097990 528.723390 -149.981920 498.690520 519.914550 -36.192050 440.284970 468.904970 236.568980 513.303530 423.971920 184.259320 452.275090 383.900480 253.333720 467.446470 450.505890 -170.646440 516.651550 393.401150 -127.769300 445.591460 409.535860 -181.216050 437.426850 98.100710 255.914470 444.091610 103.557510 164.940190 442.973880 93.640570 -172.212040 464.941770 108.867980 -81.845100 366.696230 70.614630 210.287750 507.297610 80.243800 164.890240 509.418370 63.746950 272.908050 657.167910 50.652440 195.336530 371.951450 75.245160 -115.035520 544.812990 77.038730 -94.775080 523.514710 66.219320 -191.799550 654.327210 48.435840 -127.587290 600.756710 1422.642330 23.606030 485.858090 1549.526370 194.102690 482.355870 1559.681760 -147.354350 522.900760 1502.836180 358.438750 527.963810 1506.091670 -324.640900 518.713320 1470.125370 461.165800 492.618410 1474.708500 -427.007450 673.978520 1463.709470 684.968260 613.259580 1471.395750 710.490170 622.547490 1441.492190 -643.441160 550.474180 1446.118160 -662.357360 599.915890 39.568940 276.665220 593.787660 48.704930 168.068630 585.345090 39.916630 -201.712390 605.885740 51.675080 -100.967220 605.560360 1654.800540 127.299830 664.174990 1644.634520 0.822270 587.762330 1814.373290 31.725170
+218 3.617000 603.209410 1073.289670 158.063030 606.044370 1061.394290 -104.408520 406.743650 1079.445920 36.525570 542.035890 756.835940 224.413640 592.819640 682.179500 134.155430 521.328670 637.059200 226.798860 515.342410 768.064580 -168.014450 603.923100 719.053960 -112.051120 504.648530 659.138850 -160.282960 474.990750 553.513550 217.334880 468.587190 525.172970 98.382930 476.095730 528.717350 -149.973330 498.703640 519.903140 -36.196390 440.349460 468.883210 236.579820 513.303340 423.971890 184.259200 452.233310 383.891880 253.336360 467.461240 450.514950 -170.635180 516.642880 393.400020 -127.768760 445.647160 409.567170 -181.226490 437.425320 98.100630 255.915800 444.116150 103.552610 164.949660 442.973880 93.640570 -172.212040 464.949040 108.899910 -81.828740 366.706790 70.611190 210.289790 507.264650 80.234760 164.883760 509.414760 63.728820 272.903410 657.167910 50.652440 195.336530 371.942230 75.203910 -115.088360 544.812990 77.038730 -94.775080 523.612850 66.237210 -191.777190 654.345030 48.454700 -127.566910 600.705930 1422.633670 23.650000 485.763850 1549.521730 194.113050 482.233520 1559.670530 -147.336200 522.870670 1502.774540 358.447050 527.930480 1506.102420 -324.631160 518.748230 1469.987180 461.137150 492.611760 1474.703250 -426.999450 674.000430 1463.652470 684.956480 613.258180 1471.381350 710.492490 622.594300 1441.595580 -643.391110 550.716550 1446.185180 -662.213750 599.592470 39.591410 276.595830 593.770260 48.747000 167.990650 585.345090 39.916630 -201.712390 605.916750 51.678050 -100.930680 605.406130 1654.792850 127.329300 664.041500 1644.714840 0.895590 587.601870 1814.380740 31.760790
+219 3.633000 603.176270 1073.321040 158.067200 605.960880 1061.441770 -104.459630 406.743380 1079.425050 36.544150 542.030520 756.822940 224.405350 592.824520 682.163880 134.125180 521.326110 637.058230 226.798390 515.385380 768.143070 -168.003540 603.873600 719.025510 -112.081160 504.649930 659.144650 -160.307240 474.993710 553.516170 217.333920 468.587590 525.184200 98.388170 476.093320 528.700870 -149.988240 498.706270 519.901000 -36.196960 440.425900 468.843020 236.590640 513.303100 423.971830 184.259110 452.174990 383.872920 253.343310 467.466310 450.506380 -170.639530 516.644170 393.398470 -127.769970 445.665770 409.633210 -181.214980 437.425540 98.100660 255.916110 444.105130 103.550610 164.974700 442.973880 93.640570 -172.212040 464.957430 108.936750 -81.809850 366.729160 70.603940 210.294140 507.196930 80.237570 164.877670 509.406680 63.721880 272.896210 657.167910 50.652440 195.336530 371.832890 75.225740 -115.230480 544.812990 77.038730 -94.775080 523.790470 66.269710 -191.736690 654.354860 48.451580 -127.561220 600.623960 1422.625980 23.702410 485.683840 1549.521480 194.125990 482.148930 1559.663330 -147.323270 522.805660 1502.708620 358.464750 527.893740 1506.116700 -324.616790 518.714480 1469.866090 461.125150 492.589230 1474.723140 -426.980930 673.973210 1463.534060 684.987180 613.186280 1471.353640 710.494570 622.642400 1441.690550 -643.344300 550.893250 1446.275630 -662.109680 599.207090 39.618120 276.513090 593.764470 48.853550 167.898160 585.345090 39.916630 -201.712390 605.952150 51.655560 -100.901210 605.187740 1654.779420 127.357280 663.874630 1644.799930 0.985710 587.445980 1814.389280 31.800370
+220 3.650000 603.135250 1073.322270 158.088240 605.883420 1061.482060 -104.509260 406.727110 1079.402710 36.568170 541.926090 756.808650 224.395860 592.828130 682.160460 134.105120 521.308470 637.054570 226.798080 515.420530 768.180110 -167.999680 603.847470 719.018250 -112.090930 504.649660 659.146910 -160.329570 475.000400 553.522280 217.332530 468.582460 525.198490 98.392620 476.085750 528.687130 -150.031750 498.702910 519.903560 -36.196670 440.465420 468.797520 236.588260 513.302730 423.971590 184.259080 452.116790 383.864200 253.347230 467.459260 450.485410 -170.657380 516.625000 393.377690 -127.775070 445.636510 409.700780 -181.187450 437.430570 98.100980 255.913150 444.066040 103.539860 164.993070 442.973880 93.640570 -172.212040 464.960970 108.952380 -81.801840 366.739380 70.600620 210.296130 507.142460 80.246830 164.874830 509.399350 63.722090 272.889860 657.167910 50.652440 195.336530 371.660160 75.296410 -115.431270 544.812990 77.038730 -94.775080 524.072330 66.340300 -191.666310 654.375000 48.448880 -127.548000 600.530940 1422.607420 23.761120 485.605190 1549.522090 194.128450 482.090850 1559.659670 -147.311480 522.672910 1502.635010 358.494050 527.856750 1506.129880 -324.599060 518.559880 1469.786380 461.129880 492.566190 1474.767090 -426.965270 673.885740 1463.378780 685.054630 613.021180 1471.302000 710.498840 622.672910 1441.762820 -643.315920 550.959470 1446.381470 -662.041080 598.843630 39.643170 276.434810 593.771790 48.991650 167.810490 585.345090 39.916630 -201.712390 605.966310 51.622510 -100.899790 604.947020 1654.768190 127.379170 663.691160 1644.879150 1.075600 587.295290 1814.395260 31.841360
+221 3.667000 603.063660 1073.302730 158.137390 605.825990 1061.515870 -104.547260 406.694400 1079.384160 36.590450 541.666750 756.796140 224.383300 592.825740 682.170350 134.085010 521.266360 637.046810 226.798290 515.432920 768.166750 -168.007320 603.855900 719.051640 -112.078780 504.647030 659.152400 -160.337360 475.011810 553.532780 217.330660 468.569340 525.213500 98.394190 476.063350 528.688170 -150.092070 498.695980 519.907840 -36.198180 440.426540 468.767300 236.555370 513.302490 423.971160 184.259310 452.073790 383.853580 253.351680 467.447360 450.467320 -170.675920 516.578250 393.341640 -127.777220 445.577820 409.738950 -181.157210 437.444060 98.101760 255.903950 444.011780 103.523180 165.011400 442.973880 93.640570 -172.212040 464.956510 108.932820 -81.811870 366.724730 70.605380 210.293270 507.125730 80.261060 164.877140 509.393710 63.725560 272.884670 657.167910 50.652440 195.336530 371.485900 75.388830 -115.612670 544.812990 77.038730 -94.775080 524.459900 66.476130 -191.557050 654.420230 48.474770 -127.505240 600.458130 1422.579350 23.812980 485.509160 1549.520750 194.113720 482.055150 1559.654910 -147.299870 522.485840 1502.558110 358.531430 527.820560 1506.142090 -324.579800 518.319150 1469.732180 461.134120 492.545960 1474.830570 -426.969360 673.740420 1463.219970 685.133060 612.768370 1471.222050 710.523010 622.684510 1441.830080 -643.312620 550.899350 1446.505490 -662.012450 598.590940 39.660290 276.379940 593.790650 49.122460 167.748460 585.345090 39.916630 -201.712390 605.950010 51.601330 -100.932630 604.741820 1654.773190 127.393930 663.513980 1644.956180 1.161080 587.137210 1814.394170 31.883290
+222 3.683000 602.957090 1073.271240 158.217300 605.801330 1061.543580 -104.572530 406.655060 1079.374760 36.606500 541.351620 756.798580 224.367650 592.810790 682.192690 134.065480 521.199770 637.035520 226.799820 515.424130 768.123290 -168.024340 603.885990 719.122560 -112.050610 504.641450 659.160400 -160.326800 475.024380 553.544680 217.329420 468.548160 525.226870 98.391690 476.023280 528.707280 -150.151920 498.676540 519.921140 -36.199450 440.315060 468.763340 236.485810 513.302920 423.970550 184.260010 452.043580 383.824620 253.361950 467.438420 450.463530 -170.683650 516.524660 393.316040 -127.771010 445.515080 409.751130 -181.130310 437.467190 98.103040 255.886810 443.949370 103.519710 165.045790 442.973880 93.640570 -172.212040 464.947910 108.894940 -81.831280 366.689240 70.616900 210.286390 507.145970 80.280730 164.884480 509.389710 63.729350 272.880620 657.167910 50.652440 195.336530 371.359800 75.475490 -115.726470 544.812990 77.038730 -94.775080 524.818660 66.633900 -191.445600 654.481990 48.536800 -127.435970 600.419130 1422.555660 23.840800 485.396330 1549.515990 194.084120 482.036500 1559.644410 -147.289600 522.284000 1502.485350 358.569820 527.783940 1506.156490 -324.562530 518.061580 1469.684200 461.126340 492.518430 1474.910520 -427.008360 673.556820 1463.078490 685.185490 612.478090 1471.125490 710.591000 622.684940 1441.922360 -643.337460 550.721980 1446.647090 -662.042600 598.571230 39.660980 276.374690 593.817810 49.195580 167.741420 585.345090 39.916630 -201.712390 605.914370 51.603400 -100.983270 604.596620 1654.804440 127.403320 663.358580 1645.035770 1.248900 586.952210 1814.384030 31.928740
+223 3.700000 602.858890 1073.231080 158.308490 605.809450 1061.553470 -104.589290 406.616850 1079.369750 36.613920 541.092530 756.819340 224.345750 592.775390 682.222720 134.062360 521.122920 637.026180 226.803860 515.406490 768.074950 -168.042880 603.909360 719.194090 -112.026020 504.632780 659.164730 -160.315090 475.028290 553.551700 217.330930 468.522950 525.232540 98.383960 475.977230 528.730900 -150.196290 498.639680 519.948240 -36.197530 440.176210 468.779910 236.397900 513.304750 423.970180 184.261340 452.012120 383.784940 253.375600 467.435300 450.474520 -170.678040 516.486820 393.316800 -127.758460 445.476530 409.760070 -181.110310 437.492160 98.104320 255.865840 443.889070 103.539430 165.089720 442.973880 93.640570 -172.212040 464.941960 108.868880 -81.844640 366.644560 70.631400 210.277710 507.184690 80.301730 164.893650 509.394040 63.728000 272.884400 657.167910 50.652440 195.336530 371.307500 75.511830 -115.797240 544.812990 77.038730 -94.775080 524.888310 66.681930 -191.418380 654.537480 48.612620 -127.365520 600.406980 1422.544310 23.840220 485.289120 1549.508300 194.048550 482.025910 1559.626710 -147.283490 522.113400 1502.426880 358.597960 527.749880 1506.177000 -324.556700 517.856200 1469.636840 461.107820 492.474400 1474.999630 -427.086270 673.366030 1462.961180 685.186950 612.221190 1471.024660 710.702150 622.666320 1442.051390 -643.396550 550.462160 1446.787840 -662.141170 598.852660 39.640770 276.434080 593.849000 49.179270 167.806140 585.345090 39.916630 -201.712390 605.879030 51.621350 -101.021610 604.496280 1654.855590 127.409420 663.230710 1645.116700 1.339860 586.726200 1814.369020 31.982000
+224 3.717000 602.835940 1073.189090 158.374540 605.836610 1061.534790 -104.600270 406.580750 1079.355470 36.607050 540.927920 756.845760 224.317000 592.712460 682.254700 134.093510 521.048460 637.029850 226.812300 515.379820 768.031370 -168.049610 603.909550 719.228450 -112.023030 504.620300 659.160160 -160.322080 475.011750 553.552670 217.335650 468.497380 525.225100 98.369970 475.943050 528.740360 -150.218310 498.597350 519.980160 -36.193280 440.055570 468.806950 236.323330 513.308780 423.971010 184.262990 451.972690 383.756160 253.385440 467.438600 450.487370 -170.667360 516.474910 393.335420 -127.746860 445.492710 409.772580 -181.110110 437.501370 98.104510 255.851350 443.840270 103.566030 165.121920 442.973880 93.640570 -172.212040 464.943210 108.874370 -81.841830 366.608220 70.643200 210.270660 507.214420 80.314610 164.899140 509.409880 63.718160 272.900390 657.167910 50.652440 195.336530 371.349270 75.468570 -115.834310 544.812990 77.038730 -94.775080 524.543150 66.532690 -191.524780 654.574280 48.669180 -127.316230 600.408450 1422.541500 23.824630 485.204990 1549.498780 194.014360 482.017030 1559.604000 -147.288060 521.994870 1502.385990 358.605290 527.722530 1506.205320 -324.576390 517.730530 1469.599370 461.087130 492.415310 1475.079960 -427.184020 673.189090 1462.864990 685.140810 612.061340 1470.919560 710.819580 622.609680 1442.201780 -643.485900 550.177730 1446.901730 -662.284850 599.326170 39.607970 276.535800 593.879090 49.099470 167.917740 585.345090 39.916630 -201.712390 605.859130 51.639170 -101.029370 604.422300 1654.906490 127.413260 663.130860 1645.195430 1.422230 586.462220 1814.359860 32.045980
+225 3.733000 602.906680 1073.159180 158.390500 605.856200 1061.495610 -104.602710 406.547150 1079.325930 36.571620 540.846440 756.863100 224.290560 592.623470 682.285580 134.157790 520.975950 637.062740 226.826520 515.338130 767.987670 -168.038450 603.889340 719.220760 -112.042850 504.604920 659.144900 -160.345210 474.967040 553.557250 217.339920 468.472320 525.206730 98.351230 475.932040 528.729490 -150.224590 498.559720 520.008120 -36.189940 439.969820 468.841980 236.280580 513.314580 423.974330 184.263700 451.934270 383.749880 253.387660 467.447020 450.486570 -170.663820 516.490780 393.354130 -127.738380 445.566500 409.774480 -181.139400 437.483550 98.102780 255.847440 443.799500 103.576610 165.126770 442.973880 93.640570 -172.212040 464.952880 108.916760 -81.820100 366.597410 70.646710 210.268570 507.228030 80.318730 164.900500 509.423550 63.704960 272.918640 657.167910 50.652440 195.336530 371.468410 75.366260 -115.825760 544.812990 77.038730 -94.775080 523.946960 66.246140 -191.717820 654.595210 48.695180 -127.290840 600.409360 1422.545410 23.812390 485.144440 1549.488770 193.984310 482.003300 1559.580570 -147.316280 521.911500 1502.356200 358.588650 527.694890 1506.242070 -324.631260 517.656130 1469.576420 461.071530 492.351040 1475.124390 -427.270110 673.023440 1462.778440 685.078920 611.992920 1470.807370 710.902100 622.506100 1442.345210 -643.586180 549.926150 1446.974240 -662.429990 599.777650 39.578880 276.636050 593.899600 49.012210 168.027330 585.345090 39.916630 -201.712390 605.853940 51.648580 -101.020780 604.370120 1654.938110 127.414730 663.054990 1645.266110 1.484030 586.182620 1814.369380 32.119220
+226 3.750000 602.993840 1073.149660 158.368900 605.840940 1061.458010 -104.589390 406.512630 1079.285890 36.501820 540.817990 756.863100 224.277570 592.528380 682.314450 134.237520 520.897520 637.138980 226.844060 515.293820 767.940490 -168.021380 603.861150 719.199650 -112.070630 504.590970 659.122310 -160.358890 474.894650 553.574520 217.336330 468.450260 525.188230 98.334130 475.935580 528.710080 -150.227800 498.521820 520.034910 -36.189610 439.911220 468.884640 236.266750 513.319030 423.981350 184.260760 451.909060 383.762420 253.383500 467.457550 450.472440 -170.669370 516.528380 393.366580 -127.727320 445.660980 409.753080 -181.188570 437.447480 98.099500 255.844670 443.775020 103.568250 165.102430 442.973880 93.640570 -172.212040 464.968020 108.983320 -81.785990 366.618990 70.639700 210.272750 507.254060 80.331070 164.906680 509.416380 63.697760 272.923830 657.167910 50.652440 195.336550 371.579990 75.258910 -115.787570 544.812990 77.038730 -94.775080 523.412350 65.979810 -191.893920 654.602840 48.703500 -127.282180 600.395450 1422.564090 23.814480 485.104890 1549.480100 193.961410 481.971830 1559.556520 -147.384190 521.830200 1502.327880 358.552890 527.653500 1506.288700 -324.717350 517.581540 1469.537960 461.060360 492.292850 1475.107910 -427.329160 672.851810 1462.685790 685.042300 611.880980 1470.691410 710.944150 622.357300 1442.466430 -643.680300 549.734560 1447.015140 -662.554870 600.070130 39.564740 276.708070 593.896730 48.941890 168.105930 585.345090 39.916630 -201.712390 605.851750 51.651800 -101.025620 604.338680 1654.948610 127.412290 662.993840 1645.318970 1.525140 585.919980 1814.404660 32.195000
+227 3.767000 602.989560 1073.153320 158.349980 605.784610 1061.436890 -104.558070 406.470610 1079.237670 36.423930 540.810360 756.843440 224.281980 592.452210 682.341610 134.317610 520.802000 637.254390 226.857440 515.271180 767.900760 -168.016010 603.832640 719.186650 -112.092570 504.583220 659.099980 -160.341690 474.807160 553.600280 217.314990 468.436000 525.178470 98.325560 475.930850 528.699340 -150.232470 498.483890 520.061340 -36.191650 439.872280 468.926030 236.269100 513.314210 423.991270 184.250350 451.898830 383.781800 253.376970 467.470890 450.457760 -170.674850 516.577270 393.383330 -127.711650 445.739440 409.713590 -181.238940 437.412750 98.096130 255.836960 443.803340 103.545650 165.059280 442.973880 93.640570 -172.212040 464.980530 109.038240 -81.757840 366.665160 70.624710 210.281720 507.316990 80.366020 164.926610 509.389400 63.701360 272.913940 657.167970 50.652440 195.336560 371.611690 75.197040 -115.702140 544.812990 77.038730 -94.775080 523.181460 65.863920 -191.970260 654.599980 48.707960 -127.282570 600.359190 1422.603640 23.831910 485.085080 1549.474730 193.948320 481.913330 1559.526250 -147.493680 521.703740 1502.291750 358.507870 527.597600 1506.347410 -324.814090 517.429810 1469.470090 461.060700 492.253110 1475.027830 -427.367220 672.661680 1462.576050 685.054570 611.589660 1470.578000 710.969600 622.164610 1442.577270 -643.764710 549.584660 1447.054810 -662.664730 600.203250 39.566250 276.752720 593.855470 48.869040 168.156750 585.345090 39.916630 -201.712390 605.844730 51.653070 -101.056930 604.322510 1654.947020 127.403700 662.936220 1645.346190 1.554480 585.701480 1814.459840 32.263560
+228 3.783000 602.895510 1073.164670 158.356400 605.707400 1061.430910 -104.516580 406.423800 1079.178960 36.377470 540.803160 756.808290 224.299880 592.401000 682.370790 134.391420 520.694150 637.379270 226.860580 515.280270 767.882200 -168.025380 603.800840 719.166750 -112.108510 504.583980 659.082950 -160.299910 474.722690 553.620540 217.263340 468.429960 525.173520 98.325070 475.905270 528.701480 -150.236510 498.461030 520.078860 -36.193580 439.854000 468.952510 236.275880 513.287290 423.998290 184.229690 451.897160 383.792850 253.373260 467.489590 450.448730 -170.675000 516.631900 393.416230 -127.697530 445.779570 409.668880 -181.274980 437.394260 98.094450 255.835490 443.899050 103.503170 165.011980 442.973880 93.640580 -172.212040 464.982270 109.045910 -81.753910 366.713200 70.609120 210.291050 507.392610 80.412220 164.957640 509.363400 63.715580 272.900210 657.167970 50.652440 195.336580 371.581630 75.194530 -115.533160 544.812990 77.038730 -94.775080 523.330080 65.923730 -191.925870 654.595640 48.707900 -127.285670 600.305360 1422.653930 23.857850 485.079560 1549.472530 193.943630 481.838750 1559.490480 -147.614850 521.471440 1502.239010 358.465640 527.539860 1506.419430 -324.894130 517.095700 1469.437500 461.102330 492.237240 1474.918580 -427.387510 672.459290 1462.455570 685.109990 611.156190 1470.469970 710.996830 621.931950 1442.700560 -643.837950 549.436460 1447.124270 -662.755550 600.238710 39.575780 276.778290 593.775510 48.774410 168.192020 585.345090 39.916630 -201.712390 605.836180 51.651200 -101.102000 604.316040 1654.941040 127.388150 662.871030 1645.348630 1.578620 585.536930 1814.518190 32.316590
+229 3.800000 602.832520 1073.195560 158.371920 605.634700 1061.429440 -104.472650 406.381650 1079.112920 36.377330 540.792720 756.771060 224.321330 592.363590 682.406860 134.458530 520.598330 637.479740 226.854830 515.310240 767.882870 -168.036680 603.759950 719.120180 -112.123740 504.591220 659.067630 -160.260160 474.649840 553.625180 217.171480 468.426480 525.162050 98.325760 475.863100 528.707210 -150.242510 498.459990 520.084590 -36.193940 439.853520 468.961700 236.280550 513.226500 423.993130 184.199710 451.897770 383.787410 253.375110 467.507050 450.442350 -170.674420 516.684630 393.459660 -127.692130 445.752720 409.620540 -181.284300 437.395320 98.095230 255.851520 444.003050 103.448840 164.978070 442.973910 93.640580 -172.212040 464.974270 109.010740 -81.771930 366.739560 70.600560 210.296160 507.425990 80.440840 164.987210 509.351840 63.738530 272.891240 657.167970 50.652440 195.336560 371.545040 75.231090 -115.333720 544.812990 77.038730 -94.775080 523.735960 66.080580 -191.806730 654.594120 48.694870 -127.291540 600.240050 1422.696660 23.883530 485.080900 1549.472290 193.943630 481.774080 1559.465210 -147.699360 521.121220 1502.175050 358.437010 527.493040 1506.503910 -324.941620 516.554080 1469.518070 461.207180 492.234440 1474.834110 -427.376040 672.267580 1462.345950 685.179750 610.724300 1470.369140 711.027770 621.683040 1442.849000 -643.889590 549.280330 1447.226440 -662.802370 600.225280 39.582240 276.783690 593.691650 48.682270 168.211690 585.345090 39.916630 -201.712390 605.838200 51.638130 -101.136400 604.316220 1654.935420 127.369230 662.783080 1645.337770 1.593760 585.417600 1814.561280 32.351320
+230 3.817000 602.878780 1073.252320 158.371920 605.578190 1061.423950 -104.427800 406.348510 1079.047970 36.409800 540.784730 756.746460 224.336260 592.333130 682.447200 134.517230 520.522640 637.543030 226.845870 515.342160 767.894530 -168.036470 603.714170 719.069030 -112.134900 504.595860 659.046260 -160.246980 474.590090 553.615780 217.052900 468.422970 525.142640 98.323730 475.814180 528.710820 -150.257400 498.465520 520.089230 -36.193610 439.858340 468.966710 236.281510 513.138120 423.976070 184.166170 451.898010 383.771700 253.380400 467.509160 450.437260 -170.678280 516.717220 393.494480 -127.699130 445.648280 409.560520 -181.266370 437.407560 98.097440 255.877960 444.032260 103.418250 164.976700 442.973910 93.640590 -172.212020 464.965610 108.972710 -81.791420 366.741330 70.599980 210.296510 507.390870 80.434440 165.002110 509.347900 63.762940 272.886810 657.167850 50.652430 195.336490 371.526120 75.278370 -115.203970 544.812990 77.038730 -94.775080 524.142030 66.220490 -191.693040 654.585750 48.663020 -127.308980 600.161870 1422.720830 23.901340 485.083920 1549.472660 193.945300 481.733250 1559.468990 -147.716900 520.725710 1502.126710 358.429080 527.463260 1506.599370 -324.959230 515.926700 1469.725710 461.361210 492.231380 1474.805790 -427.316010 672.110170 1462.266110 685.231750 610.409240 1470.286380 711.055850 621.468870 1443.021730 -643.909120 549.150880 1447.334840 -662.784120 600.168880 39.580620 276.763310 593.670780 48.654750 168.206380 585.345090 39.916630 -201.712390 605.857910 51.610370 -101.142430 604.320190 1654.929930 127.357470 662.657900 1645.329830 1.589580 585.323360 1814.578370 32.371240
+231 3.833000 602.985840 1073.322270 158.351670 605.540530 1061.418330 -104.387430 406.323210 1078.998290 36.449760 540.782290 756.738650 224.341540 592.316960 682.476500 134.553970 520.455320 637.574520 226.838460 515.358640 767.920650 -168.020940 603.679810 719.067200 -112.129500 504.583980 659.018920 -160.269610 474.554530 553.604000 216.962750 468.424500 525.130430 98.322470 475.767580 528.717530 -150.280180 498.459290 520.101680 -36.194240 439.859070 468.978520 236.279420 513.059140 423.964720 184.139400 451.897830 383.756960 253.385360 467.490480 450.437040 -170.684660 516.715390 393.507720 -127.718520 445.504760 409.489780 -181.236710 437.420040 98.099500 255.900330 443.981230 103.436690 165.012880 442.973910 93.640590 -172.212040 464.962160 108.957590 -81.799170 366.732180 70.602960 210.294720 507.321440 80.403320 164.995650 509.344600 63.775510 272.885590 657.167660 50.652400 195.336320 371.524630 75.313410 -115.168840 544.812990 77.038730 -94.775080 524.371770 66.296960 -191.629580 654.560120 48.607920 -127.347090 600.070370 1422.730220 23.903450 485.086300 1549.473140 193.946880 481.704530 1559.505370 -147.673970 520.370240 1502.118290 358.441740 527.443300 1506.701660 -324.961330 515.359500 1470.031370 461.536220 492.218440 1474.835330 -427.212620 671.996400 1462.219600 685.252010 610.265560 1470.239260 711.073490 621.346130 1443.209720 -643.900820 549.085210 1447.425900 -662.710820 600.035340 39.577890 276.716670 593.762450 48.737320 168.173250 585.345090 39.916630 -201.712390 605.885130 51.581520 -101.119630 604.325010 1654.918210 127.363940 662.496340 1645.332890 1.562570 585.233220 1814.569460 32.383250
+232 3.850000 603.072200 1073.391600 158.317440 605.523990 1061.425540 -104.364550 406.296570 1078.980830 36.475850 540.786250 756.745610 224.338010 592.319950 682.482300 134.555420 520.400940 637.583800 226.834690 515.347780 767.966490 -167.996670 603.668400 719.139100 -112.102040 504.544620 658.997190 -160.329220 474.558650 553.602600 216.962660 468.433620 525.139160 98.326110 475.728730 528.732240 -150.299620 498.436310 520.115300 -36.196660 439.859500 468.990690 236.275850 513.033020 423.976320 184.128490 451.897520 383.748290 253.388210 467.460020 450.443240 -170.689040 516.682920 393.498170 -127.745850 445.368160 409.423370 -181.207640 437.427760 98.100710 255.912550 443.918700 103.488490 165.069530 442.973850 93.640560 -172.212040 464.961430 108.954360 -81.800830 366.723570 70.605740 210.293060 507.280330 80.376080 164.974490 509.345030 63.772860 272.886410 657.167360 50.652350 195.336030 371.536800 75.332860 -115.173210 544.812990 77.038730 -94.775080 524.419560 66.340410 -191.607540 654.522160 48.533320 -127.401600 599.971920 1422.743290 23.885050 485.087680 1549.473510 193.947650 481.662780 1559.556640 -147.607710 520.090880 1502.149410 358.465790 527.412960 1506.801030 -324.961820 514.916990 1470.377320 461.706790 492.185850 1474.912350 -427.100980 671.921940 1462.198360 685.248170 610.252810 1470.227660 711.080630 621.335450 1443.398930 -643.877380 549.087280 1447.503300 -662.629700 599.785640 39.584470 276.646970 593.942140 48.909990 168.121690 585.345090 39.916630 -201.712390 605.900020 51.572780 -101.084720 604.328800 1654.898680 127.386450 662.318120 1645.342040 1.521790 585.134030 1814.542360 32.393420
+233 3.867000 603.110780 1073.446290 158.268920 605.525630 1061.450930 -104.364680 406.248690 1078.999150 36.481910 540.798890 756.768920 224.324910 592.329280 682.474120 134.526760 520.385130 637.579350 226.833600 515.309020 768.016360 -167.978240 603.676510 719.252440 -112.066760 504.477140 658.989870 -160.425920 474.597660 553.613770 217.052170 468.443630 525.163640 98.332570 475.695920 528.749820 -150.308930 498.394040 520.113460 -36.201770 439.865780 468.989530 236.273530 513.074830 424.006470 184.135500 451.897220 383.744930 253.389220 467.430300 450.449250 -170.692990 516.637270 393.469060 -127.774770 445.253170 409.379760 -181.177200 437.430910 98.101150 255.916600 443.885070 103.536530 165.119670 442.973790 93.640510 -172.212070 464.959810 108.947210 -81.804490 366.718870 70.607270 210.292140 507.294800 80.371800 164.954500 509.346340 63.769760 272.883760 657.167110 50.652300 195.335770 371.571230 75.346950 -115.166950 544.812990 77.038730 -94.775080 524.316220 66.357410 -191.619550 654.483760 48.463340 -127.456150 599.869870 1422.784300 23.846860 485.088710 1549.473880 193.947270 481.591220 1559.594120 -147.561980 519.896480 1502.197270 358.488340 527.359560 1506.887330 -324.962100 514.618100 1470.664060 461.841670 492.139710 1475.016360 -427.023560 671.884580 1462.191770 685.237120 610.242370 1470.225710 711.086610 621.400090 1443.571290 -643.844240 549.133610 1447.590450 -662.607240 599.447880 39.601750 276.565250 594.123660 49.099550 168.067600 585.345090 39.916630 -201.712390 605.893070 51.591390 -101.054430 604.330200 1654.876590 127.407790 662.146970 1645.347050 1.475710 585.023800 1814.506590 32.404250
+234 3.883000 603.115420 1073.468260 158.199340 605.531860 1061.484990 -104.375910 406.160920 1079.033810 36.477570 540.818600 756.804630 224.304520 592.333010 682.468320 134.475560 520.421750 637.565860 226.832580 515.253780 768.041080 -167.982960 603.690800 719.357060 -112.045960 504.394410 658.992000 -160.543120 474.645630 553.629390 217.168930 468.446320 525.186520 98.336000 475.664060 528.759030 -150.313980 498.321110 520.082400 -36.211090 439.876220 468.972470 236.274890 513.169620 424.032010 184.160250 451.896910 383.744320 253.389190 467.407290 450.445950 -170.702590 516.598630 393.428100 -127.801570 445.178590 409.376310 -181.145810 437.431400 98.101190 255.916380 443.857240 103.557180 165.142790 442.973630 93.640420 -172.212110 464.958890 108.943210 -81.806550 366.716340 70.608100 210.291660 507.328220 80.378680 164.941680 509.340730 63.775960 272.876740 657.167240 50.652320 195.335880 371.636900 75.356220 -115.147840 544.812990 77.038730 -94.775080 524.062260 66.302050 -191.680330 654.440670 48.417810 -127.506770 599.754460 1422.861940 23.793680 485.090240 1549.474490 193.945600 481.493530 1559.599850 -147.558200 519.788760 1502.233030 358.501100 527.295410 1506.954220 -324.952670 514.466310 1470.808350 461.916350 492.108950 1475.121220 -426.996370 671.886780 1462.192260 685.233030 610.152770 1470.210450 711.097900 621.484380 1443.708370 -643.800960 549.191770 1447.708980 -662.698000 599.166930 39.619010 276.501620 594.234680 49.230370 168.028460 585.345090 39.916630 -201.712390 605.875310 51.622150 -101.031390 604.327510 1654.854740 127.408700 661.996950 1645.339970 1.418280 584.910160 1814.471190 32.414690
+235 3.900000 603.106200 1073.460080 158.108460 605.527650 1061.513550 -104.381160 406.034060 1079.054570 36.475420 540.837710 756.838990 224.284760 592.338990 682.462890 134.394620 520.490480 637.543210 226.829220 515.194090 768.027470 -168.018160 603.693480 719.420900 -112.047910 504.314790 658.992550 -160.646220 474.681150 553.641720 217.257690 468.439910 525.197140 98.333480 475.634490 528.752500 -150.324390 498.211670 520.020080 -36.224750 439.889770 468.945560 236.279450 513.286560 424.032470 184.201030 451.896610 383.744320 253.389010 467.389920 450.434080 -170.717650 516.583250 393.395660 -127.823170 445.175690 409.415920 -181.125260 437.430940 98.101090 255.915080 443.813420 103.552570 165.137180 442.973510 93.640340 -172.212160 464.960720 108.951270 -81.802410 366.711640 70.609630 210.290740 507.321780 80.368780 164.927870 509.333530 63.782150 272.875820 657.168330 50.652510 195.336960 371.699040 75.362100 -115.126770 544.812990 77.038730 -94.775080 523.677000 66.150220 -191.794360 654.383240 48.389870 -127.562030 599.609920 1422.960330 23.737630 485.092710 1549.475460 193.942840 481.384890 1559.577270 -147.591510 519.751830 1502.241940 358.503780 527.245910 1506.997440 -324.927640 514.432250 1470.827150 461.939610 492.123930 1475.197630 -427.003630 671.919800 1462.197510 685.239750 610.057740 1470.186890 711.107480 621.564450 1443.798580 -643.750240 549.231140 1447.854610 -662.909480 599.092160 39.624150 276.485500 594.255490 49.258870 168.017300 585.345090 39.916630 -201.712390 605.864690 51.641390 -101.014880 604.318480 1654.828130 127.378040 661.868590 1645.317750 1.339220 584.803890 1814.442750 32.422300
+236 3.917000 603.096500 1073.454590 158.008470 605.507080 1061.532350 -104.376270 405.894130 1079.044310 36.478350 540.849980 756.861270 224.271880 592.353330 682.448970 134.291990 520.551390 637.514280 226.821580 515.130620 767.988950 -168.069530 603.670230 719.432070 -112.063960 504.250490 658.985410 -160.711140 474.700070 553.648740 217.306240 468.428620 525.195860 98.327420 475.612980 528.731200 -150.342410 498.086030 519.942690 -36.239340 439.910430 468.912350 236.284710 513.391110 424.010040 184.246800 451.896510 383.743800 253.389280 467.377840 450.424100 -170.729480 516.591980 393.396390 -127.834200 445.229710 409.470180 -181.120930 437.430540 98.101040 255.914580 443.772980 103.540500 165.119570 442.973540 93.640370 -172.212140 464.962590 108.959390 -81.798250 366.700100 70.613370 210.288500 507.260560 80.333300 164.907940 509.333250 63.785380 272.886260 657.171200 50.653000 195.339710 371.694430 75.377340 -115.097440 544.812990 77.038730 -94.775080 523.258300 65.956900 -191.927380 654.333680 48.383710 -127.602390 599.432250 1423.059200 23.698600 485.095250 1549.476560 193.940260 481.278750 1559.542240 -147.645130 519.755310 1502.231570 358.501220 527.225830 1507.016850 -324.893010 514.462830 1470.824220 461.949250 492.190980 1475.222410 -427.016820 671.962460 1462.208010 685.250730 610.124940 1470.175050 711.098020 621.647520 1443.846070 -643.697450 549.235900 1447.993410 -663.179140 599.180050 39.618760 276.505430 594.200560 49.184990 168.034120 585.345090 39.916630 -201.712390 605.867550 51.639440 -101.009520 604.300600 1654.791380 127.315420 661.748960 1645.287110 1.238680 584.712340 1814.426880 32.426140
+237 3.933000 603.088070 1073.481810 157.911580 605.469360 1061.548710 -104.371500 405.775270 1079.009640 36.481920 540.855350 756.871220 224.266400 592.357180 682.436890 134.213230 520.574340 637.491820 226.810610 515.060730 767.958190 -168.111300 603.616700 719.398320 -112.078880 504.209630 658.971860 -160.742230 474.707920 553.651920 217.327160 468.416690 525.186650 98.321750 475.600560 528.703980 -150.361790 497.981480 519.876340 -36.250880 439.933960 468.880370 236.288410 513.464840 423.986630 184.281570 451.897030 383.743100 253.390410 467.374940 450.422180 -170.731810 516.604610 393.432010 -127.837690 445.274350 409.502320 -181.121190 437.430420 98.101070 255.915510 443.757840 103.538540 165.106050 442.974060 93.640680 -172.211980 464.961850 108.956260 -81.799860 366.679810 70.619960 210.284560 507.179660 80.289030 164.887240 509.330870 63.802690 272.897220 657.175960 50.653800 195.344250 371.600650 75.408640 -115.067110 544.812990 77.038730 -94.775080 523.007570 65.839370 -192.007610 654.334780 48.428630 -127.584780 599.238530 1423.152950 23.690970 485.094910 1549.476680 193.941160 481.183500 1559.513180 -147.697630 519.771910 1502.218990 358.498440 527.229310 1507.021360 -324.860990 514.512880 1470.906010 461.984800 492.284550 1475.202390 -427.012330 671.999210 1462.220210 685.253720 610.493650 1470.188480 711.051090 621.746400 1443.869750 -643.642760 549.219600 1448.092530 -663.414610 599.238280 39.615400 276.518950 594.101870 49.041070 168.070860 585.345090 39.916630 -201.712390 605.877140 51.625220 -101.014400 604.269350 1654.747920 127.227030 661.614690 1645.268310 1.115780 584.634220 1814.428100 32.428680
+238 3.950000 603.067810 1073.542850 157.818010 605.414730 1061.574710 -104.376340 405.698730 1078.970830 36.483370 540.857480 756.874150 224.265810 592.328310 682.444030 134.196590 520.553410 637.490720 226.802930 514.994080 767.968140 -168.130420 603.541990 719.344670 -112.080520 504.197240 658.956360 -160.759350 474.709990 553.652770 217.332930 468.404850 525.170780 98.318130 475.595340 528.681700 -150.374830 497.919220 519.837950 -36.261600 439.944060 468.865480 236.287340 513.509640 423.982940 184.296550 451.898710 383.743960 253.392290 467.381200 450.423370 -170.729000 516.597660 393.476100 -127.850260 445.257600 409.496800 -181.113660 437.430080 98.101130 255.917470 443.757290 103.550030 165.097920 442.975340 93.641490 -172.211530 464.961090 108.952860 -81.801600 366.657320 70.627260 210.280200 507.116180 80.254720 164.872360 509.313110 63.839610 272.896910 657.180730 50.654610 195.348860 371.457820 75.446540 -115.078750 544.812990 77.038730 -94.775080 523.106380 65.885560 -191.976030 654.393800 48.523900 -127.504380 599.064270 1423.242920 23.710690 485.086090 1549.473510 193.951280 481.100130 1559.500000 -147.731840 519.788390 1502.213500 358.497530 527.242070 1507.021240 -324.839720 514.565430 1471.099610 462.062100 492.373470 1475.171510 -426.981170 672.030700 1462.226070 685.236450 611.170290 1470.227660 710.959470 621.872920 1443.889770 -643.580080 549.213260 1448.148320 -663.573970 599.161620 39.621120 276.503080 594.008970 48.867660 168.120930 585.345090 39.916630 -201.712390 605.883730 51.615120 -101.017680 604.216550 1654.709470 127.113250 661.447020 1645.283810 0.954610 584.560060 1814.449830 32.436510
+239 3.967000 603.016050 1073.613770 157.726790 605.352600 1061.615480 -104.389250 405.669100 1078.943970 36.482060 540.860170 756.875370 224.267640 592.270940 682.466920 134.228010 520.502320 637.512330 226.804730 514.946410 768.021970 -168.134060 603.467530 719.291630 -112.071720 504.205990 658.939030 -160.774840 474.706700 553.650940 217.323670 468.392820 525.149050 98.316200 475.592250 528.665280 -150.380430 497.892760 519.828430 -36.282630 439.930180 468.876680 236.274290 513.533080 424.003720 184.293560 451.902040 383.749660 253.393890 467.390230 450.419160 -170.730040 516.564330 393.503270 -127.879740 445.180150 409.450530 -181.102720 437.428590 98.101040 255.918550 443.752960 103.560930 165.090880 442.977510 93.642870 -172.210780 464.962430 108.958700 -81.798610 366.647770 70.630360 210.278340 507.083220 80.238030 164.865510 509.288210 63.868530 272.885310 657.180180 50.654520 195.348310 371.329530 75.466730 -115.173480 544.812990 77.038730 -94.775080 523.527950 66.073740 -191.844180 654.475770 48.622840 -127.405670 598.941530 1423.321530 23.739390 485.061950 1549.464480 193.977110 481.028170 1559.498410 -147.741590 519.806760 1502.207030 358.496980 527.259400 1507.018920 -324.827880 514.632320 1471.315060 462.160100 492.449650 1475.155270 -426.925930 672.068300 1462.218630 685.193540 611.960510 1470.277340 710.839660 622.039310 1443.915890 -643.501830 549.236510 1448.179200 -663.677800 598.987550 39.633350 276.465940 593.984620 48.711370 168.172260 585.345090 39.916630 -201.712390 605.881100 51.619690 -101.010700 604.136660 1654.687380 126.966170 661.247740 1645.339110 0.737880 584.474610 1814.491940 32.459680
+240 3.983000 602.923460 1073.668700 157.646090 605.301030 1061.661250 -104.402530 405.675080 1078.932500 36.478160 540.865840 756.877560 224.270280 592.201230 682.485530 134.265930 520.439150 637.540340 226.814180 514.918880 768.088010 -168.136890 603.411930 719.241390 -112.067670 504.223360 658.925050 -160.790370 474.692570 553.643920 217.284480 468.382290 525.125240 98.315210 475.579710 528.643860 -150.384920 497.883880 519.841920 -36.328720 439.900210 468.904850 236.238780 513.542660 424.036100 184.282060 451.906400 383.763760 253.392590 467.398010 450.407530 -170.737790 516.514100 393.508450 -127.909770 445.084200 409.369420 -181.103330 437.424870 98.100550 255.914980 443.739350 103.555310 165.084530 442.979740 93.644290 -172.210010 464.962400 108.958630 -81.798650 366.659090 70.626690 210.280530 507.082000 80.242130 164.867290 509.276150 63.861670 272.868930 657.164180 50.651810 195.332980 371.256990 75.443450 -115.352970 544.812990 77.038730 -94.775080 524.001160 66.275950 -191.699070 654.546200 48.684930 -127.330020 598.870480 1423.380980 23.759140 485.019960 1549.448000 194.019810 480.976990 1559.500980 -147.725080 519.834900 1502.185550 358.494320 527.282650 1507.015870 -324.818660 514.732540 1471.421630 462.239810 492.513580 1475.164920 -426.850830 672.122860 1462.195070 685.130920 612.590820 1470.311280 710.726870 622.243770 1443.946040 -643.408510 549.284360 1448.204350 -663.757080 598.806340 39.645930 276.427060 594.078550 48.624350 168.209610 585.345090 39.916630 -201.712390 605.874330 51.631780 -100.994830 604.044490 1654.686890 126.789200 661.034420 1645.422970 0.462910 584.360110 1814.550420 32.509770
+241 4.000000 602.802490 1073.700810 157.583110 605.264220 1061.692750 -104.407750 405.692230 1078.931150 36.474330 540.873840 756.879640 224.272550 592.127080 682.489810 134.286900 520.377200 637.558780 226.825060 514.894530 768.128910 -168.145320 603.377440 719.200620 -112.071990 504.243350 658.928220 -160.804440 474.658780 553.628420 217.193010 468.374420 525.105410 98.314700 475.551790 528.611150 -150.394300 497.878810 519.871400 -36.405300 439.870060 468.935730 236.176710 513.536320 424.063230 184.268190 451.908780 383.786710 253.384080 467.404210 450.393860 -170.747790 516.462650 393.501890 -127.923100 445.021000 409.280490 -181.123580 437.418670 98.099380 255.901500 443.707980 103.534610 165.077360 442.979640 93.644230 -172.210040 464.957310 108.936180 -81.810150 366.679570 70.620030 210.284520 507.116550 80.272580 164.879670 509.278080 63.832530 272.853000 657.120670 50.644420 195.291210 371.249080 75.385730 -115.552120 544.812990 77.038730 -94.775080 524.230830 66.359840 -191.633220 654.591670 48.707820 -127.288160 598.827210 1423.424800 23.761960 484.968260 1549.426640 194.068970 480.960110 1559.511350 -147.682310 519.871090 1502.148800 358.489010 527.303410 1507.020260 -324.808040 514.857670 1471.388920 462.282990 492.549160 1475.222290 -426.763730 672.203980 1462.162600 685.060910 612.942810 1470.312500 710.648440 622.453130 1443.971800 -643.316770 549.343930 1448.240480 -663.830200 598.703130 39.653040 276.404820 594.285520 48.639590 168.228940 585.345090 39.916630 -201.712390 605.875310 51.635150 -100.973990 603.988460 1654.702760 126.604100 660.819760 1645.526730 0.131490 584.199340 1814.615720 32.596560
+242 4.017000 602.681880 1073.719240 157.540120 605.214290 1061.697630 -104.394870 405.697360 1078.934570 36.473460 540.877560 756.876100 224.272770 592.053770 682.488460 134.294620 520.329040 637.565430 226.833720 514.862000 768.132020 -168.154570 603.351440 719.189510 -112.072870 504.258880 658.948550 -160.809600 474.601810 553.604430 217.042280 468.366880 525.094420 98.313420 475.517550 528.575010 -150.407650 497.868770 519.904720 -36.497960 439.846280 468.965270 236.102460 513.494080 424.081360 184.244610 451.902500 383.809450 253.363890 467.408360 450.383580 -170.755550 516.421570 393.497680 -127.925400 445.013950 409.219420 -181.155550 437.412260 98.097580 255.874100 443.657230 103.515090 165.067500 442.972630 93.639780 -172.212460 464.949070 108.900050 -81.828660 366.690370 70.616530 210.286610 507.193360 80.334140 164.904720 509.274440 63.819180 272.839200 657.045470 50.631660 195.219010 371.294370 75.343580 -115.642290 544.812990 77.038730 -94.775080 524.185790 66.319760 -191.653730 654.608400 48.712430 -127.274290 598.795590 1423.463870 23.749650 484.921510 1549.405270 194.108150 480.978730 1559.543090 -147.621110 519.901250 1502.112430 358.482300 527.305850 1507.042360 -324.796200 514.971070 1471.298100 462.301090 492.536250 1475.355960 -426.681980 672.319950 1462.141970 684.991940 613.085390 1470.286740 710.610110 622.619380 1443.987430 -643.251890 549.414610 1448.309450 -663.909120 598.704650 39.652890 276.405090 594.530580 48.749460 168.232440 585.345090 39.916630 -201.712390 605.884830 51.628670 -100.955250 604.048770 1654.720830 126.419580 660.596250 1645.653690 -0.274830 583.977230 1814.675660 32.724300
+243 4.033000 602.586730 1073.732060 157.522110 605.107910 1061.680910 -104.353300 405.683530 1078.941890 36.474760 540.862790 756.857180 224.268040 591.985960 682.492800 134.303790 520.303100 637.566710 226.839870 514.827150 768.111330 -168.158510 603.318180 719.217530 -112.065690 504.259770 658.964050 -160.796370 474.531860 553.579410 216.864590 468.355650 525.091670 98.305920 475.489900 528.548160 -150.419860 497.841160 519.923400 -36.583580 439.824710 468.990910 236.043660 513.401430 424.094390 184.201640 451.878330 383.810270 253.330520 467.409880 450.377200 -170.760990 516.387630 393.499510 -127.931200 445.037660 409.194730 -181.179200 437.412720 98.095960 255.837070 443.621400 103.505230 165.060790 442.953090 93.627380 -172.219240 464.942140 108.869630 -81.844260 366.683010 70.618920 210.285190 507.304260 80.416030 164.938610 509.257020 63.828980 272.829860 656.962950 50.617660 195.139770 371.371250 75.337460 -115.554920 544.812990 77.038730 -94.775080 524.024960 66.238950 -191.706910 654.597720 48.715080 -127.280750 598.773860 1423.503660 23.729340 484.889680 1549.386960 194.130370 481.018430 1559.599370 -147.556080 519.920350 1502.087280 358.475490 527.282170 1507.088010 -324.783260 515.055300 1471.219360 462.309600 492.477840 1475.562870 -426.625210 672.464720 1462.146730 684.930360 613.128420 1470.249630 710.606930 622.722050 1443.996700 -643.228940 549.505740 1448.433470 -663.992370 598.819700 39.644880 276.429750 594.719970 48.894250 168.227390 585.345090 39.916630 -201.712390 605.891910 51.627120 -100.949550 604.318180 1654.731450 126.207890 660.329770 1645.807740 -0.804940 583.683230 1814.720700 32.889280
+244 4.050000 602.520390 1073.739010 157.534560 604.923770 1061.653930 -104.277160 405.659520 1078.955320 36.474340 540.809020 756.812620 224.254900 591.912840 682.500120 134.327440 520.297120 637.567930 226.844570 514.794250 768.087460 -168.153900 603.274600 719.276060 -112.057420 504.244510 658.954280 -160.770080 474.466740 553.566470 216.716080 468.339290 525.090820 98.281850 475.471280 528.537900 -150.428650 497.785830 519.916440 -36.652690 439.798860 469.001530 236.016560 513.279720 424.099270 184.145050 451.832030 383.770230 253.287870 467.408020 450.371980 -170.766710 516.352660 393.499210 -127.942910 445.037750 409.178960 -181.177890 437.429440 98.096120 255.806210 443.646420 103.497430 165.064880 442.918820 93.605640 -172.231110 464.938320 108.852940 -81.852810 366.664030 70.625080 210.281490 507.408540 80.481590 164.966840 509.244570 63.829240 272.829440 656.928530 50.611810 195.106740 371.463680 75.321280 -115.375370 544.812990 77.038730 -94.775080 523.803220 66.137440 -191.777080 654.568600 48.713090 -127.302260 598.765320 1423.535280 23.711350 484.875640 1549.373900 194.144420 481.063630 1559.665530 -147.496540 519.946470 1502.065430 358.470340 527.241580 1507.153690 -324.768590 515.138000 1471.139650 462.310120 492.400090 1475.795040 -426.600740 672.604800 1462.152950 684.892210 613.137330 1470.207030 710.634950 622.776060 1444.012570 -643.245850 549.622010 1448.620730 -664.050170 599.094600 39.625820 276.488770 594.806150 48.991180 168.229630 585.345090 39.916630 -201.712390 605.891110 51.640940 -100.961920 604.855220 1654.739260 125.933230 659.973020 1645.992800 -1.513880 583.312560 1814.750240 33.080380
+245 4.067000 602.468570 1073.739500 157.574620 604.699770 1061.620000 -104.180350 405.636380 1078.973880 36.470490 540.700810 756.742860 224.232210 591.806460 682.496460 134.376210 520.301390 637.569760 226.847790 514.751830 768.072810 -168.135970 603.232790 719.346250 -112.053820 504.218050 658.920780 -160.751370 474.414520 553.576350 216.629960 468.320920 525.085750 98.234930 475.452510 528.548160 -150.436770 497.709290 519.890380 -36.712180 439.760560 468.992950 236.010470 513.173890 424.091250 184.092620 451.774020 383.698360 253.245160 467.401280 450.365480 -170.775050 516.318540 393.492610 -127.955340 444.981350 409.155300 -181.154110 437.460140 98.098660 255.797350 443.727110 103.484670 165.075610 442.880370 93.581250 -172.244430 464.937070 108.847370 -81.855670 366.649290 70.629860 210.278640 507.450590 80.492480 164.972990 509.256810 63.797890 272.837950 656.975590 50.619800 195.151900 371.561130 75.261720 -115.229610 544.812990 77.038730 -94.775080 523.493960 65.986710 -191.877900 654.530150 48.692800 -127.337930 598.775820 1423.543090 23.705930 484.881560 1549.369750 194.168350 481.110870 1559.724000 -147.436070 519.995730 1502.030520 358.472110 527.205020 1507.227540 -324.753110 515.245670 1471.015750 462.304290 492.327360 1475.999270 -426.594600 672.694460 1462.107670 684.897160 613.137940 1470.155520 710.690610 622.800290 1444.050900 -643.286130 549.755250 1448.859860 -664.024540 599.492550 39.598270 276.574280 594.780820 49.012090 168.237980 585.345090 39.916630 -201.712390 605.885010 51.669490 -100.989000 605.642880 1654.754520 125.588990 659.494200 1646.224000 -2.422330 582.867250 1814.775880 33.282250
+246 4.083000 602.417480 1073.739500 157.628190 604.529720 1061.574100 -104.105640 405.616910 1078.989870 36.466620 540.542540 756.669010 224.205170 591.648440 682.470150 134.455640 520.303530 637.567630 226.846300 514.683530 768.067870 -168.102330 603.196780 719.395260 -112.058900 504.181090 658.881350 -160.758850 474.371730 553.609860 216.599910 468.303340 525.071590 98.173390 475.420620 528.581420 -150.449190 497.626560 519.857970 -36.770490 439.698640 468.977200 235.998950 513.102970 424.075230 184.054630 451.724120 383.627170 253.212390 467.388700 450.358370 -170.784960 516.290470 393.483520 -127.967080 444.885310 409.139800 -181.127930 437.484070 98.102070 255.813740 443.798740 103.472580 165.079670 442.861420 93.569230 -172.251010 464.937130 108.847710 -81.855490 366.646390 70.630810 210.278080 507.409760 80.446850 164.954880 509.286870 63.755070 272.849460 657.071410 50.636060 195.243910 371.643130 75.187180 -115.157000 544.812990 77.038730 -94.775080 523.174930 65.827580 -191.983080 654.487300 48.646330 -127.387410 598.809080 1423.528080 23.715210 484.907870 1549.375000 194.218050 481.159880 1559.770510 -147.361270 520.052120 1501.974610 358.491030 527.190310 1507.300660 -324.736790 515.352970 1470.848510 462.311130 492.267670 1476.155400 -426.582760 672.700070 1461.970340 684.950320 613.131710 1470.090820 710.767090 622.797610 1444.120730 -643.323610 549.888000 1449.120970 -663.863340 599.835630 39.574550 276.648010 594.646180 49.004570 168.225360 585.345090 39.916630 -201.712390 605.874690 51.704990 -101.022040 606.625920 1654.779170 125.182560 658.887150 1646.517330 -3.511470 582.357540 1814.817870 33.479730
+247 4.100000 602.363710 1073.741460 157.675890 604.468020 1061.513670 -104.084460 405.595920 1078.999510 36.465610 540.353940 756.620300 224.185610 591.455990 682.425230 134.558110 520.289550 637.551700 226.832890 514.589600 768.059020 -168.064160 603.147520 719.391300 -112.077990 504.131930 658.851930 -160.795580 474.336240 553.655330 216.601880 468.280790 525.040710 98.115590 475.370270 528.634090 -150.468350 497.543460 519.823670 -36.831040 439.608340 468.967710 235.963970 513.034360 424.061980 184.023560 451.694760 383.581150 253.193440 467.370270 450.355990 -170.790470 516.267270 393.474980 -127.980090 444.795290 409.139740 -181.116180 437.483730 98.104450 255.846330 443.804690 103.471440 165.071870 442.872680 93.576380 -172.247100 464.937650 108.849960 -81.854340 366.644500 70.631420 210.277710 507.323640 80.380390 164.927610 509.312320 63.733120 272.860410 657.155460 50.650320 195.324570 371.684510 75.134180 -115.128360 544.812990 77.038730 -94.775080 523.010930 65.761760 -192.032000 654.452210 48.586820 -127.436690 598.859500 1423.512570 23.731740 484.947750 1549.381960 194.296590 481.197780 1559.814580 -147.271260 520.078610 1501.895750 358.538330 527.200130 1507.373900 -324.714020 515.402400 1470.676640 462.353000 492.224270 1476.268310 -426.556700 672.611270 1461.739500 685.043700 613.114500 1470.008540 710.858400 622.768490 1444.210940 -643.338070 550.005490 1449.355830 -663.571290 599.955440 39.566320 276.673830 594.439640 49.028100 168.171050 585.345090 39.916630 -201.712390 605.858030 51.733430 -101.047380 607.785220 1654.801150 124.697000 658.154910 1646.869140 -4.765190 581.804870 1814.893800 33.661550
+248 4.117000 602.310180 1073.739140 157.703280 604.451480 1061.447270 -104.089300 405.567570 1079.007930 36.465530 540.150880 756.606020 224.186900 591.267150 682.376890 134.667480 520.245910 637.510310 226.798740 514.493040 768.033200 -168.039750 603.055910 719.333130 -112.111570 504.066590 658.837650 -160.842770 474.311890 553.695500 216.614650 468.241210 524.990230 98.074260 475.310790 528.690000 -150.489840 497.442960 519.782590 -36.907310 439.504820 468.967770 235.910030 512.926150 424.062070 183.988450 451.684390 383.562260 253.185410 467.343600 450.365840 -170.783600 516.247500 393.467960 -127.993850 444.746400 409.140440 -181.119600 437.465150 98.105320 255.880050 443.754030 103.481220 165.061330 442.892610 93.589020 -172.240190 464.938110 108.852010 -81.853290 366.633390 70.635030 210.275540 507.252900 80.333240 164.911010 509.324740 63.738070 272.873750 657.187320 50.655730 195.355180 371.670100 75.116930 -115.111920 544.812990 77.038730 -94.775080 523.140380 65.858120 -191.979110 654.448430 48.549600 -127.454600 598.911320 1423.514280 23.747840 484.990690 1549.380620 194.394320 481.207820 1559.870000 -147.182590 520.055600 1501.790160 358.619290 527.226680 1507.453610 -324.675870 515.364140 1470.525150 462.432590 492.206330 1476.345340 -426.528840 672.462460 1461.456420 685.162960 613.092830 1469.903810 710.964110 622.728700 1444.294680 -643.331240 550.106690 1449.518190 -663.222410 599.808290 39.576510 276.642180 594.239990 49.099360 168.079830 585.345090 39.916630 -201.712390 605.836730 51.743230 -101.054770 609.123470 1654.799190 124.093890 657.306640 1647.254150 -6.192360 581.242980 1815.007810 33.822060
+249 4.133000 602.260930 1073.726320 157.705220 604.371640 1061.397950 -104.065400 405.531680 1079.017090 36.464880 539.945430 756.611080 224.214810 591.101380 682.332760 134.770840 520.168950 637.439760 226.741500 514.419130 767.997070 -168.033980 602.906010 719.251400 -112.151340 503.977720 658.834290 -160.869110 474.300840 553.719970 216.626360 468.180330 524.932370 98.048870 475.255980 528.731810 -150.504870 497.289980 519.724790 -37.021400 439.415340 468.973720 235.854720 512.779300 424.082520 183.951630 451.684420 383.559810 253.184050 467.304350 450.392940 -170.759830 516.234740 393.463410 -128.003430 444.739960 409.136350 -181.128880 437.445040 98.104470 255.903670 443.698270 103.492080 165.058700 442.892610 93.589020 -172.240190 464.938390 108.853110 -81.852720 366.621400 70.638920 210.273220 507.223850 80.319740 164.914730 509.331270 63.758110 272.889860 657.144290 50.648430 195.313860 371.610110 75.136290 -115.106710 544.812990 77.038730 -94.775080 523.555240 66.084590 -191.836060 654.484250 48.560320 -127.424770 598.953370 1423.528690 23.763400 485.032680 1549.366940 194.505370 481.192260 1559.941160 -147.116960 520.004820 1501.661130 358.732450 527.261410 1507.544560 -324.620210 515.274720 1470.383670 462.537600 492.219120 1476.396610 -426.512120 672.353450 1461.203860 685.276250 613.071720 1469.775150 711.077330 622.699220 1444.352540 -643.316530 550.207580 1449.601200 -662.905210 599.488950 39.598380 276.573330 594.106750 49.186310 167.978530 585.345090 39.916630 -201.712390 605.819760 51.734240 -101.045680 610.598450 1654.749150 123.345510 656.362980 1647.639770 -7.790940 580.714970 1815.148440 33.960580
+250 4.150000 602.214480 1073.701780 157.685940 604.189820 1061.387940 -103.999200 405.487730 1079.024540 36.465290 539.761660 756.618530 224.259610 590.954960 682.289730 134.856540 520.075320 637.354490 226.674010 514.366940 767.966920 -168.039230 602.708800 719.184390 -112.184940 503.868190 658.831850 -160.858020 474.298740 553.728760 216.632970 468.108370 524.885680 98.031280 475.209500 528.758120 -150.510270 497.071040 519.646420 -37.162370 439.354340 468.981840 235.808500 512.626530 424.117770 183.920430 451.686070 383.561650 253.188460 467.256230 450.432590 -170.724140 516.230650 393.461330 -128.006290 444.744140 409.133480 -181.131900 437.431920 98.100500 255.916660 443.665310 103.500680 165.062820 442.872650 93.576350 -172.247100 464.938390 108.853140 -81.852710 366.623690 70.638180 210.273670 507.213560 80.325000 164.933290 509.335210 63.788020 272.899990 657.011720 50.625930 195.186570 371.557590 75.162450 -115.130600 544.812990 77.038730 -94.775080 524.029300 66.307780 -191.684050 654.532780 48.607910 -127.370800 598.998290 1423.537600 23.789500 485.077210 1549.343140 194.637220 481.169770 1560.015010 -147.084490 519.986210 1501.530760 358.871220 527.293580 1507.647220 -324.558410 515.234860 1470.225710 462.656040 492.253300 1476.436280 -426.505800 672.388180 1461.062990 685.346310 613.048650 1469.627930 711.169620 622.691280 1444.392330 -643.298460 550.328670 1449.638180 -662.651610 599.217830 39.616470 276.514370 594.035030 49.229950 167.910550 585.345090 39.916630 -201.712390 605.815980 51.713990 -101.027940 612.140440 1654.633540 122.451600 655.339660 1648.004880 -9.519730 580.262940 1815.296390 34.080180
+251 4.167000 602.166870 1073.668820 157.658220 603.974550 1061.420040 -103.932260 405.428500 1079.040040 36.465510 539.630370 756.622190 224.301900 590.826420 682.247800 134.911160 519.992680 637.278690 226.618520 514.310550 767.949400 -168.048780 602.502500 719.154170 -112.205600 503.763240 658.825740 -160.822190 474.296970 553.725830 216.634340 468.041750 524.859620 98.015640 475.166500 528.775570 -150.512450 496.809050 519.555910 -37.278520 439.316650 468.990420 235.770220 512.497800 424.148500 183.894610 451.682160 383.557860 253.201780 467.219240 450.466520 -170.694150 516.229920 393.459810 -128.006360 444.723450 409.130000 -181.121250 437.425630 98.091060 255.924960 443.642030 103.511060 165.063610 442.861300 93.569150 -172.251040 464.938140 108.852130 -81.853230 366.641630 70.632350 210.277150 507.195530 80.328740 164.952480 509.333890 63.821830 272.896210 656.805910 50.591010 194.989030 371.574980 75.147560 -115.189980 544.812990 77.038730 -94.775080 524.300900 66.408400 -191.605730 654.562070 48.663260 -127.327340 599.072330 1423.527340 23.847480 485.121920 1549.310910 194.796420 481.146850 1560.073000 -147.074300 520.055730 1501.429690 359.023560 527.312070 1507.758670 -324.509250 515.343930 1470.039060 462.778870 492.290220 1476.475830 -426.499180 672.563720 1461.045650 685.370360 613.029050 1469.474120 711.204280 622.706300 1444.444090 -643.267580 550.478700 1449.666260 -662.422000 599.203000 39.616310 276.509920 593.990970 49.195810 167.908910 585.345090 39.916630 -201.712390 605.823550 51.693370 -101.009680 613.722530 1654.459110 121.436960 654.248290 1648.346560 -11.317930 579.915100 1815.434570 34.187590
+252 4.183000 602.123840 1073.636840 157.635240 603.852720 1061.480710 -103.920830 405.349820 1079.083130 36.461470 539.562380 756.622920 224.328780 590.733340 682.212460 134.928510 519.934630 637.223880 226.588930 514.230900 767.940920 -168.054720 602.334410 719.156740 -112.216720 503.696840 658.828250 -160.788040 474.285400 553.714720 216.631300 467.991120 524.853390 98.001910 475.121730 528.784970 -150.518890 496.533200 519.470400 -37.331280 439.291720 468.998570 235.736630 512.409360 424.157500 183.870650 451.668120 383.542240 253.228610 467.214390 450.475070 -170.687840 516.228270 393.457980 -128.007920 444.677280 409.122130 -181.101810 437.423190 98.075190 255.933940 443.615480 103.520140 165.056460 442.880130 93.581090 -172.244520 464.937710 108.850200 -81.854220 366.661470 70.625920 210.281010 507.177520 80.325740 164.958470 509.324490 63.846300 272.880040 656.604610 50.556850 194.795780 371.657170 75.091370 -115.269620 544.812990 77.038730 -94.775080 524.379700 66.418210 -191.589250 654.567690 48.706470 -127.305660 599.182980 1423.503420 23.953590 485.149510 1549.268920 194.974810 481.107210 1560.110600 -147.061710 520.205510 1501.374510 359.176910 527.317020 1507.871830 -324.486910 515.602420 1469.849370 462.904020 492.320800 1476.523930 -426.482600 672.772030 1461.092040 685.383240 613.024050 1469.329220 711.174260 622.738710 1444.539670 -643.209350 550.654420 1449.704470 -662.159610 599.425660 39.599640 276.556400 593.972960 49.120060 167.959350 585.345090 39.916630 -201.712390 605.831600 51.686200 -100.998730 615.359990 1654.262450 120.339450 653.121400 1648.673460 -13.137610 579.676210 1815.554810 34.293220
+253 4.200000 602.095460 1073.615480 157.622340 603.880550 1061.551030 -103.981740 405.260960 1079.155760 36.453730 539.542050 756.622310 224.340060 590.698610 682.189030 134.916030 519.894470 637.183470 226.584000 514.139890 767.937130 -168.049410 602.236210 719.178220 -112.222400 503.672700 658.853390 -160.767320 474.255710 553.698610 216.624760 467.954560 524.858640 97.990010 475.073880 528.787720 -150.530790 496.280700 519.413940 -37.331510 439.271880 469.005890 235.705670 512.365600 424.144870 183.850010 451.644710 383.515380 253.267850 467.236540 450.456630 -170.703990 516.224060 393.456850 -128.014590 444.632570 409.116090 -181.083500 437.422390 98.057810 255.943330 443.593230 103.520870 165.046800 442.918430 93.605400 -172.231250 464.937230 108.848070 -81.855310 366.671780 70.622560 210.283000 507.181430 80.322460 164.947480 509.301360 63.860430 272.857910 656.518370 50.542210 194.712970 371.721470 75.056240 -115.341630 544.812990 77.038730 -94.775080 524.490360 66.464080 -191.555770 654.562680 48.731780 -127.298870 599.306880 1423.484010 24.096060 485.136380 1549.219600 195.153150 481.037750 1560.143070 -147.026640 520.364500 1501.359860 359.322510 527.320250 1507.977420 -324.493320 515.906130 1469.702510 463.034180 492.352970 1476.584110 -426.453090 672.914490 1461.137210 685.417300 613.039790 1469.204100 711.114930 622.770940 1444.688230 -643.115910 550.839420 1449.755620 -661.851440 599.650570 39.584110 276.604800 593.995240 49.063010 168.016280 585.345090 39.916630 -201.712390 605.833560 51.700510 -100.997360 617.050050 1654.086670 119.195360 651.990910 1648.991940 -14.970100 579.526490 1815.658080 34.409130
+254 4.217000 602.082340 1073.605830 157.618030 603.979800 1061.614010 -104.072370 405.179320 1079.230220 36.450030 539.545530 756.621520 224.341750 590.721070 682.179440 134.891080 519.863160 637.149600 226.593730 514.073120 767.939880 -168.039030 602.206910 719.216670 -112.218250 503.653320 658.891300 -160.751270 474.208250 553.684810 216.616930 467.923680 524.863950 97.976560 475.029630 528.791500 -150.543730 496.114200 519.406920 -37.321430 439.253940 469.011960 235.677260 512.364620 424.126830 183.840470 451.620940 383.487820 253.306230 467.255980 450.427340 -170.723540 516.214170 393.458470 -128.031720 444.605100 409.115780 -181.071170 437.422850 98.050320 255.946780 443.582520 103.514350 165.040370 442.952760 93.627170 -172.219360 464.937130 108.847670 -81.855510 366.672330 70.622380 210.283110 507.206210 80.323140 164.928790 509.264500 63.874950 272.836790 656.600710 50.556190 194.792040 371.697390 75.093440 -115.380640 544.812990 77.038730 -94.775080 524.681150 66.564990 -191.491040 654.556760 48.742150 -127.298850 599.408690 1423.477540 24.234320 485.069490 1549.172610 195.312360 480.951420 1560.191160 -146.964400 520.464480 1501.366090 359.453950 527.331730 1508.065060 -324.515900 516.146480 1469.622800 463.165280 492.394650 1476.654170 -426.407810 672.965210 1461.151860 685.481930 613.087220 1469.094240 711.067020 622.771910 1444.864620 -642.987060 551.002440 1449.809330 -661.544490 599.669680 39.586670 276.613040 594.043150 49.035250 168.052000 585.345090 39.916630 -201.712390 605.834230 51.730000 -100.998760 618.745120 1653.955810 118.024390 650.845340 1649.299320 -16.841050 579.428470 1815.749150 34.544950
+255 4.233000 602.077030 1073.603030 157.618870 604.038020 1061.659300 -104.133990 405.116970 1079.269650 36.460730 539.555730 756.621030 224.339610 590.771550 682.181270 134.870100 519.844120 637.128050 226.605680 514.058720 767.955510 -168.037670 602.218930 719.274350 -112.199240 503.607120 658.913330 -160.736010 474.160220 553.685300 216.612200 467.899660 524.866390 97.960960 474.999820 528.802730 -150.552370 496.083830 519.445860 -37.330780 439.241670 469.015530 235.657580 512.395940 424.119930 183.847180 451.609190 383.474120 253.324780 467.249270 450.403560 -170.729710 516.201600 393.467410 -128.058320 444.594210 409.116270 -181.066210 437.424650 98.059430 255.940050 443.582370 103.504040 165.038570 442.972810 93.639900 -172.212400 464.938290 108.852780 -81.852900 366.661680 70.625840 210.281050 507.225830 80.322560 164.912610 509.231570 63.884510 272.823670 656.797240 50.589530 194.980700 371.610500 75.176660 -115.378520 544.812990 77.038730 -94.775080 524.713750 66.589680 -191.477580 654.551210 48.741340 -127.303140 599.468930 1423.478880 24.329680 484.962830 1549.137820 195.444760 480.874300 1560.261960 -146.881390 520.487980 1501.375240 359.565890 527.351560 1508.126220 -324.533870 516.283630 1469.604860 463.291260 492.438450 1476.729490 -426.336910 672.947330 1461.134280 685.572450 613.181210 1468.982540 711.040530 622.721070 1445.026610 -642.825810 551.118590 1449.853640 -661.307310 599.479190 39.610630 276.583620 594.096620 49.017110 168.068270 585.345090 39.916630 -201.712390 605.838500 51.759000 -100.997150 620.380370 1653.874270 116.821090 649.644530 1649.590580 -18.753420 579.338750 1815.832400 34.704800
+256 4.250000 602.071590 1073.600950 157.622360 604.015200 1061.687870 -104.144300 405.077730 1079.258670 36.487710 539.564210 756.620850 224.337040 590.820010 682.190000 134.858050 519.846310 637.129520 226.610410 514.085690 767.986820 -168.044100 602.243900 719.345890 -112.168790 503.542820 658.905330 -160.731830 474.135410 553.705990 216.614090 467.892790 524.871150 97.948780 474.988310 528.820800 -150.554720 496.169620 519.501890 -37.351960 439.241700 469.015050 235.655650 512.436520 424.128450 183.864750 451.613310 383.478850 253.317900 467.215790 450.393860 -170.718900 516.194210 393.487610 -128.083310 444.594850 409.112880 -181.068270 437.426970 98.078020 255.927600 443.591550 103.488890 165.041170 442.981230 93.645230 -172.209490 464.941800 108.868230 -81.844980 366.637540 70.633680 210.276350 507.224240 80.316940 164.904310 509.223570 63.870040 272.822850 656.998410 50.623680 195.173840 371.550720 75.230290 -115.344570 544.812990 77.038730 -94.775080 524.397950 66.436430 -191.580320 654.541320 48.728450 -127.315440 599.492190 1423.480350 24.373800 484.860080 1549.116330 195.553540 480.824620 1560.342900 -146.786040 520.468570 1501.382080 359.652280 527.373050 1508.163570 -324.531070 516.347840 1469.628170 463.410610 492.466310 1476.802610 -426.232300 672.895690 1461.092290 685.680050 613.314390 1468.854980 711.024050 622.639400 1445.143920 -642.643680 551.190430 1449.886110 -661.168330 599.272220 39.643800 276.559300 594.148250 48.993780 168.079970 585.345090 39.916630 -201.712390 605.841310 51.771750 -100.995900 621.913940 1653.827880 115.578040 648.361080 1649.864990 -20.654910 579.220210 1815.910770 34.887620
+257 4.267000 602.061890 1073.595700 157.627090 603.941830 1061.706790 -104.123610 405.062380 1079.213130 36.518800 539.568730 756.620790 224.335280 590.859440 682.204650 134.851900 519.864930 637.149230 226.607100 514.112850 768.025630 -168.042650 602.267460 719.422300 -112.135540 503.494290 658.884640 -160.743620 474.135380 553.739990 216.621230 467.900910 524.877690 97.944110 474.987980 528.838500 -150.552870 496.272640 519.537780 -37.356880 439.256410 469.010930 235.675510 512.466550 424.145750 183.883300 451.622960 383.490050 253.302120 467.169860 450.399870 -170.697200 516.190060 393.515440 -128.095980 444.591860 409.103360 -181.071980 437.428680 98.093640 255.917360 443.602600 103.473740 165.045120 442.983640 93.646770 -172.208650 464.948270 108.896610 -81.830430 366.609340 70.642840 210.270870 507.217010 80.315650 164.909840 509.237610 63.835870 272.832280 657.131590 50.646270 195.301680 371.560270 75.218440 -115.293920 544.812990 77.038730 -94.775080 523.859500 66.169490 -191.757280 654.520020 48.698410 -127.342860 599.494930 1423.479370 24.387410 484.793490 1549.095700 195.646770 480.808780 1560.408450 -146.682750 520.460750 1501.386840 359.711580 527.385190 1508.190060 -324.504180 516.412720 1469.650270 463.517700 492.458890 1476.865480 -426.097720 672.839230 1461.032840 685.790590 613.450380 1468.713500 711.016050 622.577450 1445.212520 -642.464900 551.231630 1449.911010 -661.101870 599.248600 39.666450 276.576690 594.179990 48.957550 168.098820 585.345090 39.916630 -201.712390 605.838260 51.760600 -100.998430 623.347050 1653.777830 114.320310 646.994320 1650.122560 -22.490790 579.050600 1815.986820 35.089050
+258 4.283000 602.050900 1073.586910 157.631390 603.875490 1061.719970 -104.106770 405.062990 1079.162350 36.542560 539.569890 756.620670 224.334340 590.901550 682.229490 134.849410 519.881840 637.167540 226.601500 514.112000 768.051640 -168.028110 602.279110 719.482540 -112.110600 503.482700 658.872680 -160.762160 474.138030 553.772520 216.628520 467.908200 524.881470 97.945770 474.987550 528.848020 -150.549740 496.288390 519.525510 -37.323990 439.283360 469.005490 235.716050 512.486760 424.161100 183.897750 451.624110 383.491460 253.299530 467.133670 450.413120 -170.678920 516.181340 393.540890 -128.093050 444.572630 409.086550 -181.072740 437.429230 98.099370 255.913700 443.605650 103.469570 165.046110 442.983800 93.646860 -172.208600 464.956020 108.930600 -81.813000 366.592220 70.648390 210.267560 507.221470 80.327190 164.931350 509.254180 63.807390 272.846590 657.190190 50.656220 195.357930 371.585570 75.184390 -115.254010 544.812990 77.038730 -94.775080 523.390380 65.940710 -191.910220 654.483890 48.649010 -127.388720 599.492550 1423.478390 24.403400 484.738530 1549.058110 195.741620 480.823730 1560.441160 -146.574140 520.484920 1501.380860 359.759640 527.376710 1508.212520 -324.461430 516.528200 1469.618770 463.610720 492.402130 1476.918460 -425.948000 672.804020 1460.963380 685.882690 613.553410 1468.571530 711.031620 622.568240 1445.247070 -642.308170 551.247380 1449.929570 -661.067570 599.379640 39.667090 276.615230 594.172120 48.925340 168.115550 585.345090 39.916630 -201.712390 605.836360 51.730480 -100.999340 624.715520 1653.677860 113.090550 645.574220 1650.357540 -24.249710 578.824950 1816.064940 35.301700
+259 4.300000 602.045470 1073.575930 157.633580 603.858220 1061.724980 -104.109540 405.056820 1079.134400 36.560560 539.568910 756.620300 224.333720 590.951540 682.263180 134.849330 519.886540 637.173100 226.597380 514.087160 768.046630 -168.012360 602.267940 719.494080 -112.105320 503.489010 658.867430 -160.774230 474.135830 553.788570 216.632130 467.910950 524.885310 97.953490 474.979250 528.849000 -150.545970 496.207860 519.458130 -37.252830 439.320430 469.001130 235.777180 512.518980 424.165560 183.910860 451.614590 383.480530 253.313230 467.129730 450.418610 -170.681490 516.169070 393.552520 -128.079650 444.548920 409.066930 -181.073500 437.428560 98.093770 255.917500 443.609830 103.476090 165.045590 442.981480 93.645390 -172.209410 464.961150 108.953180 -81.801440 366.593690 70.647920 210.267840 507.228760 80.343500 164.957470 509.270600 63.787660 272.864170 657.200930 50.658040 195.368240 371.550810 75.188790 -115.275740 544.812990 77.038730 -94.775080 523.138180 65.827000 -191.989440 654.443660 48.594990 -127.439430 599.494750 1423.485600 24.453320 484.650210 1548.996950 195.856690 480.859590 1560.447750 -146.469380 520.504390 1501.352170 359.826870 527.343750 1508.227170 -324.413300 516.657590 1469.528440 463.707860 492.297490 1476.973630 -425.803340 672.817810 1460.887940 685.937380 613.612730 1468.444460 711.084170 622.604490 1445.262210 -642.174930 551.242250 1449.940060 -661.041690 599.444210 39.653030 276.618870 594.128420 48.924640 168.109160 585.345090 39.916630 -201.712390 605.843140 51.694290 -100.993150 626.045720 1653.506230 111.909810 644.154910 1650.571290 -25.934770 578.552120 1816.150630 35.514900
+260 4.317000 602.045530 1073.561890 157.633970 603.887820 1061.718140 -104.121860 405.024440 1079.146730 36.577570 539.566710 756.619630 224.333050 590.997990 682.295470 134.849200 519.886600 637.173890 226.592900 514.056340 768.013850 -168.005550 602.236690 719.448180 -112.121570 503.480900 658.860960 -160.769960 474.146510 553.783570 216.632780 467.922390 524.897220 97.966890 474.961700 528.846680 -150.540440 496.107150 519.356810 -37.167270 439.365200 468.998900 235.856200 512.590450 424.158080 183.930940 451.603940 383.468410 253.327770 467.161130 450.412080 -170.708600 516.157040 393.543370 -128.070630 444.539090 409.054990 -181.076340 437.426910 98.078670 255.927520 443.639890 103.483720 165.049940 442.972600 93.639760 -172.212480 464.962710 108.959980 -81.797950 366.612180 70.641910 210.271440 507.231320 80.354760 164.970290 509.296940 63.761680 272.883450 657.191350 50.656420 195.359050 371.451420 75.227200 -115.397350 544.812990 77.038730 -94.775080 523.053710 65.800320 -192.012300 654.425540 48.570110 -127.462490 599.504270 1423.512820 24.552900 484.528470 1548.926390 195.989210 480.902470 1560.449340 -146.382030 520.476680 1501.301640 359.934050 527.294070 1508.229000 -324.364410 516.723270 1469.430180 463.826390 492.166870 1477.038570 -425.679050 672.897280 1460.799190 685.949520 613.630310 1468.340450 711.172240 622.657170 1445.262080 -642.062500 551.223940 1449.943360 -661.015810 599.323430 39.640510 276.570620 594.072390 48.953850 168.077410 585.345090 39.916630 -201.712390 605.853700 51.665940 -100.984210 627.315980 1653.281980 110.780450 642.775760 1650.793460 -27.539050 578.247860 1816.248290 35.717410
+261 4.333000 602.046810 1073.546260 157.633930 603.925780 1061.703370 -104.130200 404.973660 1079.192260 36.592150 539.564510 756.618840 224.332370 591.033810 682.321720 134.841460 519.893310 637.181880 226.586330 514.028870 767.976320 -168.003660 602.200130 719.375850 -112.148890 503.459200 658.862120 -160.744800 474.174770 553.773560 216.634140 467.949460 524.920530 97.980040 474.942110 528.845030 -150.533580 496.038760 519.266600 -37.096660 439.409180 468.998810 235.936970 512.701290 424.146210 183.961550 451.598940 383.462890 253.333160 467.208830 450.403410 -170.744640 516.140810 393.519710 -128.082280 444.545650 409.057920 -181.076000 437.425050 98.061210 255.939070 443.704440 103.494570 165.061520 442.951080 93.626110 -172.219940 464.965610 108.972760 -81.791400 366.636750 70.633930 210.276200 507.248900 80.370190 164.966630 509.325680 63.735470 272.896090 657.178710 50.654260 195.346880 371.359770 75.242580 -115.572620 544.812990 77.038730 -94.775080 523.048890 65.813860 -192.008760 654.446530 48.593250 -127.438110 599.517460 1423.569820 24.688410 484.398900 1548.873660 196.123570 480.936800 1560.455320 -146.315890 520.406740 1501.242430 360.074650 527.242430 1508.214360 -324.317050 516.713750 1469.344120 463.952940 492.041410 1477.097170 -425.572880 673.029600 1460.683110 685.929380 613.594360 1468.248290 711.277650 622.700070 1445.245240 -641.975220 551.193420 1449.940310 -660.986690 599.159180 39.633140 276.515290 594.022280 48.985570 168.041290 585.345090 39.916630 -201.712390 605.858030 51.654370 -100.981030 628.489990 1653.057620 109.699040 641.434200 1651.073120 -29.054020 577.929990 1816.359860 35.903280
+262 4.350000 602.049680 1073.538450 157.633240 603.927730 1061.689700 -104.125710 404.931460 1079.247920 36.598450 539.564030 756.618770 224.332410 591.067810 682.349180 134.814530 519.909000 637.198730 226.582200 514.005430 767.954900 -167.997910 602.168880 719.315670 -112.174940 503.441650 658.879210 -160.703350 474.199400 553.778810 216.638080 467.981630 524.946110 97.988260 474.935550 528.843990 -150.528000 496.002380 519.224670 -37.048530 439.441440 469.000180 235.997770 512.812190 424.137150 183.993320 451.596920 383.460540 253.336560 467.253140 450.401250 -170.769710 516.116820 393.497560 -128.110820 444.558380 409.069730 -181.065310 437.424260 98.053660 255.944060 443.780240 103.518550 165.076030 442.914340 93.602790 -172.232670 464.973820 109.008720 -81.772960 366.648740 70.630040 210.278530 507.296080 80.404170 164.961000 509.343320 63.723010 272.898860 657.170170 50.652820 195.338680 371.357450 75.201320 -115.670880 544.812990 77.038730 -94.775080 523.086360 65.847400 -191.991620 654.493840 48.641510 -127.384750 599.529300 1423.654790 24.825500 484.260130 1548.861690 196.259000 480.952670 1560.455810 -146.259920 520.335210 1501.185420 360.220950 527.202330 1508.180910 -324.276820 516.704650 1469.211790 464.053410 491.942500 1477.117800 -425.467130 673.173580 1460.533200 685.895690 613.483950 1468.138430 711.372380 622.719180 1445.210940 -641.918030 551.147640 1449.923950 -660.954470 599.183530 39.620520 276.508760 593.984620 48.999050 168.024960 585.345090 39.916630 -201.712390 605.851990 51.659530 -100.986590 629.565370 1652.894530 108.648130 640.108030 1651.439940 -30.466980 577.616390 1816.485230 36.075950
+263 4.367000 602.055480 1073.542480 157.631500 603.872560 1061.678340 -104.098320 404.915070 1079.302980 36.589890 539.568600 756.620910 224.334810 591.105830 682.381840 134.768690 519.933720 637.223020 226.589480 513.984620 767.956420 -167.984360 602.145810 719.285520 -112.192210 503.415770 658.898800 -160.655500 474.212100 553.792600 216.642230 468.006160 524.958070 97.995220 474.952730 528.840640 -150.523390 496.009800 519.226680 -37.005180 439.459080 469.002560 236.032360 512.885560 424.130430 184.013690 451.595310 383.457670 253.347520 467.284730 450.407410 -170.774630 516.095150 393.485260 -128.129910 444.564480 409.073270 -181.040590 437.425140 98.062000 255.938540 443.828310 103.546660 165.087860 442.873470 93.576880 -172.246830 464.982790 109.048200 -81.752730 366.637330 70.633740 210.276320 507.343630 80.443960 164.962330 509.360350 63.712720 272.903660 657.167240 50.652320 195.335860 371.467130 75.119240 -115.613110 544.812990 77.038730 -94.775080 523.182920 65.899580 -191.958480 654.543150 48.678780 -127.334430 599.540770 1423.751830 24.937380 484.106870 1548.890010 196.396850 480.952450 1560.438600 -146.203690 520.301880 1501.134280 360.343050 527.179320 1508.130740 -324.246920 516.774900 1468.980960 464.103820 491.874730 1477.081180 -425.348910 673.289730 1460.348140 685.862980 613.305790 1467.988530 711.439510 622.711670 1445.156130 -641.888180 551.085270 1449.885500 -660.921880 599.443120 39.597950 276.559450 593.972600 49.003830 168.034470 585.345090 39.916630 -201.712390 605.841550 51.672600 -100.995120 630.555970 1652.817380 107.597160 638.788570 1651.874150 -31.768470 577.324340 1816.623170 36.246670
+264 4.383000 602.066960 1073.550050 157.628040 603.777650 1061.663330 -104.048850 404.920840 1079.356320 36.566850 539.582280 756.627200 224.341690 591.139830 682.411500 134.721500 519.973390 637.259460 226.616290 513.958010 767.973940 -167.960420 602.133420 719.288570 -112.195500 503.353330 658.899600 -160.608140 474.231750 553.786250 216.642610 468.024290 524.947810 98.007980 474.988530 528.830440 -150.514140 496.098420 519.242250 -36.939730 439.467990 469.006810 236.054030 512.919800 424.123720 184.021360 451.599760 383.460080 253.363620 467.300990 450.419130 -170.765050 516.092220 393.478580 -128.120100 444.564820 409.057770 -181.007460 437.426730 98.077100 255.928560 443.825260 103.555500 165.093190 442.854860 93.565060 -172.253280 464.984770 109.056820 -81.748310 366.611720 70.642070 210.271350 507.345280 80.455180 164.964890 509.389860 63.691230 272.920140 657.169070 50.652630 195.337630 371.638980 75.033200 -115.474410 544.812990 77.038730 -94.775080 523.397580 65.988950 -191.893400 654.579900 48.692840 -127.302540 599.561400 1423.843020 25.018410 483.969540 1548.934940 196.516270 480.948430 1560.407710 -146.152600 520.323790 1501.091550 360.425780 527.171570 1508.077030 -324.223940 516.933840 1468.685670 464.102940 491.833370 1476.994380 -425.224670 673.365050 1460.125370 685.833310 613.093990 1467.806640 711.489010 622.685300 1445.077640 -641.876890 551.006100 1449.826660 -660.892090 599.777950 39.573270 276.629490 593.997620 49.019580 168.053700 585.345090 39.916630 -201.712390 605.839050 51.680630 -100.994920 631.449890 1652.785160 106.495440 637.489140 1652.315670 -32.971290 577.068730 1816.771480 36.429070
+265 4.400000 602.089970 1073.554570 157.621400 603.685670 1061.642460 -103.996220 404.931640 1079.396480 36.543020 539.606870 756.638490 224.354080 591.158510 682.427980 134.690980 520.032530 637.312740 226.662950 513.918090 767.993650 -167.927110 602.133730 719.320310 -112.183940 503.264250 658.882450 -160.567410 474.268130 553.750920 216.638600 468.046110 524.920410 98.030320 475.028350 528.812560 -150.496990 496.269260 519.259400 -36.836410 439.476320 469.014500 236.083150 512.933720 424.117650 184.022990 451.616940 383.475250 253.376740 467.304750 450.430180 -170.753770 516.114810 393.474610 -128.085430 444.581360 409.033330 -180.982990 437.427460 98.083900 255.924060 443.782930 103.545410 165.091630 442.874300 93.577380 -172.246550 464.979100 109.031980 -81.761050 366.589050 70.649420 210.266940 507.298890 80.427850 164.965700 509.414580 63.677380 272.937290 657.174070 50.653480 195.342440 371.790560 74.977700 -115.393290 544.812990 77.038730 -94.775080 523.772220 66.141280 -191.781020 654.597720 48.693920 -127.289440 599.604250 1423.917970 25.075550 483.882930 1548.971190 196.594120 480.953130 1560.381590 -146.125370 520.384890 1501.058470 360.478700 527.172850 1508.040160 -324.204860 517.124940 1468.402100 464.068540 491.810520 1476.885500 -425.116060 673.405460 1459.878420 685.804260 612.858460 1467.621950 711.548030 622.652950 1444.989010 -641.877140 550.915650 1449.761960 -660.865480 600.030400 39.555100 276.682680 594.040280 49.037060 168.066070 585.345090 39.916630 -201.712390 605.851380 51.678480 -100.978860 632.202880 1652.731930 105.288590 636.234560 1652.709840 -34.101010 576.857180 1816.925420 36.635090
+266 4.417000 602.117250 1073.554080 157.613600 603.628780 1061.620000 -103.954640 404.929600 1079.407350 36.535820 539.635680 756.651670 224.368560 591.156490 682.426330 134.685900 520.100100 637.373780 226.715440 513.872620 768.009030 -167.892040 602.146480 719.367190 -112.164790 503.193790 658.870300 -160.540530 474.302920 553.712280 216.633590 468.075160 524.889100 98.058580 475.061340 528.795100 -150.478440 496.463930 519.286190 -36.709400 439.488560 469.025510 236.132870 512.936160 424.107180 184.018720 451.640930 383.497830 253.383590 467.301300 450.437230 -170.748260 516.156490 393.479060 -128.038650 444.633880 409.023160 -180.979170 437.426450 98.074500 255.930270 443.735530 103.544650 165.087710 442.916530 93.604190 -172.231900 464.971710 108.999560 -81.777660 366.579710 70.652450 210.265140 507.249080 80.389590 164.968870 509.410860 63.693540 272.937620 657.179380 50.654380 195.347560 371.850130 74.972600 -115.441470 544.812990 77.038730 -94.775080 524.221070 66.333150 -191.643390 654.598510 48.693150 -127.289190 599.674130 1423.975590 25.117000 483.848750 1548.988650 196.631090 480.972290 1560.371950 -146.141890 520.449710 1501.033810 360.529690 527.173770 1508.029540 -324.189510 517.278560 1468.193360 464.031280 491.795410 1476.783200 -425.047520 673.422060 1459.649540 685.778750 612.616270 1467.454350 711.628850 622.623840 1444.916750 -641.884460 550.825560 1449.704960 -660.837040 600.161680 39.545990 276.710910 594.056340 49.023570 168.070450 585.345090 39.916630 -201.712390 605.869690 51.676280 -100.954050 632.799260 1652.626100 104.000980 635.040340 1653.050660 -35.174450 576.686040 1817.077760 36.874640
+267 4.433000 602.129330 1073.544310 157.610320 603.609680 1061.596680 -103.917470 404.910060 1079.385500 36.550300 539.653630 756.659910 224.377560 591.131840 682.404970 134.710920 520.150090 637.419370 226.751750 513.835020 768.023130 -167.862380 602.170350 719.415650 -112.147070 503.177220 658.876950 -160.532970 474.315640 553.697570 216.631120 468.101470 524.865970 98.080280 475.087710 528.786320 -150.468780 496.627320 519.319820 -36.594030 439.502720 469.036380 236.199390 512.912350 424.082120 183.997910 451.652890 383.509190 253.386020 467.294950 450.442750 -170.746870 516.202880 393.495000 -127.993060 444.717100 409.043400 -180.985810 437.424130 98.052350 255.944900 443.708830 103.566080 165.086400 442.955410 93.628860 -172.218430 464.965910 108.974030 -81.790750 366.587620 70.649890 210.266660 507.227420 80.363610 164.969970 509.386990 63.727620 272.921810 657.179380 50.654380 195.347550 371.802760 75.003750 -115.579190 544.812990 77.038730 -94.775080 524.513180 66.460790 -191.552930 654.594300 48.691090 -127.293060 599.756590 1424.019650 25.147070 483.847900 1548.989750 196.644910 481.005040 1560.370970 -146.210950 520.500610 1501.016360 360.599610 527.164060 1508.036250 -324.177340 517.369870 1468.102660 464.020630 491.775600 1476.700440 -425.032750 673.434630 1459.482790 685.762880 612.471190 1467.303710 711.708680 622.598750 1444.874150 -641.896670 550.742130 1449.661870 -660.801150 600.204710 39.546010 276.724270 594.015440 48.957450 168.072860 585.345090 39.916630 -201.712390 605.880370 51.683200 -100.935640 633.306400 1652.466920 102.743840 633.890930 1653.374880 -36.203710 576.538090 1817.220090 37.156300
+268 4.450000 602.118100 1073.522830 157.615110 603.617740 1061.568240 -103.871870 404.881500 1079.340940 36.578630 539.658260 756.662050 224.379900 591.087890 682.366940 134.767840 520.167180 637.435120 226.763350 513.815190 768.031250 -167.846250 602.200810 719.458370 -112.134590 503.217770 658.892210 -160.546840 474.304380 553.710270 216.631930 468.111820 524.856690 98.088390 475.114170 528.783200 -150.469530 496.762700 519.351620 -36.507500 439.513180 469.042020 236.266220 512.845520 424.044400 183.955900 451.641910 383.498260 253.387760 467.290740 450.448850 -170.745030 516.240720 393.515960 -127.963780 444.809940 409.093750 -180.986020 437.421810 98.030220 255.959520 443.700470 103.589440 165.084960 442.978730 93.643650 -172.210360 464.962370 108.958520 -81.798700 366.613490 70.641480 210.271680 507.223420 80.346600 164.960360 509.365480 63.755070 272.903380 657.164310 50.651830 195.333100 371.712400 75.029940 -115.681420 544.812990 77.038730 -94.775080 524.460080 66.424840 -191.573490 654.593630 48.686450 -127.295400 599.826170 1424.050780 25.166640 483.861360 1548.981570 196.652770 481.046260 1560.364260 -146.322800 520.544310 1501.008060 360.683930 527.139280 1508.046140 -324.167570 517.421940 1468.142330 464.048740 491.743900 1476.634770 -425.063900 673.474430 1459.385380 685.759220 612.548220 1467.170170 711.750550 622.572270 1444.850830 -641.916020 550.667540 1449.631710 -660.760560 600.196900 39.556860 276.736270 593.932800 48.853020 168.074890 585.345090 39.916630 -201.712390 605.883730 51.686420 -100.931840 633.814940 1652.258060 101.595200 632.747070 1653.716670 -37.211070 576.385800 1817.346190 37.484420
+269 4.467000 602.091860 1073.492920 157.627990 603.645940 1061.535770 -103.815830 404.850340 1079.291630 36.610070 539.672610 756.668640 224.387120 591.037960 682.324040 134.850520 520.168700 637.436340 226.765260 513.821290 768.020080 -167.854130 602.227780 719.488950 -112.127690 503.290010 658.901550 -160.575590 474.278960 553.738950 216.634950 468.107880 524.865050 98.098520 475.141750 528.779790 -150.473100 496.908750 519.392760 -36.430950 439.517430 469.041600 236.316850 512.751830 424.013430 183.908290 451.620670 383.476960 253.392790 467.292330 450.457860 -170.739120 516.268800 393.536530 -127.954650 444.887240 409.158970 -180.977770 437.420840 98.020870 255.965700 443.694090 103.593800 165.075130 442.986110 93.648340 -172.207790 464.964290 108.966960 -81.794360 366.651370 70.629190 210.279040 507.222630 80.335330 164.947920 509.346830 63.773600 272.886690 657.122800 50.644780 195.293210 371.646270 75.035580 -115.680190 544.812990 77.038730 -94.775080 524.111630 66.246900 -191.689680 654.591860 48.685850 -127.296930 599.868470 1424.068480 25.177150 483.875850 1548.972660 196.662510 481.096470 1560.350710 -146.456480 520.584840 1501.011110 360.758730 527.107240 1508.053470 -324.160680 517.459230 1468.276860 464.104950 491.703830 1476.580810 -425.118070 673.573610 1459.332520 685.762630 612.845210 1467.059450 711.742190 622.542720 1444.825560 -641.945500 550.611760 1449.603030 -660.723690 600.152400 39.581470 276.754300 593.857730 48.757370 168.075360 585.345090 39.916630 -201.712390 605.891110 51.665600 -100.941070 634.353330 1652.017580 100.540910 631.593380 1654.081790 -38.214470 576.199710 1817.455080 37.852440
+270 4.483000 602.063840 1073.464720 157.647050 603.681950 1061.509160 -103.757850 404.819210 1079.256960 36.634850 539.717350 756.689210 224.409670 591.001040 682.293400 134.947540 520.182800 637.449100 226.776060 513.854310 767.991520 -167.885910 602.241270 719.501530 -112.125720 503.364690 658.903500 -160.607100 474.252380 553.768860 216.638430 468.108280 524.894710 98.136660 475.165280 528.774960 -150.473560 497.087250 519.463070 -36.338530 439.518010 469.039610 236.341600 512.670350 424.009830 183.878920 451.609040 383.464360 253.403380 467.296300 450.478150 -170.725300 516.294370 393.556550 -127.952130 444.905360 409.204990 -180.964220 437.421540 98.027760 255.961150 443.698880 103.578580 165.055710 442.978700 93.643630 -172.210360 464.973050 109.005350 -81.774700 366.685420 70.618130 210.285660 507.238430 80.341770 164.951610 509.322390 63.791020 272.868100 657.050840 50.632580 195.224180 371.595180 75.052020 -115.660830 544.812990 77.038730 -94.775080 523.664180 66.037830 -191.832640 654.582150 48.695880 -127.299730 599.886540 1424.079350 25.183010 483.885590 1548.967410 196.672740 481.170380 1560.341190 -146.593660 520.623410 1501.022710 360.802000 527.082150 1508.056640 -324.158940 517.500980 1468.417600 464.157440 491.662020 1476.539310 -425.178380 673.751950 1459.292970 685.758790 613.191040 1466.965330 711.712220 622.518980 1444.779790 -641.982420 550.590210 1449.554320 -660.693420 600.062440 39.618450 276.772980 593.831480 48.719210 168.076070 585.345090 39.916630 -201.712390 605.903080 51.625680 -100.963620 634.921200 1651.792970 99.551960 630.470760 1654.461060 -39.194890 575.960390 1817.549070 38.237930
+271 4.500000 602.048890 1073.452880 157.666470 603.705870 1061.495970 -103.708730 404.794620 1079.245970 36.647730 539.779480 756.717710 224.440980 590.988220 682.285160 135.047640 520.210880 637.474850 226.795430 513.905210 767.966610 -167.927430 602.239380 719.497130 -112.127300 503.430270 658.901610 -160.634660 474.239350 553.783510 216.640210 468.126280 524.938480 98.208310 475.183110 528.764590 -150.469160 497.273800 519.551880 -36.232130 439.517270 469.038600 236.346120 512.624270 424.038760 183.878230 451.611570 383.465210 253.416960 467.297210 450.512050 -170.703920 516.316410 393.569850 -127.943880 444.808650 409.192690 -180.936200 437.423160 98.042950 255.951110 443.749270 103.549320 165.035460 442.955380 93.628850 -172.218440 464.981810 109.043880 -81.754950 366.699280 70.613640 210.288350 507.281860 80.369540 164.973720 509.301640 63.801940 272.849880 656.972110 50.619210 195.148530 371.528140 75.106450 -115.708270 544.812990 77.038730 -94.775080 523.249020 65.875040 -191.955230 654.568420 48.713370 -127.302340 599.889770 1424.092290 25.188530 483.893100 1548.962040 196.678530 481.271790 1560.342530 -146.718120 520.678100 1501.034060 360.809910 527.072810 1508.045900 -324.164730 517.583800 1468.464970 464.169620 491.622130 1476.510990 -425.240420 674.001460 1459.246700 685.734190 613.386540 1466.873900 711.700320 622.509770 1444.700560 -642.017330 550.612920 1449.463260 -660.666560 599.916380 39.655040 276.772280 593.865230 48.762500 168.078020 585.345090 39.916630 -201.712390 605.904790 51.595380 -101.003620 635.556340 1651.635740 98.643310 629.443300 1654.843510 -40.099160 575.667720 1817.630130 38.606150
+272 4.517000 602.055970 1073.464110 157.676570 603.706600 1061.493160 -103.674520 404.779360 1079.245360 36.654780 539.825440 756.738830 224.464130 590.996220 682.297000 135.134520 520.230590 637.492740 226.810560 513.957520 767.964480 -167.961490 602.228270 719.483460 -112.130470 503.477910 658.894350 -160.654190 474.246890 553.775330 216.639180 468.150240 524.972350 98.289800 475.199160 528.743710 -150.458280 497.410740 519.616210 -36.134340 439.513280 469.034270 236.353820 512.614260 424.086120 183.899140 451.618070 383.470430 253.426450 467.295780 450.540950 -170.685840 516.325260 393.568820 -127.930900 444.577670 409.119720 -180.874620 437.424010 98.051350 255.945570 443.844480 103.512700 165.023930 442.916530 93.604180 -172.231900 464.980990 109.040310 -81.756780 366.686580 70.617750 210.285870 507.324770 80.395750 164.990950 509.298860 63.796770 272.837920 656.938420 50.613490 195.116210 371.473390 75.174720 -115.760660 544.812990 77.038730 -94.775080 522.941410 65.773990 -192.039790 654.558470 48.730040 -127.302570 599.883970 1424.107060 25.193630 483.907650 1548.951540 196.677690 481.361600 1560.349980 -146.806730 520.773250 1501.039060 360.791960 527.076970 1508.003170 -324.177190 517.742430 1468.379270 464.126950 491.591610 1476.483520 -425.302700 674.274840 1459.191770 685.689880 613.368040 1466.788700 711.712100 622.503660 1444.582280 -642.042540 550.680730 1449.316040 -660.644710 599.748660 39.670770 276.738280 593.938170 48.869120 168.079150 585.345090 39.916630 -201.712390 605.885440 51.597240 -101.054560 636.266240 1651.558590 97.825270 628.528560 1655.216800 -40.890070 575.339780 1817.696410 38.923120
+273 4.533000 602.081300 1073.490840 157.671130 603.684880 1061.491210 -103.652980 404.766300 1079.237790 36.664730 539.841490 756.746220 224.472200 591.012270 682.319210 135.188660 520.229250 637.490540 226.815140 513.990420 767.986020 -167.976640 602.215880 719.469180 -112.133510 503.497440 658.882930 -160.660780 474.266420 553.753780 216.636470 468.155910 524.978450 98.349360 475.213780 528.721070 -150.443130 497.464720 519.626950 -36.061640 439.503780 469.022190 236.383650 512.641360 424.130190 183.930760 451.622070 383.473910 253.429810 467.295620 450.543330 -170.683140 516.320310 393.559720 -127.917790 444.250890 409.028110 -180.769390 437.423220 98.043620 255.950670 443.920350 103.489850 165.026600 442.874300 93.577390 -172.246540 464.969240 108.988710 -81.783230 366.653930 70.628360 210.279540 507.327640 80.396810 164.982060 509.311890 63.777260 272.833860 656.976320 50.619930 195.152620 371.468690 75.212210 -115.743740 544.812990 77.038730 -94.775080 522.840450 65.737080 -192.068740 654.553280 48.739350 -127.302470 599.867800 1424.117550 25.192700 483.939940 1548.938110 196.673140 481.378660 1560.354490 -146.835590 520.914310 1501.039180 360.755340 527.085570 1507.921880 -324.189790 517.977290 1468.178830 464.039090 491.579860 1476.440670 -425.368470 674.509280 1459.141850 685.639160 613.170470 1466.736690 711.725100 622.476380 1444.438480 -642.059690 550.783940 1449.110600 -660.634030 599.656190 39.655490 276.690120 593.994320 48.970000 168.082410 585.345090 39.916630 -201.712390 605.853030 51.630240 -101.095480 636.948670 1651.529170 97.065590 627.675900 1655.577760 -41.582220 575.002810 1817.744260 39.170520
+274 4.550000 602.113160 1073.524540 157.655270 603.648190 1061.482060 -103.637760 404.751560 1079.227290 36.675000 539.846370 756.748470 224.474660 591.018680 682.339290 135.207470 520.218140 637.479310 226.813980 513.989440 768.018680 -167.971510 602.203310 719.455870 -112.135850 503.497160 658.874450 -160.657230 474.284360 553.733950 216.633990 468.139920 524.969120 98.370040 475.219090 528.714540 -150.431210 497.460240 519.595760 -36.018980 439.491850 469.006010 236.427080 512.714540 424.157350 183.969090 451.630620 383.481570 253.435520 467.297120 450.523410 -170.694370 516.315310 393.556980 -127.905140 443.933070 408.959470 -180.650710 437.421330 98.025540 255.962620 443.920010 103.504010 165.043150 442.854950 93.565120 -172.253230 464.954160 108.922420 -81.817200 366.617430 70.640210 210.272450 507.297520 80.385510 164.956700 509.330140 63.750230 272.836300 657.044070 50.631420 195.217640 371.478910 75.223530 -115.717040 544.812990 77.038730 -94.775080 523.003050 65.777390 -192.028270 654.545840 48.734660 -127.309650 599.833980 1424.123050 25.175410 483.993960 1548.928830 196.669510 481.294650 1560.355960 -146.800260 521.081790 1501.038700 360.702480 527.089230 1507.822140 -324.196110 518.251770 1467.913090 463.928890 491.583470 1476.388310 -425.447850 674.675230 1459.112550 685.595150 612.868960 1466.752560 711.723140 622.422790 1444.306150 -642.074340 550.906430 1448.854130 -660.637150 599.693300 39.621160 276.659520 593.972230 48.982320 168.096010 585.345090 39.916630 -201.712390 605.826720 51.677960 -101.105830 637.474490 1651.511230 96.343440 626.830380 1655.935550 -42.208920 574.677370 1817.771610 39.352160
+275 4.567000 602.143550 1073.562130 157.641530 603.615480 1061.466920 -103.625840 404.739960 1079.224120 36.681010 539.859680 756.754580 224.481380 590.998660 682.344480 135.211410 520.215150 637.476010 226.815430 513.955510 768.050900 -167.952300 602.190250 719.444400 -112.136860 503.494510 658.874570 -160.652890 474.294800 553.722410 216.632540 468.126100 524.968570 98.360220 475.207920 528.728700 -150.426300 497.442870 519.551030 -36.003930 439.484590 468.994170 236.459180 512.828670 424.165100 184.011060 451.649570 383.498320 253.449770 467.296880 450.506810 -170.706250 516.328190 393.568270 -127.893010 443.789460 408.925080 -180.591920 437.419590 98.009220 255.973400 443.864350 103.549970 165.066970 442.873720 93.577030 -172.246730 464.942960 108.873210 -81.842410 366.591370 70.648670 210.267400 507.284580 80.399990 164.942400 509.348300 63.718880 272.843930 657.075740 50.636800 195.248080 371.445650 75.256740 -115.741900 544.812990 77.038730 -94.775080 523.353940 65.896130 -191.930710 654.525570 48.706540 -127.335590 599.777770 1424.127560 25.130120 484.052860 1548.929440 196.669820 481.138310 1560.359010 -146.725850 521.245970 1501.040280 360.640260 527.087830 1507.733030 -324.196170 518.520390 1467.656130 463.823670 491.588680 1476.348880 -425.537750 674.786800 1459.109860 685.564330 612.617130 1466.848750 711.704280 622.365360 1444.218630 -642.086610 551.029170 1448.564210 -660.658260 599.774410 39.590580 276.647640 593.868770 48.884510 168.119870 585.345090 39.916630 -201.712390 605.818790 51.725140 -101.082410 637.797610 1651.499270 95.690540 625.998110 1656.294310 -42.781290 574.369930 1817.781740 39.488140
+276 4.583000 602.166200 1073.597530 157.637770 603.606630 1061.454220 -103.619050 404.731930 1079.220830 36.688870 539.874880 756.761540 224.489030 590.953740 682.330870 135.219800 520.219360 637.479190 226.822400 513.905520 768.079590 -167.925930 602.186650 719.446590 -112.133890 503.492280 658.882450 -160.651340 474.298650 553.718080 216.631990 468.135380 524.980410 98.346480 475.182250 528.752440 -150.425660 497.434810 519.513000 -36.006490 439.487150 468.989470 236.469890 512.938110 424.154600 184.042110 451.666840 383.513580 253.463180 467.290800 450.509890 -170.709110 516.365600 393.591340 -127.884540 443.906340 408.918460 -180.635910 437.418820 98.001990 255.978180 443.806270 103.596690 165.088680 442.914700 93.603030 -172.232540 464.937410 108.848860 -81.854900 366.578890 70.652730 210.264980 507.316130 80.452670 164.950670 509.365200 63.688960 272.855010 657.043880 50.631390 195.217480 371.388520 75.319310 -115.733030 544.812990 77.038730 -94.775080 523.695250 66.041470 -191.826220 654.483580 48.646990 -127.389760 599.704280 1424.137940 25.052280 484.078670 1548.943360 196.673490 480.968720 1560.358400 -146.654820 521.391970 1501.043330 360.580140 527.089110 1507.663820 -324.196260 518.772400 1467.460820 463.734190 491.589420 1476.330320 -425.614290 674.871950 1459.129390 685.543520 612.576420 1466.994260 711.675840 622.330200 1444.180540 -642.095890 551.128360 1448.273440 -660.712160 599.775020 39.577560 276.632970 593.754030 48.742990 168.140960 585.345090 39.916630 -201.712390 605.824950 51.761460 -101.044030 637.962830 1651.510990 95.145530 625.228580 1656.632200 -43.310280 574.073120 1817.783200 39.601860
+277 4.600000 602.170780 1073.615720 157.641890 603.620970 1061.448490 -103.620610 404.712710 1079.210450 36.705490 539.874880 756.761540 224.489030 590.912480 682.308590 135.231630 520.212400 637.470640 226.831020 513.867310 768.104370 -167.898800 602.204590 719.475520 -112.124470 503.487580 658.893190 -160.649350 474.298710 553.717900 216.631960 468.163360 524.989870 98.347560 475.153720 528.773130 -150.426820 497.431430 519.493160 -36.013600 439.499940 468.985530 236.474330 512.972530 424.127110 184.039440 451.663910 383.511050 253.460460 467.280430 450.520970 -170.706820 516.412290 393.613980 -127.886070 444.176330 408.934720 -180.739070 437.419340 98.006780 255.975010 443.757750 103.616000 165.098430 442.951420 93.626320 -172.219820 464.935910 108.842290 -81.858270 366.575590 70.653810 210.264340 507.356780 80.503510 164.965610 509.378910 63.673710 272.866610 656.976990 50.620040 195.153270 371.384160 75.352120 -115.585980 544.812990 77.038730 -94.775080 523.829710 66.117130 -191.779130 654.424380 48.564060 -127.465810 599.623660 1424.159910 24.952850 484.054750 1548.968510 196.672200 480.830900 1560.343510 -146.624540 521.523320 1501.043580 360.532010 527.090270 1507.608150 -324.205570 519.013790 1467.351810 463.657560 491.587370 1476.323490 -425.660030 674.951840 1459.163210 685.524600 612.837830 1467.138060 711.647950 622.332890 1444.173460 -642.109800 551.182860 1448.025020 -660.806880 599.690550 39.579510 276.610630 593.702700 48.648720 168.146770 585.345090 39.916630 -201.712390 605.830200 51.777880 -101.016010 638.061890 1651.556640 94.693130 624.559200 1656.907100 -43.826980 573.773380 1817.785030 39.709170
+278 4.617000 602.151730 1073.605590 157.647090 603.642640 1061.451780 -103.629010 404.665710 1079.207280 36.726650 539.859680 756.754580 224.481380 590.899600 682.290530 135.236880 520.187440 637.444030 226.835980 513.855160 768.122620 -167.875140 602.239690 719.523680 -112.111240 503.485750 658.903200 -160.644410 474.297390 553.719180 216.632110 468.190920 524.989750 98.358560 475.142430 528.778930 -150.427200 497.424560 519.492740 -36.017260 439.520660 468.976010 236.489470 512.906250 424.087190 183.996890 451.640470 383.490510 253.441250 467.274480 450.516300 -170.709930 516.441100 393.619810 -127.901380 444.436650 408.972530 -180.832090 437.421200 98.024640 255.963210 443.709140 103.598210 165.092300 442.972410 93.639650 -172.212540 464.936340 108.844220 -81.857280 366.576110 70.653640 210.264450 507.348970 80.498910 164.963530 509.388460 63.680560 272.876770 656.941710 50.614060 195.119400 371.468080 75.308180 -115.335890 544.812990 77.038730 -94.775080 523.737730 66.072620 -191.809010 654.370910 48.489980 -127.534120 599.548520 1424.190430 24.853500 484.017360 1548.993410 196.648700 480.737180 1560.315430 -146.652770 521.645690 1501.036010 360.498230 527.079470 1507.557860 -324.230070 519.220950 1467.378910 463.603030 491.581390 1476.320800 -425.683930 675.037410 1459.203000 685.507570 613.458070 1467.252930 711.615840 622.381710 1444.172970 -642.142820 551.190000 1447.846190 -660.920900 599.637210 39.583870 276.600190 593.733520 48.645660 168.136460 585.345090 39.916630 -201.712390 605.826110 51.771120 -101.007380 638.171450 1651.611330 94.266560 624.000610 1657.093990 -44.345470 573.460630 1817.792720 39.814890
+279 4.633000 602.114200 1073.575440 157.653020 603.659420 1061.469600 -103.637650 404.599460 1079.225590 36.741920 539.846370 756.748470 224.474660 590.910950 682.281010 135.234470 520.163940 637.419980 226.834790 513.853150 768.129640 -167.855730 602.268980 719.560240 -112.102430 503.493680 658.910340 -160.637990 474.296140 553.720640 216.632290 468.207550 524.990230 98.363470 475.163240 528.759030 -150.421020 497.418060 519.500610 -36.017310 439.542300 468.962920 236.513180 512.788940 424.048830 183.938200 451.616090 383.469120 253.421340 467.279690 450.489870 -170.721730 516.437680 393.604520 -127.923480 444.634770 409.028630 -180.892760 437.424130 98.052320 255.944920 443.670500 103.554840 165.078670 442.980010 93.644460 -172.209920 464.937260 108.848230 -81.855220 366.577000 70.653350 210.264620 507.282500 80.436940 164.940600 509.394040 63.700540 272.884160 656.979980 50.620540 195.156110 371.600160 75.220220 -115.088390 544.812990 77.038730 -94.775080 523.581480 65.962620 -191.870830 654.349430 48.460670 -127.561370 599.490780 1424.216430 24.764590 484.016630 1549.003540 196.590120 480.678770 1560.287110 -146.733980 521.770450 1501.022460 360.471470 527.054930 1507.507320 -324.265900 519.380000 1467.571290 463.579220 491.572390 1476.315190 -425.716610 675.129330 1459.244020 685.500850 614.414790 1467.340450 711.558040 622.474730 1444.156620 -642.207210 551.170900 1447.734010 -661.019170 599.689940 39.582180 276.613890 593.823120 48.728220 168.116560 585.345090 39.916630 -201.712390 605.821660 51.747530 -101.005720 638.295170 1651.619380 93.810370 623.548650 1657.210820 -44.835750 573.135070 1817.807250 39.915500
+280 4.650000 602.067140 1073.547360 157.667050 603.667300 1061.503780 -103.645810 404.543460 1079.258420 36.746560 539.841490 756.746220 224.472200 590.932190 682.280330 135.232830 520.163700 637.420720 226.828890 513.840450 768.122500 -167.842850 602.273250 719.561580 -112.103560 503.512660 658.911740 -160.636610 474.295530 553.721680 216.632450 468.217100 525.000430 98.355320 475.206600 528.716310 -150.406140 497.417690 519.506840 -36.015660 439.550200 468.953580 236.533420 512.686950 424.031160 183.895290 451.607640 383.461670 253.414490 467.292540 450.457240 -170.736340 516.407650 393.579800 -127.938220 444.801670 409.088840 -180.938540 437.427090 98.080490 255.926300 443.653900 103.515310 165.068910 442.980160 93.644560 -172.209850 464.937990 108.851380 -81.853610 366.577030 70.653320 210.264590 507.200620 80.369890 164.914550 509.391850 63.720540 272.884030 657.063420 50.634700 195.236220 371.705110 75.162600 -114.903900 544.812990 77.038730 -94.775080 523.514400 65.884100 -191.907460 654.370360 48.490390 -127.534310 599.441220 1424.228030 24.668990 484.064880 1548.993900 196.505800 480.641300 1560.269780 -146.843520 521.911320 1501.008670 360.442540 527.028560 1507.455930 -324.302060 519.521550 1467.853390 463.571620 491.572140 1476.296140 -425.796330 675.227230 1459.285280 685.503970 615.498960 1467.405400 711.463560 622.589900 1444.108280 -642.300350 551.156560 1447.665770 -661.089290 599.772890 39.578070 276.633640 593.935610 48.863610 168.094390 585.345090 39.916630 -201.712390 605.831790 51.716210 -100.992550 638.389040 1651.543210 93.331510 623.188230 1657.303340 -45.252680 572.810240 1817.825930 40.003500
+281 4.667000 602.018070 1073.536500 157.692490 603.666990 1061.548950 -103.664630 404.515560 1079.285030 36.745750 539.825440 756.738830 224.464130 590.955570 682.286870 135.238240 520.179810 637.438600 226.821180 513.817690 768.105530 -167.841310 602.255860 719.536680 -112.110760 503.528080 658.905880 -160.644780 474.295930 553.722290 216.632610 468.220000 525.012700 98.340320 475.245940 528.672000 -150.390900 497.420720 519.512080 -36.011540 439.535520 468.951930 236.544250 512.624820 424.040130 183.879500 451.613770 383.467010 253.419540 467.304170 450.435940 -170.746370 516.365840 393.560030 -127.937350 444.956760 409.127870 -180.987170 437.429110 98.099690 255.913620 443.651820 103.505120 165.066730 442.977750 93.643040 -172.210690 464.938350 108.853010 -81.852780 366.577240 70.653170 210.264570 507.145050 80.344320 164.902130 509.379240 63.733430 272.873410 657.134640 50.646790 195.304610 371.733830 75.163200 -114.799620 544.812990 77.038730 -94.775080 523.570190 65.887600 -191.896910 654.423400 48.564820 -127.466170 599.377320 1424.226680 24.541210 484.135860 1548.968630 196.424300 480.614810 1560.264650 -146.950730 522.057560 1500.999270 360.410740 527.020320 1507.407840 -324.333130 519.667420 1468.099370 463.562870 491.593050 1476.260010 -425.940520 675.345280 1459.323240 685.495540 616.404170 1467.448120 711.350650 622.695800 1444.019170 -642.401250 551.165830 1447.618650 -661.144900 599.769350 39.579160 276.633850 594.028140 48.995190 168.077390 585.345090 39.916630 -201.712390 605.860110 51.684860 -100.961230 638.466190 1651.417850 92.882590 622.902890 1657.406130 -45.571130 572.508910 1817.846190 40.070610
+282 4.683000 601.967040 1073.535160 157.720200 603.657470 1061.592530 -103.702120 404.509220 1079.286380 36.749360 539.779480 756.717710 224.440980 590.973020 682.294740 135.247410 520.188900 637.449340 226.813140 513.797490 768.087400 -167.850160 602.235660 719.512020 -112.116490 503.504610 658.893740 -160.652340 474.297550 553.722350 216.632780 468.204040 525.015200 98.325240 475.262080 528.650700 -150.386520 497.422640 519.519290 -36.004590 439.508210 468.955840 236.546520 512.591550 424.058620 183.878330 451.618960 383.471590 253.423830 467.310000 450.431000 -170.748790 516.328740 393.550540 -127.925470 445.077640 409.133180 -181.034970 437.429810 98.106250 255.909290 443.650940 103.519090 165.070390 442.975460 93.641570 -172.211490 464.938480 108.853500 -81.852520 366.580750 70.651920 210.265120 507.123350 80.360030 164.903950 509.363920 63.733600 272.858950 657.160340 50.651150 195.329250 371.705260 75.178760 -114.776090 544.812990 77.038730 -94.775080 523.650390 65.938130 -191.867100 654.482540 48.647820 -127.390170 599.303960 1424.218630 24.383380 484.188480 1548.929930 196.370390 480.601320 1560.266600 -147.034300 522.175960 1500.998170 360.379880 527.044560 1507.362670 -324.364260 519.803530 1468.247920 463.554690 491.627930 1476.219480 -426.117430 675.509460 1459.347050 685.449460 616.961910 1467.472410 711.246770 622.779720 1443.887940 -642.482970 551.190310 1447.578250 -661.199400 599.684690 39.585120 276.615750 594.061950 49.062300 168.072130 585.345090 39.916630 -201.712390 605.892400 51.663050 -100.924900 638.601320 1651.336060 92.509220 622.689510 1657.521610 -45.788450 572.255490 1817.866700 40.109720
+283 4.700000 601.907350 1073.522090 157.736210 603.632260 1061.614260 -103.749490 404.508880 1079.260860 36.761090 539.717350 756.689210 224.409670 590.977720 682.297490 135.252040 520.185300 637.446660 226.806730 513.789000 768.070250 -167.861680 602.229430 719.504150 -112.118440 503.422240 658.874020 -160.643140 474.300230 553.721440 216.632830 468.163510 525.005430 98.308360 475.255740 528.661620 -150.395920 497.416900 519.530400 -35.996790 439.485140 468.961700 236.541780 512.572140 424.064450 183.875240 451.611540 383.465060 253.417740 467.312810 450.434810 -170.746370 516.307310 393.544530 -127.915780 445.129820 409.114960 -181.065200 437.429140 98.099870 255.913500 443.642430 103.530000 165.075700 442.974060 93.640690 -172.211980 464.938450 108.853420 -81.852560 366.591670 70.648260 210.267120 507.120570 80.381580 164.908650 509.357360 63.717340 272.850950 657.132450 50.646420 195.302490 371.685330 75.158720 -114.814770 544.812990 77.038730 -94.775080 523.570370 65.939540 -191.880190 654.525390 48.706630 -127.335660 599.247130 1424.209110 24.227330 484.193300 1548.873540 196.347660 480.607790 1560.269410 -147.087680 522.247310 1501.011470 360.345120 527.090330 1507.314820 -324.400330 519.919430 1468.317260 463.554840 491.657230 1476.185300 -426.268890 675.734800 1459.350950 685.359380 617.209900 1467.489620 711.164060 622.852660 1443.724000 -642.529790 551.207210 1447.535030 -661.254150 599.646790 39.587220 276.606930 594.035770 49.049420 168.079280 585.345090 39.916630 -201.712390 605.906560 51.659180 -100.908760 638.805110 1651.355350 92.224980 622.552120 1657.629880 -45.915340 572.067140 1817.887700 40.116470
+284 4.717000 601.834960 1073.491580 157.739180 603.599120 1061.610840 -103.803130 404.504910 1079.231320 36.773150 539.672550 756.668640 224.387120 590.972470 682.294250 135.246110 520.183470 637.445010 226.805110 513.793950 768.050600 -167.872010 602.240050 719.508850 -112.120510 503.316280 658.848140 -160.617510 474.302800 553.718750 216.632520 468.114440 524.987670 98.284650 475.239170 528.695130 -150.414380 497.389470 519.548340 -35.993030 439.474030 468.968410 236.529530 512.556090 424.058690 183.867260 451.595250 383.450810 253.404400 467.319400 450.436650 -170.744160 516.302980 393.535580 -127.915090 445.096470 409.079990 -181.070430 437.427120 98.080730 255.926150 443.629300 103.529430 165.078060 442.973540 93.640350 -172.212160 464.938390 108.853230 -81.852670 366.612920 70.641380 210.271270 507.121610 80.384640 164.908390 509.363100 63.691260 272.853420 657.058650 50.633890 195.231630 371.705690 75.115530 -114.889400 544.812990 77.038730 -94.775080 523.268550 65.848530 -191.960540 654.548460 48.732540 -127.308690 599.210390 1424.204220 24.105110 484.173860 1548.808470 196.338530 480.636260 1560.271730 -147.116850 522.280700 1501.046260 360.290010 527.131160 1507.263180 -324.437320 520.010130 1468.359380 463.562740 491.680450 1476.144410 -426.369110 676.010740 1459.352420 685.236330 617.267150 1467.515630 711.099300 622.923770 1443.552730 -642.542970 551.209050 1447.482060 -661.306460 599.741090 39.579690 276.625980 593.995180 48.999180 168.092060 585.345090 39.916630 -201.712390 605.893190 51.673390 -100.927920 638.971800 1651.436040 92.021390 622.483950 1657.707030 -45.971220 571.949520 1817.910030 40.090800
+285 4.733000 601.758120 1073.462160 157.743880 603.586430 1061.610470 -103.879500 404.496520 1079.220950 36.776330 539.658260 756.662050 224.379900 590.967350 682.288640 135.224990 520.190060 637.451480 226.807310 513.805850 768.029240 -167.884780 602.257570 719.514950 -112.124870 503.248780 658.833620 -160.591080 474.302090 553.714110 216.631470 468.077060 524.969240 98.253730 475.222080 528.731080 -150.435590 497.330630 519.565980 -36.005680 439.473850 468.976650 236.509030 512.535830 424.063020 183.863070 451.580380 383.437870 253.392240 467.334500 450.432070 -170.745220 516.311460 393.530910 -127.915260 444.992030 409.023930 -181.060010 437.424130 98.052370 255.944900 443.640630 103.536700 165.077550 442.973480 93.640320 -172.212170 464.938390 108.853110 -81.852720 366.640380 70.632870 210.277020 507.121980 80.382110 164.907530 509.376710 63.672680 272.864410 656.972960 50.619350 195.149350 371.719480 75.107020 -114.977530 544.812990 77.038730 -94.775080 522.926210 65.744770 -192.051820 654.560970 48.733120 -127.299520 599.175900 1424.208370 24.030330 484.217470 1548.776250 196.318880 480.687440 1560.277830 -147.135210 522.294490 1501.102910 360.201450 527.151860 1507.212650 -324.467800 520.040470 1468.423830 463.573270 491.715360 1476.072880 -426.436280 676.311830 1459.379760 685.089230 617.223450 1467.566770 711.045900 622.980960 1443.401860 -642.533450 551.203370 1447.417720 -661.351440 599.892400 39.568210 276.657260 593.976320 48.948990 168.106480 585.345090 39.916630 -201.712390 605.866820 51.694150 -100.973210 638.983890 1651.499760 91.878680 622.464780 1657.740970 -45.979760 571.898990 1817.933350 40.037740
+286 4.750000 601.696900 1073.451900 157.760220 603.602780 1061.629390 -103.976060 404.488590 1079.231930 36.770300 539.653630 756.659910 224.377560 590.964230 682.281190 135.179900 520.187680 637.449460 226.804550 513.816470 768.012450 -167.902080 602.267880 719.518550 -112.127440 503.246310 658.847600 -160.576430 474.292480 553.708680 216.629430 468.053100 524.956300 98.219040 475.207090 528.750610 -150.452420 497.243440 519.564640 -36.051340 439.480100 468.985750 236.484970 512.511350 424.085210 183.866730 451.571750 383.430390 253.385220 467.354520 450.423070 -170.749390 516.324280 393.539670 -127.906630 444.855590 408.954350 -181.045870 437.421140 98.023990 255.963640 443.710170 103.557520 165.076480 442.973630 93.640410 -172.212130 464.938390 108.853130 -81.852710 366.661830 70.626960 210.282320 507.122220 80.389480 164.912700 509.393190 63.673760 272.881870 656.935550 50.613010 195.113480 371.664460 75.156490 -115.048230 544.812990 77.038730 -94.775080 522.779790 65.737550 -192.078890 654.572570 48.718780 -127.297140 599.142460 1424.218020 23.997980 484.394170 1548.807370 196.272580 480.755310 1560.289430 -147.153270 522.300540 1501.166870 360.088100 527.157170 1507.158200 -324.490170 519.971500 1468.529790 463.581600 491.774050 1475.965700 -426.496150 676.610470 1459.442380 684.927120 617.116640 1467.653200 711.002930 623.011900 1443.277830 -642.520750 551.190000 1447.348630 -661.380920 599.955140 39.563850 276.670720 593.965940 48.893020 168.126910 585.345090 39.916630 -201.712390 605.852910 51.699560 -101.022650 638.847660 1651.528930 91.772180 622.476560 1657.738890 -45.965580 571.908510 1817.956180 39.966310
+287 4.767000 601.667420 1073.455200 157.779630 603.613530 1061.643920 -104.051990 404.486720 1079.254520 36.759580 539.635680 756.651670 224.368550 590.949160 682.266420 135.102980 520.151310 637.415040 226.785870 513.822880 768.006650 -167.919250 602.262330 719.516240 -112.126270 503.283330 658.879760 -160.574200 474.267520 553.707210 216.626790 468.032260 524.946110 98.182770 475.188720 528.748960 -150.459370 497.139250 519.537480 -36.130840 439.487640 468.992710 236.468140 512.488280 424.104740 183.869690 451.568540 383.427700 253.382640 467.367310 450.412480 -170.755250 516.328610 393.557130 -127.892140 444.718630 408.896030 -181.026660 437.419130 98.004860 255.976290 443.827000 103.564850 165.070600 442.973750 93.640500 -172.212070 464.938390 108.853220 -81.852670 366.669800 70.626170 210.285780 507.121550 80.392150 164.922590 509.408110 63.691220 272.903560 656.980100 50.620560 195.156220 371.555540 75.220760 -115.070040 544.812990 77.038730 -94.775080 522.924320 65.855340 -192.016540 654.585140 48.700180 -127.295810 599.135310 1424.222170 23.989400 484.676300 1548.872560 196.195270 480.820100 1560.299320 -147.172410 522.305540 1501.217160 359.977260 527.164430 1507.079590 -324.509400 519.820620 1468.660280 463.581020 491.863490 1475.839110 -426.561100 676.869690 1459.521730 684.769530 616.955320 1467.766480 710.975220 623.030760 1443.170290 -642.533140 551.165100 1447.285640 -661.392090 599.852230 39.573800 276.652100 593.953430 48.843480 168.149630 585.345090 39.916630 -201.712390 605.864990 51.672910 -101.055730 638.680420 1651.564940 91.686390 622.511840 1657.718630 -45.948520 571.971980 1817.977050 39.886550
+288 4.783000 601.665340 1073.456790 157.789810 603.582400 1061.629520 -104.075610 404.492610 1079.281740 36.747220 539.606930 756.638490 224.354060 590.905640 682.241520 135.006730 520.081480 637.349060 226.749370 513.825260 768.014100 -167.934920 602.247130 719.506840 -112.125020 503.310300 658.903380 -160.575930 474.225710 553.719120 216.625430 468.008940 524.928100 98.145990 475.153080 528.739930 -150.458110 497.038600 519.502010 -36.216380 439.493710 468.996700 236.461330 512.470580 424.101500 183.862780 451.568480 383.427550 253.382550 467.361760 450.403590 -170.759810 516.317810 393.571290 -127.881210 444.595610 408.875730 -180.994630 437.418460 97.998480 255.980500 443.928530 103.538380 165.054730 442.973850 93.640560 -172.212040 464.938390 108.853150 -81.852710 366.668700 70.628490 210.287640 507.123990 80.375720 164.934950 509.410340 63.720000 272.919950 657.070740 50.635940 195.243240 371.483610 75.239280 -115.049400 544.812990 77.038730 -94.775080 523.275940 66.037190 -191.898530 654.592410 48.688020 -127.295630 599.178280 1424.213750 23.977240 484.966030 1548.920780 196.095370 480.864470 1560.297730 -147.191270 522.319400 1501.244750 359.889160 527.187380 1506.964600 -324.528900 519.664310 1468.771610 463.558990 491.985470 1475.717290 -426.631680 677.051510 1459.588130 684.638310 616.746090 1467.877080 710.963560 623.058900 1443.075320 -642.591860 551.137450 1447.239620 -661.394100 599.622380 39.597590 276.612400 593.966370 48.856720 168.154220 585.345090 39.916630 -201.712390 605.894230 51.624650 -101.055610 638.566100 1651.626590 91.620030 622.565860 1657.693730 -45.937580 572.085210 1817.995480 39.805950
+289 4.800000 601.671260 1073.455810 157.792430 603.513920 1061.593380 -104.058400 404.502230 1079.306400 36.736220 539.582340 756.627200 224.341670 590.831970 682.213870 134.925510 520.010560 637.282900 226.707200 513.822690 768.030760 -167.955920 602.237790 719.499150 -112.125380 503.299100 658.907230 -160.575960 474.176760 553.752200 216.627880 467.985260 524.899480 98.109960 475.091430 528.738280 -150.454060 496.956090 519.475830 -36.283170 439.498690 469.001560 236.451170 512.455690 424.084140 183.849240 451.569670 383.428160 253.383330 467.336060 450.401580 -170.758030 516.299190 393.573000 -127.880910 444.500310 408.900910 -180.952010 437.419160 98.005080 255.976140 443.956120 103.496510 165.039570 442.973910 93.640590 -172.212040 464.938260 108.852610 -81.852980 366.662480 70.630620 210.286540 507.143920 80.358350 164.951780 509.390010 63.760170 272.918640 657.142400 50.648110 195.312030 371.515320 75.200410 -115.033980 544.812990 77.038730 -94.775080 523.621700 66.186130 -191.792110 654.590940 48.686190 -127.297420 599.270390 1424.195560 23.931630 485.174870 1548.941890 195.990160 480.885990 1560.282470 -147.212680 522.351990 1501.255740 359.825380 527.221920 1506.828490 -324.545410 519.579470 1468.819460 463.500850 492.121890 1475.620480 -426.704100 677.149600 1459.630130 684.541080 616.523440 1467.950320 710.954590 623.096010 1443.001710 -642.692380 551.120240 1447.216670 -661.397400 599.399480 39.626770 276.581480 594.027160 48.952520 168.126480 585.345090 39.916630 -201.712390 605.920780 51.584660 -101.022810 638.487430 1651.684450 91.574480 622.625730 1657.672120 -45.932940 572.243410 1818.012820 39.727530
+290 4.817000 601.673220 1073.459720 157.795120 603.433530 1061.548580 -104.025400 404.507420 1079.316530 36.731720 539.568730 756.620910 224.334790 590.740840 682.194640 134.886800 519.965820 637.242190 226.674290 513.812190 768.053340 -167.983570 602.237670 719.497920 -112.126070 503.266820 658.907350 -160.579510 474.136050 553.796390 216.633450 467.965030 524.872620 98.078350 475.016480 528.742490 -150.449280 496.867650 519.450200 -36.352060 439.501280 469.010350 236.421840 512.438900 424.079990 183.841080 451.571200 383.428380 253.384080 467.296330 450.407440 -170.748120 516.283570 393.556760 -127.895940 444.446810 408.948820 -180.911100 437.421170 98.024360 255.963390 443.914860 103.471480 165.044430 442.973910 93.640590 -172.212020 464.937960 108.851260 -81.853680 366.654450 70.627680 210.279100 507.195830 80.367610 164.971570 509.357450 63.804570 272.900700 657.152220 50.649770 195.321440 371.613370 75.151210 -115.065420 544.812990 77.038730 -94.775080 523.797360 66.250670 -191.741620 654.587890 48.687900 -127.298900 599.388060 1424.176880 23.836380 485.275540 1548.960210 195.890900 480.889430 1560.260250 -147.242770 522.403870 1501.260620 359.781160 527.251100 1506.701050 -324.552550 519.586430 1468.807500 463.405300 492.241760 1475.552980 -426.781220 677.195860 1459.663090 684.469730 616.366090 1467.974240 710.929020 623.126160 1442.953000 -642.805910 551.112610 1447.211300 -661.400820 599.312500 39.648140 276.581700 594.114200 49.066380 168.080540 585.345090 39.916630 -201.712390 605.931210 51.569550 -100.986280 638.384340 1651.700810 91.545680 622.673950 1657.657960 -45.932080 572.438540 1818.031010 39.650080
+291 4.833000 601.676210 1073.459960 157.794370 603.355220 1061.489750 -103.988620 404.502810 1079.305790 36.736490 539.564030 756.618770 224.332440 590.649960 682.187870 134.889720 519.939640 637.218690 226.653030 513.790220 768.088260 -168.011750 602.236270 719.495180 -112.127100 503.238950 658.920900 -160.592960 474.108060 553.827580 216.637470 467.947880 524.860840 98.057370 474.949250 528.745120 -150.445050 496.723420 519.408940 -36.464570 439.496890 469.022460 236.363220 512.421390 424.099980 183.843770 451.572720 383.427890 253.384510 467.253540 450.417110 -170.734660 516.271180 393.525210 -127.926150 444.437960 408.989320 -180.886220 437.424160 98.052630 255.944720 443.856930 103.475660 165.070140 442.973910 93.640580 -172.212040 464.937470 108.849090 -81.854780 366.656770 70.610950 210.262530 507.273220 80.408230 164.990630 509.332610 63.838250 272.879790 657.082890 50.638000 195.254900 371.688020 75.134760 -115.143910 544.812990 77.038730 -94.775080 523.811400 66.244740 -191.741170 654.589720 48.686580 -127.298130 599.503230 1424.163940 23.707730 485.299840 1548.998780 195.800720 480.880950 1560.239260 -147.285290 522.469790 1501.267700 359.750310 527.264040 1506.603030 -324.549900 519.656430 1468.782230 463.290440 492.320710 1475.503660 -426.874510 677.231320 1459.708370 684.411070 616.356510 1467.970460 710.879030 623.137820 1442.914180 -642.904850 551.100520 1447.197510 -661.398130 599.386720 39.650050 276.606350 594.161130 49.105770 168.047210 585.345090 39.916630 -201.712390 605.927370 51.570670 -100.976640 638.248230 1651.673580 91.527390 622.702210 1657.649540 -45.934330 572.656980 1818.050780 39.570110
+292 4.850000 601.685240 1073.438350 157.780270 603.294560 1061.421390 -103.969020 404.491120 1079.283080 36.746880 539.564210 756.618840 224.332520 590.573550 682.188110 134.915360 519.911440 637.192260 226.636960 513.761900 768.138550 -168.039230 602.223880 719.481870 -112.129510 503.202970 658.938900 -160.609700 474.084260 553.836980 216.637250 467.931820 524.867610 98.042850 474.891910 528.747380 -150.445480 496.504520 519.360230 -36.623870 439.480500 469.035190 236.271350 512.406130 424.127530 183.849580 451.573850 383.427190 253.384660 467.221130 450.429320 -170.722790 516.254150 393.490140 -127.964680 444.457370 409.007750 -180.889470 437.427060 98.080370 255.926390 443.806850 103.501370 165.096130 442.973880 93.640580 -172.212040 464.936980 108.847010 -81.855850 366.676270 70.576020 210.235820 507.337490 80.456500 165.008580 509.319670 63.850520 272.865810 656.942200 50.614140 195.119870 371.716770 75.133180 -115.229800 544.812990 77.038730 -94.775080 523.723210 66.178640 -191.777360 654.592100 48.685100 -127.297070 599.606020 1424.154540 23.584760 485.295840 1549.057500 195.725140 480.869480 1560.223510 -147.337190 522.546880 1501.282710 359.717470 527.266110 1506.541020 -324.547210 519.762700 1468.773930 463.180540 492.343570 1475.462160 -426.986970 677.277100 1459.770630 684.353820 616.508240 1467.973880 710.811650 623.129150 1442.863280 -642.984560 551.070860 1447.148800 -661.401250 599.532230 39.632910 276.628880 594.091250 49.030470 168.043210 585.345090 39.916630 -201.712390 605.921330 51.570200 -100.996020 638.166320 1651.649050 91.516120 622.716920 1657.638550 -45.942670 572.878480 1818.071900 39.483540
+293 4.867000 601.693660 1073.393190 157.753160 603.271420 1061.372800 -103.989700 404.478330 1079.261960 36.756970 539.565860 756.619630 224.333370 590.518310 682.185670 134.948200 519.879640 637.161560 226.623960 513.742190 768.185360 -168.065800 602.200070 719.457030 -112.133690 503.119600 658.942810 -160.611010 474.062410 553.836180 216.635040 467.917760 524.888550 98.017070 474.836210 528.752690 -150.453700 496.252260 519.325930 -36.790190 439.453190 469.044070 236.160870 512.394530 424.145940 183.851200 451.573610 383.427460 253.384690 467.209170 450.443940 -170.714520 516.229490 393.463840 -128.002500 444.489690 409.002440 -180.926570 437.428920 98.098080 255.914690 443.744960 103.532230 165.103840 442.973880 93.640570 -172.212040 464.937130 108.847620 -81.855540 366.696870 70.536220 210.204540 507.347020 80.476460 165.020970 509.314330 63.837680 272.861390 656.766660 50.584350 194.951340 371.746280 75.103770 -115.269940 544.812990 77.038730 -94.775080 523.577090 66.061480 -191.839780 654.590030 48.687220 -127.297670 599.704900 1424.142700 23.495730 485.294250 1549.119020 195.669140 480.867070 1560.211300 -147.397660 522.636470 1501.309690 359.663970 527.272890 1506.508060 -324.555760 519.901250 1468.770870 463.086940 492.309720 1475.426640 -427.098180 677.329710 1459.840210 684.291870 616.738460 1468.005000 710.746150 623.103450 1442.791630 -643.056210 551.019960 1447.063720 -661.444700 599.597230 39.613080 276.623960 593.890690 48.879970 168.060120 585.345090 39.916630 -201.712390 605.920530 51.561730 -101.026600 638.249690 1651.684200 91.510440 622.730900 1657.613890 -45.962310 573.078490 1818.093140 39.386100
+294 4.883000 601.695310 1073.343750 157.724880 603.282900 1061.359990 -104.031190 404.467990 1079.250490 36.763480 539.567440 756.620360 224.334150 590.486880 682.174070 134.979680 519.854370 637.136840 226.616150 513.739750 768.205750 -168.086840 602.173710 719.428160 -112.139170 502.971070 658.929810 -160.582350 474.053100 553.832890 216.633470 467.906010 524.913020 97.973340 474.791050 528.760010 -150.468290 496.041410 519.313660 -36.922700 439.427030 469.046630 236.068360 512.388060 424.158510 183.852830 451.570070 383.430940 253.384750 467.218350 450.455780 -170.711810 516.206910 393.454190 -128.030200 444.542140 408.985570 -180.989060 437.429380 98.102310 255.911900 443.662720 103.554600 165.094350 442.973880 93.640570 -172.212040 464.938930 108.855570 -81.851460 366.696260 70.517640 210.184420 507.309330 80.458430 165.021620 509.321500 63.801090 272.868560 656.598750 50.555850 194.790160 371.785310 75.054210 -115.242870 544.812990 77.038730 -94.775080 523.484070 65.966400 -191.886110 654.588320 48.688820 -127.298200 599.800230 1424.128300 23.442340 485.304470 1549.166750 195.627880 480.886410 1560.196900 -147.483690 522.742490 1501.350830 359.585390 527.297300 1506.485350 -324.577970 520.077640 1468.749390 463.003170 492.247220 1475.397830 -427.180760 677.376770 1459.912230 684.224850 616.934940 1468.058590 710.704410 623.062500 1442.709470 -643.127440 550.950070 1446.963130 -661.550600 599.502440 39.605930 276.586700 593.646730 48.728340 168.085650 585.345090 39.916630 -201.712390 605.919010 51.555650 -101.055210 638.517090 1651.793700 91.508020 622.753850 1657.569090 -45.995790 573.233700 1818.114140 39.272550
+295 4.900000 601.695920 1073.312990 157.707180 603.311340 1061.363400 -104.047110 404.462830 1079.251460 36.764720 539.568360 756.620730 224.334610 590.480710 682.159850 134.995180 519.839780 637.122250 226.613560 513.746520 768.200200 -168.105510 602.154110 719.402400 -112.145870 502.790500 658.906740 -160.527160 474.058900 553.827760 216.632930 467.892240 524.928710 97.927640 474.775700 528.768980 -150.485690 495.916990 519.319700 -37.012260 439.413670 469.046020 236.021870 512.385620 424.174990 183.860080 451.560970 383.440030 253.384980 467.238980 450.460330 -170.715990 516.198000 393.465300 -128.042110 444.610870 408.978670 -181.052720 437.428500 98.093920 255.917430 443.587340 103.568790 165.082120 442.973880 93.640570 -172.212040 464.943630 108.876240 -81.840870 366.677220 70.527450 210.184590 507.278530 80.436040 165.017900 509.340450 63.752450 272.884800 656.479060 50.535550 194.675250 371.781250 75.041280 -115.181000 544.812990 77.038730 -94.775080 523.567380 65.987720 -191.865140 654.591250 48.686480 -127.297120 599.878110 1424.116700 23.409660 485.323490 1549.195190 195.592500 480.934690 1560.175290 -147.623050 522.862490 1501.403690 359.493160 527.338930 1506.459720 -324.613920 520.283510 1468.713870 462.924040 492.200560 1475.370480 -427.228790 677.412900 1459.996220 684.153140 617.068910 1468.120610 710.690430 623.005680 1442.626830 -643.198300 550.865970 1446.874510 -661.696960 599.332950 39.609820 276.540620 593.491940 48.629560 168.117070 585.345090 39.916630 -201.712390 605.907900 51.564580 -101.075980 638.850710 1651.932740 91.504010 622.787350 1657.510130 -46.038330 573.328670 1818.134640 39.136490
+296 4.917000 601.709660 1073.312500 157.703450 603.345520 1061.352170 -104.011910 404.469120 1079.267940 36.758040 539.568660 756.620910 224.334780 590.499020 682.159850 134.976380 519.834530 637.116820 226.613660 513.751160 768.185850 -168.131440 602.143190 719.379760 -112.154700 502.648410 658.878910 -160.467730 474.060460 553.823910 216.632260 467.870120 524.930730 97.896030 474.797700 528.781560 -150.502720 495.865050 519.345460 -37.080120 439.406770 469.046170 236.006010 512.380980 424.194310 183.868620 451.545780 383.455380 253.385420 467.254850 450.461330 -170.722790 516.198180 393.494020 -128.044720 444.651030 408.990940 -181.093920 437.426610 98.075960 255.929310 443.552700 103.582550 165.073360 442.973880 93.640570 -172.212040 464.951540 108.910900 -81.823100 366.665860 70.539720 210.191530 507.289520 80.442390 165.021870 509.348750 63.719640 272.896760 656.460880 50.532460 194.657790 371.705200 75.097150 -115.133160 544.812990 77.038730 -94.775080 523.803530 66.127560 -191.780210 654.591800 48.685990 -127.296910 599.933590 1424.107790 23.383220 485.343110 1549.206670 195.561710 481.008240 1560.148190 -147.821210 522.978700 1501.463260 359.402280 527.382570 1506.433590 -324.667940 520.485170 1468.705440 462.863340 492.194640 1475.339360 -427.255550 677.442380 1460.104860 684.080990 617.215450 1468.194580 710.682310 622.936040 1442.538210 -643.267090 550.778020 1446.815800 -661.836980 599.241520 39.613300 276.517430 593.500790 48.610800 168.144290 585.345090 39.916630 -201.712390 605.887330 51.589250 -101.085160 639.066530 1652.030400 91.490070 622.829160 1657.455080 -46.083430 573.359990 1818.154170 38.972240
+297 4.933000 601.749940 1073.337400 157.706950 603.380310 1061.318850 -103.932210 404.497340 1079.301640 36.739840 539.568730 756.620910 224.334790 590.539920 682.178890 134.924590 519.838440 637.120910 226.613240 513.755980 768.167300 -168.154630 602.138120 719.358640 -112.165310 502.604710 658.846860 -160.433290 474.035680 553.820190 216.629180 467.839600 524.916080 97.882340 474.852810 528.797730 -150.516100 495.860470 519.382450 -37.151860 439.394170 469.045620 235.985410 512.370910 424.206760 183.871220 451.529940 383.471410 253.385890 467.255950 450.464020 -170.725360 516.191830 393.525540 -128.049800 444.617250 409.012180 -181.101700 437.424590 98.056800 255.941960 443.586880 103.585590 165.055510 442.973880 93.640570 -172.212040 464.959780 108.947130 -81.804530 366.678250 70.530030 210.187900 507.318820 80.463160 165.024440 509.326870 63.730840 272.890410 656.574460 50.551730 194.766820 371.609160 75.180390 -115.108790 544.812990 77.038730 -94.775080 523.987430 66.263950 -191.705220 654.582640 48.693630 -127.300300 599.975890 1424.090450 23.359700 485.356780 1549.205690 195.538120 481.092530 1560.122560 -148.046300 523.070560 1501.527220 359.322940 527.412840 1506.410030 -324.737120 520.647090 1468.763180 462.837890 492.220490 1475.307010 -427.272710 677.471370 1460.241820 684.025270 617.439390 1468.294430 710.648190 622.862240 1442.433350 -643.332090 550.702940 1446.783810 -661.939150 599.316160 39.608010 276.533330 593.627380 48.658120 168.150700 585.345090 39.916630 -201.712390 605.861760 51.620110 -101.094720 639.038880 1652.042110 91.459820 622.877870 1657.421750 -46.130460 573.335020 1818.172360 38.777770
+298 4.950000 601.820430 1073.367070 157.704120 603.417970 1061.283690 -103.842810 404.560240 1079.351320 36.706680 539.568600 756.620850 224.334750 590.601320 682.197330 134.866470 519.855100 637.138790 226.608890 513.775760 768.125180 -168.140000 602.137150 719.346680 -112.172190 502.666750 658.799500 -160.441500 473.987120 553.810360 216.622570 467.814210 524.873410 97.888720 474.935420 528.814580 -150.521650 495.915070 519.391910 -37.234030 439.386140 469.039920 235.964550 512.365170 424.206540 183.869960 451.525540 383.475860 253.386030 467.251250 450.465580 -170.723460 516.172850 393.534970 -128.060390 444.507170 409.020360 -181.075550 437.423980 98.050860 255.945890 443.721310 103.537410 165.004410 442.973880 93.640570 -172.212040 464.962070 108.957150 -81.799400 366.693600 70.516760 210.182050 507.313350 80.451170 165.002500 509.290160 63.783460 272.865540 656.776370 50.585990 194.960630 371.588380 75.209740 -115.064740 544.812990 77.038730 -94.775080 523.878360 66.237800 -191.732090 654.567320 48.706390 -127.305950 600.014220 1424.050050 23.340200 485.366460 1549.200200 195.517490 481.164370 1560.103640 -148.262950 523.143190 1501.599370 359.258300 527.434880 1506.380980 -324.803530 520.773990 1468.886840 462.840550 492.255710 1475.275760 -427.285250 677.502080 1460.403560 684.006590 617.725040 1468.421020 710.560060 622.789250 1442.308960 -643.395510 550.658750 1446.760620 -661.993230 599.543950 39.593060 276.583280 593.751220 48.697190 168.139130 585.345090 39.916630 -201.712390 605.834170 51.645290 -101.130170 638.752200 1651.963620 91.415920 622.928410 1657.414670 -46.177890 573.267580 1818.188600 38.556320
+299 4.967000 601.909850 1073.378170 157.683810 603.466310 1061.264160 -103.782950 404.666840 1079.416500 36.655990 539.568480 756.620850 224.334700 590.685360 682.193120 134.830750 519.889160 637.175660 226.598180 513.819890 768.040530 -168.061430 602.140560 719.360050 -112.165590 502.800200 658.715820 -160.491100 473.935120 553.793950 216.614260 467.811130 524.792720 97.917350 475.039250 528.828130 -150.515990 496.052980 519.333250 -37.316380 439.407350 469.025880 235.981260 512.380130 424.200780 183.876270 451.541020 383.460170 253.385560 467.261170 450.461520 -170.723400 516.144470 393.501160 -128.077000 444.348600 408.992550 -181.025590 437.425720 98.067540 255.934880 443.972320 103.399560 164.901400 442.973880 93.640570 -172.212040 464.954010 108.921780 -81.817530 366.665500 70.552380 210.204820 507.238130 80.376470 164.947920 509.273440 63.844850 272.832610 656.985900 50.621540 195.161770 371.699040 75.139930 -114.952210 544.812990 77.038730 -94.775080 523.355710 65.962900 -191.908970 654.553770 48.717740 -127.310960 600.049680 1423.978760 23.321290 485.378540 1549.199340 195.493060 481.204500 1560.092040 -148.461900 523.227970 1501.684330 359.205840 527.468930 1506.336180 -324.848820 520.913090 1469.044800 462.847050 492.285340 1475.239750 -427.296360 677.530460 1460.584590 684.030580 618.038390 1468.562740 710.403200 622.711430 1442.164180 -643.466490 550.656010 1446.734860 -661.995120 599.837830 39.573560 276.647460 593.791440 48.656410 168.126850 585.345090 39.916630 -201.712390 605.808290 51.657420 -101.199710 638.275330 1651.816770 91.366840 622.971440 1657.424800 -46.218490 573.173280 1818.202880 38.315370
+300 4.983000 602.003660 1073.367190 157.648210 603.525630 1061.256590 -103.757110 404.807500 1079.494630 36.591440 539.568420 756.620790 224.334660 590.790650 682.167720 134.821010 519.937990 637.228640 226.582020 513.881160 767.922240 -167.933410 602.148010 719.400570 -112.144170 502.965790 658.594910 -160.566020 473.889680 553.775630 216.606160 467.829860 524.682980 97.961800 475.154820 528.837340 -150.501370 496.256870 519.214600 -37.392580 439.459660 469.005000 236.041690 512.417360 424.199010 183.894870 451.571140 383.429660 253.384630 467.290860 450.453670 -170.727940 516.109620 393.430300 -128.101360 444.169370 408.929570 -180.966660 437.429230 98.100850 255.912860 444.306340 103.187320 164.756210 442.973880 93.640570 -172.212040 464.938320 108.852890 -81.852840 366.581480 70.651880 210.265470 507.105320 80.253660 164.872860 509.285640 63.893930 272.799220 657.167910 50.652440 195.336530 371.910490 74.997140 -114.776740 544.812990 77.038730 -94.775080 522.513370 65.495100 -192.202000 654.543700 48.726150 -127.314670 600.081240 1423.884640 23.299900 485.394470 1549.204470 195.464420 481.217100 1560.084470 -148.649830 523.339970 1501.779300 359.160280 527.521000 1506.278080 -324.873930 521.090270 1469.209470 462.844910 492.306920 1475.196410 -427.307400 677.553590 1460.776980 684.082460 618.367980 1468.710570 710.194520 622.624450 1442.002810 -643.548160 550.684810 1446.706790 -661.956670 600.127750 39.554170 276.710600 593.760930 48.543610 168.120380 585.345090 39.916630 -201.712390 605.786010 51.658870 -101.288270 637.710510 1651.635990 91.317900 623.004880 1657.441530 -46.250380 573.066280 1818.215820 38.064450
diff --git a/Bindings/Python/tutorials/resources/Tutorial 5/subject01_walk1.trc b/Bindings/Python/tutorials/resources/Tutorial 5/subject01_walk1.trc
new file mode 100644
index 0000000000..c6deafacc7
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 5/subject01_walk1.trc
@@ -0,0 +1,157 @@
+PathFileType 4 (X/Y/Z) subject01_walk1.trc
+DataRate CameraRate NumFrames NumMarkers Units OrigDataRate OrigDataStartFrame OrigNumFrames
+60.00 60.00 151 41 mm 60.00 1 151
+Frame# Time R.ASIS L.ASIS V.Sacral R.Thigh.Upper R.Thigh.Front R.Thigh.Rear L.Thigh.Upper L.Thigh.Front L.Thigh.Rear R.Shank.Upper R.Shank.Front R.Shank.Rear L.Shank.Upper L.Shank.Front L.Shank.Rear R.Heel R.Midfoot.Sup R.Midfoot.Lat R.Toe.Tip L.Heel L.Midfoot.Sup L.Midfoot.Lat L.Toe.Tip Sternum R.Acromium L.Acromium R.Bicep L.Bicep R.Elbow L.Elbow R.Wrist.Med R.Wrist.Lat L.Wrist.Med L.Wrist.Lat R.Toe.Lat R.Toe.Med L.Toe.Lat L.Toe.Med R.Temple L.Temple Top.Head
+ X1 Y1 Z1 X2 Y2 Z2 X3 Y3 Z3 X4 Y4 Z4 X5 Y5 Z5 X6 Y6 Z6 X7 Y7 Z7 X8 Y8 Z8 X9 Y9 Z9 X10 Y10 Z10 X11 Y11 Z11 X12 Y12 Z12 X13 Y13 Z13 X14 Y14 Z14 X15 Y15 Z15 X16 Y16 Z16 X17 Y17 Z17 X18 Y18 Z18 X19 Y19 Z19 X20 Y20 Z20 X21 Y21 Z21 X22 Y22 Z22 X23 Y23 Z23 X24 Y24 Z24 X25 Y25 Z25 X26 Y26 Z26 X27 Y27 Z27 X28 Y28 Z28 X29 Y29 Z29 X30 Y30 Z30 X31 Y31 Z31 X32 Y32 Z32 X33 Y33 Z33 X34 Y34 Z34 X35 Y35 Z35 X36 Y36 Z36 X37 Y37 Z37 X38 Y38 Z38 X39 Y39 Z39 X40 Y40 Z40 X41 Y41 Z41
+
+1 0.000000 617.247620 1055.275020 170.781980 639.606380 1044.258420 -88.909790 430.869840 1051.264650 29.966750 517.332700 741.096010 212.083370 570.201480 666.705570 123.685540 480.064270 626.514830 199.553850 659.578920 745.057980 -145.972180 750.480900 735.850100 -73.485050 697.429630 642.681820 -137.369600 360.903900 474.040040 186.849290 420.867430 412.366030 134.719330 343.737370 388.036680 189.831620 750.326230 446.176970 -128.527770 819.763850 415.132170 -81.700000 750.045840 397.940980 -138.884000 156.442760 113.073070 104.002570 297.180880 88.122130 67.068500 288.246640 73.766230 176.630140 429.092860 43.086100 110.597690 815.764160 63.397880 -51.758690 967.989930 122.580540 -32.770400 943.789250 105.337200 -122.344420 1078.709350 143.547960 -60.935870 660.826780 1353.775270 20.198390 566.598390 1449.579590 229.996520 596.423830 1468.968140 -186.700210 593.641480 1249.107910 279.776400 580.734680 1233.741330 -222.927320 567.002500 1143.109250 315.566310 518.102780 1146.324830 -260.958280 771.563290 973.779110 273.787600 746.206970 944.378110 327.452820 619.823060 916.169800 -218.327270 574.162540 905.877320 -276.121460 366.122960 35.908210 193.140780 375.865840 39.868800 81.171850 1022.039610 113.138240 -136.458110 1034.970460 125.078770 -34.938210 736.522340 1571.581540 106.420870 748.242000 1574.964110 -31.667230 749.332460 1747.607670 46.741460
+2 0.017000 617.998110 1053.217530 168.513170 641.236210 1042.278560 -90.932130 432.340610 1050.237430 26.846790 516.613770 740.425900 211.219420 570.518920 664.198730 123.393650 479.640380 625.653080 199.315280 661.613100 743.567320 -146.438720 756.852230 736.423030 -77.160840 700.719790 641.492980 -135.753070 357.694060 474.357210 187.046230 415.392180 411.818080 134.787280 336.911320 390.057340 190.880170 755.121090 443.931430 -128.734700 820.419740 409.886230 -79.031710 750.565120 396.968080 -137.307860 141.983630 121.290870 105.037800 281.978730 91.634580 68.466230 271.807310 75.749180 177.510510 409.883610 43.139170 110.563590 799.819890 65.800630 -49.946300 957.451660 113.746440 -27.677100 943.789250 105.337200 -122.344420 1069.276610 128.480790 -56.201500 661.329160 1352.708250 17.243570 566.924800 1448.941530 226.132840 596.420230 1466.414920 -191.477110 593.204530 1248.558350 276.043640 582.396420 1230.638430 -225.945140 566.137330 1142.562130 312.590550 519.930420 1142.172850 -262.841610 767.166440 969.574220 272.552610 742.405520 941.010620 325.924410 623.054810 912.317320 -220.418560 576.285830 902.639040 -278.463500 346.245030 35.811000 193.414950 358.949890 39.805740 80.935070 1011.082150 101.083560 -132.527340 1024.002200 111.614400 -30.679700 736.041870 1570.830570 101.785740 748.411620 1574.041500 -36.665130 750.679810 1746.670410 41.164230
+3 0.033000 620.292240 1051.771240 165.859380 643.596920 1041.060790 -94.307220 434.099430 1049.341430 23.819360 517.778930 739.680910 209.929780 570.455080 663.090940 123.093710 479.470610 625.036680 199.232740 663.777160 742.559390 -147.206860 760.838620 737.404660 -80.506140 702.586000 640.568480 -134.511340 355.966030 476.074310 187.729060 411.189450 410.485350 135.654970 332.246430 392.039550 191.390080 755.766360 441.964970 -126.803730 821.314880 407.066130 -76.997910 750.775880 396.232850 -136.232160 128.058360 130.381680 106.092020 267.076810 95.341160 69.879100 255.805770 78.122710 178.352940 390.767520 43.101560 110.350460 784.396790 68.058780 -48.836530 946.333250 105.409500 -23.485970 932.771240 97.336270 -120.643270 1059.063960 113.935060 -52.284060 663.198120 1351.786870 13.631070 567.569700 1448.222290 221.828410 596.462100 1463.917850 -196.019380 593.008850 1248.748410 272.547940 585.184450 1227.726070 -228.905010 564.973450 1142.939940 308.379270 523.074520 1139.112790 -266.437650 762.157470 964.989500 271.422970 735.976990 937.316220 324.738190 626.505070 909.226810 -223.191270 579.662290 899.121220 -281.073090 328.922580 34.778720 193.968580 341.756870 39.430590 80.787350 999.318420 89.325510 -129.324200 1012.506290 98.882810 -27.288000 736.570860 1570.542240 96.864830 748.854680 1571.859500 -41.940810 751.039670 1746.680180 36.059210
+4 0.050000 621.540410 1050.552120 163.532500 646.751040 1040.356810 -96.861880 436.279940 1048.707150 20.952020 519.197450 739.325810 208.325210 571.931270 661.637510 123.224230 481.819180 624.230160 198.056850 666.235050 742.390320 -148.493100 763.567630 737.954160 -84.020150 703.218810 640.386410 -133.903430 356.086670 476.893160 187.230710 409.443730 410.433780 135.696300 329.610750 394.471250 191.915270 758.634460 441.582490 -127.015460 821.669010 405.638150 -75.786090 750.514220 395.895660 -136.164900 115.332880 141.108140 107.070240 252.839020 99.488570 71.288980 240.509050 81.288460 179.090060 371.835020 42.888710 109.902530 769.445980 70.037540 -48.768340 934.096920 97.975190 -20.897740 920.937990 90.006970 -119.476440 1047.431270 100.489810 -49.765160 664.717710 1351.305050 9.243790 568.009460 1448.125610 216.410840 599.003850 1461.877810 -201.063890 592.682070 1249.016110 268.268010 587.178590 1225.284180 -232.171010 562.626890 1143.382200 304.280610 526.087160 1135.987550 -268.874390 756.536870 960.192750 270.024320 729.973750 933.632810 323.821110 629.702330 906.313720 -225.578340 581.977540 895.941040 -283.059140 310.683750 34.731330 194.065190 324.278960 38.879560 80.764400 986.249820 78.367200 -127.329610 999.945920 87.508250 -25.276780 736.536250 1571.208250 92.581090 749.982240 1572.002440 -45.996900 751.068420 1747.012820 30.698870
+5 0.067000 624.588440 1050.928340 161.246140 649.254150 1041.425170 -98.484610 438.827940 1048.451050 18.272670 522.168460 738.279050 206.223540 577.197880 661.205260 122.122270 485.720400 623.187560 197.993480 669.024960 743.210330 -150.405120 766.526370 737.576110 -86.548530 706.448610 641.321410 -135.479970 359.100430 478.782710 187.310710 409.768550 409.989720 136.622990 328.795900 397.801030 192.135210 764.306760 441.880950 -129.775440 819.406800 403.626710 -75.057770 749.661990 395.971590 -137.468700 104.669980 154.010060 107.811000 239.742050 104.378020 72.631480 226.079570 85.658600 179.645800 353.209260 42.461980 109.340610 754.430300 71.636760 -49.643900 920.410160 91.703790 -20.194990 907.756770 83.828000 -119.121990 1034.057620 88.697920 -48.798420 666.132510 1351.515630 4.628110 568.555970 1448.636470 211.908680 600.127260 1460.291500 -206.097440 591.977600 1249.313840 263.233830 590.491820 1223.499880 -236.037950 560.859860 1144.384640 300.735020 528.632200 1134.045040 -271.920650 750.106320 955.174440 269.175260 721.467770 930.058110 323.391390 633.410340 904.049440 -227.971250 586.006770 894.022830 -285.905460 292.770320 33.787990 194.147090 306.888700 38.662980 80.807630 971.722960 68.749270 -126.639880 985.938290 77.908320 -24.668100 737.625490 1572.048340 87.804470 750.345700 1572.990230 -51.104570 750.734190 1748.232790 25.321170
+6 0.083000 628.158630 1051.420170 158.448990 652.041260 1043.046510 -101.857370 441.572050 1048.661250 15.770330 526.802800 738.126100 205.653310 584.087340 660.597960 120.847050 490.793640 622.241580 197.319820 671.815490 744.888060 -152.950500 766.966800 739.853030 -85.032910 709.177310 643.279050 -136.130540 366.042110 481.020420 188.673520 413.341310 408.717530 136.338440 330.846560 400.647670 193.439000 759.475890 442.173430 -130.737760 816.065430 402.276180 -75.444730 747.885310 396.323910 -140.116320 97.064280 169.387220 108.161000 228.389510 110.307750 73.808850 212.842180 91.667360 179.952120 335.073210 41.768600 108.900650 738.832400 72.809520 -51.153690 905.336360 86.733850 -21.041400 893.109800 79.002090 -119.562520 1019.033330 78.890880 -49.124400 667.783870 1352.009890 -0.131340 570.762570 1450.026610 206.862260 600.595580 1460.497190 -211.407200 590.940120 1250.751220 259.042850 593.760560 1223.083250 -239.714430 558.846010 1145.637450 295.842770 533.799440 1131.967160 -274.530730 742.861330 950.519170 268.833560 712.263000 929.030090 323.789580 635.945860 902.428530 -228.987780 588.334780 891.757260 -287.015930 276.405880 34.303540 194.019680 290.229950 39.311170 80.831730 955.870060 60.793510 -127.015210 970.424560 70.228080 -25.115320 738.612000 1573.103390 82.110920 751.778260 1575.626830 -55.814700 751.360840 1749.582520 19.812450
+7 0.100000 630.807740 1051.996830 155.282730 654.943360 1045.552490 -104.842580 444.306520 1049.387570 13.387430 535.103210 738.089840 203.626390 592.515010 659.992430 121.333150 501.206850 620.826050 196.245770 673.898440 747.017880 -156.034230 772.351750 742.257870 -89.250050 713.161070 646.654970 -139.520660 375.777950 482.223360 189.335010 419.001340 407.600280 138.397250 336.908840 403.774540 193.350800 756.084410 442.234310 -133.993790 810.973330 400.244540 -77.594500 744.599180 396.737300 -143.634430 93.536490 187.300230 107.966110 219.475040 117.488010 74.716320 201.419720 99.718580 179.930130 317.679440 40.652490 108.828650 722.454530 73.577770 -52.950340 889.225160 83.068370 -22.647180 877.139040 75.461080 -120.586680 1002.748660 71.092540 -50.288770 669.505800 1354.105470 -5.019890 572.244510 1451.800050 201.812730 602.060420 1461.080440 -216.387600 590.792050 1252.994750 254.131150 595.745790 1222.859250 -242.970700 557.370360 1148.675900 291.073180 537.132020 1131.831670 -277.639040 734.742610 946.598510 269.146120 702.835140 926.271730 323.484040 640.106930 901.144350 -232.701070 588.760130 890.197570 -287.251620 260.437350 35.309230 193.346420 274.952850 41.205250 80.875720 939.072270 54.592980 -128.034910 953.660710 64.369800 -26.148970 739.540100 1575.362920 78.139550 752.881040 1577.243410 -60.551320 751.645260 1751.115720 15.086650
+8 0.117000 634.357300 1053.598880 151.485310 656.464110 1048.434810 -108.355420 446.830750 1050.622310 11.014020 544.722960 738.212100 201.644840 604.509700 661.620360 121.057740 513.229860 619.928590 196.533050 674.531680 749.128170 -159.464230 773.977050 743.049930 -93.604750 711.735840 648.349370 -143.104520 387.181120 484.598570 188.882770 428.801240 406.893100 139.403850 345.485530 408.369840 193.096530 753.821230 442.047640 -138.771990 802.932070 398.629270 -80.644920 739.241460 397.034580 -147.341260 94.988320 207.490400 107.033990 213.699080 125.969960 75.265980 192.584460 110.038060 179.484660 301.425260 38.937480 109.337910 705.337650 74.033430 -54.661310 872.379520 80.522810 -24.272180 860.032410 72.967900 -121.863200 985.631710 65.123340 -51.842970 670.833130 1356.671140 -9.292580 572.758360 1454.599610 196.928040 602.858830 1462.021850 -221.106230 590.007870 1255.537720 250.092860 601.241880 1223.485230 -246.667330 554.968990 1151.483400 286.397250 542.949340 1130.975590 -280.456940 725.075440 942.785830 269.307310 692.728700 924.337710 323.419680 643.682250 900.946780 -234.154860 590.582030 888.882930 -288.937040 243.861860 38.164410 193.589710 261.573640 44.615090 81.126850 921.759160 50.097720 -129.250520 936.063960 60.114940 -27.366380 739.606990 1577.742190 73.244360 753.179570 1579.518190 -65.440610 752.397090 1753.568850 10.225100
+9 0.133000 636.586060 1055.256590 148.460540 658.681400 1051.142090 -111.495770 448.952150 1052.288210 8.533190 554.573610 738.072200 201.587720 617.510310 662.074520 121.778390 526.785580 618.589900 197.483570 673.341980 750.943180 -162.992900 771.897030 742.336430 -96.904780 709.098750 649.058530 -147.662770 402.690370 485.767640 188.444810 442.540220 406.667140 140.140630 358.568790 411.945950 193.130040 746.613040 442.079250 -142.189940 794.797850 397.891080 -83.963120 731.433720 397.145450 -150.631760 101.895610 229.252200 105.104580 211.664430 135.612900 75.403720 187.059540 122.540120 178.549590 287.033290 36.682520 110.605430 687.623410 74.293130 -55.974680 854.960570 78.810710 -25.521920 842.020690 71.285560 -123.033750 967.953860 60.735840 -53.419360 672.251400 1359.225340 -13.845720 573.248600 1458.172610 192.645900 604.147950 1463.293580 -225.733220 588.669130 1259.120730 245.033980 605.931210 1224.268800 -249.367130 551.073910 1155.105710 281.793120 548.084960 1131.099240 -281.663730 715.241520 940.146180 269.769040 680.812930 923.017400 323.196750 649.446530 900.480900 -236.199940 597.427490 890.090330 -290.828340 230.538940 44.006780 193.995500 250.701450 49.750680 81.763050 904.150270 47.125640 -130.316410 918.011470 57.208110 -28.491270 740.341190 1580.117310 68.047650 754.192020 1582.021120 -69.934880 752.819460 1756.186160 5.613640
+10 0.150000 637.739260 1057.854370 144.716320 660.529910 1054.052980 -115.064610 450.499790 1054.273560 5.887690 563.958620 737.617740 199.395420 632.102970 663.874020 122.623010 543.715940 617.548400 197.328350 670.473270 752.457150 -166.391140 766.674870 741.152710 -100.993680 701.967290 649.322630 -149.936290 422.952670 488.474330 188.635860 458.140780 406.715330 140.770570 373.537320 415.870270 192.305050 736.604190 441.154300 -144.483720 783.635560 396.668980 -85.919440 720.987490 397.089900 -153.146190 113.946330 251.355760 101.898840 213.778490 146.093080 75.119860 185.430040 136.789930 177.140980 275.709320 34.465340 112.730060 669.496950 74.456830 -56.781350 837.116520 77.713630 -26.307000 823.430480 70.253580 -123.872540 949.860230 57.662050 -54.747880 673.318120 1362.276490 -16.974510 573.645750 1461.291500 188.830580 603.489070 1465.218750 -229.001020 587.182430 1262.355960 241.462140 610.590330 1225.608030 -252.145320 547.875370 1159.117310 276.408050 554.207580 1132.036870 -284.904270 704.802610 938.801820 270.118260 669.296140 922.381710 322.034120 654.290710 900.933350 -237.275090 605.250180 890.510070 -294.287570 217.735990 52.185520 193.077560 243.332900 56.695750 82.826910 886.224060 45.357070 -131.082050 899.703920 55.343910 -29.368700 740.636110 1582.931150 64.227160 754.625060 1584.873780 -74.390680 752.891780 1758.745480 1.274000
+11 0.167000 641.120480 1061.533570 141.792310 660.938480 1056.792600 -118.131740 451.373780 1056.487180 3.105210 575.239440 738.279050 197.532170 648.069210 666.320740 122.509100 559.960390 616.416200 196.911290 666.437740 753.811280 -169.509600 765.541260 740.235840 -104.972900 693.646300 649.242800 -151.416080 444.352480 489.940730 188.399870 475.969730 407.255800 140.661320 391.454620 420.018070 192.572100 723.015320 440.928250 -145.859730 771.141720 394.678440 -88.199460 708.096190 396.931640 -154.867520 129.897630 272.158330 97.263730 220.184830 156.942830 74.449940 188.081300 152.052310 175.349110 269.137020 33.532300 115.710350 651.097900 74.612850 -57.189600 819.001160 77.107980 -26.716910 804.604430 69.721760 -124.370520 931.475830 55.605880 -55.682450 673.638610 1365.437500 -19.637360 573.686650 1465.050050 185.349380 606.267330 1467.397090 -232.979110 585.328310 1265.150760 238.242140 614.314270 1227.137450 -253.659300 544.875430 1163.248660 272.573520 560.603090 1132.472780 -285.895570 693.875850 937.061650 270.440980 657.532780 922.633480 322.132570 659.545530 902.141420 -238.741390 612.094240 892.409480 -297.017790 209.337750 63.049880 191.059080 240.770050 65.236820 84.302780 867.894410 44.401900 -131.590390 881.214540 54.187560 -29.963750 740.203190 1586.222170 60.287880 753.970890 1587.665280 -77.380260 752.383970 1761.671390 -3.014680
+12 0.183000 639.209230 1064.013920 139.109220 661.469180 1059.865360 -121.664920 451.591400 1058.870480 0.303980 585.454100 738.841310 196.554630 662.131470 670.319400 121.909050 577.415950 617.400450 195.039700 661.751040 755.149540 -172.287600 755.550840 739.026250 -107.243870 685.076110 650.102290 -153.743350 464.663940 492.744260 188.310360 494.860290 409.119110 140.876130 410.521850 424.554260 191.745450 709.317320 440.265780 -147.738480 757.503050 393.776790 -90.374290 693.444400 396.729580 -156.064960 147.886410 290.002660 91.306530 230.740250 167.603640 73.462200 195.148850 167.387420 173.307820 269.171420 35.459580 119.487760 632.447810 74.824490 -57.417900 800.686460 76.861670 -26.929650 785.780400 69.486130 -124.659000 912.894100 54.237710 -56.238990 673.893010 1368.832760 -21.980780 573.030940 1468.852420 182.375120 607.170350 1469.698850 -236.242490 583.281010 1269.172240 235.097150 619.120610 1228.988160 -255.892960 540.898800 1167.459720 268.508270 566.001220 1133.973020 -287.324620 682.333250 936.314450 270.402470 642.052190 924.894410 321.240020 665.641360 903.700260 -239.438570 617.910030 893.761410 -297.076930 208.255480 75.875630 187.796070 244.215360 74.813330 86.226750 849.187810 43.919720 -131.981170 862.624760 53.472810 -30.342700 737.913020 1588.930910 57.122950 753.092900 1590.349490 -81.218040 752.326170 1764.609620 -7.082660
+13 0.200000 638.712590 1066.867800 136.076390 660.868650 1062.079960 -124.353650 451.267300 1061.385130 -2.330730 598.090760 741.600590 194.062590 675.485600 675.073360 120.702960 593.818300 619.043640 194.767520 656.617610 756.554870 -174.744280 749.788640 738.737180 -110.229530 675.903200 650.688110 -155.911290 486.126010 497.112030 187.777890 513.781680 412.198330 139.897220 428.940490 430.473300 189.639210 695.750490 440.149110 -149.398480 742.991940 393.129300 -91.281650 677.871460 396.518860 -157.053180 166.221210 303.776400 84.471710 245.046970 177.478790 72.236520 206.535710 181.756840 171.175810 277.035890 41.068010 123.857250 613.494140 75.095060 -57.650430 782.152280 76.791100 -27.148040 767.030460 69.325660 -124.872340 894.132630 53.227310 -56.571690 672.460880 1371.624510 -23.253050 570.872920 1472.489990 179.772740 608.824160 1472.069210 -238.436800 579.845950 1272.125730 233.074480 623.434390 1231.560550 -256.852570 536.378360 1170.932860 265.789580 571.762390 1135.864010 -288.813450 671.596860 936.434690 270.235720 629.666870 925.994080 319.996860 671.929440 905.839360 -240.290470 625.459840 895.642640 -298.633420 216.053960 90.082500 189.649840 254.267610 84.657190 88.561990 830.247440 43.682290 -132.380720 844.029790 53.039560 -30.620440 738.359010 1592.963130 54.275620 753.424320 1592.996220 -83.818120 750.771790 1767.953860 -10.397420
+14 0.217000 637.317320 1069.549930 132.966080 659.445010 1063.640260 -127.404200 450.541020 1064.004150 -4.641140 609.158870 744.645020 192.570910 688.903630 681.426760 118.637820 608.817500 622.116030 194.088210 650.959840 758.058470 -176.993530 742.450260 737.268370 -111.902280 666.700440 651.205510 -158.402010 505.467800 503.554470 183.931560 533.374820 417.767240 139.311050 447.453340 437.791750 186.295470 682.353880 440.362700 -151.390240 728.658940 392.581330 -93.885630 661.968080 396.352080 -157.996860 184.146450 313.194180 77.483870 262.539830 185.982360 70.844140 221.936310 194.123490 169.075420 292.504000 49.487080 128.276690 594.209470 75.395870 -57.933320 763.371280 76.713710 -27.496890 748.286010 69.087200 -125.082710 875.223020 52.358550 -56.838930 673.160100 1375.250610 -26.275490 568.385620 1474.841800 177.401180 608.766780 1474.858760 -240.032880 576.010310 1275.463260 230.116070 625.712590 1234.192260 -257.042140 531.918760 1174.747070 263.432280 578.123410 1137.756590 -290.359310 661.448430 937.323180 270.194520 619.061100 927.933470 320.021000 679.117800 908.375000 -240.313390 633.410640 898.609800 -299.995730 233.407390 104.021250 192.072620 270.553710 93.901810 91.000690 811.208440 43.545220 -132.828920 825.455750 52.770080 -30.901230 737.760190 1596.094360 51.985310 752.171200 1596.116580 -86.357000 749.576840 1770.485960 -13.134230
+15 0.233000 638.418640 1073.621700 129.326050 658.349490 1065.388060 -130.494800 449.530030 1066.674320 -6.580130 619.863590 747.632390 191.053120 701.893490 688.224240 116.268220 624.398380 626.515560 192.938260 644.611690 759.647280 -179.242460 735.028260 736.685550 -113.911360 657.556580 652.147890 -160.534360 524.196470 510.919680 180.359910 552.307740 423.068450 138.968830 465.296420 445.394900 183.217010 666.923890 439.967290 -152.582530 713.317810 392.067810 -95.990490 646.007690 396.318970 -158.907500 201.913100 318.565700 71.110220 282.615510 192.592730 69.334160 240.835650 203.570330 167.052760 314.064790 58.584220 131.998250 574.682370 75.706920 -58.185720 744.390560 76.511080 -27.925550 729.453980 68.745770 -125.316600 856.303280 51.609130 -57.093610 671.477230 1377.756470 -27.268260 566.909790 1477.925780 175.201260 609.317020 1478.199340 -242.321440 571.889340 1278.355590 228.871120 631.149480 1237.342900 -257.999180 526.216310 1178.844730 264.300540 583.175540 1139.922360 -291.637050 651.482240 938.886110 270.104830 608.671510 929.716370 318.964480 685.169430 911.663700 -240.591630 639.213070 901.220280 -298.643680 255.735430 116.001580 194.218840 291.875790 101.641600 93.013710 792.136230 43.394490 -133.264080 806.842650 52.532960 -31.240280 737.118530 1599.022830 50.044690 751.534360 1598.609740 -88.407620 749.127320 1773.242430 -15.518290
+16 0.250000 636.331540 1076.927250 126.842520 656.056340 1067.725590 -132.950560 448.297940 1069.277100 -8.185720 631.106930 752.524290 189.839580 711.732420 695.198430 114.901310 639.889530 630.635310 191.721800 637.392210 761.220210 -181.675000 725.557070 735.085940 -114.636210 648.223330 652.888430 -162.196810 543.176640 516.733760 177.986430 572.252990 428.732420 137.480100 484.463530 451.346370 180.447080 651.013850 440.113460 -154.001680 696.867740 391.579190 -96.515050 630.041020 396.473420 -159.733760 220.223800 320.355990 65.931120 304.771150 196.913010 67.730870 262.604830 209.432170 165.141530 339.940160 66.253850 134.454820 555.155940 76.000020 -58.320060 725.350890 76.166910 -28.284460 710.516050 68.393160 -125.575520 837.513370 51.040950 -57.334900 669.611630 1380.441280 -28.865300 563.052060 1479.911620 173.292470 609.240780 1481.153080 -243.622160 565.578130 1280.948360 227.693160 634.149410 1240.108030 -258.985600 518.202030 1180.721190 259.791900 586.624510 1142.720950 -292.182920 641.906980 940.777400 269.945800 598.052800 932.450930 318.910770 693.389590 915.901180 -239.852860 650.131840 904.422730 -300.877750 282.311710 123.589100 195.297290 316.843630 107.105600 94.089000 773.065430 43.136760 -133.585910 788.087590 52.222160 -31.639340 735.431640 1601.891240 48.284080 750.347050 1601.938480 -90.320870 748.137270 1776.825440 -17.058900
+17 0.267000 635.992430 1080.683590 123.968220 653.927430 1068.169430 -136.447600 446.821350 1071.651000 -9.500670 637.805050 757.042790 187.682600 723.163090 702.820370 113.144360 652.467100 636.139590 191.102340 629.160460 762.574220 -184.212280 716.682070 734.323060 -115.302210 636.123780 653.385990 -164.198610 560.448240 521.127320 175.110430 590.979250 433.443910 136.418750 503.512270 455.094640 178.650010 636.501280 439.961980 -155.412370 679.696410 390.702940 -97.315550 613.983150 396.784150 -160.431350 239.674180 318.877200 62.276480 328.699430 198.720640 66.048590 286.706390 211.373760 163.417420 368.898800 71.250960 135.407390 535.893800 76.249780 -58.360220 706.419740 75.765670 -28.513890 691.512630 68.140340 -125.849050 818.852660 50.627200 -57.608200 667.781980 1382.360230 -29.451200 560.046690 1481.971680 171.579420 608.356080 1483.886600 -244.428340 560.378050 1283.116820 225.826750 636.938230 1243.538450 -259.740140 511.880130 1185.076290 259.500790 592.123470 1144.952150 -293.758390 633.101010 942.860290 269.363770 588.666810 934.687930 318.017580 701.045720 920.706850 -239.280150 655.236820 908.353150 -298.609560 307.591860 126.733280 194.992310 344.456480 109.863320 93.911500 754.023990 42.743960 -133.747560 769.132200 51.835620 -32.054490 734.645260 1604.143800 46.984990 749.397220 1604.199340 -91.335510 746.483760 1778.741460 -18.391210
+18 0.283000 635.015380 1083.935180 121.069540 650.751040 1069.207150 -138.608920 445.037510 1073.644900 -10.549980 647.957460 762.164250 189.085140 733.137330 710.510310 111.241580 666.070430 641.332950 188.999190 619.931460 763.513670 -186.402730 709.764470 733.861020 -116.876230 624.203310 653.602540 -164.448320 578.521970 524.334350 172.974780 610.099370 438.071290 134.582150 522.745420 456.726680 176.908230 620.478450 440.509890 -155.299680 664.094850 390.794770 -98.864840 597.759580 397.203920 -161.004790 260.492800 314.200870 60.281030 354.291230 197.977540 64.328750 312.829440 209.392680 161.964610 400.465480 73.256680 134.799130 516.979550 76.472450 -58.434200 687.652650 75.430500 -28.688080 672.493100 68.013180 -126.130520 800.194890 50.233390 -57.968170 665.947630 1384.336180 -31.148630 558.388180 1483.609860 170.500090 609.365660 1487.146610 -246.124080 552.838870 1284.950560 224.787020 638.840640 1246.865110 -261.127320 504.342800 1186.574830 255.414840 595.767640 1147.021360 -294.762180 624.863950 945.092040 269.912110 579.419860 937.120910 316.769870 709.341000 924.802550 -237.927140 664.557680 911.997680 -298.469730 337.719120 125.796680 194.251910 374.316130 109.886850 92.437770 735.020450 42.285340 -133.810150 750.042720 51.459950 -32.422870 732.852970 1606.316650 46.300590 748.241520 1606.086670 -92.186250 744.306950 1780.413940 -19.488380
+19 0.300000 633.406190 1086.531010 118.334630 648.428770 1070.045530 -141.609800 442.938080 1075.151250 -11.381250 656.111150 765.872920 185.726010 743.479490 717.489200 109.022960 677.284480 646.187260 188.346600 609.937320 764.026180 -187.734770 699.211180 732.548030 -118.315160 612.746090 654.609010 -165.724950 593.158200 527.685360 172.860950 629.286320 442.033170 132.393740 541.071230 458.643680 176.559310 604.542480 440.579710 -155.967760 648.128480 390.442380 -99.718430 581.437560 397.725920 -161.525360 282.558690 306.244870 59.948000 381.551030 194.792370 62.685310 340.873020 203.770830 160.850460 434.691800 72.570640 132.629820 498.305880 76.706790 -58.641060 668.940430 75.239400 -28.903040 653.507510 67.940340 -126.408990 781.404910 49.768060 -58.361770 664.775880 1385.720580 -31.925150 555.903630 1485.036870 168.597310 608.897340 1489.492190 -247.203220 549.304810 1286.073360 223.804990 640.977480 1249.423220 -261.860470 496.081670 1188.766360 253.344010 597.881470 1149.784180 -296.259490 616.948120 947.343630 269.765110 571.671390 938.739690 316.095340 718.169740 930.490420 -237.393100 676.267460 915.748600 -299.112980 368.492000 121.352050 191.987060 406.504330 107.501660 89.941580 716.051450 41.885810 -133.918000 730.955080 51.166110 -32.720450 731.249270 1607.165280 45.359220 746.899840 1607.987790 -93.363330 743.750370 1782.526610 -19.348290
+20 0.317000 630.107670 1087.621830 116.429790 644.916750 1069.986330 -143.309980 440.562900 1076.133300 -12.093560 663.665890 771.677730 183.929080 748.894900 723.589050 106.724020 688.919250 651.999690 187.205630 599.564150 764.333070 -188.129810 689.210330 731.097170 -119.909290 601.326970 655.014650 -167.200730 609.114380 529.204650 170.263050 647.595580 445.852050 131.480130 559.237610 457.607790 175.466740 588.290770 440.797520 -157.050780 631.110780 390.222230 -100.166230 565.172360 398.362460 -162.082920 305.670620 294.912840 61.141890 410.496640 189.361180 61.321730 370.867160 194.991990 160.152800 471.723480 69.837200 129.139140 479.731660 76.975160 -58.925200 650.142880 75.190240 -29.196640 634.595760 67.816090 -126.669470 762.434810 49.282550 -58.671130 662.606260 1386.177860 -32.897910 551.223210 1484.966670 168.085140 608.567810 1491.244380 -248.507390 543.239750 1287.681640 222.237640 642.262270 1252.177490 -262.387660 489.789280 1190.957640 251.206270 600.798400 1151.141970 -296.587070 609.802800 949.458370 269.301090 563.636660 940.426270 315.258820 726.086180 935.939390 -236.471790 684.989560 919.486080 -297.616420 403.530980 113.129680 189.917620 441.184080 103.267710 86.991610 697.103090 41.619730 -134.176010 711.951050 50.951760 -32.969680 730.083010 1608.526250 44.154320 745.152650 1609.058720 -93.228660 742.467900 1783.619260 -19.488290
+21 0.333000 629.547790 1089.789670 114.353170 641.757020 1069.472530 -146.041900 437.908910 1076.649410 -12.857790 669.483700 776.635990 184.914510 756.319760 731.743230 104.537710 698.189820 657.262210 185.968280 589.183170 764.706480 -188.033390 679.883240 730.289180 -123.003760 588.549070 655.863950 -168.230150 621.916140 530.251220 169.857250 664.784300 448.921230 130.418320 576.415590 456.428830 174.649810 571.759700 441.228270 -157.379850 616.253420 390.767850 -102.034690 549.002810 399.123810 -162.679980 329.848790 280.214170 63.526220 441.122860 181.928960 60.489360 402.874360 183.648560 159.974610 511.478030 65.893410 125.097430 461.199520 77.292180 -59.145320 631.226010 75.221990 -29.552900 615.748840 67.574040 -126.924120 743.336430 48.871250 -58.877670 661.347230 1387.399540 -33.656900 550.877870 1486.258910 166.294740 608.370790 1493.087160 -248.744280 538.828000 1288.528320 220.897510 642.082460 1253.499880 -262.802060 483.407560 1191.011470 249.793350 603.045170 1152.150630 -298.048980 603.702210 950.695860 268.242800 555.291320 941.333740 313.439670 733.533510 941.629520 -234.942660 693.873110 923.031620 -296.114260 439.680050 102.994750 187.342830 478.194890 97.774000 84.301150 678.122560 41.434200 -134.551540 693.026370 50.763180 -33.189340 728.005000 1608.240720 44.661000 744.073300 1609.949830 -93.734330 740.647220 1784.263920 -19.291370
+22 0.350000 627.204280 1090.220950 112.220410 638.091670 1068.826780 -147.442400 434.908480 1076.838130 -13.949370 673.791140 781.075870 184.358670 760.112490 736.901000 102.837700 705.883120 662.072690 184.426060 579.017210 765.255800 -188.089460 669.901610 728.771610 -124.889660 577.112610 656.550660 -168.923570 635.301030 531.056760 171.006670 680.069460 451.898830 128.227220 592.207400 454.364320 175.730800 555.901060 442.009310 -157.822750 599.704100 390.676030 -103.171050 532.800110 399.994450 -163.209320 355.386750 262.351170 66.553980 473.436220 172.794890 60.402070 436.859160 170.401720 160.419680 553.596680 61.566130 121.636480 442.666260 77.701820 -59.311380 612.246890 75.269120 -29.937020 596.905580 67.249380 -127.226050 724.195070 48.540720 -59.069200 660.062380 1387.412960 -34.156890 548.144230 1485.358520 165.864880 607.683290 1493.859500 -249.039790 532.514280 1288.580930 219.578890 643.733580 1255.727780 -264.791810 476.733640 1192.231690 247.750760 605.845950 1152.783450 -299.709440 597.017820 951.017030 268.042140 550.062990 942.582150 312.669250 741.546390 947.152890 -233.722780 702.200680 926.240540 -294.179750 482.395810 93.144870 187.085560 517.100220 91.492650 82.522800 659.052000 41.203230 -134.949680 674.123050 50.531880 -33.385730 727.557740 1608.787110 44.158770 742.867740 1610.052980 -93.883350 740.287110 1784.254150 -18.969760
+23 0.367000 624.828000 1091.268070 111.283070 634.638120 1068.352290 -148.720030 431.534790 1076.843630 -15.662680 676.538700 784.338200 184.086200 764.502500 742.682130 100.234060 712.840150 665.984380 182.765050 569.174930 765.915830 -188.774700 660.504520 727.218930 -126.990000 564.229060 657.097720 -168.516110 644.706240 530.090270 170.010380 695.974550 454.019170 127.251700 608.690120 450.968900 176.051960 540.402160 443.059110 -158.613340 584.323300 390.729400 -104.561770 516.494690 400.916660 -163.583470 382.690610 241.749080 69.601340 507.491940 162.347700 61.162280 472.621610 156.025700 161.547500 597.593380 57.502250 119.740320 424.038640 78.263730 -59.611840 593.289920 75.313240 -30.344360 578.024290 66.957600 -127.635850 705.049740 48.210450 -59.307000 657.305360 1386.790650 -34.916340 546.479920 1485.373540 164.946040 605.328920 1494.507080 -249.154690 527.649230 1288.250610 218.257260 643.916990 1256.093870 -265.348480 471.797240 1192.604370 246.314670 606.211060 1153.528200 -300.930690 592.080080 951.518680 266.832820 544.089480 942.655150 310.728610 748.767760 952.292790 -231.938890 710.437870 929.803160 -293.046510 525.706480 82.531090 187.134990 557.615660 84.827590 82.101360 639.912350 40.857550 -135.342210 655.150820 50.208740 -33.578530 726.297490 1608.040770 44.441290 741.502320 1609.689820 -94.074650 738.792300 1783.632690 -18.538560
+24 0.383000 621.871890 1091.436650 109.740050 633.664060 1068.203860 -150.962630 427.916660 1076.714110 -17.962120 679.109500 786.458560 182.918950 765.832030 746.314880 98.249070 717.242000 669.134160 181.314620 559.735900 766.551510 -190.108630 649.876220 726.190060 -128.230190 553.557980 657.277710 -169.526640 654.311830 527.946410 169.137160 710.197140 455.667050 126.427730 622.612980 446.627380 174.954120 524.120540 443.180020 -158.465350 570.787170 391.467500 -105.686480 500.235990 401.826020 -163.836260 412.138730 219.046940 72.188580 543.363460 151.099610 62.743320 509.909330 141.362430 163.330050 642.991820 54.214500 119.977200 405.315980 78.993680 -60.095710 574.492190 75.402660 -30.808830 559.133360 66.777080 -128.151730 685.890260 47.808110 -59.562570 655.589170 1386.275760 -35.060890 543.555110 1484.585570 164.482060 605.706730 1494.705440 -249.892650 524.133360 1287.583980 217.855450 643.732670 1256.573730 -266.092440 467.255190 1193.144040 244.578380 607.438480 1153.227170 -302.096530 587.738890 951.988340 266.582730 538.264950 942.745480 309.230770 755.878660 957.928960 -229.980070 718.577150 933.410100 -290.459630 569.638370 72.343250 186.653310 599.777830 78.248400 83.233410 620.795530 40.436940 -135.752500 636.030030 49.803570 -33.798350 725.184140 1606.918330 44.515280 740.949100 1609.073490 -93.584320 738.161440 1782.677730 -18.140320
+25 0.400000 619.103330 1090.458130 108.942500 629.886540 1066.980220 -151.378770 424.356930 1076.360110 -20.185940 681.613160 787.760930 180.132350 766.445310 749.001890 95.397730 719.930600 671.340820 180.635600 550.753300 767.050420 -191.665480 641.360230 724.606080 -129.545500 542.132930 657.604000 -169.439470 661.460880 524.409730 168.155690 722.010620 456.648900 125.245710 637.412900 440.295930 175.966490 508.959200 444.344300 -159.038120 553.795530 391.435550 -107.031390 484.233370 402.699370 -164.048200 444.022860 195.083330 74.132870 581.041930 139.694440 65.023440 548.566650 127.151990 165.658770 689.321170 52.199830 122.481870 386.625980 79.854530 -60.495000 556.047300 75.628970 -31.347320 540.312380 66.707910 -128.660710 666.732420 47.352820 -59.772670 653.854550 1384.557130 -35.064220 540.322510 1482.959470 164.631650 602.505130 1493.312010 -248.652180 521.745970 1287.419800 216.793960 643.331730 1256.442750 -266.413570 462.198670 1191.835820 243.768110 608.149540 1152.423580 -302.243870 583.111690 951.480290 265.699650 533.729190 942.034120 308.060520 761.519230 962.647340 -228.158000 725.732850 935.797060 -288.467830 614.117130 64.864230 190.033660 643.602050 72.342930 85.885860 601.778500 40.039700 -136.170900 616.783510 49.403130 -34.063350 723.186580 1605.618160 45.014580 740.081540 1607.858890 -93.011180 737.563960 1781.465940 -17.183640
+26 0.417000 617.023800 1089.693970 108.024490 626.492980 1065.573000 -152.538790 421.201020 1075.643430 -21.440830 679.819760 788.113650 179.681000 765.240540 750.577330 93.134250 721.479310 672.422420 178.648560 542.227780 767.357970 -192.985240 631.873960 722.832950 -130.511700 531.361940 658.070560 -170.242540 666.215210 519.806760 166.240810 734.054500 457.551300 124.442350 649.589660 434.807250 174.785190 493.602450 444.414220 -159.066090 537.579590 391.297300 -106.706850 468.524570 403.559110 -164.234240 478.441560 170.848130 75.530970 620.322390 128.884400 67.829400 588.485110 114.002230 168.402300 736.048580 51.969460 126.924350 368.054290 80.813190 -60.547090 538.011050 76.035260 -31.927240 521.638550 66.733230 -128.996170 647.665530 46.940800 -59.924470 652.035160 1383.705930 -35.207950 540.128660 1481.811400 164.647320 603.547120 1492.519410 -248.663410 518.731140 1286.041630 216.834720 642.787780 1256.155640 -266.306580 459.016940 1190.856080 243.029010 608.140010 1151.534060 -303.450230 579.855770 951.082280 264.777860 529.330630 940.632140 307.523590 768.155700 967.638920 -226.542040 732.981450 939.039310 -287.076810 659.154420 58.563450 194.070300 688.733950 67.779840 89.796960 582.874690 39.752170 -136.556980 597.572080 49.124650 -34.372830 721.450870 1603.745850 45.336980 738.914980 1606.282470 -92.202810 736.723270 1780.068600 -16.705540
+27 0.433000 614.648800 1087.837040 108.107130 624.272460 1063.825930 -152.152650 418.626710 1074.509640 -21.379090 676.916440 786.917970 178.958110 762.886900 750.383060 90.818050 720.458680 671.758180 176.904360 534.105710 767.429020 -193.857180 623.242000 721.499880 -130.847440 519.149350 658.188350 -169.088330 671.004520 515.202940 165.137100 742.154970 457.080990 124.120570 660.394230 427.148930 174.157490 478.446410 445.312620 -159.360320 523.395260 391.757540 -108.010330 452.997160 404.436100 -164.349460 515.183410 147.394500 76.620810 660.738280 119.478930 70.955990 629.437870 102.507840 171.424190 782.566470 54.049510 132.546860 349.593510 81.891590 -60.333110 520.124690 76.515820 -32.481850 503.069550 66.804030 -129.076640 628.803160 46.657170 -60.076400 650.126710 1381.478390 -34.648550 539.103390 1480.493650 164.702420 601.782900 1491.682500 -248.916700 513.757080 1283.839110 216.217610 640.028440 1255.369260 -265.574980 456.071440 1189.652710 242.501820 608.932680 1150.562380 -303.405580 576.475830 949.615720 264.299410 526.114750 939.118040 306.243960 772.818420 971.809690 -225.374270 739.085690 941.609860 -285.133150 705.127930 54.733860 198.670970 734.495970 65.262860 94.482680 564.005430 39.584100 -136.884050 578.614750 49.036820 -34.744900 721.382630 1601.860470 46.146130 738.222600 1604.584590 -91.481220 736.636660 1777.961910 -15.190280
+28 0.450000 611.902100 1085.748410 108.203310 621.590090 1062.280270 -152.313600 416.598390 1073.019650 -20.322100 673.827580 784.381900 177.168140 761.747190 748.605290 86.741480 717.597720 669.637820 175.780880 526.302860 767.209110 -194.254270 615.442500 719.728150 -131.196460 510.634090 658.043400 -170.079540 672.998900 506.324740 163.578520 749.948120 456.155240 123.175400 671.364320 419.655910 173.035680 463.415410 446.243650 -159.756180 507.770170 391.673650 -107.999280 437.570590 405.341280 -164.354580 553.775090 125.731960 77.683110 701.566350 112.264820 74.164990 671.011410 93.293220 174.545070 828.236820 58.983800 138.381070 331.193240 83.146570 -60.106330 501.987060 76.873360 -32.945630 484.361020 66.786110 -128.960680 610.189210 46.511750 -60.304180 648.014590 1379.518920 -33.875850 538.283390 1478.371460 165.195020 599.954710 1489.740110 -247.788930 514.141050 1282.633180 216.058530 640.804380 1254.348140 -266.609740 453.536290 1188.024170 242.296970 607.654240 1149.551640 -304.793580 573.854060 947.434810 263.746700 524.166990 937.238280 305.641720 777.115540 975.455140 -224.129870 743.672300 943.685610 -284.429500 749.317750 52.817980 204.114960 780.085940 65.499560 99.304090 544.978150 39.444120 -137.144900 560.028440 49.116450 -35.229830 720.037720 1598.940920 46.675850 736.932740 1601.853390 -90.876490 735.668090 1775.417600 -14.514310
+29 0.467000 608.317320 1081.872680 107.791630 618.876890 1060.571900 -152.079240 414.986760 1071.277220 -18.758840 670.263980 780.954650 174.552900 755.523860 744.636960 85.862050 713.390380 666.325320 173.668670 518.749880 766.703370 -194.259980 606.923520 717.883540 -131.455110 501.443660 657.786870 -170.007860 674.392940 497.894590 161.707930 755.552670 454.946870 121.909040 680.724790 410.982570 172.029010 448.620270 446.732330 -159.327590 494.404270 391.782230 -109.097210 422.294370 406.277160 -164.262830 593.590450 106.691800 79.033070 741.887270 107.893770 77.191210 712.643250 86.931750 177.552540 872.382450 67.282440 143.477630 312.778380 84.591480 -59.976010 483.405330 77.022320 -33.286880 465.275020 66.561860 -128.777770 591.736080 46.446110 -60.635040 646.748230 1377.252560 -34.231520 535.901860 1475.778440 166.270710 598.399600 1487.734860 -247.047730 511.270110 1279.885620 216.473790 639.598510 1252.540160 -266.120300 451.520020 1185.818360 242.441500 607.802920 1147.283450 -303.270570 571.242610 944.675660 262.892850 522.762820 934.559020 305.216980 780.395080 978.732970 -221.921360 748.318480 945.846310 -281.733030 794.142640 53.743440 207.660640 824.606990 69.129210 103.585260 525.552670 39.226260 -137.337010 541.677310 49.237410 -35.820790 717.924930 1596.327150 48.430340 736.700990 1599.284060 -89.911720 734.723390 1772.971440 -12.191820
+30 0.483000 608.147830 1079.436040 108.306320 616.266050 1057.908810 -151.920910 413.657560 1069.352050 -17.026800 665.853700 776.676210 171.793610 748.715940 738.780820 84.277210 706.294800 661.816280 172.433240 511.426730 765.998540 -194.057190 597.283200 715.185550 -130.029450 492.230500 657.602840 -170.860860 674.540040 489.769930 161.002880 760.244450 453.651520 120.894070 689.547180 403.331020 172.249470 433.765320 447.091310 -159.450810 479.353330 391.776610 -109.624720 407.320340 407.260380 -164.149430 633.767820 90.844250 81.015760 780.669490 106.742100 79.773640 753.645750 83.846810 180.278470 914.193970 79.283860 147.035950 294.317750 86.157070 -59.896620 464.519200 77.081730 -33.494780 445.917140 66.200100 -128.674680 573.231870 46.374330 -61.037940 644.547970 1373.904540 -32.934980 535.900390 1473.489500 167.617280 596.632390 1485.574580 -246.350920 511.461580 1277.020510 217.478710 638.176090 1250.644290 -265.817720 450.077510 1182.991210 242.958310 607.030150 1145.518190 -304.541530 570.787720 942.226870 262.592930 521.372190 932.053160 304.710690 783.312990 981.207280 -220.828740 752.065430 946.578670 -279.915680 837.144710 58.787620 211.489650 867.003170 76.549580 106.737010 505.616000 38.914170 -137.469450 523.275210 49.232030 -36.417190 718.054500 1593.494140 49.687800 735.914730 1597.097530 -88.246090 734.507750 1769.693730 -11.091640
+31 0.500000 607.289250 1076.133300 110.124260 615.176270 1055.399540 -150.696840 412.509060 1067.247310 -15.346070 660.028260 770.781860 170.500060 741.221620 732.053160 82.921870 698.118590 655.937380 171.661900 504.369810 765.191280 -193.807210 589.528870 713.335630 -130.458950 481.945950 657.315610 -170.299040 676.136230 480.004300 159.791530 762.408510 452.905400 119.671750 698.734010 396.175110 172.084840 419.987920 447.482420 -159.377300 465.757900 391.502560 -109.958840 392.823430 408.309420 -164.109880 673.078000 78.495540 83.919250 816.842710 108.769720 81.702450 793.126830 84.230540 182.637850 952.680110 94.908950 148.516100 275.883150 87.744800 -59.814270 445.633880 77.266120 -33.544720 426.716280 65.931630 -128.797120 554.490110 46.220460 -61.468830 644.178470 1371.570310 -32.782890 535.400880 1469.777950 168.793290 594.539860 1482.933230 -244.403950 510.635930 1273.563350 218.463590 636.337710 1248.551880 -264.640110 449.183810 1179.617550 243.894650 606.383480 1143.472290 -302.529390 570.357360 939.217830 262.110500 521.535160 928.906130 304.730320 785.823910 982.589970 -220.179240 752.127870 947.179320 -278.582860 877.907590 66.539280 213.761730 906.106870 87.658260 108.336470 485.363650 38.550960 -137.606690 504.716280 49.049990 -36.939230 717.282170 1590.124390 51.022210 734.858400 1593.234740 -86.702290 733.631960 1766.566040 -9.156230
+32 0.517000 606.009830 1072.121580 110.907350 613.457820 1052.697750 -150.034270 411.480800 1064.907350 -13.880820 653.505920 764.825560 169.863160 733.847660 724.361020 80.585660 690.698610 649.211430 170.400760 497.667880 764.322140 -193.531160 582.271360 711.005490 -130.846760 473.728760 656.623290 -170.097020 676.238770 472.137050 158.519880 764.933230 451.609890 118.697500 705.996340 390.635530 171.929350 406.617100 448.262660 -159.776400 450.907590 391.422670 -110.426990 378.933870 409.407620 -164.190410 709.999150 69.638230 87.753100 849.349300 113.426190 82.856620 829.895570 87.865610 184.553850 986.764040 113.370980 147.763920 257.586430 89.301420 -59.756800 426.995060 77.725500 -33.416060 408.066130 65.935000 -129.234100 535.503300 45.962680 -61.907770 642.954410 1368.099490 -30.762400 534.650150 1466.330690 170.800080 593.163570 1479.988650 -242.627300 510.054840 1269.968630 220.116670 634.956050 1246.246830 -264.026670 448.733640 1175.816040 245.286000 605.914790 1140.462280 -302.205050 570.081600 935.568910 262.173430 521.790950 924.851680 305.779570 787.155400 983.165590 -219.332640 757.041260 947.043520 -278.399080 917.191960 78.416110 213.441090 940.771060 101.630780 108.202030 465.267240 38.154540 -137.872850 486.153810 48.806160 -37.396140 716.391780 1586.454590 53.102590 734.048100 1590.195430 -85.089160 733.940190 1763.143550 -7.255310
+33 0.533000 606.166630 1067.855220 111.837720 611.100460 1049.639400 -149.706700 410.525480 1062.268920 -12.772020 648.494690 758.682370 169.847460 725.541080 716.100770 78.397670 683.713260 642.165040 169.746370 491.445890 763.382810 -193.202320 575.380680 707.823550 -130.215010 465.860570 656.498470 -170.645740 675.863890 464.089110 159.013180 765.937190 450.696040 117.798740 713.502930 385.791840 172.288410 394.738650 448.276150 -159.307330 436.778960 390.540130 -111.112110 365.726350 410.503850 -164.354250 742.854310 63.885420 92.044510 877.193850 119.655450 83.212750 862.516300 93.879800 185.857600 1015.461610 133.029340 145.084960 239.489000 90.853920 -59.818310 408.690830 78.425750 -33.238250 390.015470 66.177910 -129.959000 516.357670 45.643810 -62.343440 641.895690 1364.888310 -29.318630 534.964660 1462.099000 172.715610 591.478210 1477.143190 -240.258620 510.402800 1266.405880 221.836760 634.363650 1243.332640 -262.471220 448.613100 1171.672730 247.119670 603.765560 1137.998290 -301.620940 570.374820 932.146240 262.877690 522.980770 920.953490 306.039640 788.021970 982.639650 -218.412020 758.478210 945.906010 -277.330410 950.877560 92.766760 212.108310 970.011780 116.918360 106.497480 445.753660 37.729700 -138.354340 467.689000 48.591900 -37.830120 715.626040 1582.919430 54.873300 733.713070 1586.801390 -83.152280 732.918820 1759.864010 -4.755530
+34 0.550000 606.100950 1063.196900 112.818730 610.822690 1047.284060 -148.525250 409.612920 1059.327760 -12.072270 643.309940 752.178410 169.880800 718.853700 709.069950 76.869580 677.499080 635.304200 169.580670 485.824430 762.356320 -192.860980 569.611760 705.043950 -131.315960 458.228000 655.740050 -170.051910 676.239810 457.083010 159.513930 765.586670 450.274540 116.624140 717.685790 381.989620 172.585890 382.014590 448.551060 -159.432400 425.271790 390.414520 -112.072190 353.292850 411.560700 -164.528140 769.944090 60.513760 95.948100 899.522030 126.029650 82.824510 889.482670 100.705870 186.346980 1037.996580 151.504470 141.192860 221.557530 92.537150 -60.069660 390.665710 79.083340 -33.569610 372.278440 66.484950 -130.845150 497.098750 45.314350 -62.737550 641.788330 1360.787350 -26.558710 534.450990 1457.537840 175.773320 590.608150 1474.254030 -237.986820 510.279300 1261.772950 224.091950 631.922730 1240.744140 -260.992980 448.774020 1167.233640 249.342800 602.535460 1135.385620 -301.060850 572.005490 927.471130 263.755340 524.456180 916.771480 307.147430 786.742430 981.178280 -217.865450 758.968140 944.735840 -277.334870 979.456790 109.396510 211.049970 993.135440 131.477140 103.718780 426.921020 37.327140 -139.009640 449.193700 48.344810 -38.273180 714.967040 1579.374390 57.831470 732.173400 1583.467290 -80.481060 729.672730 1755.247310 -2.548230
+35 0.567000 605.367490 1058.726930 113.335400 609.528140 1044.192990 -146.941640 408.795960 1056.154540 -11.436740 642.762510 747.620300 169.711590 715.198240 703.363650 74.352820 674.414000 629.940310 168.594190 480.883360 761.224180 -192.502470 564.181880 701.828490 -132.387410 451.458160 655.072200 -170.098740 676.339840 452.140080 160.037320 765.897770 449.828160 115.425220 722.765810 379.295440 172.991730 371.825900 448.826970 -160.470750 412.595730 389.044490 -111.574910 341.830380 412.577060 -164.672650 789.805970 58.625720 98.620940 915.739140 131.008100 81.787480 909.431210 106.413860 185.949650 1053.882320 166.013580 136.970690 203.679580 94.588040 -60.524720 372.777680 79.151390 -35.561660 354.576170 66.738460 -131.758390 477.760890 44.987770 -63.055160 641.391480 1357.222780 -25.002360 534.057190 1453.102780 178.584180 589.022160 1471.031620 -234.826640 509.807680 1256.986330 227.055130 631.572140 1238.143070 -258.981570 449.244140 1162.560670 251.889970 601.692870 1132.809080 -298.583400 573.304260 923.772890 264.887510 525.461360 912.408510 308.929290 787.301880 978.794430 -217.453980 758.509160 942.586490 -277.509000 1000.398930 124.888960 208.226610 1009.720090 142.999510 100.494800 408.566800 37.030740 -139.703310 430.558170 47.978260 -38.755580 714.419430 1576.009770 60.567900 731.575260 1579.583860 -77.424000 729.403260 1752.201900 0.858280
+36 0.583000 605.673950 1054.557860 114.097470 604.903990 1040.530030 -146.870060 408.262820 1052.863530 -10.061460 641.835390 743.798890 171.223110 712.742370 699.071110 74.869450 673.067080 626.239070 168.159610 476.684750 759.964660 -191.972850 560.118160 699.759090 -133.588000 444.883760 654.053830 -169.007980 678.644900 448.291810 159.766130 768.010680 448.388000 115.059900 726.632080 376.773350 173.826320 363.472410 449.275700 -160.557690 402.264400 388.999020 -112.061500 331.640470 413.574100 -164.805690 801.517210 57.461640 99.570950 925.634770 133.280080 80.211950 921.463930 109.341840 184.767550 1063.119870 173.926560 133.095320 185.827580 97.256660 -61.181080 354.894350 77.928340 -40.661490 336.863620 66.961890 -132.639740 458.434140 44.661500 -63.323590 640.738890 1353.650880 -22.147070 535.089050 1448.511600 182.190730 588.378050 1468.028200 -231.250920 511.656890 1252.650880 229.557800 630.200500 1234.949950 -257.640990 450.101470 1157.776980 254.709610 600.800540 1130.302980 -297.193390 576.020450 919.513370 266.261290 529.237300 907.357300 310.524320 785.838810 976.198490 -216.752780 757.227540 940.171750 -277.000920 1013.235530 131.807170 205.410540 1019.560550 149.175740 97.362140 390.391720 36.883790 -140.320710 411.922270 47.507620 -39.299510 713.825440 1572.688350 64.063110 731.390260 1575.583620 -74.414730 730.504700 1749.595210 4.418240
+37 0.600000 606.631410 1051.177490 115.513840 606.727540 1038.624270 -145.213150 408.314910 1049.575320 -7.167350 643.607180 741.022220 172.463360 714.947020 696.719970 74.207080 677.520390 624.443480 169.604890 473.316960 758.592960 -191.113080 555.801760 697.218690 -133.130190 441.165990 653.261780 -168.952880 681.873720 445.767850 160.756480 771.304750 445.904170 115.187970 731.012210 374.695920 172.960210 355.445620 449.294490 -160.446410 393.741420 388.140690 -112.317410 323.002960 414.608180 -164.976320 804.945430 56.703480 98.860980 929.454960 132.105160 78.219850 925.551510 108.711040 183.009030 1066.370850 173.597780 129.784500 168.235870 100.729050 -62.032970 337.019290 75.006710 -49.696110 319.208830 67.258240 -133.503200 439.272710 44.356580 -63.588490 640.004700 1350.715450 -19.248660 535.996220 1444.338870 185.573760 586.728210 1465.699710 -227.240650 512.520020 1248.210820 232.606380 629.556460 1232.579100 -255.031310 451.441380 1153.043950 257.794370 599.167600 1128.518430 -295.536770 579.334410 915.834590 268.016540 532.635990 903.277280 312.671630 784.609310 972.175230 -216.597060 754.441960 936.061950 -276.490810 1015.503600 131.413480 202.794830 1022.845890 148.338360 94.625600 372.145260 36.852920 -140.831680 393.550840 46.983470 -39.884580 714.252690 1569.556880 68.189410 730.758540 1572.859250 -70.002110 730.485230 1746.700070 8.164070
+38 0.617000 607.291930 1048.531010 117.566000 607.652470 1035.654660 -143.674730 409.220210 1046.420040 -2.559470 650.003780 740.647460 173.156570 718.598390 696.731140 74.461520 684.111760 623.979550 168.884800 470.896210 757.210020 -189.885770 553.807370 694.429080 -132.957980 438.341640 652.096740 -168.259920 688.410160 445.643130 160.409390 776.149600 443.381870 114.821670 734.383000 372.674530 172.790650 349.606510 449.160740 -159.976170 385.699040 387.124730 -112.116070 316.005250 415.793030 -165.202410 800.959410 56.433830 97.064090 927.873780 127.527960 75.963680 922.715880 104.809630 180.911700 1064.794430 165.175400 126.883130 151.301220 105.160610 -63.080830 319.397980 71.202600 -61.015880 301.696590 67.705400 -134.379060 420.383640 44.117550 -63.825320 640.514830 1347.788330 -15.751800 536.555790 1440.455690 189.872040 587.446410 1463.806640 -224.004670 513.682500 1243.934330 236.196980 629.238530 1230.561890 -252.127230 453.315670 1148.520870 261.171360 598.326780 1126.320920 -292.947480 582.971740 912.166500 271.219730 536.385620 898.888180 314.981690 780.987000 967.169860 -216.513790 750.316100 932.564090 -276.246580 1011.769710 121.654380 201.722500 1020.406980 140.361790 92.327450 353.704250 36.873940 -141.254990 375.586240 46.395680 -40.432490 714.590760 1566.766850 71.854930 731.304500 1570.926150 -66.534480 730.009890 1744.275880 12.572950
+39 0.633000 608.894900 1045.997070 119.015950 608.383000 1034.447880 -141.422010 410.988980 1043.596800 3.127430 656.637760 740.655330 173.313510 726.518800 698.994510 74.936200 691.851070 623.606750 168.209230 469.574770 755.987490 -188.305510 552.788760 693.155210 -132.680600 436.987460 651.436100 -168.166310 693.864380 445.196530 161.042180 781.454530 439.691890 112.893230 738.311710 370.625430 171.508000 346.064060 449.970400 -160.781880 378.058990 386.678410 -111.114490 310.580050 417.255250 -165.443280 791.387700 56.835690 94.954570 921.855290 120.356160 73.644780 914.745300 98.687010 178.700940 1059.615110 150.707990 124.181570 135.338200 110.768830 -64.365970 302.448610 69.027020 -69.300950 284.455990 68.270630 -135.274780 401.689880 43.971980 -63.961860 641.161190 1344.889160 -12.289660 537.270200 1437.068480 194.525800 587.518860 1461.793210 -219.578250 514.846980 1240.276860 239.650970 627.738040 1229.614140 -249.142300 455.696410 1144.363890 264.843510 596.497990 1126.153690 -291.758730 587.395020 908.965450 273.025180 540.454530 894.831420 318.154300 777.123600 961.836000 -217.174290 746.156740 928.199400 -276.387020 1002.615660 108.886440 199.088520 1013.600520 127.023730 90.369890 335.126770 36.906600 -141.606140 357.971470 45.695380 -40.828580 715.535770 1565.447880 76.794710 731.528930 1569.002560 -61.093880 730.110780 1742.011470 17.457280
+40 0.650000 611.287540 1044.313720 122.250970 609.246340 1032.713380 -139.168440 413.359070 1041.377560 8.795050 661.522520 739.444270 174.752060 734.097230 700.484800 76.657100 699.088130 623.848940 168.648330 469.567720 755.065250 -186.412890 551.985170 691.189640 -131.548680 436.619020 651.150020 -167.697480 699.482480 445.084290 160.243120 788.168760 437.118070 109.061680 739.419310 368.763850 170.343730 342.950810 450.659580 -161.255370 372.425840 385.165010 -112.696520 306.791410 419.045410 -165.670590 778.419430 57.969990 93.168560 912.450380 111.883020 71.504590 903.546080 91.649610 176.601880 1051.754270 133.288620 121.668780 120.549290 117.860850 -65.944030 286.458160 70.878490 -69.258990 267.620030 68.892330 -136.148670 382.991580 43.889690 -63.964160 641.687990 1343.164310 -8.185870 538.195980 1434.269290 198.854370 588.708130 1461.759160 -215.811970 516.922670 1237.494140 243.610340 625.797790 1228.478030 -245.292020 458.517700 1140.721190 268.740600 595.039180 1125.253780 -288.637420 591.681400 905.979250 276.181520 545.179870 892.015080 320.630190 771.651610 956.653140 -217.035420 740.082950 924.779970 -277.315460 990.243350 94.412190 197.695240 1003.797730 111.326420 88.668180 316.563720 36.929050 -141.839400 340.581670 44.870720 -40.959960 715.595090 1563.361690 81.731560 731.097110 1567.716800 -56.227230 729.839720 1740.625610 23.027770
+41 0.667000 613.990840 1043.136110 124.555660 610.957210 1032.125240 -137.030750 416.038330 1039.992310 13.655370 666.785030 740.611630 175.526290 740.621220 703.113040 78.998700 704.245360 624.920650 168.967330 471.120850 754.446960 -184.343370 553.455930 690.352540 -131.427540 437.835300 650.657350 -166.225330 702.757020 446.115690 159.405170 790.460390 435.519470 108.202080 741.229550 368.285770 168.021410 341.510440 451.812100 -161.465190 369.140260 385.054170 -112.074480 304.996920 421.105220 -165.954970 763.736630 59.698040 92.033820 900.605830 103.463240 69.782200 890.515870 84.809690 174.847020 1041.701900 115.835750 119.520250 107.195760 126.781810 -67.796940 271.411930 76.391350 -61.593370 251.307950 69.682690 -136.908140 364.147920 43.775680 -63.843710 643.345640 1342.854130 -3.506680 539.519470 1431.949340 204.363450 589.041320 1461.029910 -209.817720 519.866150 1234.453370 247.849690 626.841490 1228.515870 -242.105580 461.731380 1137.712650 272.725740 594.225340 1125.354130 -285.527650 596.116460 904.319520 279.793640 549.893740 889.710270 323.276490 766.255740 950.877140 -217.702680 732.402220 920.953800 -278.494690 979.738650 80.118020 196.919690 991.896970 96.175460 87.174670 298.115390 36.931530 -141.818340 323.370760 43.989320 -40.773430 716.335390 1562.284180 86.218850 731.572510 1567.272090 -51.166200 729.935490 1740.389160 28.598610
+42 0.683000 615.380680 1043.413210 127.103420 612.229430 1032.192750 -134.047420 418.852200 1039.510010 17.567710 669.149170 741.006160 178.021510 745.804440 706.184140 82.176670 707.735600 626.233640 169.138260 474.438260 753.979680 -182.286850 556.860110 689.546260 -130.600220 440.036410 649.898990 -164.487720 708.381650 448.780520 159.370470 795.231380 434.313690 106.839650 743.243410 369.759800 169.063160 342.886690 452.456360 -161.275120 368.351320 384.846710 -112.349530 305.730160 423.312350 -166.459920 748.135190 61.728960 91.634210 887.050660 96.128730 68.654300 876.341800 78.848880 173.662540 1029.664310 100.265850 117.949430 95.727230 137.885700 -69.789990 257.225010 83.021970 -52.148410 235.743090 71.037000 -137.498350 345.258730 43.534950 -63.600540 644.355290 1343.004030 1.171720 539.988160 1430.007450 209.868470 588.439510 1461.763790 -203.462540 521.793210 1232.651370 252.460190 626.366880 1228.951540 -237.627300 465.319670 1135.427610 276.707210 591.000430 1127.390260 -281.811250 601.091310 902.263920 282.796720 554.193240 887.075680 326.520970 759.000240 945.315860 -217.948810 724.471500 917.901730 -278.594760 964.239690 69.705270 195.139240 978.255620 83.323990 85.895090 279.918640 36.997640 -141.471120 306.389890 43.239270 -40.322190 717.844360 1562.562740 92.349170 732.399290 1567.692630 -45.852840 731.324340 1740.552860 34.032700
+43 0.700000 619.872920 1045.479860 129.535960 614.999150 1033.006100 -131.569350 421.706210 1039.810670 20.795640 674.944400 744.246090 181.491000 752.146910 709.273990 84.866870 712.902710 628.247860 169.980710 479.651950 753.393250 -180.344770 562.872920 689.713680 -129.593510 446.350560 648.815920 -164.361130 711.379700 452.718410 161.331790 798.679320 435.148560 106.086760 743.887510 371.723480 170.521590 348.178770 453.329380 -161.312450 369.719240 384.194340 -113.244770 309.530120 425.537170 -167.340820 731.822270 63.766900 91.941130 872.275760 90.396070 68.182640 861.238950 74.017720 173.225130 1015.822450 87.311240 117.135640 86.812670 151.532040 -71.694410 244.045410 89.042430 -45.600810 221.340580 73.594960 -137.961610 326.760930 43.130720 -63.233830 646.487920 1344.137210 5.433490 542.944640 1430.302730 214.930800 590.498290 1463.485720 -198.645950 525.428410 1232.166260 256.644260 626.152710 1230.203490 -234.064680 469.279660 1133.915530 280.733090 589.625730 1130.130130 -279.386840 606.265630 901.487490 285.448390 560.525020 886.427610 329.767150 750.048220 940.554750 -218.576860 711.314820 915.460630 -277.834590 949.598510 62.409400 193.520480 963.085450 73.232280 84.956810 262.305970 37.398860 -140.977100 289.782350 42.970600 -39.758160 718.931950 1564.203610 97.517620 733.802860 1568.806030 -40.389240 732.766480 1741.516360 39.918100
+44 0.717000 623.571840 1047.976200 132.259290 617.225280 1034.015260 -129.208770 424.527160 1040.659300 23.688520 680.037170 747.077150 183.492600 757.062380 712.351380 86.741850 719.617310 630.881530 171.851850 486.816440 752.395200 -178.521510 570.397340 689.598630 -128.347690 455.585110 647.648130 -164.259020 710.952210 453.846710 164.298970 792.395690 431.929350 110.445660 741.020080 372.494930 172.643970 355.872190 453.970520 -163.505920 374.436400 382.897550 -115.010690 316.833560 427.677800 -168.619130 714.855100 65.601620 92.796370 856.574890 86.299280 68.290790 845.256530 70.274570 173.560760 1000.439150 76.894470 117.133800 81.325890 168.022960 -73.214060 232.302150 94.690500 -42.795060 208.673290 78.091070 -138.357190 309.262540 42.508310 -62.840020 647.803280 1346.095210 10.834120 544.372500 1430.522090 221.003140 591.543700 1466.024900 -192.803920 528.423280 1232.442630 262.218570 622.690730 1232.453860 -228.809370 473.604640 1133.166630 284.894560 587.477600 1133.106080 -274.606200 611.294860 901.360410 289.102230 565.099670 885.900630 332.913760 741.201780 937.038330 -219.883770 703.227290 914.200010 -279.643280 933.064580 55.952340 192.856080 946.753480 65.621740 84.541620 245.804780 38.598570 -140.712160 273.843170 43.639770 -39.316220 721.148620 1565.317500 102.895700 735.102480 1570.378300 -34.791630 733.319270 1743.398190 45.876840
+45 0.733000 626.456360 1050.208980 135.327320 618.299320 1035.105830 -125.229860 427.206670 1041.829590 26.510700 681.967040 747.885380 187.331240 758.809390 712.221800 90.870330 721.146610 632.193600 175.096100 495.851720 750.852480 -176.927190 582.475650 690.385620 -127.705720 468.332670 645.703670 -164.971710 709.159300 455.004700 168.238300 791.096310 430.749420 110.334430 737.494380 372.194430 175.635280 369.973330 454.207460 -165.237960 383.755580 381.632050 -116.515660 327.867980 429.707520 -170.129760 697.324650 67.075930 93.884390 840.108830 83.566580 68.784430 828.438660 67.495330 174.456180 983.805540 68.718070 117.732730 80.246520 187.433290 -74.036100 222.611530 101.102590 -42.519520 198.454560 85.160360 -138.745450 293.297910 41.528660 -62.658150 650.287600 1348.881840 15.780610 546.156310 1431.894650 225.464000 590.755130 1469.220830 -187.422470 531.836430 1233.081670 266.606840 623.779300 1235.791380 -225.508220 478.265590 1133.096680 289.196690 584.773380 1136.826290 -270.721250 616.913150 901.893800 292.932250 571.644780 886.510500 336.340760 730.900510 933.773560 -219.512740 692.082890 913.789610 -280.598750 916.565370 48.376060 193.439880 929.599910 60.025440 84.679570 231.050700 41.178390 -141.018260 259.111570 45.686470 -39.279960 721.304690 1567.434330 107.877630 735.255860 1573.247070 -29.458190 734.454530 1744.555790 51.044160
+46 0.750000 630.099670 1052.759400 138.743940 620.909730 1037.107670 -122.335190 429.558260 1043.203980 29.393790 682.886350 748.807740 190.371290 757.295590 710.998050 95.580890 717.045170 630.653630 181.373990 506.461910 748.916080 -175.799450 595.356200 691.379460 -128.317230 483.844510 641.837040 -164.230190 706.723570 455.673310 172.304950 784.376590 428.920410 114.080220 730.810550 371.478640 179.133440 385.106930 453.185880 -166.667110 395.826320 381.026280 -118.899750 342.523100 431.739260 -171.592420 679.343870 68.068820 94.846060 822.972600 81.820310 69.413810 810.903020 65.608650 175.505870 966.211180 62.566070 118.513810 84.407210 209.367020 -73.939330 215.707870 109.127660 -43.367070 191.431260 95.082500 -139.214480 279.358280 40.111140 -62.999420 652.106930 1351.338260 20.117190 546.014340 1432.933110 230.893280 593.172060 1472.750980 -182.921840 535.802120 1233.909670 271.226650 621.816710 1238.165890 -221.303160 483.199860 1133.558590 293.569090 581.078430 1140.484740 -267.144590 623.164730 903.189700 296.119780 577.527530 887.294860 339.536830 718.680110 930.147830 -218.604320 679.875980 914.099850 -280.401640 897.361330 43.312540 194.076200 911.774410 56.026230 85.157100 218.591870 45.659900 -141.941150 246.450300 49.476800 -39.856780 721.683410 1568.719850 113.270290 735.284240 1575.452270 -25.074860 734.053340 1747.190190 56.346500
+47 0.767000 633.018740 1055.003420 141.444760 623.010800 1038.942870 -119.305980 431.354890 1044.801150 32.342420 680.757140 749.484130 194.978030 755.685610 710.835020 99.004140 713.042970 631.144530 184.542500 518.144840 746.935420 -175.156080 610.453860 692.806030 -129.041550 501.407040 638.948060 -166.147610 699.002810 455.910860 176.189500 776.955320 427.169040 116.415500 721.331420 371.407320 182.273250 405.402680 454.492430 -172.437180 412.527680 382.396300 -120.256260 360.320590 434.020110 -172.740040 661.016970 68.567540 95.466620 805.252930 80.716330 69.954440 792.844970 64.532380 176.337570 947.970760 58.219950 119.132680 94.109830 232.789260 -72.836910 212.364090 118.801950 -44.442200 188.122990 107.560600 -139.736910 268.114840 38.500330 -64.131810 653.541690 1354.378540 24.317140 549.355590 1435.363400 235.444230 593.070500 1476.300050 -178.333620 539.898620 1235.233890 275.151520 619.460270 1241.216800 -218.170820 488.335140 1134.408200 297.921110 577.824280 1144.750610 -264.085020 630.185610 904.941770 298.858370 584.986940 888.696040 343.512630 707.912050 928.936580 -218.148640 667.300290 914.994020 -280.850400 878.887760 43.205460 194.771930 893.384950 53.271220 85.659540 208.947110 52.327980 -143.177110 237.027850 55.250060 -41.056400 721.297490 1571.487550 117.736060 735.614690 1578.168330 -20.600100 735.136350 1750.014040 60.784260
+48 0.783000 634.095890 1057.380250 144.642700 623.434080 1040.898440 -116.210110 432.443080 1046.721680 35.272080 676.635500 749.565920 197.661760 750.502380 710.238340 103.991040 708.689450 632.279720 188.140900 530.304810 745.295040 -174.627010 624.419430 694.163150 -129.647350 518.534480 636.724730 -166.708740 689.104740 456.000820 177.956670 763.689330 425.472290 120.292020 709.162540 370.892730 184.182100 426.087370 453.967070 -171.377870 428.563350 381.262940 -120.036130 380.508820 436.848690 -173.385650 642.440000 68.714730 95.789420 787.061460 80.003620 70.270580 774.457090 64.057560 176.818270 929.393740 55.351820 119.498330 108.747690 256.084290 -70.704710 213.310900 129.285200 -45.398480 188.804030 121.803440 -140.090740 260.594420 37.479590 -66.176070 654.811040 1357.557620 27.445220 550.918270 1437.583250 238.851640 592.374270 1479.939940 -174.064830 543.141780 1236.778560 279.300870 616.605100 1244.748170 -214.792970 493.609920 1135.576170 302.171300 573.657040 1149.439090 -261.334440 637.299440 907.043330 301.715270 592.371400 890.498660 346.853000 692.903750 927.088010 -217.559300 654.750120 916.652950 -280.842830 861.666500 41.393560 194.745670 874.622130 51.433760 85.971980 203.264390 61.284240 -144.425290 232.173400 62.951220 -42.730950 722.943180 1574.821530 121.443470 734.959780 1581.743900 -16.333590 735.249150 1752.847660 65.674320
+49 0.800000 634.357480 1060.158200 147.478060 624.540950 1042.611690 -112.929630 432.836820 1049.050290 38.089080 672.965270 750.795530 200.755940 745.401310 709.322940 107.009060 702.172550 632.275330 190.679760 542.391300 744.341860 -173.738170 640.946350 697.944890 -130.181630 537.598140 634.505130 -166.906160 677.010070 455.712980 179.435070 755.250310 425.540800 121.448560 695.295230 370.960240 184.332900 449.038570 454.532290 -172.963150 450.743990 382.844020 -120.975330 402.118470 440.506770 -173.386760 623.684880 68.740040 95.992990 768.531070 79.525220 70.338800 755.872800 63.886360 177.017790 910.697450 53.576680 119.691830 126.733690 277.363340 -67.565020 219.249100 138.934310 -46.176880 193.693080 136.760770 -140.002640 258.250310 38.297120 -69.067750 654.654360 1360.410030 29.498410 553.341740 1440.010740 243.582820 591.862550 1483.938960 -170.955440 547.397030 1239.449100 283.559780 613.820620 1247.877810 -211.922030 498.942080 1137.068730 306.262540 568.678890 1152.561160 -256.933140 644.678410 909.905880 304.708800 600.955930 893.387940 349.775090 680.536250 926.103820 -216.721530 641.826780 918.956240 -281.538600 842.770020 41.660910 194.227750 855.708130 50.219390 86.043430 203.604140 72.510830 -145.702970 233.157200 72.113020 -44.702030 722.426700 1577.850220 125.064080 734.921510 1584.471190 -13.022590 734.500370 1755.793950 69.645900
+50 0.817000 635.152040 1063.363890 150.338620 624.719300 1044.796510 -109.490490 432.703370 1051.781130 40.740910 668.143550 751.062620 203.662000 739.382390 708.509520 109.472920 692.635560 631.827210 192.517990 553.998290 744.363460 -172.224950 653.401120 702.101380 -129.709520 552.029850 634.387630 -165.383800 664.619140 456.663940 179.638820 740.131160 423.324950 124.531170 680.472170 370.677730 186.166090 471.834690 456.196110 -171.136290 469.431300 386.305910 -118.850340 424.107240 445.161040 -172.627610 604.786680 68.829480 96.178700 749.783570 79.191320 70.230260 737.165590 63.780000 177.056170 891.969670 52.524090 119.818280 146.103000 294.953580 -63.566060 230.784910 145.477620 -46.863640 202.984420 151.244980 -139.326550 262.675630 42.000450 -72.552510 652.740660 1362.680180 33.193370 553.223690 1442.521610 246.277400 590.119200 1486.788330 -168.008120 550.903260 1241.469120 286.580720 609.567140 1250.829470 -208.748470 504.219150 1138.918210 310.147090 563.665220 1156.947140 -254.462130 652.505680 913.388980 306.784420 608.408630 895.909120 352.609410 670.310970 927.757450 -216.446230 629.797420 920.681030 -279.519410 824.381840 40.868060 194.992740 836.795470 49.394380 85.924860 211.986300 85.598810 -147.147660 240.887710 81.951170 -46.773040 721.799560 1580.351440 127.881620 734.711240 1588.100590 -9.866100 734.030460 1759.038940 72.914050
+51 0.833000 635.078920 1066.144530 153.131700 624.202390 1048.066160 -106.657000 432.255340 1054.817500 43.197500 661.317750 751.885190 205.835040 733.151120 706.908690 111.044260 683.028560 632.162660 194.443410 564.878850 745.526370 -170.102450 666.126460 706.875550 -128.419170 567.719600 635.816470 -164.113420 650.868840 456.779510 180.920410 726.553650 423.011570 125.423010 666.230470 370.724910 187.200240 493.479030 461.222200 -170.792940 489.247680 390.645750 -118.224930 445.747220 450.664920 -171.131520 585.773990 69.045810 96.338520 730.899900 78.949870 70.064460 718.354000 63.647480 177.039320 873.201420 51.869680 119.944080 165.570330 307.874020 -59.038860 248.092560 146.868740 -47.591560 216.775820 164.066040 -138.142730 274.792300 48.476380 -76.120450 652.268620 1366.081300 34.841430 554.741030 1445.641970 249.145230 587.778500 1490.525270 -165.598830 555.248350 1244.499020 289.300080 604.987850 1254.069700 -206.512300 509.348600 1141.121460 313.767270 556.301820 1160.974120 -252.051850 660.274780 917.035580 308.560060 616.906560 899.509580 355.126010 658.499270 928.408810 -215.197100 616.200200 923.663820 -278.202790 805.293330 40.631830 194.454640 817.948430 48.827590 85.701100 229.086530 99.427380 -148.669110 255.494190 91.512570 -48.655170 721.421140 1583.660030 130.401000 733.665710 1591.421390 -7.049410 733.247310 1762.218990 76.330830
+52 0.850000 634.268370 1069.049070 155.992870 624.107730 1051.750490 -104.095900 431.627260 1058.031860 45.428350 652.942570 751.899290 207.882870 723.706300 705.941830 112.907750 673.315670 631.876040 196.113240 574.918400 747.805850 -167.594830 677.260130 713.497920 -126.293630 582.775570 638.310360 -161.734340 636.036680 456.665440 181.713820 711.341490 421.729280 125.922390 650.958980 370.163600 187.784320 514.466250 467.046910 -167.693620 511.492100 395.738190 -118.767010 466.811220 456.458590 -169.128690 566.692630 69.346440 96.425070 711.924500 78.769040 69.952150 699.432430 63.516810 177.042510 854.351990 51.384220 120.075430 185.011030 315.947110 -54.462330 270.430730 143.572780 -48.191330 234.980240 174.227970 -136.685850 294.211430 56.229380 -79.063480 652.181400 1369.086180 35.864340 555.804140 1448.696290 251.206600 585.895080 1493.594480 -164.129610 558.758060 1246.911740 292.212100 600.802670 1257.238160 -204.883970 514.285580 1143.614010 317.085600 550.622310 1164.311520 -249.224270 667.870790 921.704900 310.583980 624.810420 903.483280 357.591520 646.438350 929.496950 -214.065870 607.160220 926.391480 -279.082580 786.069270 40.693100 194.289950 799.209470 48.500680 85.493070 253.428970 112.115830 -149.911090 276.106410 99.787300 -49.981640 721.522580 1586.745730 133.396010 733.722350 1594.878540 -4.821350 732.831600 1765.444090 79.056630
+53 0.867000 633.169250 1071.793330 158.910830 623.936100 1055.965820 -101.690160 430.820040 1061.305540 47.405110 647.444640 753.102110 209.308750 714.926390 704.675230 114.280450 662.979250 631.845520 197.770450 584.195190 750.993960 -165.045140 688.592960 721.192870 -124.480950 597.832460 642.229190 -160.450120 622.131040 457.256590 182.978040 697.443300 421.271330 128.061400 634.325260 370.460600 188.998760 534.470280 472.961580 -166.315810 530.246520 400.491520 -117.392970 487.240420 461.805330 -166.876920 547.591190 69.664260 96.398880 692.895750 78.631650 69.949250 680.428040 63.432120 177.077700 835.400390 50.963620 120.158950 204.916290 319.452940 -50.332470 295.996490 140.463760 -47.991130 257.273650 181.076370 -135.170200 319.543240 63.269200 -80.782050 651.398620 1372.237550 37.020150 556.396420 1452.056150 253.463180 582.239990 1496.393800 -162.035000 562.303590 1250.289920 293.994660 594.459170 1259.647830 -204.159390 519.012630 1146.295170 320.125180 543.121340 1167.705930 -247.761870 675.960820 926.657960 312.066470 634.152590 907.720150 359.147000 636.215820 932.100220 -212.510450 596.825070 929.253300 -276.619780 766.453370 39.455230 194.467820 780.576540 48.392070 85.444340 281.444850 121.300630 -150.433070 301.254390 105.899960 -50.446030 721.247560 1589.632930 135.454530 733.607120 1598.257930 -2.993710 731.008540 1768.726560 81.367140
+54 0.883000 632.141970 1073.875610 161.671160 622.661620 1060.198490 -98.968580 429.764220 1064.521480 49.128170 638.181270 753.587100 210.637190 706.012210 703.750550 115.432440 651.623720 632.127810 199.738820 593.023560 754.779050 -162.802690 698.647640 728.528500 -122.714200 611.388790 646.964660 -159.189450 605.200680 457.380340 184.413020 679.431820 420.648830 129.117780 618.066530 370.852360 189.231580 553.306640 478.503600 -164.123580 550.249940 405.317720 -114.385670 506.821960 466.163180 -164.480680 528.495610 69.979980 96.280260 673.869200 78.531920 70.041290 661.398070 63.361260 177.082470 816.352290 50.580460 120.148350 225.665850 318.723480 -47.043380 322.800840 143.382160 -46.314750 283.194310 184.363980 -133.722670 349.293950 68.165490 -81.012370 650.285890 1375.095210 38.691530 557.103210 1455.281370 254.948470 579.591130 1499.548460 -161.071780 565.249820 1253.333620 296.040220 588.450740 1262.197020 -203.127980 523.509640 1149.062620 322.958830 535.239690 1171.206910 -246.046520 683.794490 931.718080 312.606870 642.417720 912.525700 360.581480 626.599790 934.425420 -211.667420 586.401430 931.971560 -275.299220 748.288090 40.094530 195.273010 761.892330 48.355100 85.591840 309.542910 125.153090 -149.921220 329.601410 109.307600 -49.940540 720.455750 1592.835820 136.441500 732.215520 1601.452640 -1.318960 731.034240 1771.768920 83.168310
+55 0.900000 630.695500 1076.149050 164.308290 622.134160 1064.426030 -96.153210 428.436580 1067.555540 50.630970 631.758480 754.083010 212.356860 696.143920 702.048950 116.282420 640.113400 632.442440 200.546840 601.753780 758.864620 -161.092710 709.606320 736.154300 -119.992250 625.774290 651.070130 -157.964360 589.580510 457.477140 184.871080 663.707340 420.018520 130.937130 600.604980 370.921450 189.602680 573.491700 481.422490 -162.102490 571.484620 409.829530 -112.801060 525.403990 469.315030 -162.004880 509.416170 70.307290 96.146710 654.907960 78.467070 70.163130 642.377260 63.217490 176.959230 797.236690 50.211400 120.072290 247.353580 313.994900 -44.850250 350.035430 152.256230 -43.261440 312.227720 184.155320 -132.377880 382.427060 70.415180 -79.809090 649.333620 1377.750980 39.406670 558.277400 1458.756840 256.086430 577.478330 1501.965820 -160.125850 567.525820 1255.967410 298.168490 582.451900 1264.785280 -202.697110 527.728700 1151.817630 325.655090 527.143980 1174.438600 -243.501630 690.802980 937.018550 312.964480 650.247800 917.192570 361.763240 616.129210 937.208500 -209.571690 576.105220 934.690120 -273.105290 729.052310 39.701820 195.214080 742.921810 48.190060 85.806370 337.008000 123.626050 -148.327820 360.346560 109.856970 -48.544360 719.881160 1595.559810 137.253850 730.962770 1604.343510 -1.005220 729.744870 1776.253300 83.511050
+56 0.917000 629.234500 1077.953000 166.857280 620.572200 1067.900150 -93.744710 426.877620 1070.291020 51.914670 623.714170 754.315310 211.964080 686.548160 701.099060 117.864610 627.763980 632.361760 201.737820 610.518070 763.063480 -159.938980 719.068120 743.441280 -118.170240 637.411440 655.877010 -156.551150 573.303590 458.440550 186.270970 648.068050 419.736270 131.935990 583.154850 371.330540 190.449070 591.563290 484.080200 -159.291320 590.659610 412.831120 -110.451370 543.229370 471.262050 -159.642680 490.388460 70.642000 96.054780 636.052490 78.426750 70.237590 623.358030 62.995350 176.668030 778.127260 49.823130 119.998020 269.980070 305.448970 -43.828320 378.227360 160.964570 -39.697800 343.763120 180.655240 -131.070680 418.335780 70.230360 -77.468430 648.406980 1380.167970 40.262310 556.727840 1461.580810 257.779140 574.799620 1504.215090 -159.651400 569.913270 1259.331670 299.338650 575.973940 1266.730710 -201.608960 531.588930 1154.446660 328.212220 519.719180 1177.730960 -243.772750 698.316100 942.746150 312.256960 659.259220 921.589600 361.524570 608.197510 939.974490 -208.457080 565.873470 936.905580 -271.122620 711.628660 38.829460 195.022740 723.601440 47.811380 85.946610 365.993620 118.276520 -145.931270 393.183290 107.738270 -46.441720 718.304570 1598.051510 137.904690 730.122070 1606.985350 -0.327930 728.493290 1777.099980 84.989750
+57 0.933000 628.252080 1079.552490 169.093550 619.791080 1071.070680 -91.421280 425.117490 1072.630740 52.941180 612.466250 755.512760 214.407960 677.096500 699.524350 118.621190 615.232420 633.165040 202.642940 619.202270 767.265870 -159.148060 727.261290 750.986080 -116.037510 650.088810 660.931150 -154.788120 557.247800 458.506590 186.454150 632.647950 420.119110 132.875750 565.204770 371.993590 190.931110 608.946660 487.769260 -157.276200 610.458680 415.374480 -106.505840 560.690860 472.091160 -157.599870 471.469910 70.980000 96.005920 617.301820 78.390500 70.208890 604.305730 62.821550 176.291400 759.127990 49.394240 119.968750 293.645110 293.302090 -43.752860 408.186520 164.145690 -36.485830 377.212550 174.230470 -129.751980 456.614500 68.159970 -74.475340 648.166630 1382.886960 40.920580 558.511960 1464.498290 258.839630 570.484310 1505.764040 -158.029530 571.938780 1261.904300 300.988620 569.701660 1268.882200 -200.723050 535.005000 1156.814700 330.548770 510.694890 1180.506710 -241.312290 705.283450 948.018680 312.189420 667.712830 926.909300 362.035490 599.963930 942.294920 -207.803850 554.049320 939.472410 -268.107180 691.697080 38.976460 195.851940 704.097350 47.287520 85.981510 398.754460 110.879350 -143.269440 428.117280 103.417890 -43.939680 716.385070 1599.899050 138.904270 729.155880 1609.122680 -0.019340 727.512940 1779.204350 85.299550
+58 0.950000 623.448180 1079.392460 171.803440 618.754460 1073.335080 -88.967120 423.162110 1074.510500 53.721580 603.323120 754.852290 215.073880 667.846130 699.034360 120.084000 603.702510 633.278500 203.697910 627.492680 771.345700 -158.390350 734.036740 757.394100 -112.494990 660.205080 665.691040 -153.502200 541.753230 458.921510 186.338970 616.355350 419.934970 133.164990 549.299380 372.021330 190.362780 625.299010 489.743710 -154.594600 629.502930 418.215060 -103.932260 577.803830 471.896390 -155.862660 452.693760 71.331510 95.963910 598.625550 78.338810 70.057790 585.230530 62.790000 175.955750 740.291020 48.908230 120.000630 318.638400 277.860600 -44.073380 440.344300 160.871980 -34.045290 412.251800 165.490710 -128.515980 496.988280 64.831670 -71.449100 646.225590 1384.362060 41.920090 558.006590 1467.069700 259.332790 567.330320 1507.111690 -157.220540 573.478940 1264.399290 301.989720 564.180420 1270.518680 -200.392700 537.949280 1158.810550 332.597380 502.735870 1182.016600 -239.393880 712.071720 953.261410 310.884520 675.670230 931.420840 361.417420 592.608030 945.043210 -206.401000 547.604250 941.266720 -267.094360 673.064510 39.671050 195.960650 684.615840 46.736620 85.942050 435.864200 102.598590 -140.901000 465.322690 97.559570 -41.479950 716.338560 1601.737670 139.117130 728.046570 1610.447510 0.794570 727.566410 1780.504390 85.058040
+59 0.967000 620.322940 1079.445560 173.659900 617.135680 1074.671510 -87.616910 421.029170 1075.913450 54.327380 593.914310 754.911010 216.063610 658.086910 697.842290 121.513420 591.560180 632.950810 203.910110 634.884400 775.138920 -157.397830 739.579530 763.740720 -109.423120 669.191830 670.444030 -151.201290 526.890930 459.270230 186.951370 600.670960 419.254300 133.736740 533.669800 372.584260 190.782200 638.682130 491.638120 -153.793000 649.536620 420.674620 -101.210980 594.183290 470.749510 -154.213130 434.079770 71.689820 95.843730 579.994510 78.271410 69.801200 566.203000 62.852340 175.716110 721.556950 48.346390 120.079350 345.350520 259.530730 -44.229470 474.818910 152.955510 -32.474790 448.771510 155.149630 -127.549410 539.390080 60.925080 -69.034550 644.624020 1385.383670 42.664220 557.344910 1468.610960 260.401670 566.330510 1507.686280 -157.179980 575.477970 1265.713260 303.617890 557.675420 1271.165410 -199.713210 540.501710 1160.391970 334.366790 496.046420 1184.036990 -237.702190 718.489560 958.714360 309.640840 683.514280 935.328550 360.149750 586.413570 946.992680 -205.628780 540.720210 942.497190 -265.747590 654.461670 39.327510 195.673050 665.271730 46.236210 85.874490 476.517060 94.049290 -139.211170 504.986720 90.893920 -39.550400 716.419070 1603.295290 139.158080 726.482480 1611.581910 0.704950 726.084780 1781.963260 85.188670
+60 0.983000 619.027100 1079.988040 175.359540 617.677430 1076.498780 -86.165770 418.758390 1076.864260 54.817110 585.253850 754.772520 216.494020 648.020870 695.875180 122.705740 579.450070 632.720150 204.776860 640.830140 778.464840 -156.086810 745.286250 769.152400 -105.454670 676.657780 674.171450 -149.924650 511.138920 460.204250 186.556140 586.100280 419.412780 134.087460 518.690060 373.223540 190.581710 654.023620 491.509610 -150.841450 667.084900 422.674190 -99.496950 609.344540 468.702790 -152.410260 415.633060 72.069150 95.527570 561.399900 78.217360 69.483120 547.220950 62.962600 175.559040 702.796260 47.728810 120.153650 374.066190 238.838520 -43.970890 511.518070 142.612080 -31.723850 486.655640 143.869710 -127.026710 583.809450 57.155930 -67.752140 644.241580 1385.758180 42.814290 555.533140 1469.307500 261.490260 564.630740 1507.810180 -156.904850 574.705930 1266.467040 304.727870 552.456850 1271.758060 -199.209490 542.812440 1161.558110 335.887270 488.610140 1184.976440 -236.483870 725.711300 963.834590 308.203060 691.312680 939.965030 359.309510 580.224670 948.751460 -205.064470 533.584660 943.669560 -263.694920 630.936100 38.619920 195.675810 646.147280 45.821160 85.833150 519.389340 85.565000 -138.390780 547.088560 84.052020 -38.577610 715.310790 1604.051270 138.803050 725.775760 1612.497440 0.849040 724.790650 1782.677370 84.673700
+61 1.000000 615.439270 1079.433110 176.575780 614.924680 1077.574220 -84.966000 416.413790 1077.430050 55.187490 578.210210 755.449100 216.818730 639.337280 695.551090 122.456700 569.694460 632.877620 203.875020 645.006590 781.127560 -154.503490 747.606080 773.874630 -101.309990 682.635250 677.697690 -147.705120 497.125640 460.559020 186.119750 571.224550 419.595180 133.874510 501.651700 373.553010 189.505680 664.544800 491.966710 -147.970280 684.000060 423.285220 -97.248240 622.894170 465.779420 -150.278320 397.266480 72.574860 94.960990 542.840820 78.225620 69.159930 528.221620 63.163900 175.439290 683.927800 47.143180 120.174130 404.931520 216.461760 -43.248430 550.162960 131.497920 -31.706670 525.711730 132.292140 -127.062810 629.908810 54.111140 -67.913790 643.752440 1385.775760 42.902620 556.129090 1470.800290 261.768400 562.545590 1507.446290 -156.409560 577.546630 1268.354610 305.100220 547.212650 1271.576170 -198.621550 545.008480 1162.305180 337.169400 481.898130 1185.765990 -235.342640 731.049990 968.626530 306.131350 699.111570 943.890140 357.452580 575.775210 949.798340 -204.431200 526.796200 943.968080 -261.295720 613.548030 38.640170 195.388280 627.365970 45.509820 85.849980 563.260310 77.439280 -138.497600 591.252620 77.516720 -38.813160 715.051330 1604.413450 138.870540 724.427920 1612.510380 0.219060 723.820740 1783.117550 84.208320
+62 1.017000 612.789670 1078.693120 177.658750 613.395690 1078.023560 -84.234030 414.062710 1077.717900 55.369930 570.808960 755.632630 216.445270 630.036070 693.396610 123.434270 558.328920 632.523070 204.167360 647.394710 782.929870 -152.736130 748.710880 776.829220 -97.290730 686.757390 679.793880 -145.132310 482.866790 462.024960 185.562480 557.339840 419.217990 133.911480 487.024930 374.771850 188.672490 673.930850 490.726840 -143.287750 699.360840 423.917020 -94.985210 634.714110 461.949130 -147.760300 378.836700 73.340710 94.208660 524.294430 78.338360 68.882990 509.229460 63.476430 175.297200 664.995180 46.686790 120.144640 438.079100 193.239430 -42.027270 590.422550 120.718150 -32.367820 565.686100 121.088880 -127.668160 677.019170 52.214310 -69.620570 641.456360 1385.584590 43.142880 555.722600 1471.065430 262.068270 561.154970 1507.016110 -156.748120 578.347840 1268.748540 305.811650 542.586180 1271.362920 -197.959670 547.123290 1162.615600 338.216000 476.494350 1186.439450 -234.982010 736.356140 973.081850 303.696660 705.998470 947.038090 355.558930 570.662720 950.006960 -203.033400 520.744690 944.259520 -259.685390 595.920040 38.540370 194.449860 609.012080 45.327360 85.925830 607.422420 70.132210 -139.530330 636.834590 71.751850 -40.269020 714.188170 1604.673710 138.646770 723.717410 1612.138430 -0.160450 723.219480 1783.013180 83.472000
+63 1.033000 610.611510 1077.910520 178.770030 611.169620 1077.655520 -83.081240 411.746150 1077.822140 55.297180 560.012210 755.117490 216.867170 620.515080 692.168700 123.186040 548.467710 632.946470 202.960920 648.123230 783.715760 -150.868500 749.554260 778.750920 -94.009990 688.686040 681.295290 -143.113560 468.221620 461.960020 185.456070 542.451290 419.300320 133.401540 471.493530 375.033510 188.332760 682.043330 490.141820 -140.340610 713.666750 424.246920 -93.965580 644.990780 457.173920 -144.948180 360.298710 74.390570 93.394170 505.705290 78.563770 68.685290 490.314090 63.847110 175.108990 646.097780 46.380020 120.128740 473.612980 170.137770 -40.362030 632.049500 111.169400 -33.640750 606.264040 110.948390 -128.697780 724.482600 51.903530 -72.757450 639.918820 1384.804930 43.520900 555.065310 1470.656370 262.024630 559.413090 1505.547360 -156.170760 578.365540 1268.542360 305.868010 539.393980 1270.726680 -197.983810 549.080570 1162.483400 339.023130 470.913600 1185.710940 -233.003520 741.294860 977.118160 300.938050 712.416440 950.557920 354.122280 565.888120 949.632690 -202.195390 515.656560 943.768130 -258.905730 576.413210 38.830300 195.134320 590.964360 45.276470 86.035890 651.808960 64.348340 -141.477310 683.130370 67.308790 -42.750800 713.592830 1604.163700 137.962550 723.133120 1611.920900 -0.450700 722.437260 1782.648440 82.828990
+64 1.050000 608.026980 1077.456050 179.363540 608.947330 1077.136960 -83.011500 409.494260 1077.770140 54.996110 552.653260 753.994380 216.044950 612.481810 690.332400 123.592620 537.561280 632.144350 203.951340 647.329590 783.389280 -148.952260 746.473880 779.816650 -90.359340 687.948240 681.386230 -141.490200 454.099120 463.109620 184.967300 527.511660 419.337740 134.165510 455.610840 375.997890 187.888150 689.748840 487.577330 -137.968280 727.245360 424.369020 -92.671100 654.075010 451.503690 -142.029210 341.691800 75.627720 92.635020 487.013550 78.867550 68.576750 471.481540 64.219330 174.909840 627.271790 46.160280 120.197400 511.424160 148.153500 -38.482190 674.754030 103.676960 -35.369200 647.093570 102.532880 -129.882030 771.675480 53.687400 -76.935670 639.516850 1384.116700 43.344870 553.722230 1470.221440 261.812870 558.836850 1504.329830 -156.334410 578.437320 1268.249270 305.617370 536.327210 1269.629270 -196.832410 550.745420 1161.953740 339.571810 467.748080 1185.500240 -232.953170 746.012210 980.854860 298.953220 718.216980 953.149600 351.880620 562.234860 949.072140 -201.192540 511.330660 942.467220 -255.898880 556.805050 38.523700 195.326230 572.841980 45.261870 86.141980 696.595580 60.868460 -144.265150 729.494140 64.799980 -45.889150 713.246030 1603.299930 137.641880 722.214840 1610.272090 -0.545310 721.089290 1781.364870 81.700580
+65 1.067000 604.769780 1076.286250 179.782390 607.314390 1074.917720 -82.799260 407.357940 1077.521360 54.548930 543.261290 753.305730 216.063170 605.132320 689.349060 124.225590 526.462830 632.510310 202.947510 645.162960 781.908390 -147.028980 743.091310 778.564510 -86.516010 686.259950 679.921200 -139.162290 438.632660 464.201390 184.922960 513.623290 418.456050 133.991740 440.832920 376.908750 188.152130 694.719420 483.701970 -135.378560 738.495240 423.330510 -91.510770 662.391850 445.110080 -139.251070 323.009830 76.951020 92.052490 468.201720 79.191530 68.545990 452.690000 64.574820 174.749040 608.461550 45.953530 120.336590 551.012700 128.197390 -36.717210 717.888490 98.874590 -37.279170 687.831240 96.408140 -130.965930 817.856930 58.052470 -81.468510 637.723880 1382.597900 43.751630 551.698060 1469.221920 260.536680 555.416930 1503.091920 -155.854660 579.406490 1267.504760 305.575410 533.588990 1268.486450 -196.811360 552.022280 1161.110720 339.826350 464.680880 1183.571290 -230.949010 749.938480 983.520810 296.608280 722.752260 955.201720 349.673520 559.825260 947.896670 -200.840740 508.472560 941.261170 -255.420730 538.033690 38.033390 195.247680 554.169740 45.111590 86.244730 741.481080 60.219810 -147.551960 775.292850 64.841220 -49.193230 712.446720 1601.794070 137.335370 721.051820 1609.212040 -1.851430 721.544310 1780.107060 80.511080
+66 1.083000 601.904240 1074.181400 179.200650 606.006960 1073.090580 -82.663540 405.404540 1076.997680 53.966530 540.061160 753.729490 215.251540 592.949890 686.127870 124.170650 515.930240 631.961910 203.679210 641.840700 779.294250 -145.175140 739.955570 775.190730 -83.260380 683.181580 677.565120 -138.011750 424.929660 465.069550 184.903170 498.525330 418.570470 134.624010 425.531740 377.525630 188.616350 697.603390 479.351070 -132.606380 747.496220 422.930760 -89.291540 670.292050 438.267970 -136.882260 304.230620 78.331310 91.763600 449.317440 79.488530 68.563990 433.909330 64.900570 174.641460 589.568730 45.736840 120.399900 591.422360 111.022470 -35.411050 760.388490 97.167180 -39.005360 728.167720 93.024370 -131.815160 862.305240 65.454940 -85.454760 635.978640 1380.862790 42.769380 551.381470 1468.416260 259.907870 556.282650 1501.238890 -158.146710 579.315980 1266.733760 305.395200 532.334470 1266.373290 -196.561280 552.912290 1160.003910 339.747070 463.123840 1181.971310 -231.302920 752.611820 985.470030 294.529360 727.426450 956.768860 348.213290 557.168270 946.705200 -199.607350 505.732390 939.897830 -255.121690 520.567500 37.399320 195.383620 534.668950 44.698110 86.402240 785.600650 62.603820 -150.624690 819.803340 68.007000 -52.165910 711.912410 1600.469730 135.732890 719.710570 1606.909670 -2.772270 720.368040 1778.294190 79.914270
+67 1.100000 600.223570 1072.687740 179.887890 605.294010 1070.348390 -82.703920 403.693390 1076.102050 53.192750 526.960630 751.694760 216.619950 585.413330 684.728030 124.408530 505.507110 631.539310 203.392320 637.666990 775.662350 -143.491010 734.165650 771.281310 -81.189320 679.017150 674.303040 -136.276400 411.778320 465.847110 185.639400 483.909910 417.499880 135.245860 410.535030 378.340330 188.615430 701.511720 474.270780 -130.487200 757.712650 423.374660 -88.912850 677.895390 431.333160 -135.097440 285.401550 79.788640 91.769870 430.452550 79.750110 68.589580 415.147610 65.174470 174.575100 570.541440 45.535230 120.210550 631.413330 97.132870 -34.922870 801.035950 98.782110 -40.143940 767.742490 92.728160 -132.370390 904.445310 76.292430 -87.943410 634.996700 1378.754270 42.131720 549.988770 1466.607540 258.932770 554.770570 1499.202510 -158.489550 578.364380 1265.441410 304.889950 531.686460 1264.784300 -196.807430 553.485170 1158.606930 339.315280 460.927250 1180.667850 -231.320450 755.927670 987.300350 291.955570 730.954710 958.095950 345.721220 556.745480 944.508180 -199.833530 503.403810 937.431150 -253.708680 501.325560 37.401260 195.597580 514.448850 44.016460 86.672370 828.128300 68.133590 -152.670940 862.190980 74.734240 -54.276970 710.644170 1597.897090 133.955870 718.809940 1604.607060 -3.706050 720.510070 1776.280520 77.978710
+68 1.117000 598.640870 1070.500240 180.074110 604.342100 1067.372070 -82.314320 402.271000 1074.718630 52.190510 519.234800 751.498840 217.075120 575.071590 682.108030 124.659310 496.240910 631.199280 203.479080 633.012270 771.263730 -142.053130 729.169980 765.558350 -78.207110 672.825200 669.616150 -135.352890 399.447660 466.659330 185.029680 470.735630 417.371340 135.039840 396.237490 378.941160 188.503430 704.230590 468.945310 -128.294940 763.157410 423.561400 -85.527690 685.046810 424.684480 -133.881360 266.599180 81.365490 91.908520 411.698520 80.011820 68.577390 396.441100 65.427900 174.551250 551.438660 45.375070 119.733390 669.816830 86.628760 -35.580390 838.670650 103.649020 -40.333680 805.921080 95.639010 -132.522030 943.602600 90.615220 -88.182660 634.607600 1376.438110 41.725440 548.230710 1464.474370 258.133820 555.324460 1496.483280 -159.407760 577.759700 1263.535280 302.975560 531.364010 1262.189820 -198.284970 553.822880 1156.872920 338.546200 460.696560 1177.787480 -231.202560 757.527830 987.893800 289.295500 733.762880 958.421750 343.475800 554.760310 941.863160 -199.040120 503.106110 934.517460 -253.788350 480.574340 38.013690 194.535140 493.969730 43.177260 87.025340 868.438960 76.847020 -153.137190 901.476500 85.044690 -54.889030 708.519230 1595.033940 132.577100 718.560670 1602.163570 -5.115030 720.766780 1773.909910 76.166460
+69 1.133000 595.250980 1068.304690 179.761150 604.161320 1063.794920 -82.287020 401.165410 1072.746830 50.948940 512.616940 749.652280 216.533680 567.832760 679.941280 124.270790 487.697780 630.413940 203.146740 628.312320 766.470950 -140.901200 723.234860 759.469670 -75.765980 666.509830 664.288700 -133.688640 385.977420 466.776120 185.168880 457.208370 417.823610 134.391420 382.139980 379.869020 188.378570 706.138000 464.393890 -126.555900 769.254820 424.060790 -84.442380 691.367610 418.625060 -133.039540 247.874660 83.144910 91.997110 393.116270 80.340660 68.487240 377.827180 65.765210 174.574390 532.347110 45.251950 119.142750 705.638310 79.182260 -37.435130 872.256590 111.207370 -39.354730 841.633480 101.429630 -132.048810 978.739200 107.735880 -85.877660 633.006650 1373.715580 39.724330 547.721620 1462.346070 256.555360 555.521550 1493.831910 -161.869130 577.832090 1261.626830 303.003600 531.121340 1258.991700 -199.488330 553.977050 1154.812620 337.482150 460.207030 1174.686160 -232.142270 758.624510 988.096250 287.533510 736.449830 958.749630 341.468870 554.352720 938.789370 -199.135860 502.829710 931.920410 -254.549560 459.035740 38.222980 195.560900 473.816380 42.356820 87.313430 905.734680 88.373730 -151.822250 936.503850 98.208610 -53.493260 709.565610 1593.314450 131.738690 717.791320 1599.377200 -7.394260 720.204220 1771.053830 74.515720
+70 1.150000 593.657840 1066.497440 178.720600 604.116150 1060.677490 -82.300270 400.364290 1070.186520 49.464270 507.382600 747.961980 216.284870 561.407410 677.804690 124.586940 479.733000 629.723820 202.680160 624.116210 761.676150 -140.073270 717.822330 752.937500 -72.770860 659.930480 658.851010 -132.185440 374.053680 468.205110 185.292510 443.947750 417.488650 134.611860 368.328430 380.799160 188.324360 707.343570 459.921480 -124.959300 770.674930 423.962650 -80.788370 696.511290 413.314270 -132.328000 229.274030 85.235470 91.973820 374.736970 80.818120 68.296870 359.330170 66.283910 174.616790 513.240780 45.123110 118.742100 737.757570 74.251090 -39.972090 900.881900 120.344440 -37.193640 873.454770 109.180450 -130.704450 1008.635310 126.125670 -81.285060 632.811100 1370.651610 38.942570 546.852780 1460.021850 254.382630 554.193120 1490.287840 -162.776540 577.820680 1259.706540 300.831300 531.517150 1255.501830 -200.448650 553.948550 1152.501830 336.175810 460.032230 1171.333620 -233.224640 759.271360 987.581180 285.235900 737.888060 957.642880 339.528020 554.695010 935.778630 -199.873660 503.505130 928.643800 -255.930360 443.205600 37.438300 195.469130 454.423490 41.734050 87.374470 938.878910 101.671590 -148.823650 966.165710 112.751210 -50.056280 709.027340 1590.402830 130.155840 717.317200 1595.959110 -9.031810 719.423030 1768.240600 71.817900
+71 1.167000 592.661930 1063.557130 179.596910 604.543760 1057.348270 -82.751710 399.822170 1067.166020 47.747720 501.053920 746.517210 215.753280 554.146000 675.355290 123.561840 469.615570 628.987670 202.003340 621.062010 757.200810 -139.614400 713.359740 746.475280 -70.551250 655.306820 652.865970 -129.153840 362.353090 468.788570 184.327160 431.459260 417.131840 134.492970 355.293090 382.082180 187.349530 707.734250 456.388520 -124.765950 774.687680 425.506290 -78.983290 700.529300 408.799350 -131.637470 210.857320 87.731540 91.900540 356.581300 81.522760 68.020660 340.986600 67.013240 174.638870 494.028660 44.922860 118.748320 764.675290 71.273570 -42.191100 923.724670 129.496260 -34.050290 899.906680 117.394450 -128.410060 1032.328490 143.651020 -75.110680 632.770570 1367.255620 37.123950 545.735050 1457.213500 252.668930 557.372860 1486.546750 -166.174210 576.291870 1256.904300 299.698330 531.653870 1251.615600 -201.703380 553.703980 1150.054930 334.666750 461.737460 1167.524170 -235.776690 760.164060 985.896670 283.748500 737.181580 956.043090 337.776250 555.452210 931.889220 -200.253340 504.395320 924.169310 -256.434230 423.577880 37.071140 195.401210 435.906070 41.397340 87.176820 966.539370 114.990460 -144.513140 989.690190 126.778680 -45.054690 708.624820 1587.311890 128.077120 717.178100 1592.655030 -10.967070 718.771790 1764.765140 69.109800
+72 1.183000 590.094910 1060.948120 179.023270 605.618770 1054.198120 -83.063930 399.499300 1063.876220 45.821920 496.169220 745.413210 215.963520 548.960450 673.497070 124.220260 463.230900 628.636900 202.003230 619.686710 753.276790 -139.512450 711.175720 741.362550 -68.983290 653.161800 648.704160 -129.272870 350.926270 470.463470 184.772020 418.716000 416.715240 134.779750 343.045560 383.091520 187.641940 708.891110 453.197540 -124.306950 775.839420 425.379820 -77.528380 703.982120 405.105320 -131.047850 192.698500 90.735710 91.898780 338.672730 82.509580 67.725300 322.851100 67.919020 174.644580 474.719240 44.620440 119.081920 784.782290 69.623540 -43.198250 940.102660 136.909970 -30.269340 919.778560 124.221940 -125.340370 1049.352420 157.938310 -68.297450 631.258060 1363.617920 34.895320 544.958310 1454.283940 249.791960 556.048650 1482.208370 -167.077900 575.906980 1254.494870 296.830410 532.896480 1247.568850 -204.014070 553.206180 1147.620730 332.960720 463.240970 1162.864750 -237.555160 760.356690 984.069270 281.442780 739.603210 954.243710 335.448030 557.322390 927.452580 -201.043140 506.758640 920.377260 -257.860720 403.792450 37.072250 195.640080 418.021150 41.253810 86.857750 987.457460 126.050460 -139.444020 1006.613530 138.266650 -39.223260 707.371890 1584.642820 125.235520 716.783810 1589.124630 -13.535590 718.514400 1761.539430 66.357590
+73 1.200000 590.572940 1058.054440 179.313950 606.599980 1050.770390 -83.305630 399.400090 1060.524170 43.700060 490.819090 743.626220 215.257130 542.238460 670.771060 125.421560 455.231290 627.780460 201.781720 620.198120 750.038880 -139.640910 710.303470 737.522340 -67.469020 651.518740 645.286680 -129.875310 341.678010 471.327210 184.479200 408.569490 415.857600 133.882640 330.361330 384.469880 187.579450 710.483030 450.010990 -123.373280 777.427000 424.298030 -76.356290 707.563960 402.231230 -130.610470 174.914310 94.386180 92.067650 321.033910 83.791210 67.522740 304.939730 68.943310 174.700900 455.414030 44.262230 119.432260 797.005920 68.548440 -42.809070 949.675230 141.042830 -26.180670 932.330750 127.938540 -121.784870 1059.678220 166.786010 -61.695590 630.646730 1360.286740 33.478050 543.929930 1452.172120 247.158740 559.187990 1478.217650 -170.552690 574.667110 1251.792850 294.682250 534.826110 1243.520140 -205.867680 552.439760 1145.371340 331.031560 465.469360 1158.141850 -240.577710 759.199220 980.740660 279.812410 737.549070 951.465940 334.907470 559.680910 923.505680 -203.322070 509.901980 915.818360 -259.497890 384.929780 36.781890 195.178540 400.320560 41.088360 86.608340 1000.801510 132.618190 -134.137280 1016.676760 145.303990 -33.257080 706.372010 1581.571780 122.230560 716.525330 1586.280150 -16.382280 718.133540 1758.627080 63.151640
+74 1.217000 589.531010 1055.784060 177.995290 605.977970 1048.189450 -82.821680 399.598360 1057.324220 41.378990 487.260860 742.794190 215.191940 539.477420 669.146420 126.092520 450.539920 627.100830 201.537640 622.380490 747.495060 -139.787840 711.567500 735.319340 -66.881090 654.415040 643.666320 -129.896940 333.930330 472.458770 184.288760 398.892180 415.544280 135.266540 319.400300 386.275630 188.206100 713.526550 447.998350 -123.335430 781.464540 423.142610 -74.670160 711.532170 400.056490 -130.122730 157.667250 98.832470 92.441880 303.680050 85.337250 67.533170 287.232030 70.070560 174.893300 436.180480 43.934040 119.534390 801.166320 67.484930 -41.496310 952.650760 140.962660 -22.011860 937.506290 127.569210 -118.005690 1063.601680 168.648800 -55.667380 630.845030 1357.496950 30.911310 543.527950 1449.892210 243.631550 559.335270 1474.108520 -173.246320 574.414370 1250.381590 292.328640 536.990420 1239.313960 -208.849720 551.441470 1143.470700 328.851780 467.963100 1153.419800 -242.741930 757.482300 978.087100 279.069120 736.226620 948.817080 333.713590 562.444090 918.851620 -204.428480 511.940060 911.395260 -261.086760 365.584410 36.455590 196.110660 382.478520 40.748580 86.504540 1006.506470 133.351870 -128.946810 1020.003050 146.498580 -27.611370 706.473510 1578.686040 119.097410 716.431760 1583.058590 -19.923100 717.919070 1755.877690 59.683940
+75 1.233000 589.140380 1053.571170 177.185970 606.928410 1046.083620 -83.657780 400.222810 1054.468630 38.854550 484.486540 741.410460 214.883360 536.287290 666.332760 127.422340 446.064540 626.444090 201.964370 625.707210 745.530150 -139.772570 715.128720 734.840820 -66.420790 658.657410 642.649900 -127.908810 327.860990 473.486690 184.323440 390.987550 414.080470 135.583510 310.951930 387.527400 188.174880 718.680300 446.179960 -121.812230 785.003300 419.861240 -73.295170 715.587220 398.374270 -129.276860 141.096240 104.245570 93.011310 286.631040 87.104920 67.835740 269.746520 71.362850 175.270750 417.021730 43.700270 119.319480 797.953670 66.468860 -39.836420 949.800660 136.550090 -18.046060 936.154970 123.282400 -114.284170 1061.806880 163.182050 -50.056950 630.334170 1354.648190 28.166590 541.409970 1447.783570 240.386220 560.918950 1470.586060 -177.131810 573.105410 1248.089480 289.863490 538.540410 1234.571660 -210.955080 550.286250 1142.041260 326.419830 470.527040 1149.051640 -246.136950 755.179870 974.301150 277.583710 732.581970 945.469480 333.033840 565.332340 914.624150 -207.491000 517.154110 906.384770 -264.175570 349.399380 36.289140 197.319490 364.477810 40.226270 86.476240 1005.399230 128.297270 -124.125920 1017.402530 141.516020 -22.497960 706.006040 1576.681400 115.568970 716.310060 1580.324220 -23.108750 717.727840 1753.376340 55.434890
+76 1.250000 588.907170 1051.901120 176.095110 611.342040 1044.156490 -86.377660 401.391940 1052.092770 36.136180 481.836030 739.726260 212.435680 535.634220 664.326660 127.928930 444.139430 625.484860 201.892410 629.549500 743.992920 -139.548840 720.697080 735.763550 -67.121190 665.833740 642.149050 -128.596850 321.831700 474.892670 185.395950 384.590000 413.248690 135.529210 304.592440 389.398710 188.933010 723.844850 444.553590 -120.939610 788.165280 414.825200 -70.335740 719.196530 397.066770 -127.961640 125.308950 110.851360 93.729260 269.947140 89.096660 68.434350 252.554350 72.930400 175.828860 397.900570 43.573540 118.865550 788.926820 65.943140 -38.278820 942.395450 128.584300 -14.682410 929.939090 116.205870 -110.956370 1055.509280 151.624570 -44.742180 630.760800 1352.587400 25.665180 541.366820 1446.782590 236.777540 561.101380 1466.696170 -180.343340 572.928710 1247.150510 286.371490 541.282840 1231.207030 -214.234950 548.978150 1141.139770 323.746700 474.463470 1144.549800 -249.071950 752.730770 970.035160 276.382570 729.372380 942.056150 332.871670 569.229610 910.143250 -209.235430 521.036680 902.475710 -266.484220 327.161160 35.495630 196.868480 346.503330 39.583020 86.431590 998.938540 118.703230 -119.933780 1010.325260 131.372240 -18.071420 706.250310 1574.834350 111.831640 717.325010 1578.333980 -26.658630 716.997620 1751.473390 51.178550
+77 1.267000 592.120910 1050.171510 173.942780 613.793460 1042.730960 -87.416860 403.145290 1050.256590 33.274460 482.108220 739.359620 211.951390 537.056580 662.566590 127.894470 443.032990 625.149900 201.840190 633.340450 742.803220 -139.205470 727.025210 737.375180 -68.139880 672.662110 641.249570 -126.958700 320.439880 475.483550 185.886020 379.217710 411.729280 136.348660 299.959590 390.926150 189.791760 729.383000 442.890230 -119.290210 791.565310 410.903840 -68.031550 721.956240 396.171200 -126.378390 110.462520 118.900620 94.504460 253.776290 91.421200 69.253620 235.768950 74.919850 176.517180 378.761810 43.496630 118.296420 776.259090 66.217410 -37.194070 932.076230 118.692100 -12.111100 920.716060 107.791830 -108.273930 1046.256840 136.493130 -40.047730 631.323360 1351.370360 22.867630 541.245480 1445.688840 232.802580 561.284420 1463.419680 -184.504000 571.576900 1246.833370 282.959050 544.198850 1227.598390 -217.709370 547.385380 1140.773560 320.835540 478.728880 1140.735960 -252.692430 748.303410 966.214780 276.854890 724.737060 939.624080 332.955140 574.325680 906.596070 -211.920960 525.944890 898.375980 -269.109830 310.556850 35.233800 197.713820 328.722050 38.858440 86.369630 988.718870 106.444700 -116.613160 1000.291020 118.101070 -14.543790 706.224060 1573.830080 107.664950 716.614070 1576.327510 -30.844790 716.808410 1750.038090 46.614080
+78 1.283000 592.678530 1049.749150 172.692210 614.799070 1040.517580 -88.749880 405.430300 1048.939820 30.387710 485.676060 739.404600 214.263050 538.366390 661.258180 129.281280 444.702390 624.351200 201.435040 636.805110 742.020200 -138.974870 733.188540 738.529240 -71.529830 676.051510 640.929020 -124.126140 319.347050 476.603580 185.319750 377.917480 411.242280 137.419920 296.348210 393.252380 190.640080 731.514830 440.744350 -116.519210 791.854920 406.766750 -65.248910 723.841610 395.757900 -125.026800 96.826250 128.666120 95.300950 238.391390 94.322560 70.166020 219.588440 77.556920 177.261380 359.626430 43.358330 117.699980 761.948670 67.267590 -36.728400 920.354130 108.764430 -10.136140 909.776730 99.277590 -106.304340 1035.291870 120.507020 -36.450260 633.016720 1349.654050 19.264430 541.096500 1445.130490 228.500490 562.859680 1460.925420 -189.342940 569.777400 1246.647090 279.781040 547.392640 1224.125120 -221.228360 545.345280 1140.963620 317.682400 482.523190 1136.759030 -255.607760 742.856570 962.134220 276.404690 719.209840 936.771790 333.521270 578.807800 903.657290 -214.437530 531.228760 895.176760 -271.933440 291.971500 34.528740 198.381350 311.170350 38.065580 86.349890 976.097530 93.458120 -114.276760 988.362120 103.985980 -12.044350 705.611390 1573.244870 103.339360 716.667420 1575.822020 -35.087920 716.345400 1749.363770 42.334140
+79 1.300000 595.206050 1049.302490 170.848310 618.231870 1040.230830 -89.842280 408.143340 1048.081050 27.635000 486.163940 738.282650 213.626510 540.982670 660.080260 129.543690 447.271090 623.899540 202.956710 640.085880 741.835080 -139.241880 737.649900 738.866210 -74.483690 678.923160 640.427610 -123.226830 320.392550 477.511050 186.711470 376.447240 409.975490 139.583530 293.895260 395.279390 191.824680 735.647580 441.742070 -116.469510 793.129760 405.433750 -63.825000 725.004520 395.783630 -124.509780 84.898410 140.503720 96.237340 224.204850 98.149030 71.046090 204.303280 81.182440 177.979640 340.650330 43.050880 117.113120 747.100520 68.827290 -36.775270 908.032100 100.141640 -8.506220 897.603820 91.536640 -105.010440 1023.138370 105.595050 -34.151180 634.610230 1349.264040 14.926690 540.855960 1445.663940 223.173280 564.623170 1458.796880 -194.505660 568.766850 1246.860230 276.253170 548.890320 1221.487670 -223.942210 542.787170 1141.780150 314.270900 486.936130 1133.946290 -259.262760 736.861820 957.986690 277.922910 711.824830 933.931640 334.063020 583.870120 900.738530 -217.319060 535.491640 892.410460 -274.562440 273.329740 34.347250 198.694170 293.879270 37.314180 86.370600 962.020630 81.293270 -112.837790 975.129330 90.890830 -10.477490 706.183650 1573.205810 99.118700 717.897090 1575.903440 -39.495270 716.404480 1749.377080 37.112700
+80 1.317000 597.957700 1049.405760 168.770080 621.886960 1041.302000 -91.221430 411.164980 1047.644530 25.153040 490.515720 737.679500 213.585740 548.333130 659.776370 130.332960 454.827970 622.883180 203.294080 643.398800 742.419430 -140.365480 741.791690 738.856020 -77.414450 681.347410 641.263550 -123.184400 325.766240 480.229520 188.586530 378.480740 408.593320 140.780200 295.040890 398.597600 191.501680 738.002690 442.280000 -117.702450 793.707640 403.829650 -63.516540 725.245850 396.063290 -125.176950 75.516380 154.803040 97.372060 211.753750 103.261600 71.836610 190.254500 86.221670 178.574040 322.025850 42.479350 116.616820 731.909850 70.535690 -37.169700 895.106630 93.306760 -7.295470 884.211670 85.081850 -104.369800 1009.813660 92.659240 -33.049710 636.991880 1350.424800 10.797420 539.850650 1446.455440 218.996510 567.335450 1457.555910 -199.529280 567.518800 1248.296510 272.240750 555.599490 1220.512700 -228.583070 539.741090 1143.296880 310.581880 491.698820 1131.439330 -262.336790 730.001770 954.889340 278.846010 703.384770 931.623720 335.565800 590.312560 898.643430 -219.858200 541.111940 889.886960 -277.167360 256.366790 33.330990 198.673490 277.077760 36.963620 86.355000 946.992860 70.830850 -112.100490 960.870480 79.909900 -9.644970 704.864930 1573.931880 95.026380 718.119380 1576.923460 -43.821700 716.325260 1750.771240 32.396640
+81 1.333000 600.920350 1049.997680 166.965650 625.388980 1042.936650 -93.448880 414.349460 1047.639530 22.987230 497.591710 737.955990 212.823780 557.450810 659.288760 130.800570 463.430730 621.231870 204.102830 646.585020 743.730900 -142.449230 745.938350 740.279050 -79.131780 685.268680 642.576900 -125.541110 334.416260 482.054630 190.307600 385.306460 407.404510 142.592420 299.760410 401.969880 193.456860 736.573550 442.535400 -117.911070 791.667050 402.025600 -64.039430 723.976200 396.369750 -126.968280 69.737370 171.814210 98.449420 201.656620 109.914470 72.592110 177.852550 93.106400 178.942960 303.908870 41.509360 116.434340 716.165100 72.067070 -37.802430 881.148070 88.106340 -6.831380 869.541690 80.040920 -104.404410 995.245360 81.889310 -32.923210 638.378660 1351.684080 7.166670 540.593140 1448.176270 213.258870 568.815730 1457.734010 -204.611110 565.546570 1249.943850 267.910060 559.745420 1219.614500 -232.038190 536.281560 1145.506960 306.625790 498.143740 1129.794800 -265.619840 722.443240 951.166930 280.361420 692.323850 931.048770 336.862370 595.937930 896.839110 -221.750310 546.596250 887.942080 -279.305240 239.755390 34.749600 198.198090 261.172700 37.594210 86.304580 931.247310 62.337040 -111.940700 945.650630 71.344130 -9.441730 706.623170 1576.255250 90.223250 719.176880 1578.466920 -48.419600 715.439330 1752.274780 27.778030
+82 1.350000 604.220890 1051.421020 164.049700 628.722900 1045.966190 -95.967930 417.506560 1048.065310 21.039040 508.150050 737.472170 212.283580 568.224610 659.137150 132.279240 475.043550 619.981020 206.272220 649.104000 745.488100 -145.310930 747.011470 741.369570 -79.639640 688.606690 644.957150 -128.147720 347.973330 482.416260 191.082120 394.513030 405.987520 145.932310 308.438510 405.205110 194.424060 734.724790 442.329560 -120.768450 787.559940 400.546780 -64.853230 720.659180 396.554870 -129.557800 68.600760 191.492520 99.077790 194.545870 118.158070 73.459180 167.680470 102.203740 179.049300 286.517520 39.973520 116.873790 699.698430 73.202130 -38.650220 865.855960 84.161830 -7.255420 853.630370 76.244640 -105.077900 979.493410 73.181080 -33.562930 639.975710 1353.526610 2.692660 539.959530 1449.771240 209.026660 570.561460 1457.774900 -208.961030 563.935060 1252.626710 263.799380 565.984620 1220.130000 -235.794620 532.473450 1148.288450 302.455510 505.125980 1128.672240 -269.134950 713.700680 948.574340 282.768620 682.251460 929.721500 338.308290 601.574220 896.235600 -224.265820 553.050600 886.963130 -280.993130 223.603440 36.870840 198.299290 246.613950 39.783910 86.407140 914.953920 55.760240 -112.324550 929.495730 64.979510 -9.845250 706.838440 1578.142820 85.004510 720.236940 1580.631100 -52.543100 713.201420 1753.970090 23.321390
+83 1.367000 607.621280 1053.071290 160.475490 631.643680 1048.820680 -99.293850 420.400390 1048.875610 19.083880 519.584050 736.324710 210.596830 582.306950 659.289730 134.063660 491.066710 617.239010 207.789790 650.364260 747.353030 -148.603740 747.829900 742.232600 -82.461340 687.629880 646.343690 -131.377520 364.584560 483.097530 194.508390 407.874730 404.630460 147.895340 320.465910 408.480440 197.846880 730.645320 441.957240 -123.970080 781.280150 398.752810 -66.877110 715.026790 396.578250 -132.522630 72.957610 213.377700 99.048200 190.988450 127.808710 74.584330 160.542480 113.687440 178.962390 270.338960 37.824130 118.147840 682.538390 73.879010 -39.718490 849.304750 81.173000 -8.290230 836.639950 73.458350 -106.169660 962.758790 66.392810 -34.757880 641.160400 1356.348750 -1.204350 540.215450 1452.755980 204.815600 572.385440 1459.357910 -214.016010 561.665710 1255.209720 260.153720 571.217770 1220.216190 -238.821030 528.373170 1151.464230 298.174590 513.550480 1128.136720 -272.025570 704.188350 946.485600 284.552760 671.492740 928.569030 339.368260 608.544070 895.924260 -226.716630 560.170230 886.748350 -283.715390 207.004650 39.908170 197.881470 233.941830 43.888920 86.939610 898.222470 50.946800 -113.141300 912.513670 60.433090 -10.746610 704.962160 1580.545530 81.494220 720.753910 1582.924800 -57.069940 714.834590 1756.822140 18.946530
+84 1.383000 610.243410 1054.513310 156.667050 634.044490 1051.409910 -102.683360 422.769100 1050.004640 16.890820 531.230590 735.796630 212.806590 599.708130 660.900630 134.836880 508.142790 615.538510 209.302830 650.026860 749.145690 -151.974760 749.541020 742.587830 -86.588080 684.863400 647.327880 -135.273030 384.815670 484.695160 196.615330 424.024840 403.650390 151.043380 336.880620 411.791320 199.191930 722.922300 440.988340 -127.960810 771.831240 396.730070 -68.920970 707.016050 396.465150 -135.442930 83.185100 236.492630 98.373340 191.412730 138.493930 75.997920 157.325030 127.346420 178.799790 256.413300 35.384000 120.236690 664.830140 74.181720 -40.889690 831.757080 78.952630 -9.459330 818.844240 71.536740 -107.337920 945.276790 61.380460 -36.199600 642.388980 1358.753300 -4.669660 541.684880 1456.030400 200.535600 573.880680 1460.795780 -217.970200 558.772220 1258.328000 256.364960 576.820430 1221.181030 -241.764040 524.067320 1154.882080 293.954280 520.586430 1128.345210 -274.362820 694.370060 944.689880 286.869690 659.588930 927.647890 339.869050 616.905460 896.040470 -229.408620 568.471190 886.589420 -285.792050 194.002460 46.470630 198.167040 224.001050 49.969630 88.076910 881.028810 47.687340 -114.136380 894.870910 57.332220 -11.859860 705.321960 1583.448850 77.936270 720.221070 1585.903080 -60.438850 713.586120 1759.584590 14.825690
+85 1.400000 612.637630 1056.685790 153.941800 635.229310 1053.665160 -105.659510 424.410800 1051.407100 14.384100 543.810730 735.008360 210.420320 616.177490 662.107360 136.212130 526.998470 613.814090 209.866150 648.114440 750.879270 -155.191680 747.016360 741.972110 -90.469120 681.208500 648.814210 -138.252500 408.207700 485.840060 197.912370 442.320310 403.255740 153.421160 355.653690 415.898620 200.983660 713.508000 440.710170 -130.094020 762.024780 395.456790 -71.910230 696.786070 396.278080 -138.040890 98.688180 259.335140 97.133640 196.058530 149.734390 77.557620 158.740140 142.500270 178.648040 246.521060 33.528630 122.921980 646.727290 74.258100 -41.923670 813.479980 77.350840 -10.420670 800.548160 70.355130 -108.322830 927.237670 57.921730 -37.536720 643.300480 1361.887820 -7.419270 540.946110 1459.521480 196.868910 575.228270 1462.217770 -221.492570 556.403990 1261.110350 252.881590 583.253780 1222.530270 -243.672790 519.648500 1158.435300 290.010190 527.917850 1128.603880 -276.531370 683.549500 942.809390 288.603210 647.362120 927.229550 340.618650 623.836060 895.942990 -230.150210 577.037050 887.327820 -288.056400 184.070360 56.159470 197.603730 218.136200 57.840790 89.803960 863.297060 45.713680 -115.059140 876.766780 55.344350 -12.852980 705.204410 1586.816650 73.873620 720.310120 1588.992070 -64.162570 712.535520 1764.240110 10.553590
+86 1.417000 614.491390 1059.827510 150.990800 636.561400 1056.570800 -108.729130 425.292720 1053.088130 11.686130 555.325260 735.095950 209.411770 632.740300 665.608760 136.250210 545.671080 613.545470 209.899460 644.917910 752.620060 -158.158310 742.455690 741.187190 -93.651190 673.310790 648.771670 -140.055760 431.582950 488.048100 199.897020 464.073210 403.835820 153.888080 377.268460 419.672970 202.378170 701.548710 440.053100 -132.620790 750.123540 394.184020 -73.984560 684.760680 396.101350 -140.278520 117.713910 280.102540 95.369130 204.956190 161.003520 79.000380 165.151060 158.085430 178.545960 242.908580 33.596310 126.000300 628.363100 74.267800 -42.676160 794.781130 76.263110 -11.094770 781.958250 69.683090 -109.045170 908.800290 55.668190 -38.562220 645.372500 1365.791260 -10.459140 540.530460 1462.813110 193.776370 577.034610 1464.569700 -224.425060 553.656430 1264.546630 250.517470 589.227540 1224.349850 -245.262860 515.147090 1162.046630 286.512510 536.610780 1129.525880 -278.776640 672.457150 941.715150 289.269740 634.455990 926.931820 341.167850 632.722350 897.423160 -231.320390 586.132320 888.289310 -290.130740 179.770800 68.634590 196.371780 218.041310 67.112870 91.990910 845.065120 44.705690 -115.795170 858.426820 54.158460 -13.540070 703.995970 1590.293330 70.700710 719.564090 1592.375610 -67.982430 711.051940 1767.331300 6.761930
+87 1.433000 613.344480 1062.080690 148.390850 636.651370 1059.222530 -111.239480 425.563840 1055.096070 9.004790 570.837400 736.975950 206.978640 648.076170 669.775450 135.787990 564.331850 614.135190 209.446500 640.735600 754.377320 -160.850040 734.456730 738.898500 -95.643840 665.089360 649.727910 -142.597410 454.464780 491.534970 200.567870 485.343960 406.506900 154.483900 399.304570 424.551120 202.590610 689.436280 438.980070 -134.898130 736.368470 393.305330 -77.012970 671.453980 396.003970 -142.248320 138.048720 297.189850 93.125080 217.931340 171.740070 80.069190 176.565640 172.874020 178.507350 247.488430 36.790100 129.411390 609.781070 74.361630 -43.191380 776.044920 75.670240 -11.561820 763.160710 69.244020 -109.552510 890.118230 54.217230 -39.288360 644.804260 1368.792850 -12.206340 540.201110 1466.087400 191.447160 578.054380 1466.699100 -227.060070 551.021970 1268.103760 248.189760 595.169560 1226.638920 -246.925320 510.513430 1165.664670 283.499880 545.225220 1130.873290 -281.011290 660.456600 941.049190 290.087310 619.339780 927.777530 340.048310 642.412540 900.129210 -232.347180 596.430360 890.578550 -291.436650 183.423710 81.935730 195.618700 225.086000 77.157600 94.483860 826.512510 44.305580 -116.329220 840.016660 53.470840 -13.913360 704.028200 1593.741090 67.999070 718.685300 1595.628420 -70.866150 709.500550 1770.915650 3.260980
+88 1.450000 611.543580 1064.871830 145.460910 636.750310 1062.026860 -114.231440 425.453550 1057.454220 6.540380 583.547180 738.575990 205.932530 662.634890 675.527830 134.859470 582.279300 617.918820 209.427890 635.622190 756.098080 -163.269010 727.764040 737.847410 -97.506000 656.702820 650.504210 -144.646710 476.983150 496.921230 198.141220 506.287660 410.087550 154.567490 421.162810 430.293610 201.799730 675.752380 439.061310 -135.832470 722.188720 392.708860 -78.753660 657.189030 395.990390 -143.963560 158.182600 309.678440 90.576450 234.630910 181.341630 80.625850 192.678990 185.736330 178.520220 260.948790 43.205420 133.024120 590.916140 74.619560 -43.567560 757.516360 75.536420 -11.915760 744.228150 68.873340 -109.931020 871.326230 53.250930 -39.845110 643.246340 1371.254520 -14.448440 537.582460 1468.894650 189.092880 578.546260 1469.795650 -228.020130 547.649050 1270.435180 245.794450 600.875850 1229.561520 -247.649670 505.630370 1169.269900 280.892460 553.341740 1132.946780 -282.066960 649.637330 940.575320 290.211000 607.390320 928.590270 339.681000 650.669920 902.654970 -232.211470 607.054320 893.492920 -292.564150 199.339280 95.340290 198.845640 239.592480 87.090790 97.062190 807.810120 44.161640 -116.688030 821.530760 53.009330 -14.108090 702.695980 1597.459350 65.595850 718.660640 1599.100460 -72.034070 707.147830 1774.584470 0.483820
+89 1.467000 613.852600 1069.591310 141.903410 636.220760 1063.956050 -116.909650 425.127900 1060.106450 4.454800 593.809880 743.627010 204.853490 675.439940 682.577210 132.695390 598.852290 621.200810 207.784620 629.467410 757.717160 -165.474720 720.700680 737.670780 -99.577350 646.395630 651.079160 -147.270030 498.896670 503.942870 197.042770 527.812990 416.941560 153.151580 440.842160 439.160430 199.899810 660.812010 439.068790 -137.825060 707.215390 392.242430 -80.150440 642.084840 396.006680 -145.320400 177.834090 317.418150 88.054220 254.575200 189.188550 80.684360 212.882520 195.787320 178.519010 282.439120 51.415230 136.385590 571.776550 74.981740 -43.876290 739.132870 75.700620 -12.224210 725.273130 68.549140 -110.242500 852.509460 52.578220 -40.326210 642.832340 1374.688600 -15.235960 535.967040 1471.758420 187.432800 579.678590 1473.041380 -230.359020 544.584660 1273.761840 244.100130 605.616940 1233.013670 -248.307950 500.352050 1172.852660 278.566280 559.665770 1134.927490 -282.380130 638.632870 940.364140 289.822780 595.994380 929.882930 339.437130 660.745970 906.221500 -232.078160 618.502870 896.428590 -293.512790 224.172160 106.754590 200.832380 260.700130 95.874740 99.374910 789.020510 44.015660 -116.945330 802.822510 52.591460 -14.358970 702.246090 1601.138180 63.528580 717.656490 1602.468990 -74.320880 705.163020 1777.831790 -1.739620
+90 1.483000 612.825380 1073.749510 139.673390 634.665220 1066.524660 -119.904500 424.618010 1062.915890 2.815170 606.774900 747.965880 203.699050 688.723080 690.823550 130.541120 614.689270 626.576840 206.611300 622.292850 759.205810 -167.632750 712.143010 736.343750 -101.032360 635.739200 651.892640 -148.423130 518.965820 511.162570 193.705170 548.414490 423.039000 153.185090 462.373140 446.454530 197.647690 644.815670 438.804350 -139.776060 690.793700 391.489260 -81.550960 626.245000 396.020170 -146.235320 197.515530 320.703090 85.896930 277.246120 194.720180 80.368170 236.336810 202.419070 178.404590 310.132390 59.273940 138.898320 552.539250 75.310310 -44.176540 720.744450 75.973820 -12.540680 706.395630 68.313440 -110.490360 833.680050 52.076320 -40.715470 640.157290 1377.109010 -16.043610 532.912110 1474.584720 185.920390 579.864990 1476.162110 -231.183360 540.491880 1276.551760 242.633480 609.891360 1236.544430 -248.127410 494.609920 1176.349490 276.404080 566.295410 1138.082890 -283.369140 627.663940 941.112240 288.924870 584.990170 931.854680 337.890590 669.074160 909.461180 -231.644810 626.812680 900.711000 -292.929260 252.091640 114.964680 202.467040 286.907750 102.534360 101.025020 770.163270 43.773770 -117.177250 783.798100 52.172860 -14.823000 700.432980 1604.490360 62.157850 716.108640 1605.870610 -76.416110 703.952090 1781.386110 -3.608540
+91 1.500000 612.627750 1077.473020 136.847050 632.336980 1068.056640 -122.921810 423.879150 1065.677000 1.583370 614.474060 752.924320 202.505460 701.144900 698.992250 127.629880 630.786320 632.399290 204.028380 614.285340 760.549500 -169.901980 705.100460 736.389160 -102.318750 625.202090 652.486880 -148.783250 540.232790 516.415470 191.133450 568.499760 429.241700 151.130620 482.118840 450.723790 195.802780 630.146730 439.068880 -140.434770 674.416380 390.836400 -82.157230 609.841740 396.048830 -146.747420 217.833080 319.896420 84.283530 302.199890 197.536870 79.836890 262.190580 205.314150 178.102830 342.148440 65.139570 140.229870 533.362610 75.555070 -44.461210 702.320740 76.234980 -12.885340 687.627990 68.203440 -110.645940 814.787780 51.652730 -40.963860 639.024600 1379.712280 -16.994450 530.587890 1477.038820 183.828380 580.755920 1479.735350 -232.160540 535.227540 1279.406010 240.966290 614.754210 1240.444460 -248.235570 488.464260 1179.623290 274.319060 572.338010 1141.245970 -285.002840 617.900210 942.375850 288.152340 573.133730 933.148990 337.140010 680.707280 916.066830 -231.108840 640.434330 905.261050 -293.510220 281.638400 117.710830 203.878130 316.856200 106.416840 101.727940 751.267520 43.476180 -117.390440 764.562620 51.819180 -15.439650 699.079410 1607.481450 61.322570 715.020080 1608.930420 -77.114670 702.030210 1784.481320 -4.661160
+92 1.517000 612.396670 1081.436400 133.922930 629.407350 1069.095340 -125.613040 422.876530 1068.161990 0.680070 625.936580 757.888490 199.996150 711.895390 706.593440 125.107120 644.587040 638.234620 203.188350 605.638850 761.701170 -172.196780 696.591800 734.856080 -102.926160 614.617430 653.082820 -150.569900 559.135990 520.664310 190.615690 589.237920 433.515200 149.155150 502.770570 453.969480 195.338790 612.820620 439.177980 -140.635700 656.663760 390.379730 -83.246770 593.135440 396.113740 -147.003100 239.136990 315.243320 83.228800 329.158230 197.471620 79.223720 289.867460 204.431200 177.606030 377.135530 68.316380 140.394820 514.242250 75.776110 -44.637570 683.842900 76.382950 -13.205430 668.936950 68.215650 -110.715780 795.787170 51.243050 -41.101650 637.283020 1382.699710 -17.421800 528.438600 1479.342040 183.198120 580.503110 1483.099980 -233.122890 529.264100 1281.780030 239.578600 618.173830 1244.265500 -248.695950 482.033390 1182.523190 272.259860 578.120540 1144.383910 -284.879970 608.356080 943.280400 286.786530 563.692140 935.446780 335.897610 693.059270 922.636230 -229.755480 651.332580 910.057310 -292.351260 314.257230 118.318400 204.035250 349.791380 107.362910 101.389600 732.340940 43.181100 -117.547760 745.324400 51.584510 -16.039870 696.130490 1610.186770 60.480550 713.547000 1611.478390 -77.865800 700.289060 1787.182370 -5.608470
+93 1.533000 611.764650 1084.803340 130.838040 627.497920 1070.099370 -128.536010 421.602780 1070.205440 0.022350 637.218260 762.990840 198.550030 722.322810 714.806520 122.552000 658.711240 643.952330 201.968890 596.532960 762.597720 -174.167830 684.285460 733.104550 -102.802250 602.909300 653.819820 -152.260130 576.440980 523.441960 188.161330 610.537050 439.005860 146.822400 523.814880 454.713230 192.495560 596.699580 439.148860 -140.674530 639.670900 389.623900 -83.764200 576.372560 396.220180 -147.140960 261.636960 306.893890 82.684300 358.029210 194.591050 78.602470 319.244080 199.948750 177.005720 414.373290 68.773150 139.553540 495.103090 76.015320 -44.661420 665.186160 76.322530 -13.393550 650.248840 68.303280 -110.741680 776.702700 50.817470 -41.217950 636.883610 1385.732060 -17.982330 524.963440 1481.714600 181.607910 581.096980 1486.218020 -233.646960 524.250790 1283.903080 238.509000 620.686520 1248.271360 -249.275190 475.443940 1184.942990 270.196170 582.960020 1147.112920 -286.138400 598.208620 944.376340 285.093230 554.518980 936.724000 334.117610 702.486940 928.186460 -228.092040 662.339900 914.912780 -290.922820 347.966490 115.248340 204.381990 385.418980 105.658030 100.127250 713.360900 42.891620 -117.648900 726.212890 51.431450 -16.498220 695.863220 1612.450560 59.430130 712.035830 1613.697020 -78.830250 699.035770 1789.350710 -5.113790
+94 1.550000 609.342350 1086.105960 128.300600 624.441470 1070.383910 -130.983840 420.064670 1071.730470 -0.444440 645.683650 768.423100 196.881270 732.669490 722.422490 119.542890 671.460210 649.257570 200.053910 587.137330 763.215880 -175.524080 674.235170 731.772160 -104.764390 590.680240 653.438540 -153.147710 594.200560 526.154850 187.186550 629.332700 442.713170 145.002200 542.560610 455.789220 191.816360 580.099790 439.419460 -141.107010 624.137450 389.883270 -84.668430 559.622620 396.367030 -147.221370 285.628200 295.024380 82.597340 388.848180 189.133970 77.992820 350.627500 192.203980 176.467090 453.644650 66.909350 137.970260 475.918520 76.259190 -44.606750 646.230100 76.036830 -13.365220 631.471070 68.419620 -110.747930 757.620540 50.389330 -41.370610 636.623540 1387.545530 -19.080880 522.200500 1482.828610 180.577290 580.639650 1489.033940 -234.350880 519.499210 1285.451900 236.717790 622.812740 1251.281010 -249.861770 468.856720 1186.831540 268.120760 586.794070 1149.356320 -286.628020 589.723510 945.681400 284.137790 543.815730 938.031430 332.378850 712.467710 934.760740 -225.845500 673.515140 919.536250 -289.346740 385.486360 108.903060 203.325470 423.393220 101.827580 98.313350 694.308650 42.594640 -117.747100 707.254760 51.288910 -16.773010 694.301450 1614.058230 58.989820 711.087590 1616.054810 -78.760410 696.734070 1791.445190 -5.461990
+95 1.567000 609.980770 1088.596310 125.741840 621.704220 1070.221920 -133.563460 418.276460 1072.717770 -0.713810 652.214050 773.735110 195.657410 740.573550 729.802310 116.991970 682.192750 655.078670 198.189130 577.566960 763.605040 -176.354000 664.089230 729.846740 -105.313210 578.094360 653.840390 -154.267290 608.730100 527.614380 184.074950 648.023440 446.448580 142.722230 561.689760 454.786960 190.964110 564.043150 439.024960 -141.223650 607.907290 389.511050 -85.461930 542.906370 396.548460 -147.300480 311.440670 279.896790 82.908040 421.681210 181.439640 77.403310 384.449280 181.687940 176.124650 495.023280 63.464820 136.080230 456.729520 76.492660 -44.581380 627.011600 75.608130 -13.047560 612.526980 68.568040 -110.751790 738.636050 49.994140 -41.552090 634.909850 1388.336300 -19.724440 520.245480 1483.064700 179.641910 580.192990 1490.737180 -234.921260 514.216610 1286.162350 235.869670 624.660950 1253.203370 -250.623280 462.461670 1188.193480 266.063050 590.173650 1151.759890 -289.064970 581.821230 946.432980 282.803710 535.844540 938.952090 330.108520 722.170230 941.923340 -224.383290 684.915530 923.772710 -286.520540 424.827790 101.429690 202.472730 463.086490 96.449180 96.535340 675.204710 42.316090 -117.900600 688.419070 51.116280 -16.913820 692.506230 1614.954350 59.261630 709.851200 1617.522090 -79.230740 695.150510 1792.246220 -5.330870
+96 1.583000 608.600340 1089.638310 123.663570 619.073300 1069.673830 -135.737580 416.242610 1073.196290 -0.783740 659.204160 778.521730 195.244710 745.912410 735.648620 113.969870 692.234860 660.573240 196.832820 567.935120 763.840150 -177.053530 656.971070 729.186040 -107.896130 567.080140 654.519710 -155.130710 621.886170 528.612240 184.579830 665.771000 449.507290 140.629100 578.248780 452.275700 189.941670 548.069210 438.975460 -142.351230 591.103210 389.010560 -85.378430 526.393740 396.759090 -147.453670 339.292570 261.837520 83.515240 456.553680 171.917450 76.888430 420.776180 169.075700 176.018400 538.600460 59.325530 134.416950 437.612580 76.718560 -44.679910 607.681640 75.132680 -12.301620 593.378420 68.785900 -110.802610 719.777650 49.639480 -41.714110 633.821470 1388.886600 -19.949210 518.192080 1483.103760 178.863940 579.682310 1492.336300 -235.559160 509.245670 1285.840330 235.121750 625.961980 1255.820920 -251.105610 456.397830 1189.078000 264.064580 593.028380 1152.677490 -289.083220 574.666200 946.921810 281.447780 527.949770 939.450680 328.239470 731.699160 947.713930 -222.210300 692.643980 928.334110 -283.515230 467.229030 92.282780 201.789570 503.996890 90.075550 95.368230 656.106260 42.096890 -118.123620 669.586000 50.868230 -17.013910 692.095150 1616.286500 59.021260 708.230220 1618.581790 -78.825590 692.955750 1792.981080 -5.476190
+97 1.600000 607.877620 1090.688840 122.274510 618.594060 1068.891970 -138.112200 413.967410 1073.249510 -0.753860 665.262820 782.277830 193.526060 749.275210 741.274480 111.592200 699.836790 665.298340 195.189820 558.435490 763.938110 -177.924330 647.759830 727.171390 -109.771560 554.669430 654.557980 -155.422240 633.917540 527.704350 182.137730 683.504150 452.269010 139.733220 597.447940 448.792880 188.458660 532.385070 439.555050 -142.486770 575.788700 389.209290 -85.652970 510.257510 396.992460 -147.678020 369.301030 241.220460 84.220960 493.433840 161.064730 76.576150 459.197480 155.159440 176.136580 584.283690 55.337440 133.487720 418.667210 76.942570 -44.960150 588.377260 74.649480 -11.041710 574.060360 69.037470 -110.954620 700.950930 49.288490 -41.830630 632.839420 1388.998540 -20.078450 517.632510 1482.801880 178.637860 579.243100 1493.048340 -235.544390 504.735080 1286.118770 233.350130 627.299990 1256.963260 -251.830810 450.713040 1189.517330 262.139680 595.511540 1153.290160 -290.430660 567.198910 947.236690 280.269530 520.216670 939.011230 326.395050 741.052920 954.723880 -218.615770 705.667240 932.592960 -282.503780 512.004210 81.900650 200.866460 546.269900 83.283600 95.145970 637.066280 41.935700 -118.385140 650.574280 50.478740 -17.117280 690.426640 1616.467530 59.394250 707.134950 1619.066890 -78.636510 690.924380 1793.315920 -5.029050
+98 1.617000 605.543090 1090.261470 120.627890 614.812500 1067.949340 -139.287400 411.510070 1072.992070 -0.796080 667.158510 785.081180 192.032990 752.210880 745.857420 108.872550 704.871400 668.441410 193.008060 549.281130 763.867610 -178.941160 635.712040 725.015630 -110.361510 543.937260 654.514340 -156.360470 643.682370 525.971250 180.653260 699.251460 455.345860 137.657580 612.856690 444.709530 187.412260 516.834230 439.380100 -142.905400 560.298950 389.173770 -86.747000 494.481900 397.229950 -147.885470 401.567350 218.511280 84.746430 532.239620 149.494170 76.637150 499.250640 140.719830 176.494660 631.762630 52.232860 133.730210 399.982390 77.135560 -45.315500 569.166990 74.163710 -9.629270 554.782780 69.049300 -111.216810 682.015200 48.906700 -41.935810 632.023740 1387.995610 -21.102720 516.542240 1481.102540 178.390810 578.510620 1493.316410 -236.102050 501.388000 1285.451420 232.196400 628.102420 1257.623660 -252.181210 445.426090 1189.482060 260.287110 596.966610 1153.221310 -290.584990 561.763000 946.377560 279.109890 513.244320 938.096560 324.104030 749.957400 962.072940 -217.226000 715.059940 936.636290 -278.568760 556.867800 72.066730 200.868820 590.453860 76.720380 95.961740 618.106630 41.791490 -118.659750 631.311460 49.953230 -17.216690 689.845340 1616.213260 59.517150 706.361940 1619.136110 -78.621500 688.993160 1793.014040 -4.658750
+99 1.633000 603.933720 1089.135380 119.516350 612.930110 1065.288940 -140.174960 409.016880 1072.495850 -1.021810 668.461300 785.939030 190.881060 754.424010 749.605220 106.440520 709.923580 670.318480 191.067380 540.593080 763.603450 -179.921490 629.161130 722.969670 -112.657330 532.504090 654.148130 -155.756420 650.883120 524.220460 179.003280 713.611510 456.992160 136.648860 628.720640 439.936890 186.610790 501.434780 438.843080 -142.585720 544.942690 387.904300 -86.578360 478.964870 397.451750 -148.021300 436.250430 194.383360 84.878490 572.818910 137.933030 77.211440 540.705080 126.487400 177.159260 680.542910 50.622590 135.453290 381.534060 77.231930 -45.435720 550.002930 73.685890 -9.393220 536.002320 68.175270 -111.529260 662.919620 48.513070 -42.073160 630.029240 1386.550170 -21.545720 514.886110 1480.217900 178.160810 577.777470 1493.289430 -235.544680 497.695190 1284.108760 231.177720 628.442380 1257.931150 -252.848110 440.590730 1188.920040 258.543000 598.433410 1153.527830 -291.024170 553.330380 944.830930 276.829010 507.521420 937.284000 321.961120 757.672730 967.932250 -214.170390 724.185730 940.816530 -275.974090 604.512760 63.437640 202.020130 636.679260 71.039180 97.808030 599.222900 41.653760 -118.954600 611.948610 49.431610 -17.327010 689.044920 1615.383420 60.025880 706.501100 1618.517940 -77.817280 687.029170 1792.673830 -3.375110
+100 1.650000 601.016240 1087.035160 118.725510 610.710210 1063.779420 -140.847310 406.693420 1071.724850 -1.379920 669.265200 787.170590 189.500080 753.898930 750.723750 103.648610 711.436400 671.976380 189.558650 532.391910 763.111940 -180.730220 619.980830 720.618290 -114.201960 521.871950 653.419980 -156.334490 658.348080 519.309750 176.139720 724.815310 457.267850 135.183990 642.049260 433.707640 184.923020 486.526280 438.849580 -142.715010 529.390870 387.532990 -86.973120 463.665920 397.664280 -148.125890 473.506740 169.793110 84.601430 614.891540 127.188070 78.337870 583.390500 113.174320 178.203480 729.983340 51.040270 138.670640 363.140110 77.243140 -45.128040 530.564330 73.159900 -12.978770 518.307860 65.461330 -111.784030 643.749390 48.171780 -42.238120 629.290650 1385.205570 -21.352990 513.532960 1478.315060 178.429340 576.531490 1492.269040 -234.900420 495.708040 1282.667850 230.378950 628.458250 1257.627440 -253.095180 436.314510 1187.814580 257.005280 599.514100 1152.713990 -291.724460 550.342350 943.790710 275.965700 502.662110 935.676150 319.849760 765.403750 974.447330 -211.408160 732.783940 945.186650 -273.574620 653.947200 57.635440 205.410450 684.364690 66.858200 100.601510 580.414120 41.593390 -119.275720 592.758300 49.096470 -17.497200 688.031490 1614.467160 60.661890 705.080320 1618.021730 -77.629880 684.910950 1791.705320 -2.413950
+101 1.667000 599.832280 1085.584350 118.709380 608.722660 1061.809200 -140.804720 404.721950 1070.579960 -1.699590 668.572630 786.811710 188.303820 753.887150 750.649170 100.719960 711.659180 671.294980 186.327290 524.655760 762.332400 -181.259060 612.410030 718.143010 -114.124660 509.964970 652.999510 -155.776690 660.080510 514.174260 174.753280 735.987730 457.221310 134.663360 654.725160 426.490020 183.207980 471.520080 438.904880 -142.640530 514.428770 387.338130 -87.925700 448.583130 397.898740 -148.287630 513.235110 145.899410 84.110000 657.985350 118.087450 79.924360 627.024170 101.507770 179.638030 779.353940 54.005820 142.969740 344.557460 77.333950 -44.585690 510.247710 72.376080 -23.180330 502.041380 60.206800 -111.939840 624.661070 47.938470 -42.414500 628.687260 1383.052610 -20.988330 513.602540 1476.327760 178.740110 575.635560 1490.765140 -234.411960 492.939580 1280.601930 229.781940 628.443660 1257.072270 -252.866760 432.733760 1186.190060 255.794890 601.369690 1151.291750 -291.829130 545.889280 941.453920 274.559840 497.753360 933.907100 317.963590 771.417540 980.394710 -208.953950 741.469060 948.332760 -270.101170 700.214720 53.761260 208.586460 732.609190 64.827040 104.081630 561.644470 41.676290 -119.617170 573.923830 49.023520 -17.766530 687.468260 1612.953740 61.449240 704.904240 1617.294560 -76.694820 682.780090 1790.313720 -1.324770
+102 1.683000 597.134950 1082.324580 118.091250 606.764100 1059.229610 -140.855290 403.167080 1068.999880 -1.849060 665.923400 784.310060 186.772550 750.523680 748.847960 98.147600 709.577640 669.648990 184.842060 517.356020 761.219240 -181.401950 603.810300 715.323120 -114.724790 502.307220 652.441710 -156.907880 667.724730 505.810970 172.252110 744.784550 456.884120 132.744610 665.750430 418.496120 181.699160 457.732150 439.065770 -142.956540 499.541350 386.848820 -87.282050 433.674560 398.182980 -148.577390 554.901430 123.864170 83.786800 701.396550 111.400240 81.766120 671.221190 92.241900 181.388930 827.868840 60.068600 147.547650 325.684200 77.661120 -44.103190 488.966220 71.273020 -38.714930 486.582000 53.326770 -112.062520 605.747190 47.807400 -42.635510 628.291750 1380.551030 -20.667080 512.862980 1473.685420 179.411710 575.529660 1489.120850 -233.886380 490.918670 1278.590450 229.150670 626.491150 1256.129520 -251.985980 429.932430 1184.077510 254.989070 602.040160 1149.961790 -292.222350 543.354000 939.308290 273.091580 494.335210 931.045530 316.618840 776.672240 985.531800 -206.828990 748.054570 951.960570 -267.568940 748.662480 51.817500 212.419010 780.520870 65.685660 107.759230 542.734310 41.799910 -119.958080 555.392760 49.128190 -18.132220 685.664730 1611.469730 62.466100 704.994450 1616.141480 -75.336210 680.544310 1787.645390 -0.042410
+103 1.700000 596.296200 1078.939940 118.676730 605.724490 1055.859620 -140.980000 401.976380 1066.979250 -1.817140 661.278380 779.959230 184.356090 746.060360 744.640380 95.877430 704.960390 665.440980 183.298250 510.448760 759.810000 -181.152010 595.902530 712.902280 -114.556260 493.645050 651.958620 -157.349610 670.325990 496.890660 169.938570 752.313480 455.491700 130.415070 677.928160 409.963810 180.111270 443.281280 438.815220 -143.921080 484.679080 386.267700 -88.031710 418.864440 398.530460 -149.018890 597.609740 104.642140 84.159840 744.190730 107.726760 83.593380 715.456420 86.094750 183.336000 874.658690 69.762720 151.396840 306.675230 78.206320 -43.760030 468.066650 70.391240 -51.396190 469.973390 48.226460 -112.190350 586.956670 47.701390 -42.957620 628.236020 1377.808720 -19.598400 512.516780 1470.768680 179.751920 575.175780 1487.083620 -232.838760 488.779020 1275.467900 229.398240 627.535520 1253.712770 -252.257740 427.867000 1181.478880 254.586730 602.679630 1147.929080 -292.554170 540.532470 936.622740 271.622040 491.191160 927.986690 314.767820 780.291560 988.937740 -204.164600 753.869450 954.365540 -264.591520 795.800110 54.633840 215.296550 827.183900 70.168020 110.978080 523.493840 41.752490 -120.227850 536.929020 49.245050 -18.534470 687.324520 1609.275760 63.863770 703.892820 1614.547970 -74.280690 677.745300 1786.563960 1.520620
+104 1.717000 594.370120 1075.598390 119.114560 603.795170 1054.198850 -140.594860 401.077820 1064.537110 -1.650540 655.806400 774.413700 181.665910 741.213500 739.476680 93.375470 701.008730 661.215210 180.766660 503.878200 758.260250 -180.665130 588.048950 710.392640 -114.116770 485.043910 650.812260 -157.978760 671.574580 488.201170 168.466660 757.986150 454.489380 128.525470 688.482060 401.933900 179.367800 430.426450 439.080570 -144.611820 470.480010 386.034940 -89.369720 404.148500 398.965030 -149.597030 640.210330 88.870770 85.727100 785.246580 107.365280 85.122840 758.944460 83.595100 185.312930 918.739500 83.372080 153.593630 287.770080 78.882390 -43.539010 449.319270 70.493580 -52.515590 450.413880 48.403860 -112.355230 568.161250 47.532960 -43.390850 627.595030 1374.766480 -19.015160 513.013310 1467.485600 180.549260 575.129390 1484.402470 -231.896260 487.113430 1272.149050 229.437960 626.624570 1252.106810 -251.705430 426.386200 1178.366580 254.510940 601.944090 1145.380370 -291.949950 537.446230 932.631410 270.753720 489.620760 924.720760 314.430240 785.216800 993.053470 -201.639050 758.562680 956.563540 -261.758970 842.105590 60.367310 217.941930 871.503910 78.702290 113.054550 504.072330 41.490620 -120.408210 518.338010 49.259230 -18.898860 685.856080 1607.039790 65.108020 704.159120 1613.083620 -72.154850 675.132870 1783.468990 3.825580
+105 1.733000 592.653380 1071.266360 119.214080 602.385310 1051.063110 -140.517970 400.449340 1061.727170 -1.358550 650.978090 768.417970 179.603850 734.094910 732.228520 90.500240 694.127320 654.438720 179.506070 497.622740 756.765930 -180.198810 580.755190 707.157170 -114.104760 476.336460 649.791200 -158.473040 674.058470 477.964630 166.407960 762.108030 453.189880 126.052420 699.487550 394.699100 178.359940 415.801180 438.971980 -145.299580 455.703830 384.685330 -89.883320 389.657290 399.545410 -150.274540 681.320370 76.849370 88.647880 823.338990 110.183430 86.096590 800.576900 84.892930 187.071010 959.024900 100.580920 153.559340 269.059810 79.687680 -43.503640 432.834350 71.663820 -42.464980 428.421480 53.578910 -112.720990 549.263550 47.272460 -43.889370 628.350280 1371.958500 -18.927930 513.018860 1463.846560 182.588730 575.234190 1481.355100 -230.003480 487.672850 1268.686280 230.014280 626.331850 1249.102420 -251.514500 425.340180 1174.729370 254.661790 601.215450 1142.906370 -291.755000 536.636780 929.018800 269.609160 487.296840 920.428160 313.348820 788.173160 996.659300 -199.237240 762.343380 957.972660 -259.029910 885.599790 70.705120 218.160320 912.226560 91.050750 113.458900 484.855260 41.157400 -120.666880 499.587490 49.164600 -19.230670 686.441890 1604.716550 67.097550 703.728210 1610.899900 -70.847050 672.507510 1780.847660 5.634190
+106 1.750000 592.258540 1066.692380 119.495930 601.862610 1047.920650 -140.144320 400.096530 1058.640500 -0.868090 647.148800 762.359920 178.756970 726.806340 723.450200 87.417300 686.488160 647.462830 178.497850 491.708620 755.429080 -179.944810 574.476750 704.773620 -114.281560 467.965480 649.564510 -158.687840 675.584050 469.921690 165.553120 765.275570 452.285280 123.267310 707.735290 388.795720 177.666720 402.952610 439.754880 -145.925140 442.086490 384.739840 -90.708240 375.606540 400.348880 -150.989090 719.365170 68.507240 92.529930 857.244870 115.537730 86.308180 838.979060 89.589260 188.302990 994.395020 120.259220 151.173510 250.485150 80.684530 -43.768100 417.095120 73.294910 -29.437810 406.275330 60.100540 -113.433170 530.252440 46.945510 -44.393810 627.592040 1367.089600 -16.114750 512.675720 1459.851560 183.501660 575.360600 1478.468380 -229.056560 487.354490 1264.516720 231.060230 624.728150 1245.847780 -250.315350 424.657410 1170.623540 255.033160 600.541320 1139.356570 -291.302670 535.954900 925.113040 269.709290 486.993160 916.229190 312.106020 789.238530 997.687990 -197.127010 762.511780 958.341670 -255.563490 927.134950 83.660450 218.517300 948.142760 106.138660 111.960670 465.888210 40.781800 -121.186740 480.725980 49.010820 -19.626920 686.408260 1601.830200 68.666740 702.619450 1609.106810 -69.247410 669.171330 1777.936890 8.238200
+107 1.767000 592.723210 1062.524540 120.219720 601.205930 1044.806150 -139.193570 399.992370 1055.368040 -0.060250 642.450560 755.702210 178.120380 719.079960 715.343570 84.730160 681.019840 639.891910 175.643710 486.176850 754.234250 -179.885670 567.794740 701.649410 -115.900750 460.181610 648.268920 -158.572330 676.998660 461.631350 165.268710 767.164120 452.017120 121.148700 715.739620 385.233430 177.142290 390.539790 440.324800 -146.665280 430.736820 384.539860 -93.881590 362.233950 401.426820 -151.670070 752.714420 63.347740 96.516290 885.852540 122.287290 85.623520 872.621340 96.609120 188.705890 1023.822510 140.508590 146.766370 231.975250 81.943730 -44.373700 400.760930 74.825520 -20.278790 385.583100 64.879030 -114.385350 511.203280 46.597050 -44.864200 627.926700 1363.225100 -14.808980 512.497800 1455.295530 185.744140 576.301820 1475.264890 -226.736830 485.945590 1259.525020 232.406370 625.899600 1242.972050 -249.620990 424.327670 1166.161500 255.731830 600.833310 1136.504390 -290.562160 535.874390 920.495730 269.454710 487.714290 911.214170 312.329590 793.868590 998.839230 -195.683460 764.549870 957.877260 -253.653310 962.793580 99.005750 216.036210 978.263920 122.194850 108.667820 446.830290 40.238250 -121.931440 461.805240 48.830860 -20.174080 685.947450 1599.097660 70.579770 703.398620 1606.198360 -66.432870 665.993710 1775.145390 10.330540
+108 1.783000 594.204710 1058.440060 121.077680 600.806700 1041.556520 -139.127040 400.068510 1051.994380 1.154100 640.439090 749.644230 176.403870 713.692320 708.224490 81.137000 676.161440 633.454770 175.161990 481.096190 753.140690 -179.855620 563.162290 698.462280 -117.204680 453.232480 648.001280 -158.938000 678.230290 455.319090 164.073490 768.076230 450.857180 120.119490 722.682560 381.206970 177.200580 378.975860 440.947880 -147.376210 415.521180 383.245480 -93.055120 349.796230 402.769200 -152.295320 779.818050 60.477380 99.615970 908.276860 128.936690 83.999720 899.951720 104.186660 188.059970 1046.543700 158.866290 141.029950 213.515500 83.579910 -45.272650 383.504460 76.075050 -16.506650 366.434450 67.224130 -115.291510 492.206540 46.255550 -45.281940 627.381770 1359.556030 -12.383760 512.426270 1451.090580 187.575200 577.133360 1471.937500 -224.158460 486.905790 1255.260740 233.942750 625.798890 1239.296140 -248.694980 424.351560 1161.451780 256.832400 600.356810 1133.366820 -289.888730 536.657100 915.716370 269.134490 488.064790 907.135310 313.041600 793.848140 997.996340 -194.569840 768.915890 956.455260 -253.670360 990.139650 117.019500 212.638200 1001.845460 137.011750 104.024060 427.533390 39.541120 -122.714360 442.903930 48.642620 -20.872820 685.337400 1596.843260 73.783550 702.500790 1603.954470 -63.609780 663.918210 1772.419310 13.422690
+109 1.800000 594.991700 1054.360960 121.728100 600.881770 1038.566530 -138.598690 400.277650 1048.624150 2.799970 639.400940 745.466370 175.953190 710.219060 702.334720 79.206390 673.936710 628.258540 173.778550 476.616790 752.149960 -179.716130 557.230350 695.918700 -118.441320 446.842680 647.491880 -159.354280 679.667720 450.682430 165.216950 768.533260 449.614230 118.559630 728.080930 378.532470 177.089340 369.296720 441.845180 -147.922650 405.538940 383.020320 -94.536940 338.594210 404.305760 -152.910020 799.300780 58.870980 101.127780 923.987980 133.911960 81.497740 919.661930 110.190970 186.320830 1062.225710 172.603620 134.814420 195.137560 85.791710 -46.437490 365.615690 77.098590 -16.552110 348.145390 67.826100 -115.957140 473.277190 45.911070 -45.639010 627.643680 1355.558590 -10.151380 511.800320 1446.769650 190.041790 577.585880 1468.919920 -221.698670 487.267640 1250.819210 236.070370 626.097410 1236.453610 -246.182010 424.718570 1156.603760 258.302700 599.749510 1130.959840 -288.964320 537.655030 910.937320 269.851470 489.820130 902.640810 313.942660 791.733580 994.734310 -191.481110 767.309140 954.263730 -251.237430 1010.101930 131.491440 207.096970 1018.344060 148.151080 98.753010 408.182100 38.882870 -123.385210 424.167760 48.470890 -21.644930 685.053220 1594.291750 76.766380 701.990970 1601.427370 -61.001340 661.565980 1769.562870 15.856770
+110 1.817000 596.195560 1050.652340 122.560510 600.402040 1036.688110 -138.101900 400.668820 1045.381710 4.825620 641.333980 742.032960 175.548570 709.268430 697.995000 77.475810 675.364870 625.117980 172.537810 472.943390 751.282780 -179.422230 555.179810 693.956670 -120.882870 441.500640 647.102660 -159.090000 683.615910 447.961940 165.227650 771.619140 448.980260 116.924390 732.252810 376.248630 177.288160 360.178470 442.536680 -148.768170 396.688750 382.586910 -96.888790 328.894230 405.951110 -153.570130 810.212520 57.791000 100.920110 932.937070 135.921650 78.282620 931.072330 112.888450 183.637300 1071.075930 179.281330 128.816120 176.971650 88.814480 -47.856560 347.535030 78.033130 -18.380460 330.041960 67.553380 -116.408730 454.350250 45.549750 -45.942860 628.305300 1352.304570 -8.483210 512.092410 1441.946040 192.634120 578.803040 1465.739380 -218.831250 487.722990 1246.153200 238.090230 625.788570 1233.129030 -245.219420 425.435520 1151.771000 260.067170 600.690550 1128.293700 -286.900880 539.721980 906.879820 270.409120 491.723630 897.547120 314.837490 791.113340 990.948790 -190.562180 766.073360 950.384340 -249.444430 1022.323180 136.895970 203.445510 1027.544920 153.354600 93.583060 388.949860 38.384300 -123.899180 405.746150 48.315850 -22.387450 684.457150 1591.236690 79.224330 701.587040 1599.412350 -58.404010 659.149410 1767.162480 19.277340
+111 1.833000 597.772830 1048.360110 123.113560 600.015560 1034.290530 -137.951750 401.421720 1042.391970 7.109830 643.742190 739.845340 175.962130 712.538270 696.798160 76.726010 678.982540 623.332030 172.160080 470.244870 750.532040 -178.995800 552.218200 691.220400 -121.464260 438.515500 646.402470 -158.934230 687.254330 445.470830 164.342620 775.199580 446.581120 116.367110 737.004820 374.257660 175.973050 353.394780 442.938900 -149.368560 385.534360 382.040920 -95.809140 320.771970 407.675900 -154.285450 812.501830 57.010340 99.312280 935.614140 134.299800 74.610510 934.447750 111.656950 180.289630 1073.869510 177.587710 123.313060 159.280410 92.862020 -49.428350 329.630580 79.012350 -20.576990 311.872470 67.048050 -116.787180 435.323550 45.180210 -46.223920 628.669370 1349.115480 -4.916240 512.277220 1438.035890 196.028630 579.340210 1463.625120 -216.498550 487.943600 1241.757450 240.190350 623.938600 1230.962160 -242.138990 426.571560 1147.140870 262.046840 599.830380 1126.349370 -285.975680 542.133610 902.909180 272.320920 494.135590 892.956540 315.956150 791.493960 986.844360 -190.804410 766.041200 946.382870 -250.007920 1026.049440 133.181520 199.157900 1029.858030 151.315020 88.897940 369.895630 38.026580 -124.281330 387.656890 48.134320 -23.049440 684.611080 1590.021360 82.829910 701.433720 1597.965090 -54.701800 657.061460 1765.032230 22.590350
+112 1.850000 599.993230 1045.933110 124.602170 601.463010 1032.494260 -136.004150 402.819640 1039.753420 9.566800 650.608090 739.669560 176.963200 718.501460 697.302060 76.718790 687.927980 624.234440 172.594060 468.629610 749.876710 -178.490250 550.694150 689.025150 -122.273250 436.053070 646.002560 -158.920000 693.108760 444.432890 163.845700 780.601560 444.001460 114.260700 740.789370 372.597930 173.726350 348.739470 443.522800 -149.485700 378.646640 381.512240 -96.884440 314.144710 409.536320 -155.014590 807.360230 56.671700 96.797910 932.967530 129.197850 70.803610 931.059630 107.062840 176.636220 1071.777340 168.018340 118.229070 142.366620 98.125360 -50.979800 312.141780 80.104970 -22.495660 293.790950 66.688840 -117.279790 416.077240 44.794330 -46.508990 631.268860 1348.470210 -3.435170 512.480650 1434.429440 199.177510 580.159300 1462.087280 -212.877820 488.895110 1237.988530 242.680370 625.158080 1229.278200 -239.814940 428.246670 1142.893920 264.164920 599.997920 1124.749150 -283.102390 545.586000 899.278020 273.325870 497.166170 889.097960 317.753230 789.780460 981.609620 -190.147960 763.498960 941.984990 -249.462570 1021.594420 122.528540 195.041380 1026.404420 142.355560 84.716320 350.972500 37.732520 -124.557720 369.781400 47.852750 -23.631010 684.549380 1588.346560 85.834630 701.084900 1596.445190 -51.113870 655.299380 1763.254880 26.009300
+113 1.867000 601.184270 1044.718990 126.523190 602.619870 1030.588620 -134.347260 405.108430 1037.541990 12.244920 656.993350 739.587040 177.010380 726.633480 699.495000 77.161800 695.233520 623.980470 171.568570 468.194150 749.320560 -177.906630 550.945190 687.869870 -121.911500 435.017730 645.890930 -158.753160 699.734560 445.181400 161.957980 785.231630 440.116390 111.402120 745.075380 371.115780 171.864350 344.657260 443.972600 -150.459990 374.369450 381.565700 -98.167930 309.005830 411.602750 -155.684480 796.976870 56.986040 94.009610 926.182430 121.523290 67.209030 922.854860 100.358570 173.063580 1066.022090 152.808460 113.504730 126.497040 104.792620 -52.405320 295.249730 81.345420 -23.999270 276.239620 66.700250 -118.135230 396.542450 44.375340 -46.770290 631.309020 1345.847530 1.466560 514.386290 1432.029170 202.485520 581.214480 1460.990360 -208.939010 490.989990 1235.106080 245.618880 626.253780 1228.355960 -236.681170 430.544460 1139.172490 266.393250 600.186220 1123.802980 -281.142360 549.409480 896.563600 275.176210 501.327090 885.443180 319.334840 782.674870 974.228700 -188.370190 758.909550 937.085880 -249.596080 1011.051820 109.915600 189.922900 1018.706360 128.448390 81.001170 331.958650 37.384960 -124.714600 352.021000 47.365880 -24.094120 684.241700 1587.601070 89.938020 700.804140 1596.272090 -47.590470 654.146240 1762.198360 30.029870
+114 1.883000 605.463620 1043.409420 128.033980 604.875490 1029.390630 -133.102770 408.279690 1035.891110 15.220230 663.094060 739.175350 177.089110 735.148740 702.120420 77.991640 703.050660 624.658450 170.360460 469.087490 748.882690 -177.128360 551.187620 686.478580 -121.369380 435.836330 645.811220 -158.325200 703.906190 445.304840 159.527560 791.213500 437.429660 107.652260 745.832150 368.366610 168.978420 341.505890 445.695040 -150.942600 369.880340 381.263180 -99.330470 305.605410 413.872160 -156.253300 783.670780 58.019300 91.669580 916.409000 112.628020 64.139410 911.776920 92.881680 169.932100 1057.621580 135.020780 109.323910 111.929580 113.093920 -53.784700 279.155090 82.839870 -25.147530 259.807710 67.265840 -119.500590 376.838010 43.981560 -46.924420 634.333440 1345.822020 4.671970 514.726990 1430.114500 206.816910 582.543460 1460.904300 -205.119080 493.723330 1232.737550 248.565810 626.807250 1227.808840 -234.076950 433.477840 1136.055540 268.790410 597.733700 1124.225830 -278.041320 553.186950 894.178100 277.403810 505.632390 882.774290 320.150120 777.943360 968.105040 -188.332290 752.505430 932.253420 -249.664790 999.934570 96.465260 186.519710 1008.211240 112.452190 77.866900 312.672180 36.905430 -124.694890 334.400240 46.597680 -24.339040 683.369200 1587.457520 94.192020 700.824340 1595.913330 -43.108870 652.659120 1762.271730 34.207270
+115 1.900000 610.035160 1042.573240 129.643400 607.802060 1028.724980 -130.715590 412.041690 1034.990360 18.415480 669.168400 740.619690 178.345500 742.269710 704.173280 80.308410 707.790710 624.138120 169.413510 471.537080 748.532650 -176.046040 553.886350 685.666320 -120.748950 438.114720 645.137210 -157.487120 709.480650 446.073120 157.898540 792.595030 434.634460 105.646020 747.858760 368.696590 165.998210 341.202300 447.382900 -151.016530 366.513890 380.440190 -100.624780 304.463470 416.263980 -156.821000 769.020200 59.637940 90.261210 904.560790 103.874230 61.808570 899.117070 85.708900 167.552990 1047.263180 117.381400 105.997770 99.004330 123.335660 -55.324010 264.058560 84.803720 -26.071310 244.745040 68.463190 -121.179120 357.317290 43.717350 -46.888480 635.828860 1345.731080 8.384970 517.087520 1428.335450 211.605740 583.385440 1461.823240 -200.792430 495.758670 1230.269290 252.052800 624.817140 1228.252560 -230.313840 437.083590 1133.562620 271.443210 597.567080 1125.285520 -274.601840 558.834230 892.376710 279.349030 510.447020 880.629520 322.222260 772.433530 960.945310 -188.352400 745.408020 927.113590 -251.047710 989.346190 82.772990 183.890140 995.907290 96.995480 75.465870 293.279450 36.371800 -124.438660 317.032290 45.640810 -24.289380 683.208560 1587.866330 98.553250 700.046200 1596.536130 -39.517950 651.495180 1762.113890 37.426840
+116 1.917000 614.109190 1043.691160 131.514950 610.234680 1029.254270 -128.876790 416.044740 1034.901250 21.625540 673.109560 740.785400 180.360600 749.025150 707.489140 82.063260 711.745000 625.103700 169.462130 475.783360 748.125610 -174.746000 558.198430 684.754940 -120.865460 442.387730 644.550420 -156.837650 714.330750 448.268400 157.690230 798.395390 434.544340 103.106080 750.018860 369.452180 165.613300 343.656160 448.158200 -152.121200 365.724820 380.103970 -101.052680 306.239500 418.655880 -157.628460 753.647460 61.591050 89.845920 891.250730 96.267660 60.288790 885.386960 79.536970 166.137150 1035.271970 101.565650 103.733020 88.248690 135.881030 -57.146620 250.118060 87.506360 -26.950280 230.743530 70.352720 -122.702550 338.454440 43.574990 -46.610610 638.799070 1346.793820 12.918890 518.583800 1427.625120 216.264190 584.282650 1462.695430 -195.543490 499.541810 1228.506590 255.580700 626.478940 1229.452510 -226.177050 441.449160 1131.680660 274.369780 595.520810 1126.219120 -270.240200 564.429870 892.094790 281.618320 515.039060 878.838500 324.180880 765.333250 953.913510 -190.034000 736.771180 923.046880 -252.840440 974.805730 71.625940 182.686230 982.240110 83.686260 73.796510 274.240390 36.025120 -123.964060 300.069400 44.813770 -23.993220 686.036990 1589.604860 102.780300 701.417300 1598.133790 -35.264480 651.551270 1763.638180 42.670040
+117 1.933000 618.854060 1045.244510 133.424320 614.798520 1030.283690 -127.172840 420.037020 1035.445070 24.690920 679.925960 742.997560 181.346760 754.728520 709.422490 82.988530 717.665410 627.106080 168.462710 481.982790 747.426640 -173.469910 564.894170 685.385130 -121.378910 449.437070 643.273620 -156.008330 717.615600 452.196040 159.482830 799.470150 433.911070 103.211620 751.888850 371.550200 166.688580 349.997130 448.597440 -152.042340 370.006810 379.386660 -102.717840 311.540860 420.913360 -158.899310 737.608760 63.633340 90.243670 876.840640 90.295550 59.510120 870.697750 74.623200 165.689960 1021.760010 88.155210 102.500160 80.409500 151.097150 -59.193440 237.542280 91.230630 -27.918640 217.487690 73.330430 -123.741620 320.699710 43.402810 -46.114850 640.713680 1348.330570 16.350090 521.608890 1427.445070 221.313000 584.964660 1465.125610 -191.565610 503.688540 1227.904540 259.411830 626.336300 1230.590330 -222.327130 446.593110 1130.366940 277.516110 594.857910 1128.506100 -266.615940 570.094600 889.964900 283.194180 521.404170 877.588200 325.304990 757.257810 947.820500 -191.402450 727.223270 919.372190 -254.476430 958.015010 63.022320 183.187650 967.389530 73.015290 72.708560 256.110230 36.258250 -123.436760 283.697240 44.574380 -23.641530 686.871890 1591.796630 106.960890 701.272640 1600.919680 -31.277310 650.459230 1765.534550 46.971480
+118 1.950000 623.435790 1048.281860 135.056720 617.373660 1031.076170 -124.915470 423.817630 1036.319090 27.578220 686.154480 745.800480 182.534650 760.178340 711.913820 83.128600 725.055480 629.948610 169.652440 490.175630 746.222780 -172.407650 574.556880 685.587830 -121.210890 461.501430 641.852660 -155.959460 719.697020 454.110930 161.753680 799.128780 432.405670 102.541920 749.882750 372.447940 169.446620 360.199190 448.926850 -153.800200 376.187710 378.239440 -104.636250 320.761540 422.953430 -160.688250 720.869570 65.554620 91.196580 861.533570 85.982480 59.300660 855.103030 70.889260 165.983870 1006.823430 77.070910 102.089400 76.379510 169.243650 -61.293840 226.755390 96.273940 -28.980590 205.243560 78.172680 -124.343250 304.322540 42.977700 -45.584780 643.396000 1351.159550 20.895480 524.761900 1428.657710 225.743230 586.266420 1467.563840 -186.617480 509.143770 1228.391850 263.066620 626.968630 1233.364750 -218.868800 452.426670 1129.541380 280.827030 592.758120 1131.448730 -262.408570 577.405210 889.819640 284.528780 527.496950 876.538820 327.439480 747.358520 940.648250 -193.283890 715.509220 916.017330 -256.523650 944.145510 56.067700 182.008590 951.548340 64.778130 72.059170 239.412380 37.562480 -123.156930 268.132320 45.382100 -23.481930 688.017760 1594.582150 110.795370 701.611630 1603.438600 -26.928870 650.704590 1767.743040 51.080530
+119 1.967000 627.180110 1049.819460 137.783520 618.578000 1032.848630 -122.787530 427.171810 1037.281980 30.311250 690.252320 747.733150 184.260420 761.891780 711.903870 85.257620 728.672420 631.226260 171.184980 500.267490 744.451350 -171.589050 587.276670 685.378540 -121.042850 473.986690 639.059080 -157.034770 719.627260 454.892700 165.332200 794.871030 430.226560 104.463970 747.711550 372.526180 171.233490 376.247040 448.218410 -158.619090 387.430330 377.156340 -107.086190 333.968690 424.824340 -162.801500 703.511170 67.157610 92.362510 845.454350 83.070800 59.448110 838.655640 68.196100 166.660720 990.614260 68.112130 102.235460 77.093610 190.286450 -63.235080 218.403730 102.881610 -30.038740 194.927960 85.600660 -124.742490 289.350400 42.012320 -45.323420 646.149350 1353.665650 25.126160 527.487000 1429.472660 230.464450 586.501280 1471.370240 -183.160750 512.615660 1228.950680 266.659760 626.364750 1235.401730 -215.178150 458.848270 1129.126340 284.272060 590.601620 1134.623780 -259.104770 583.996400 890.383420 287.450710 535.421450 876.576600 329.631710 738.390440 936.444760 -194.576460 703.851380 914.294680 -258.971070 926.721010 48.361490 181.246310 934.916260 58.588380 71.793190 224.592150 40.356860 -123.417160 253.695710 47.600420 -23.726380 689.459960 1597.549190 114.924190 702.457520 1605.354980 -23.635930 650.268430 1769.699340 55.363030
+120 1.983000 630.859800 1052.159060 140.217410 620.589660 1034.208860 -120.057010 429.884190 1038.281490 32.880360 692.895140 748.567930 187.382550 761.596920 711.210510 87.601370 726.574830 630.655880 175.010820 511.968320 742.291990 -170.945420 601.724300 686.505550 -122.625380 491.149140 634.577510 -158.612120 717.375850 455.947200 169.557430 790.207640 429.053220 105.429460 742.842830 371.889130 173.728870 395.584350 447.841610 -162.507720 401.148770 376.368040 -108.608830 350.855960 426.717190 -164.823880 685.680050 68.302880 93.349120 828.698850 81.206440 59.758610 821.395390 66.454250 167.368120 973.343200 61.224690 102.647780 83.385090 213.681550 -64.768420 213.204540 111.108180 -31.008840 187.867130 95.842990 -125.166470 275.898190 40.316570 -45.592360 648.374080 1355.812260 28.207650 530.511050 1431.756470 234.602940 588.055420 1473.485600 -178.477140 519.315120 1229.861330 270.566100 625.518310 1237.908200 -211.256100 465.788540 1129.099490 287.825070 586.637570 1138.283690 -255.451310 590.640500 890.576600 288.963530 544.302120 877.162960 332.031560 727.210570 931.489750 -197.462130 690.865300 913.201230 -260.798550 909.690610 43.922040 182.374210 917.620540 54.144450 71.856960 212.268550 44.937510 -124.329160 241.125200 51.501040 -24.495620 689.957890 1600.090450 118.917920 702.534850 1608.340210 -19.379390 650.130490 1772.255620 58.625540
+121 2.000000 633.127500 1053.851560 142.461820 622.577640 1036.095830 -117.236180 431.798490 1039.468020 35.259740 690.251340 748.300960 191.675110 760.722840 710.920720 91.226470 725.169070 630.691410 177.514980 524.786250 740.140500 -170.367320 618.592290 687.582950 -123.273230 510.585050 631.902340 -159.933360 711.481140 456.226500 170.896100 784.208980 427.174870 106.150020 735.041870 371.732030 175.445130 416.831330 447.432830 -162.733490 419.003170 375.952420 -109.611960 370.849980 428.904790 -166.344310 667.500310 68.967900 93.876760 811.351930 80.057950 60.095520 803.414550 65.498370 167.877640 955.283690 56.388300 103.050690 95.628970 238.239170 -65.634860 211.859680 120.767810 -31.930660 185.390880 108.511470 -125.825950 264.595310 38.187960 -46.539510 649.564030 1358.631230 30.852430 532.644590 1433.719600 238.473530 588.368770 1477.141720 -174.780530 525.515010 1230.929440 274.403630 623.073120 1240.243040 -207.755360 473.161470 1129.492430 291.452270 585.196170 1141.021000 -250.974490 600.463380 891.541810 291.221530 552.437620 878.167970 334.295170 716.434810 927.967770 -200.277050 677.660160 912.483090 -263.309540 890.719730 42.382780 182.130390 899.737300 51.196960 72.098270 203.521820 51.562270 -125.759760 231.901900 57.308180 -25.794130 689.929750 1602.640870 121.950900 702.079160 1611.332520 -16.332530 649.441590 1774.454350 62.380290
+122 2.017000 633.660400 1055.716920 145.642490 623.994750 1037.284910 -114.670170 432.883910 1041.070070 37.480570 688.087650 748.986080 193.502410 757.082460 710.921200 95.462720 720.357300 632.106570 181.186510 538.127990 738.469910 -169.647540 634.197570 689.560300 -123.719670 532.988530 629.070920 -159.780120 701.187070 455.636140 172.075300 774.064030 425.804440 109.358750 722.683840 371.158420 176.184200 440.231290 446.535550 -163.240510 438.372250 376.238800 -110.136220 393.268550 431.688390 -167.188480 649.071290 69.240740 93.921060 793.484500 79.361910 60.390830 784.901370 65.034900 168.131560 936.747010 53.393630 103.303690 113.203160 262.202030 -65.613640 215.078950 131.477390 -32.928250 188.275180 122.702770 -126.793950 256.738160 36.656460 -48.244800 650.152160 1361.352050 33.698720 536.268250 1435.687500 242.427110 587.722960 1479.784670 -171.697680 530.679260 1232.512700 277.489170 620.788700 1242.993160 -204.520550 480.825200 1130.364260 295.096190 581.559140 1144.314090 -247.326810 610.282170 894.117490 293.453610 563.182310 879.458740 336.598570 706.011410 924.619080 -202.441420 664.602290 912.422240 -265.092930 872.512940 41.920260 183.016820 881.330200 49.418440 72.325680 199.806930 60.378600 -127.464790 228.048980 65.096210 -27.570020 690.780640 1605.082150 124.553730 702.255190 1614.226440 -13.613530 649.700740 1777.372680 65.867070
+123 2.033000 636.403020 1058.486080 148.326930 624.763670 1039.106200 -111.345050 433.255460 1043.238770 39.610550 684.030580 750.119870 197.327420 752.783080 710.491520 97.671690 713.570130 631.910030 183.562090 551.443120 737.720830 -168.541700 650.322140 693.499330 -124.198300 548.018070 627.499880 -159.278530 690.046570 455.972930 173.781980 762.801880 424.355220 112.224480 708.449100 371.071560 176.887360 464.593810 447.136260 -163.143070 460.651030 378.713320 -108.819100 417.253970 435.394780 -167.336620 630.470280 69.283050 93.664090 775.148680 78.926060 60.631260 766.086000 64.766140 168.189220 917.992740 51.800440 103.431290 134.291280 283.579070 -64.546490 223.487430 142.672420 -34.061840 196.420210 137.216540 -127.815390 254.427060 37.250050 -50.730310 649.973210 1364.320800 35.030680 537.860660 1438.346190 245.203030 586.748720 1483.060060 -169.139420 537.666750 1234.664310 280.277620 618.495060 1245.339720 -202.974470 488.590240 1131.779540 298.672120 578.514950 1147.832760 -245.234470 619.670720 896.592530 294.473110 573.378720 881.212460 338.916630 693.499880 923.329960 -204.714720 651.838380 913.180110 -266.589230 855.188720 41.308870 182.298920 862.482240 48.407300 72.454000 202.740660 71.221660 -129.368550 231.387080 74.549280 -29.788210 691.451170 1607.580930 127.173280 702.481690 1617.058470 -10.880720 649.026860 1779.974980 68.759990
+124 2.050000 635.807010 1061.523320 151.063770 625.427250 1041.772710 -108.645300 433.122650 1045.991330 41.677150 678.474120 750.174190 199.628370 746.046390 709.050660 101.385700 703.431580 630.600220 186.174820 564.356690 738.237550 -167.018390 664.672790 698.472050 -122.625070 560.825200 628.540890 -156.932860 677.967410 455.868440 174.672160 749.538150 423.551970 114.088010 694.555540 370.442720 178.311280 488.964630 450.366460 -162.661270 482.915310 381.316650 -107.443950 441.693360 440.299220 -166.765340 611.735960 69.274110 93.329220 756.391050 78.622470 60.830380 747.169010 64.514880 168.173570 899.144650 51.078960 103.522490 156.580750 300.696230 -62.413740 237.323820 153.606960 -35.275300 209.280270 150.870760 -128.472080 260.297520 41.136970 -53.912530 650.308470 1367.424070 36.665530 540.451050 1441.167970 247.204930 585.001890 1486.132320 -167.213670 543.136050 1237.040280 282.514010 617.903930 1247.907100 -201.434680 496.248440 1133.777100 302.109340 574.845520 1151.763310 -243.179210 630.305970 899.678590 296.382110 585.006160 884.108580 340.730470 682.766600 922.014400 -206.674510 639.880920 915.299260 -269.067050 835.327700 40.883600 182.488970 843.339600 47.838160 72.541020 213.673740 83.421950 -131.616380 242.777210 84.846500 -32.385250 691.382260 1611.227290 129.713300 702.325990 1620.387330 -9.432840 648.278870 1783.191530 71.153670
+125 2.067000 635.686160 1065.225830 153.957240 624.740540 1045.116090 -105.372860 432.693020 1049.225340 43.662710 672.452640 750.729860 202.153590 739.807920 708.355100 103.211310 694.461430 630.614750 187.855190 576.712590 740.165160 -165.295060 677.859500 705.106320 -120.851680 583.330570 631.086790 -157.412340 665.496640 456.166990 176.554150 736.958740 422.639070 114.691800 680.314270 370.103850 178.908360 514.131710 456.037540 -163.341840 505.128600 387.105190 -107.357080 465.507750 446.371950 -165.536320 592.884770 69.322140 93.086370 737.281920 78.383060 61.003570 728.272280 64.245110 168.226240 880.217710 50.776990 103.650820 178.541490 312.704800 -59.456370 256.244200 163.395690 -36.395500 226.637650 162.733410 -128.628140 276.125180 48.093010 -57.583170 649.984920 1370.560670 36.971300 540.984920 1444.131590 249.480800 582.808720 1489.346680 -167.157840 548.775210 1240.308470 284.549440 613.455870 1250.638310 -200.356570 503.629240 1136.340940 305.377780 569.745910 1154.605470 -242.015530 641.125610 904.208800 298.088500 595.297240 888.335940 343.360810 670.820310 922.176150 -207.626080 627.897090 917.590270 -269.559720 816.497620 40.816310 182.148590 824.115300 47.544180 72.687600 232.794170 95.681180 -134.240330 261.764500 94.787580 -35.152240 689.739560 1613.628300 129.963100 701.109130 1623.994260 -7.446440 648.126830 1786.314940 73.160110
+126 2.083000 633.784240 1067.965820 156.227550 624.823790 1049.313110 -103.351940 432.082920 1052.749760 45.522250 664.902220 751.527100 203.674840 731.565860 707.161070 105.392070 684.646120 631.208980 190.427250 588.454710 743.379030 -163.550460 691.026000 712.512150 -118.792950 598.532170 633.689090 -156.008010 650.436100 456.453370 177.955140 721.080630 421.311430 117.377960 664.843990 369.995240 181.087650 535.635990 463.875950 -161.983320 526.973690 393.685580 -108.716060 488.045750 453.088710 -163.827910 573.916080 69.438220 93.026740 717.937990 78.192760 61.158400 709.400630 63.986990 168.404070 861.208800 50.598290 103.857460 200.052700 319.607450 -56.176520 279.471040 171.136090 -37.133810 248.583220 172.090190 -128.514040 301.378360 56.371040 -61.370300 650.322880 1374.604250 37.886390 544.218750 1448.889040 250.494370 580.034180 1491.849730 -165.649170 552.805300 1244.085690 286.326630 609.162230 1253.577390 -200.139210 510.652830 1139.383670 308.456180 563.415830 1157.950070 -240.590790 652.656370 909.824280 299.737980 606.665100 892.852780 345.401090 661.177310 924.078430 -208.964220 617.832950 920.550110 -270.822480 797.931090 40.820010 183.402050 805.021000 47.446600 72.937810 258.575620 106.268940 -136.886610 286.803160 103.066390 -37.693760 690.622500 1617.456180 131.140410 700.775880 1627.472780 -6.368320 646.325380 1790.225830 75.077580
+127 2.100000 633.270140 1071.077270 158.890000 625.147160 1053.870120 -101.076100 431.288420 1056.341430 47.167330 656.220760 752.192080 205.623780 720.932920 705.651370 107.781110 674.155940 632.040410 192.291990 599.454830 747.547610 -161.775310 703.580690 720.803470 -116.343280 614.797120 638.719240 -154.115420 635.256590 456.611570 179.811860 707.061100 421.209900 120.367840 647.438290 370.501680 182.666170 556.059200 471.189970 -159.404370 548.743530 399.311890 -107.362280 509.239260 459.592320 -161.811160 554.814210 69.612750 93.135720 698.513790 78.072650 61.298270 690.472720 63.747590 168.625180 842.145200 50.400600 104.133610 221.790650 321.802490 -53.171910 306.101440 176.120830 -37.230690 274.829380 178.366680 -128.345760 333.473970 63.745270 -64.692340 649.282170 1377.763920 37.499210 545.197080 1452.913330 251.527010 577.717530 1495.377930 -165.224460 558.114560 1247.872800 288.428280 603.845460 1256.570430 -199.778670 517.302550 1142.752810 311.313720 557.485290 1162.534060 -241.183730 661.978330 915.267580 300.745670 620.352420 898.876530 347.529630 650.905270 925.813780 -209.242710 607.960510 923.661740 -271.733550 778.274540 40.471740 182.845550 786.154970 47.476280 73.263260 288.506260 113.615770 -138.953080 316.016630 108.645670 -39.559310 690.102420 1621.076290 132.734160 700.373170 1631.205200 -5.655530 646.366210 1793.344600 76.094240
+128 2.117000 631.291320 1074.264770 161.993800 624.912600 1058.978390 -97.849880 430.236820 1059.803590 48.495480 647.885740 752.742680 208.207860 710.862180 704.822750 109.354260 661.193850 631.774480 195.642320 609.548160 752.262880 -159.918660 714.258970 728.928040 -114.201750 629.552490 645.126340 -153.099240 617.050110 456.709750 180.558520 689.527160 420.693850 122.332920 629.309200 370.175420 183.676090 577.572200 476.244750 -159.736830 572.250920 404.533750 -107.076030 529.514590 465.084560 -159.668180 535.595210 69.855150 93.314560 679.164610 78.053820 61.427070 671.418700 63.516500 168.774810 823.088810 50.171390 104.416350 244.325300 319.663210 -50.914540 335.353700 178.006030 -36.636080 304.546020 181.200210 -128.097440 369.502080 68.673210 -66.925190 646.967770 1380.503420 37.175360 545.486020 1456.749020 252.691590 573.873660 1498.797000 -164.485790 562.045100 1252.211790 289.491940 598.230410 1260.027470 -200.755200 523.537540 1146.269650 313.941350 548.767880 1165.689820 -239.726620 673.636110 922.263730 301.254460 631.886290 904.046630 348.935270 641.973510 928.966370 -209.628300 598.801760 926.606630 -271.702120 760.318850 39.430600 182.868180 767.406250 47.553220 73.588970 320.678650 116.929700 -139.975540 348.029480 111.088130 -40.460630 689.600590 1624.201170 133.603260 699.522460 1635.017820 -5.425940 645.390750 1796.807370 76.744430
+129 2.133000 629.639040 1076.656130 165.027770 624.183350 1063.146240 -94.890660 428.876830 1062.997440 49.465020 639.388060 753.813840 209.769730 700.530210 703.495970 111.600880 647.943540 632.305850 196.440340 618.746340 757.143800 -157.991650 724.087460 737.634280 -111.560720 644.662660 650.163390 -152.156540 600.091860 457.109340 181.796750 672.462280 420.530120 124.256980 610.341920 370.788270 185.034000 599.184940 480.634580 -157.260850 592.675230 409.060420 -104.638130 549.420290 469.125980 -157.632290 516.313960 70.156270 93.479180 660.001400 78.150860 61.545250 652.253720 63.316070 168.835400 804.106450 49.954850 104.639920 267.867650 313.448760 -49.562840 366.664150 176.814990 -35.505630 336.849850 180.527850 -127.664470 407.643680 70.680720 -67.757190 646.050720 1383.874020 37.687720 547.446900 1461.454100 252.859500 571.293880 1501.677250 -164.713010 566.182010 1255.612430 291.288970 592.073240 1262.175540 -200.923890 529.261290 1149.768920 316.367430 542.366760 1168.322630 -240.608490 684.770320 928.881900 301.306920 643.671020 910.380740 350.143980 633.530700 932.136230 -210.361480 589.853820 929.500310 -270.792570 740.871950 39.195820 183.573900 748.512820 47.588330 73.826140 354.707760 116.410910 -139.936860 382.263120 110.578380 -40.376300 688.781560 1627.507450 133.684300 698.539120 1638.129030 -5.402630 643.948000 1799.670290 76.762610
+130 2.150000 628.188050 1078.607180 167.645860 623.627690 1066.558470 -91.913120 427.224150 1065.834960 50.119500 628.264710 754.872070 209.901030 690.772710 703.566650 112.756230 635.987430 632.464780 198.055010 627.237430 761.915040 -156.051210 734.337460 746.260190 -109.938000 659.153870 655.629330 -151.430080 581.801030 457.617190 182.287320 655.566160 420.581880 125.835250 592.409550 371.025850 185.753680 618.064760 484.006230 -154.783450 614.346560 412.838260 -102.080470 569.122860 471.677800 -155.839770 497.029020 70.483240 93.609280 641.060970 78.344700 61.641600 633.059200 63.183480 168.863130 785.219300 49.742410 104.784530 292.507020 303.387850 -48.860710 399.664490 172.846470 -34.076420 371.225860 176.636630 -127.073530 447.330600 70.115490 -67.354740 644.318420 1387.202030 38.314080 547.309880 1465.065310 253.280550 568.155460 1503.395140 -164.544080 568.784790 1259.826290 292.448850 585.461180 1264.664310 -202.483730 534.367250 1153.105220 318.631870 533.942080 1171.741580 -242.217760 694.931640 935.843260 301.392270 655.288450 916.999330 350.627660 625.999760 935.084410 -210.009000 582.075930 932.374510 -271.633300 722.377320 39.600700 184.147580 729.298650 47.515190 73.919280 391.124480 112.897530 -139.210720 418.665500 107.659290 -39.524190 688.065610 1630.985230 133.218000 697.103270 1640.978520 -5.324590 642.537960 1802.723020 76.339070
+131 2.167000 624.765080 1079.763790 170.471240 622.630190 1069.134160 -89.465870 425.332180 1068.249020 50.558110 619.250850 755.567500 212.615480 679.928410 701.781310 114.949750 623.167420 633.219120 199.800930 635.141720 766.434690 -154.212680 743.589360 753.923030 -107.503940 670.082580 661.501650 -149.559910 565.270260 458.106750 183.067120 637.378480 420.178100 127.092530 574.479680 371.573000 186.136760 634.462950 489.179870 -154.542250 635.966370 417.162840 -100.190500 588.254580 472.922940 -154.216740 477.832920 70.794370 93.691670 622.302000 78.581990 61.693230 613.897460 63.133020 168.875270 766.381160 49.467770 104.868330 318.432710 289.745390 -48.306920 434.144870 166.543110 -32.595290 407.485500 170.115200 -126.472110 488.734620 67.748720 -66.190850 643.478940 1389.518190 38.443450 547.108090 1467.843990 254.120420 564.987790 1505.150630 -164.366730 572.588440 1262.764160 293.669130 579.796940 1266.396610 -202.357820 538.768010 1156.142940 320.751620 525.755000 1173.937990 -241.678990 705.082210 944.113830 301.532290 665.652530 923.077030 350.779050 619.208980 937.896120 -210.024480 574.855220 934.883910 -271.467380 703.932920 38.961570 183.970110 709.833980 47.326100 73.873370 430.244750 107.270490 -138.218540 457.325810 102.952220 -38.290160 687.380070 1633.693120 132.834690 695.344240 1643.468630 -5.795760 640.914370 1804.573730 75.630430
+132 2.183000 622.650700 1081.075560 172.580830 621.596190 1071.942380 -87.485630 423.259160 1070.192990 50.893780 608.857420 755.622920 213.646850 670.387210 700.789550 115.931770 610.454830 632.818300 199.605000 642.398130 770.625310 -152.629440 750.330320 761.429570 -105.193100 681.829100 667.381960 -148.606110 549.250550 458.146300 183.729060 623.475770 420.651950 128.660720 557.259890 371.546660 187.373180 650.873050 491.747190 -151.260600 656.034300 420.000550 -98.197230 606.319760 473.024110 -152.661270 458.869170 71.023130 93.675500 603.626650 78.791460 61.678810 594.769170 63.160480 168.827910 747.504090 49.108750 104.924310 345.940220 272.850220 -47.598380 470.063600 158.363480 -31.326640 445.452730 161.617390 -125.987300 532.199160 64.406400 -64.833010 643.123230 1391.298100 38.931010 546.511110 1470.732910 254.731110 562.350950 1506.430660 -164.595700 572.726260 1265.715820 294.474910 573.302610 1267.709720 -203.669250 542.428410 1158.766240 322.706820 519.313170 1175.850340 -242.135960 714.314820 951.589780 300.654690 677.197270 929.394960 351.137630 613.649900 940.999690 -210.579570 568.069580 936.045900 -270.602360 683.268920 38.441220 183.719880 690.336550 47.071730 73.733150 471.831270 100.193410 -137.267960 498.254820 97.013460 -37.113580 685.992980 1635.629150 132.589890 694.372440 1645.289550 -6.682950 638.759340 1806.696410 74.979230
+133 2.200000 619.061040 1081.055910 174.393070 619.875850 1072.573000 -85.475170 421.073490 1071.658200 51.206150 599.013000 755.411740 214.381670 660.986450 699.982480 117.791470 597.873170 633.057680 200.702580 648.857480 774.388610 -151.396150 755.523250 768.043820 -102.237760 690.588620 672.173520 -146.848710 533.104310 459.206540 183.611830 608.161250 420.028840 128.417970 541.272580 371.966550 186.958240 666.838620 493.399170 -148.305850 676.781130 422.947420 -96.166850 623.136470 472.003450 -151.252660 440.207950 71.127340 93.512360 584.917180 78.907780 61.596060 575.642580 63.236360 168.688800 728.521000 48.728890 104.979290 375.340910 253.116760 -46.809120 507.613980 148.775710 -30.534870 484.849060 151.661160 -125.690490 577.750180 60.733600 -63.883870 643.198850 1392.980100 39.059470 545.516420 1472.583370 255.081730 560.306090 1506.439700 -163.980470 575.924930 1268.378910 296.058440 567.971740 1268.293700 -203.717820 545.432250 1160.889770 324.465760 510.820560 1177.357670 -241.982410 723.118100 958.984190 300.239470 687.866150 935.659480 350.628690 607.426880 943.598140 -210.424650 562.417910 937.648930 -269.944090 664.330320 38.732830 183.977390 670.991520 46.833410 73.571210 515.426820 92.238130 -136.654850 541.340520 90.325440 -36.379410 684.716310 1637.616700 131.600450 692.871640 1646.683960 -7.193940 636.283690 1808.024290 73.688270
+134 2.217000 616.760860 1081.131230 175.927510 619.190120 1074.066280 -83.846760 418.864200 1072.655270 51.510740 589.994450 755.190860 214.539540 651.504150 698.201050 118.727850 585.980830 633.210570 201.098250 654.299560 777.570070 -150.468550 759.619750 773.120000 -99.088310 698.309630 676.130920 -145.382460 517.857360 459.233760 183.557860 591.344730 419.164640 129.124650 525.290160 371.972810 186.401870 681.122990 494.356050 -146.392120 694.891420 423.880550 -94.392820 638.691470 469.793580 -150.041520 421.702300 71.183400 93.219580 566.069270 78.888910 61.470200 556.496460 63.292520 168.476000 709.433110 48.420930 105.022850 406.913240 231.074860 -46.094010 547.137270 138.328920 -30.402970 525.408810 140.691740 -125.687210 625.049870 57.232770 -63.890630 641.496580 1393.888060 38.739480 544.896850 1473.943360 254.843810 558.805300 1506.132080 -163.635770 576.186890 1270.019650 296.848720 562.503720 1268.551510 -204.314290 547.941650 1162.450440 326.015630 503.448000 1177.844240 -242.543500 731.644100 965.806640 299.359190 697.039670 941.246950 349.486970 603.158260 944.295530 -210.043210 555.626460 938.880370 -268.722870 644.591430 38.978160 183.885830 651.903080 46.674720 73.492500 560.613040 84.023310 -136.690840 586.336850 83.347150 -36.396760 683.866460 1638.701420 131.365540 691.614380 1647.443970 -7.881700 633.730900 1808.769530 72.090100
+135 2.233000 613.697570 1080.189330 177.330260 617.060790 1074.131590 -82.760280 416.716640 1073.188840 51.767160 582.217160 755.370300 215.726460 642.247500 695.876220 119.606110 573.844060 632.349980 201.376390 658.328370 779.944890 -149.649110 761.478150 777.557560 -96.320160 702.234740 678.955810 -143.024140 502.113890 459.051450 183.598540 575.805110 419.783080 128.710560 507.876010 372.618350 186.508540 691.041440 493.910220 -142.661220 712.845890 425.577330 -93.628920 652.774050 466.322240 -148.774920 403.078520 71.326520 92.869830 547.015560 78.721580 61.346150 537.351990 63.270910 168.235580 690.284790 48.233500 105.013300 440.848050 207.404850 -45.439530 588.771850 127.676610 -30.976510 566.921450 129.256330 -126.141040 673.681150 54.445400 -65.169450 640.215640 1393.233640 38.871800 544.703980 1474.467900 254.618390 557.247860 1504.983520 -164.695760 577.848210 1270.981570 296.962250 556.971010 1267.922610 -204.965240 550.063780 1163.403080 327.352200 496.426790 1177.794190 -242.399310 738.816770 973.082090 298.101470 705.983090 946.621640 348.448150 598.324400 945.576840 -209.925580 549.962650 937.793400 -266.678310 625.332950 38.622300 183.592440 633.119450 46.604110 73.572080 607.017460 76.216910 -137.588170 632.858460 76.582120 -37.394940 683.049680 1639.842530 130.551650 689.725280 1647.877080 -9.527510 631.707210 1809.149170 70.956630
+136 2.250000 611.801940 1079.476200 178.458920 615.337340 1073.000980 -81.888230 414.667790 1073.263670 51.912140 574.059200 755.026790 215.073140 632.735720 694.331970 120.765450 561.873660 631.591130 201.334930 660.504390 781.253780 -148.697980 762.072330 779.741270 -92.766010 705.774410 680.346500 -141.930110 487.928070 459.761780 183.518460 560.206850 418.597840 129.181290 491.895630 372.501920 186.603100 698.640140 492.222810 -139.484470 727.687740 425.212590 -92.240330 665.077450 461.549410 -147.106450 384.200500 71.597270 92.505990 527.744810 78.419820 61.266840 518.268740 63.185680 168.015490 671.114500 48.118590 104.937440 477.163240 182.968640 -44.712990 632.236940 117.583630 -32.181070 609.173340 118.061790 -127.148150 723.195430 53.020490 -67.734280 639.255490 1392.603880 39.150800 544.330080 1474.470090 254.451000 555.439270 1503.494630 -165.122330 578.347530 1271.561520 297.724640 552.346980 1266.413700 -205.340620 551.819950 1163.733400 328.459010 490.807430 1177.195560 -242.201640 745.838620 978.679320 296.410100 714.013000 951.860350 346.872620 594.338620 945.769780 -209.276260 546.326480 937.181270 -267.039180 606.535580 37.875600 183.364470 614.589900 46.567090 73.765170 654.226140 69.490450 -139.383700 680.460880 70.667760 -39.445200 681.984380 1639.970700 129.270320 689.406560 1647.883910 -9.737770 629.169250 1808.844730 69.394250
+137 2.267000 608.970400 1078.247560 178.962910 613.928470 1072.402470 -81.489960 412.715120 1072.897220 51.883950 564.237730 753.132080 215.066670 624.098330 692.362610 120.160740 552.125120 631.228520 201.224270 660.677670 781.283260 -147.497910 761.490540 780.814450 -90.916370 705.949040 680.535280 -140.376010 472.968570 459.565370 183.036180 545.127990 417.789150 129.211460 476.675960 372.426240 186.651090 707.107670 489.949490 -137.702740 742.338070 424.996400 -91.220740 675.502620 455.519200 -144.940400 365.133670 71.937800 92.106410 508.319430 78.023660 61.246340 499.286650 63.106270 167.839540 651.938780 47.954630 104.851950 515.660580 158.819340 -43.798740 676.933530 108.899020 -33.861550 651.910460 107.936740 -128.593990 772.978700 53.651260 -71.338490 637.854860 1390.776370 38.329000 543.594970 1473.911740 253.923810 554.575320 1501.809330 -165.531340 578.344790 1271.319210 298.266110 548.521670 1265.304320 -205.494670 553.209960 1163.479610 329.308560 485.888090 1176.368410 -242.469680 751.990420 985.206360 295.423280 722.719850 956.013980 345.483580 590.916560 945.535950 -208.917800 542.519410 936.525760 -265.007320 587.398740 37.810010 183.048430 596.093690 46.450370 73.906070 701.715580 64.504960 -141.931000 728.659850 66.404820 -42.370140 681.409850 1640.011840 128.603320 688.502500 1647.369630 -11.444830 626.728760 1808.041020 68.052140
+138 2.283000 606.036010 1076.087650 179.287320 612.331050 1070.156010 -80.829560 410.887360 1072.120850 51.640670 555.599850 751.970700 215.252180 615.427190 690.041750 120.367030 541.563900 630.498900 201.007720 659.001280 779.914180 -146.054490 759.105040 780.010860 -88.162930 704.040280 679.599730 -138.642330 459.368650 459.547850 183.493880 530.558720 416.752530 129.246860 462.112580 372.943420 186.268080 711.685910 486.027560 -135.089340 755.039610 424.411930 -90.483350 684.235470 448.422910 -142.475940 345.989620 72.307090 91.664310 488.875090 77.597530 61.251260 480.382200 63.097320 167.688890 632.769040 47.672390 104.830790 555.957340 136.125470 -42.706740 722.046080 102.429850 -35.795540 694.844730 99.782760 -130.179350 822.207150 56.988930 -75.498760 637.915040 1389.445560 37.851110 540.424870 1472.676760 253.812450 554.082640 1499.135380 -165.862410 578.251340 1270.815800 298.329470 545.341740 1262.676760 -206.054760 554.239200 1162.734500 329.874730 482.203800 1174.588500 -241.896800 757.357060 989.717410 292.895080 728.990910 959.891600 343.792570 588.949220 945.173280 -208.970060 539.991580 935.036990 -264.870300 567.643680 38.634430 183.024370 577.311650 46.140830 73.823180 748.888370 61.915600 -144.866550 776.824280 64.686270 -45.733170 680.237300 1638.855350 126.913110 687.445560 1646.591670 -12.208660 625.369630 1807.073360 65.964840
+139 2.300000 604.636600 1074.471560 179.467160 610.666320 1067.936650 -80.374240 409.273380 1070.960690 51.171890 547.898010 750.943420 215.266430 607.982600 687.815310 120.779340 531.444210 629.330870 200.611400 655.666020 777.140750 -144.396440 755.214970 777.621830 -85.276080 701.808040 677.369810 -136.900120 445.224640 459.943600 183.238710 517.349120 416.347110 127.919160 446.947020 372.674530 185.783550 717.358400 481.398650 -133.407240 765.208860 423.423310 -89.138980 691.679500 440.619510 -140.072300 326.874510 72.735120 91.254230 469.584010 77.221300 61.203110 461.504490 63.182080 167.528320 613.634400 47.334990 104.867610 597.500430 115.967160 -41.638550 766.569460 98.844140 -37.688720 737.639340 94.462590 -131.615510 869.909850 63.586430 -79.498690 637.766970 1387.562500 37.661710 540.898440 1471.526370 252.625750 553.813600 1496.213380 -166.884600 578.042540 1269.469730 297.566310 543.091130 1260.774050 -206.775450 554.916750 1161.599370 330.146910 479.402890 1172.704470 -242.156220 760.873900 993.857060 290.595730 734.894410 963.992800 341.870850 585.893550 943.237120 -208.244800 536.128480 933.219730 -264.133700 548.921690 38.120100 184.429570 558.067630 45.639670 73.507040 795.179690 62.357590 -147.634870 824.124570 66.382390 -48.906730 679.590210 1638.117310 125.428400 686.592410 1645.094970 -14.318410 623.496830 1805.177980 64.024690
+140 2.317000 601.274290 1071.692500 179.595730 613.333740 1065.652590 -81.539380 407.962770 1069.403200 50.467490 540.738220 749.491270 215.526610 594.483890 683.367740 120.419850 521.624150 628.421260 200.518770 650.896300 773.085570 -142.608570 751.201660 772.827640 -82.352550 696.489070 673.111390 -135.071780 431.850740 459.929050 182.811510 502.385930 415.134830 128.325590 432.132870 372.288910 185.994080 720.891540 476.105830 -132.268830 774.543880 422.957580 -86.957610 698.291560 432.587250 -138.061040 307.903050 73.284670 90.969570 450.595460 76.971650 61.006180 442.633670 63.327460 167.347850 594.571290 47.050250 104.869240 639.448850 99.133350 -40.949740 809.365600 98.619820 -39.176180 779.775940 92.599640 -132.750030 915.072880 73.844060 -82.502430 637.051760 1384.327640 36.323490 540.387330 1470.051030 251.226270 551.724240 1494.005250 -168.022600 577.113530 1268.291140 296.925230 541.604610 1257.964360 -206.516170 555.285280 1160.134770 330.135620 476.158570 1170.386470 -242.450120 765.082700 997.664610 288.236940 740.390440 966.249210 339.302950 584.742980 940.879580 -207.778080 534.633540 930.112920 -262.247040 531.124570 38.427590 184.042850 538.448360 45.076130 73.162830 840.052610 66.390760 -149.687320 869.534180 72.127420 -51.224690 678.995910 1636.530400 123.916580 685.514040 1643.197630 -16.064700 621.709960 1803.350340 61.862240
+141 2.333000 600.450320 1068.280880 179.784590 612.196040 1062.071170 -81.398220 406.996800 1067.403690 49.492530 534.772340 748.074830 215.634580 588.288270 681.447390 120.247760 511.644200 627.681270 200.990980 645.234380 768.030760 -140.917660 745.014040 766.115910 -80.240070 690.067990 667.964900 -133.502150 418.353820 460.081600 183.643450 487.809270 413.923070 128.236130 417.616820 372.989350 186.222520 725.871520 469.847930 -131.467790 781.101200 422.347560 -85.464740 704.281860 424.812620 -136.554870 289.119290 74.011590 90.829210 431.987430 76.902370 60.593380 423.788420 63.475100 167.160610 575.581480 46.833980 104.742320 680.569030 86.050380 -40.990470 849.210750 101.891100 -39.866120 820.341490 94.383030 -133.477920 956.678590 87.840580 -83.812930 635.908630 1381.994260 35.684560 539.842530 1468.014040 250.408130 551.898740 1490.610350 -168.751360 578.010380 1266.365970 296.485630 539.285030 1254.964720 -206.372210 555.432190 1158.369870 329.863650 475.638670 1167.353390 -242.855990 768.359310 1000.645200 286.244200 744.033200 968.335630 337.683780 583.857480 938.049560 -207.679730 532.939330 927.085820 -261.604520 510.446380 37.989730 183.918370 518.623900 44.551580 73.052910 882.802550 74.298870 -150.669420 911.821230 81.974170 -52.188080 679.144040 1634.772460 121.744290 685.030210 1640.951050 -17.784960 620.183840 1800.908810 59.180360
+142 2.350000 599.039430 1065.905880 179.717650 612.119510 1058.672490 -81.078880 406.376160 1064.947750 48.228460 524.936400 745.320560 215.371920 580.719910 679.147710 120.384890 502.296910 626.265200 200.534850 639.563780 762.429260 -139.588150 738.551330 757.985660 -77.003460 683.420350 661.907590 -133.123120 404.759860 460.056520 183.413700 475.407530 413.274380 128.395080 401.308590 373.149480 185.807330 724.329100 464.633970 -129.408100 786.775150 422.058140 -84.153570 709.439880 417.680080 -135.414460 270.478520 74.981580 90.784160 413.748690 77.035130 59.971910 404.988190 63.617530 166.981570 556.609920 46.593140 104.464180 719.288450 76.765410 -41.893130 884.938290 108.298890 -39.470520 857.972840 99.450610 -133.602160 993.702640 105.015380 -83.101070 636.028020 1379.023560 35.036330 539.374690 1465.300540 248.741120 551.884220 1486.711790 -169.976270 576.453190 1264.053960 296.209050 540.219540 1251.605220 -208.021560 555.425290 1156.334350 329.340150 475.383420 1163.467410 -243.352130 770.200200 1002.302730 283.427760 747.271790 969.790770 335.009090 583.137020 934.576900 -207.480620 532.443730 923.511960 -261.942200 491.319430 37.372170 183.771850 498.670260 44.035450 73.292950 922.348020 85.753680 -150.418330 949.663020 95.153100 -51.587840 677.897160 1631.758670 118.849140 684.850770 1637.880740 -19.726290 619.709410 1797.850590 56.795770
+143 2.367000 597.199580 1063.389040 179.307130 612.457150 1055.102660 -81.465170 406.049500 1062.085820 46.704250 520.155820 744.212400 214.917830 572.724980 677.553160 119.848570 492.811830 625.078060 200.162140 634.732970 756.821110 -138.722610 732.158330 750.174130 -73.818640 676.444950 654.980040 -132.985060 391.844540 460.909330 182.649150 459.547000 412.143280 129.246610 386.953980 373.860960 185.344940 724.570800 458.842070 -127.559510 790.651730 422.157350 -83.684650 713.484740 411.425290 -134.449750 251.912450 76.287120 90.767280 395.786100 77.365100 59.241390 386.226170 63.824890 166.830430 537.597780 46.239590 104.085190 753.804140 70.890420 -43.461240 915.579160 116.918410 -37.948110 891.099790 106.849370 -132.870800 1025.163820 123.927760 -80.478510 635.777770 1375.861820 33.382850 539.077820 1462.784910 246.840590 554.582520 1482.484990 -172.856190 576.174010 1261.469480 294.040410 541.232300 1247.568730 -209.011140 555.267030 1154.059200 328.529210 475.588440 1159.963010 -243.870710 771.245300 1003.083680 281.246490 749.539000 969.894710 333.636380 582.995970 930.812810 -207.790160 532.512390 919.881840 -262.347140 472.480410 37.190550 183.351850 478.678340 43.465610 73.792320 957.231510 99.573280 -148.910600 981.858220 110.131770 -49.495130 676.826540 1628.959110 117.938580 684.505620 1634.797730 -22.189620 618.627200 1794.791020 53.679100
+144 2.383000 596.062560 1059.913700 178.620930 613.747070 1051.767940 -81.808190 405.905180 1058.917720 44.967850 513.140690 742.023440 214.356280 566.151250 674.509890 120.747800 485.209410 623.519710 199.294130 631.303770 751.704350 -138.259800 726.589360 743.062010 -70.197360 670.469420 649.133420 -132.610890 379.261900 461.520110 182.549510 446.152100 412.133540 128.840560 373.630340 374.245510 184.783360 724.380740 453.920350 -127.228520 791.019530 422.356350 -80.604090 716.651430 406.166320 -133.644040 233.346570 78.017320 90.704460 377.957670 77.879260 58.562250 367.481140 64.188600 166.730290 518.541200 45.807690 103.728210 782.343690 67.493580 -45.449790 940.202820 126.191080 -35.515340 918.285520 115.060640 -131.170850 1050.191770 142.312870 -76.432040 635.359800 1372.127320 32.278670 536.838810 1459.631710 244.718920 555.533690 1478.694340 -174.376400 575.238460 1259.145260 293.285400 542.544800 1243.679320 -209.521320 554.947330 1151.583010 327.388730 475.666560 1156.033570 -244.110090 771.904110 1002.354980 279.546110 750.496150 969.400630 330.934080 582.469300 925.917660 -208.215230 532.905270 915.487060 -263.538600 452.299740 37.622280 183.566210 458.950680 42.864720 74.335240 985.861150 113.677650 -146.262280 1007.425960 124.843190 -46.193320 677.535830 1627.123290 114.913380 683.995970 1631.653320 -25.115370 617.708440 1790.680300 50.989320
+145 2.400000 595.116760 1057.858030 178.004300 614.733640 1048.483520 -82.717900 405.836550 1055.581540 43.062620 508.312440 740.263550 213.898620 557.416690 670.338930 119.874470 476.657470 623.264590 199.259350 629.611630 747.446660 -138.116350 722.379150 736.497190 -67.467600 667.481870 644.398560 -130.993470 367.027800 462.513280 182.778340 433.944850 411.632900 128.850200 360.559540 375.395720 184.222670 724.040160 449.940890 -125.847560 791.528990 422.424560 -79.431680 719.665100 401.949800 -133.088360 214.739530 80.238850 90.528140 360.132020 78.578040 58.082030 348.743260 64.751750 166.682210 499.451230 45.434340 103.572310 803.590450 65.157620 -48.105210 957.865360 134.117420 -32.500470 938.420780 122.158260 -128.626140 1068.135860 157.413300 -71.605360 634.521610 1368.548830 30.079030 537.983950 1457.167110 242.414700 555.691280 1474.671020 -176.861740 574.985530 1255.958130 290.848790 543.368650 1238.506840 -211.660800 554.506770 1149.000000 325.958340 477.259740 1151.055050 -245.811540 772.618590 1000.780820 277.001920 751.628230 967.912050 329.972780 583.976320 921.091310 -208.639470 534.196110 911.034360 -265.235530 433.894100 37.012340 183.624940 439.921780 42.333470 74.702820 1006.880000 125.330700 -142.687410 1025.638430 136.950780 -42.077990 677.619630 1623.743650 112.133010 683.594360 1627.916500 -27.383170 616.940490 1788.082890 47.282120
+146 2.417000 595.349370 1055.578130 177.665480 616.500240 1046.448730 -83.093850 405.826390 1052.268310 41.028310 503.362090 738.726560 214.360230 553.365540 668.026120 120.703910 469.568330 621.829470 197.903290 629.791320 744.221860 -138.230940 721.056150 732.704350 -66.301860 664.819890 640.833010 -131.499470 356.404210 463.295590 181.649050 425.032010 411.501130 126.712770 347.513760 376.951600 184.289760 723.910640 446.865300 -125.641580 792.822690 421.737580 -78.237310 723.081970 398.739110 -132.705000 196.193050 83.042180 90.225960 342.252440 79.486460 57.867590 330.065700 65.497570 166.658830 480.322240 45.187860 103.665430 816.822080 62.645270 -51.955840 968.097600 138.824330 -29.154150 950.869810 126.260180 -125.475110 1078.779420 166.537310 -66.469510 634.258850 1364.566650 28.115290 538.268980 1453.910890 239.735930 555.999880 1469.914310 -178.611400 574.822940 1253.791500 289.491790 544.595090 1234.628780 -213.079450 554.005430 1146.500000 324.332120 480.358800 1146.200070 -248.004810 771.059140 997.709470 275.001860 750.302000 965.424680 327.950680 585.622860 916.226750 -209.771740 535.320070 905.867250 -266.574070 412.822570 36.655910 184.361530 421.786350 41.970270 74.778650 1019.549010 131.900420 -138.421710 1036.181640 144.207460 -37.506740 675.970090 1620.452510 109.309950 683.885250 1624.468380 -31.059040 616.875730 1784.775880 44.264370
+147 2.433000 594.675420 1052.552000 176.974470 614.057070 1042.630130 -82.559770 405.976590 1049.220950 38.878920 498.909450 736.615910 211.540880 548.684330 664.888180 121.500730 463.010990 621.418210 197.824830 631.685180 741.984990 -138.525990 722.144960 730.954160 -66.374950 667.404910 639.165890 -129.626710 347.122310 464.593780 181.135380 412.989350 410.840000 128.259770 336.389830 378.121340 183.679630 726.064030 444.125980 -125.139920 795.333560 420.086880 -77.341350 726.892520 396.414490 -132.198170 177.952000 86.615300 89.881190 324.372620 80.648090 57.894660 311.608950 66.408030 166.654130 461.167790 44.967330 103.809040 821.764100 60.017190 -56.215880 971.317630 139.117690 -25.598940 955.730960 126.220340 -121.920590 1082.514770 167.830980 -61.131550 634.039670 1361.343870 25.755840 537.522400 1451.393310 237.225950 557.136110 1465.957150 -182.533940 574.231450 1250.770260 286.883790 546.027400 1230.290770 -215.238690 553.448970 1144.325810 322.542660 482.202610 1141.861450 -250.126110 770.682430 994.696290 273.025880 749.930910 962.447390 326.387630 586.617000 911.696530 -210.490950 537.312810 901.302980 -267.411070 395.454250 36.202590 184.092860 404.275700 41.750010 74.605380 1024.069460 131.942810 -133.716720 1039.386840 145.016420 -32.689140 676.762700 1618.337770 104.938580 683.508970 1621.787720 -34.266120 615.890140 1782.035770 40.204040
+148 2.450000 594.717830 1050.649410 176.036590 614.523250 1040.175170 -83.497110 406.471650 1046.675420 36.577360 495.697300 735.880310 210.718290 546.682680 663.057010 121.998410 457.803470 620.832820 197.432570 634.837650 740.540470 -138.912780 727.157530 731.363530 -66.324330 671.853940 638.563960 -130.261430 340.625580 465.650510 181.394320 403.246000 408.622530 128.115590 327.807650 379.426120 183.652510 732.036800 442.894440 -124.100680 797.811460 416.889280 -75.894260 730.758240 394.846740 -131.318160 160.249280 91.261110 89.660880 306.648960 82.113140 58.098820 293.577210 67.526340 166.729750 441.979770 44.643990 103.805920 818.770810 58.747300 -58.092280 968.645020 134.805420 -21.920540 954.027590 122.102820 -118.163110 1080.345580 161.082320 -55.530830 635.128360 1358.568850 22.973490 538.412840 1449.608280 234.254640 558.184880 1461.686650 -185.656220 575.353640 1249.618160 284.171450 548.407590 1226.244870 -218.107860 552.780210 1142.672850 320.530940 484.567720 1137.148070 -252.323720 768.497620 990.520450 272.047820 747.295230 958.957760 325.409150 589.115230 906.857360 -212.004390 540.767270 896.481510 -268.967960 376.618410 36.213620 184.122740 386.919040 41.489030 74.315770 1021.684570 125.828850 -128.879270 1036.323360 139.130310 -27.762670 677.126770 1616.379150 102.224960 683.731450 1620.075200 -37.786580 615.328060 1779.871580 36.690540
+149 2.467000 594.099000 1047.495120 174.841340 615.445860 1039.107670 -85.272770 407.498350 1044.771000 34.064740 493.053010 733.557130 209.855190 543.906860 660.143740 121.833410 455.395750 619.956180 196.499510 638.640200 739.664370 -139.335720 731.952450 732.382570 -67.621500 679.006100 638.827510 -130.566530 336.622860 466.529480 180.879840 397.088780 408.274750 128.084240 319.955380 380.712370 182.952130 736.440120 441.628910 -121.669910 802.726990 413.649020 -72.849510 734.339290 393.949710 -130.073730 143.297650 97.305600 89.756520 289.300230 83.937750 58.440300 276.099670 68.948280 166.968870 422.684080 44.226950 103.660870 809.295290 59.950380 -55.676190 961.540650 126.825680 -18.219940 947.475220 115.014740 -114.520200 1073.727910 148.045580 -49.866040 635.548890 1355.989750 19.906780 538.991820 1447.656010 230.436580 557.795470 1458.346190 -188.440890 575.037540 1248.282470 281.742190 550.502870 1222.619260 -219.964450 551.916200 1141.635990 318.221010 487.321170 1133.354610 -254.627030 765.874270 985.872800 270.801510 744.165100 955.121030 324.842990 591.168090 902.776060 -213.770510 543.484440 892.683230 -271.269010 356.428590 36.043880 183.875020 369.415190 40.998380 73.980610 1014.313720 115.369060 -124.279100 1028.602780 127.991020 -22.994650 677.723690 1615.180910 97.072200 684.643740 1618.016720 -41.269030 614.509340 1778.026610 32.306210
+150 2.483000 596.525020 1047.024900 172.381940 618.198970 1037.131590 -87.559690 409.167420 1043.512450 31.327540 493.263180 733.091250 208.493410 543.663700 658.514890 121.266240 454.521270 618.821590 196.084110 642.578490 739.205260 -139.820590 737.536010 734.872920 -69.230480 683.907040 638.444270 -128.784120 331.653720 467.942870 180.145800 392.326200 407.443330 127.156610 313.073490 382.196720 183.290680 742.381230 440.649690 -120.718770 805.144290 409.149750 -69.705570 737.345400 393.677280 -128.736880 127.418400 104.957740 90.296130 272.560820 86.199730 58.929470 259.220550 70.755870 167.394530 403.244230 43.835030 103.446710 795.690980 62.975950 -50.524400 951.456240 116.959850 -14.728290 937.824160 106.455700 -111.398340 1064.202030 131.786960 -44.724710 636.930970 1354.535030 17.706080 540.922180 1447.114620 226.857800 560.940610 1456.010740 -191.970310 575.004580 1247.851930 279.016270 554.054320 1219.972780 -222.391970 550.800230 1141.239380 315.596370 491.175930 1129.893070 -257.810910 761.885800 980.566100 269.561250 740.049380 950.888670 324.644710 594.473750 899.707340 -216.351900 545.842530 889.631350 -273.629490 340.311430 35.623830 185.061580 351.684230 40.248840 73.576120 1003.836790 102.830130 -120.327420 1017.873350 114.180320 -18.840250 678.125240 1614.023440 94.313940 684.706670 1616.925540 -45.763850 615.122680 1776.451420 28.022420
+151 2.500000 597.613650 1045.068850 169.864320 621.185490 1036.777470 -89.615940 411.469180 1042.821660 28.446270 493.187560 732.701350 207.378430 543.822690 657.210330 121.082580 454.664310 618.638550 196.067370 646.465450 739.156490 -140.510450 743.042240 736.325930 -73.289960 688.213200 638.863770 -126.873180 329.600430 469.255950 180.188890 388.623080 406.507630 127.545010 308.819370 384.952940 183.597550 745.297180 439.805050 -119.005620 807.503230 406.815550 -67.477040 739.509340 393.999110 -127.763310 112.983240 114.301980 91.243480 256.657750 89.021120 59.600410 242.997710 73.007580 167.970350 383.764950 43.574910 103.159540 780.138310 66.321920 -45.545220 939.322330 107.034050 -11.995270 926.271120 97.766240 -109.143910 1052.898320 115.349810 -40.748340 637.723630 1353.132810 13.825340 541.796690 1446.895750 223.004750 562.120180 1453.589360 -195.988590 574.371950 1247.559690 275.509920 556.120610 1217.644290 -225.502240 549.437870 1141.497440 312.685700 493.239750 1127.279300 -259.693940 756.359920 975.087160 269.420010 733.341860 946.980350 325.024230 597.648070 896.820980 -218.279130 549.251950 886.764340 -275.947050 321.503420 35.003190 185.668660 333.849180 39.379320 73.077690 991.490360 90.139040 -117.385560 1005.319890 100.283260 -15.739890 678.126160 1613.635250 90.629980 685.192200 1616.557860 -49.391570 614.139710 1776.270510 23.298670
diff --git a/Bindings/Python/tutorials/resources/Tutorial 5/subject01_walk1_grf.mot b/Bindings/Python/tutorials/resources/Tutorial 5/subject01_walk1_grf.mot
new file mode 100644
index 0000000000..88884a1397
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 5/subject01_walk1_grf.mot
@@ -0,0 +1,1508 @@
+subject01_walk1_grf.mot
+version=1
+nRows=1501
+nColumns=19
+inDegrees=yes
+endheader
+time ground_force_vx ground_force_vy ground_force_vz ground_force_px ground_force_py ground_force_pz 1_ground_force_vx 1_ground_force_vy 1_ground_force_vz 1_ground_force_px 1_ground_force_py 1_ground_force_pz ground_torque_x ground_torque_y ground_torque_z 1_ground_torque_x 1_ground_torque_y 1_ground_torque_z
+0 101.5119767 745.4661142 -47.44870554 0.37898285 -0.0075 0.12774652 17.26938127 20.49185173 -7.46930128 0.81009656 -0.0075 -0.05354309 0 13.53783445 0 1.5550397 -0.75741936 6.88030347
+0.0017 103.2043876 743.0973413 -46.86966548 0.37809513 -0.0075 0.12810137 18.91380164 28.77852948 -7.85752687 0.80990349 -0.0075 -0.05269428 0 12.55074067 0 1.31259011 -0.63901732 6.11982231
+0.0033 104.8844976 740.7135492 -46.28801443 0.37719739 -0.0075 0.12845514 20.50537239 37.07206456 -8.27207954 0.80968278 -0.0075 -0.05191409 0 11.57152058 0 1.08561207 -0.52055993 5.37458208
+0.005 106.5399203 738.2996154 -45.70129774 0.37628513 -0.0075 0.1288046 21.99210933 45.37815047 -8.73769237 0.80943495 -0.0075 -0.05120007 0 10.60988307 0 0.87630199 -0.40049053 4.6557842
+0.0067 108.1584244 735.8401938 -45.10743176 0.37535383 -0.0075 0.12914662 23.32367317 53.70013711 -9.27610776 0.80916055 -0.0075 -0.05054975 0 9.67494474 0 0.68661917 -0.2770961 3.97370615
+0.0083 109.7278112 733.3196148 -44.50479585 0.37439896 -0.0075 0.12947833 24.45219084 62.03819738 -9.90472197 0.8088601 -0.0075 -0.04996068 0 8.77488102 0 0.51813671 -0.14856526 3.33725661
+0.01 111.2361372 730.7218514 -43.8924258 0.37341601 -0.0075 0.12979706 25.33324305 70.38865867 -10.63559089 0.80853414 -0.0075 -0.04943038 0 7.91679523 0 0.37190981 -0.01302259 2.75372328
+0.0117 112.6717298 728.0304566 -43.27004355 0.37240058 -0.0075 0.1301005 25.92666846 78.74372232 -11.47467876 0.80818319 -0.0075 -0.04895641 0 7.10650506 0 0.2483853 0.13135323 2.22847799
+0.0133 114.0235159 725.2286088 -42.63818276 0.37134841 -0.0075 0.13038667 26.1974759 87.09152413 -12.42151994 0.80780779 -0.0075 -0.0485363 0 6.34849537 0 0.14736721 0.2863007 1.76485619
+0.015 115.2810839 722.2991605 -41.99815198 0.37025539 -0.0075 0.13065393 26.11679042 95.41657273 -13.46923254 0.80740847 -0.0075 -0.04816759 0 5.64587751 0 0.06801119 0.4533702 1.36415562
+0.0167 116.4349634 719.2247373 -41.35202696 0.36911768 -0.0075 0.13090103 25.66265629 103.7005563 -14.60484055 0.80698576 -0.0075 -0.04784782 0 5.00048053 0 0.00884879 0.63382029 1.02566849
+0.0183 117.4769986 715.9878959 -40.70265004 0.36793175 -0.0075 0.13112703 24.82074998 111.9233633 -15.8101088 0.80654019 -0.0075 -0.04757452 0 4.41301932 0 -0.03211197 0.82856257 0.74688025
+0.02 118.4004426 712.5713196 -40.05342369 0.36669441 -0.0075 0.13133136 23.58504053 120.0644971 -17.06244486 0.80607229 -0.0075 -0.04734524 0 3.88316758 0 -0.05729425 1.03805063 0.52370112
+0.0217 119.2004186 708.9580586 -39.40826979 0.36540298 -0.0075 0.13151371 21.95816977 128.1043901 -18.33625392 0.8055826 -0.0075 -0.04715751 0 3.40988562 0 -0.06940774 1.26222582 0.35079184
+0.0233 119.8740371 705.1317564 -38.77134816 0.36405532 -0.0075 0.13167405 19.95163194 136.0259714 -19.60428234 0.80507164 -0.0075 -0.04700888 0 2.99156146 0 -0.07130665 1.50043635 0.22186763
+0.025 120.4206584 701.0770011 -38.14691574 0.36264997 -0.0075 0.13181255 17.58575017 143.816028 -20.8391193 0.80453995 -0.0075 -0.04689688 0 2.62624675 0 -0.06583298 1.75147647 0.13012926
+0.0267 120.8419085 696.779595 -37.53908323 0.36118624 -0.0075 0.1319296 14.88930284 151.4664015 -22.01460166 0.80398806 -0.0075 -0.04681905 0 2.31183868 0 -0.05568962 2.01356166 0.06861071
+0.0283 121.1417972 692.2268569 -36.95159014 0.35966428 -0.0075 0.13202572 11.89884612 158.9750362 -23.10713848 0.8034165 -0.0075 -0.04677294 0 2.04625584 0 -0.04329947 2.28439645 0.03049003
+0.03 121.3265947 687.4079212 -36.38756277 0.3580852 -0.0075 0.13210156 8.6577713 166.3466222 -24.09684498 0.8028258 -0.0075 -0.04675607 0 1.82749455 0 -0.03068156 2.56126297 0.009462
+0.0317 121.4046371 682.3139953 -35.84928096 0.35645113 -0.0075 0.1321579 5.21502526 173.5929094 -24.96826285 0.80221649 -0.0075 -0.04676599 0 1.65363747 0 -0.01940243 2.84109148 -0.00006482
+0.0333 121.3861962 676.9385661 -35.33807031 0.35476531 -0.0075 0.13219558 1.62355771 180.7325823 -25.71102429 0.80158911 -0.0075 -0.04680024 0 1.52297431 0 -0.01048547 3.12061428 -0.00274938
+0.035 121.2828697 671.2775815 -34.85401463 0.35303203 -0.0075 0.13221556 -2.06129386 187.7908853 -26.31987177 0.80094418 -0.0075 -0.04685635 0 1.43377568 0 -0.0044114 3.39645382 -0.00217642
+0.0367 121.1073152 665.3295932 -34.39599385 0.35125675 -0.0075 0.13221889 -5.78372469 194.7986914 -26.7945546 0.80028224 -0.0075 -0.04693188 0 1.3843048 0 -0.00111147 3.66531756 -0.00080799
+0.0383 120.8725731 659.0957364 -33.96153443 0.34944594 -0.0075 0.13220671 -9.48933956 201.7914386 -27.13930718 0.79960382 -0.0075 -0.04702434 0 1.37263996 0 0 3.92407108 0
+0.04 120.5915154 652.5797867 -33.54687629 0.34760705 -0.0075 0.13218029 -13.12695862 208.8077061 -27.36209452 0.79890945 -0.0075 -0.04713129 0 1.39654329 0 0 4.16992248 0
+0.0417 120.2762058 645.7880222 -33.14702749 0.3457484 -0.0075 0.132141 -16.65039886 215.8876804 -27.47356177 0.7981993 -0.0075 -0.0472519 0 1.45329194 0 0 4.4004967 0
+0.0433 119.9374281 638.7290585 -32.75591822 0.34387904 -0.0075 0.13209035 -20.02007583 223.0715128 -27.48595994 0.79748087 -0.0075 -0.04739165 0 1.53960198 0 0 4.61355384 0
+0.045 119.5840646 631.4136329 -32.36661484 0.34200856 -0.0075 0.13202997 -23.20416664 230.397644 -27.41197655 0.79676384 -0.0075 -0.04755609 0 1.65156753 0 0 4.80724234 0
+0.0467 119.2225827 623.8543232 -31.97152665 0.34014682 -0.0075 0.13196166 -26.17953146 237.9013496 -27.2635033 0.79605866 -0.0075 -0.04775032 0 1.78456257 0 0 4.98019155 0
+0.0483 118.8569379 616.065207 -31.56279694 0.33830387 -0.0075 0.13188729 -28.93234304 245.613221 -27.05081337 0.79537562 -0.0075 -0.04797884 0 1.93338362 0 0 5.13158439 0
+0.05 118.4880858 608.0615151 -31.13254476 0.33648959 -0.0075 0.13180892 -31.45808972 253.5580576 -26.78158877 0.79472393 -0.0075 -0.04824501 0 2.0922217 0 0 5.2611859 0
+0.0517 118.1141093 599.8592618 -30.67328064 0.33471357 -0.0075 0.13172865 -33.76123717 261.7538934 -26.46046838 0.79411127 -0.0075 -0.04855107 0 2.2548993 0 0 5.36938361 0
+0.0533 117.7302728 591.4747805 -30.17818809 0.33298473 -0.0075 0.13164865 -35.85456617 270.2113788 -26.08876549 0.79354298 -0.0075 -0.04889788 0 2.41502139 0 0 5.45710946 0
+0.055 117.3293886 582.9243852 -29.64149829 0.33131132 -0.0075 0.13157109 -37.75805017 278.9334371 -25.66448005 0.79302188 -0.0075 -0.04928495 0 2.56624731 0 0 5.52583786 0
+0.0567 116.9021455 574.22394 -29.05872092 0.32970057 -0.0075 0.13149812 -39.49735284 287.9152229 -25.18263325 0.79254833 -0.0075 -0.04971046 0 2.70253717 0 0 5.57745762 0
+0.0583 116.4377616 565.3885097 -28.4268948 0.32815859 -0.0075 0.13143175 -41.10231285 297.1444347 -24.63586158 0.79211993 -0.0075 -0.05017146 0 2.81845234 0 0 5.61422878 0
+0.06 115.9246638 556.432046 -27.74476446 0.32669028 -0.0075 0.13137383 -42.60508828 306.6017423 -24.01520069 0.79173184 -0.0075 -0.05066393 0 2.90939629 0 0 5.63867694 0
+0.0617 115.3510882 547.3671056 -27.01282003 0.3252991 -0.0075 0.13132595 -44.03828766 316.2616261 -23.3109425 0.79137709 -0.0075 -0.05118305 0 2.971807 0 0 5.65348363 0
+0.0633 114.7059941 538.2046226 -26.23334123 0.32398711 -0.0075 0.13128937 -45.43323553 326.0932175 -22.51371795 0.7910469 -0.0075 -0.05172343 0 3.00344068 0 0 5.66140321 0
+0.065 113.9796497 528.9537294 -25.41027834 0.32275478 -0.0075 0.13126493 -46.81827725 336.0613801 -21.61533071 0.7907311 -0.0075 -0.05227921 0 3.00339213 0 0 5.66514844 0
+0.0667 113.1643827 519.6217053 -24.54910313 0.32160106 -0.0075 0.13125302 -48.21737526 346.1278807 -20.60966074 0.79041865 -0.0075 -0.05284444 0 2.97218668 0 0 5.66730827 0
+0.0683 112.2550525 510.2138929 -23.65655233 0.32052326 -0.0075 0.13125347 -49.6490579 356.2525675 -19.4933355 0.79009793 -0.0075 -0.05341321 0 2.91176213 0 0 5.67022206 0
+0.07 111.2495062 500.7338023 -22.74036925 0.3195171 -0.0075 0.13126556 -51.12564326 366.3945872 -18.2661789 0.78975725 -0.0075 -0.05397987 0 2.82536527 0 0 5.67592949 0
+0.0717 110.1487108 491.1832293 -21.80894742 0.31857669 -0.0075 0.13128796 -52.65289882 376.5135259 -16.93143326 0.78938532 -0.0075 -0.05453919 0 2.7173537 0 0 5.68612352 0
+0.0733 108.9567735 481.562448 -20.8709671 0.31769457 -0.0075 0.13131878 -54.2301359 386.5705187 -15.49569313 0.78897156 -0.0075 -0.05508654 0 2.59296597 0 0 5.70208986 0
+0.075 107.6808324 471.870472 -19.93506453 0.31686177 -0.0075 0.13135557 -55.85059646 396.5291796 -13.96860474 0.78850653 -0.0075 -0.05561798 0 2.45808173 0 0 5.72467445 0
+0.0767 106.3305108 462.105366 -19.00941748 0.31606787 -0.0075 0.13139537 -57.50229684 406.3565341 -12.36228854 0.78798227 -0.0075 -0.05613034 0 2.31882077 0 0 5.75427327 0
+0.0783 104.9175923 452.2646206 -18.10153206 0.31530119 -0.0075 0.13143475 -59.16910597 416.0236735 -10.69069818 0.78739252 -0.0075 -0.05662134 0 2.18131528 0 0 5.79083912 0
+0.08 103.4551307 442.345538 -17.21790013 0.31454891 -0.0075 0.13147003 -60.83208789 425.5063754 -8.9687203 0.78673295 -0.0075 -0.05708965 0 2.05131856 0 0 5.83387022 0
+0.0817 101.9567642 432.3456626 -16.3638485 0.31379727 -0.0075 0.1314973 -62.4708838 434.7854929 -7.21128278 0.7860013 -0.0075 -0.0575348 0 1.93395749 0 0 5.88250277 0
+0.0833 100.4358547 422.2631696 -15.54340078 0.31303189 -0.0075 0.13151265 -64.0652869 443.8471754 -5.43249851 0.78519746 -0.0075 -0.05795723 0 1.83345049 0 0 5.93556752 0
+0.085 98.90468803 412.0972873 -14.75921499 0.31223813 -0.0075 0.13151228 -65.59662293 452.6829615 -3.64482629 0.78432342 -0.0075 -0.05835819 0 1.75289997 0 0 5.99165964 0
+0.0867 97.37366873 401.8486136 -14.01266192 0.31140142 -0.0075 0.13149268 -67.04900042 461.2896375 -1.85845634 0.78338334 -0.0075 -0.05873967 0 1.69420772 0 0 6.04926429 0
+0.0883 95.8506451 391.5194254 -13.30381442 0.31050769 -0.0075 0.13145084 -68.41040456 469.6690788 -0.08078802 0.78238324 -0.0075 -0.05910426 0 1.65791849 0 0 6.10681021 0
+0.09 94.34058199 381.1139092 -12.63170796 0.30954396 -0.0075 0.1313843 -69.6735029 477.8277618 1.68375553 0.78133091 -0.0075 -0.05945503 0 1.64333892 0 0 6.16280319 0
+0.0917 92.84500908 370.6382811 -11.9944526 0.30849873 -0.0075 0.13129144 -70.83605966 485.77635 3.43385961 0.78023551 -0.0075 -0.05979538 0 1.64852594 0 0 6.21588495 0
+0.0933 91.36213591 360.1008732 -11.38952237 0.30736257 -0.0075 0.13117144 -71.90099871 493.5290391 5.17104119 0.7791073 -0.0075 -0.06012882 0 1.67048298 0 0 6.26495198 0
+0.095 89.88685667 349.5120626 -10.81391637 0.30612861 -0.0075 0.13102452 -72.87625974 501.1028746 6.89927345 0.77795718 -0.0075 -0.06045889 0 1.7052467 0 0 6.30920772 0
+0.0967 88.41115956 338.8841384 -10.26446034 0.30479301 -0.0075 0.13085185 -73.77411869 508.5170123 8.62447357 0.77679629 -0.0075 -0.06078889 0 1.74817595 0 0 6.34825298 0
+0.0983 86.92459718 328.231066 -9.73800924 0.30335527 -0.0075 0.13065562 -74.61036928 515.791889 10.35371181 0.77563563 -0.0075 -0.06112183 0 1.79420652 0 0 6.38210142 0
+0.1 85.41500006 317.5681901 -9.23160441 0.30181867 -0.0075 0.130439 -75.40328577 522.9485342 12.09455445 0.77448553 -0.0075 -0.06146023 0 1.83806222 0 0 6.41115585 0
+0.1017 83.86935836 306.9118594 -8.74273373 0.30019031 -0.0075 0.1302059 -76.17239736 530.0076644 13.85419569 0.77335541 -0.0075 -0.06180606 0 1.87462546 0 0 6.43622297 0
+0.1033 82.27446692 296.2790299 -8.2692967 0.29848108 -0.0075 0.12996107 -76.93719101 536.989104 15.63883618 0.77225325 -0.0075 -0.06216068 0 1.89906183 0 0 6.45842437 0
+0.105 80.61805178 285.6868541 -7.8097981 0.29670567 -0.0075 0.1297097 -77.71587682 543.911001 17.45288946 0.77118549 -0.0075 -0.06252479 0 1.90719171 0 0 6.47914724 0
+0.1067 78.88937189 275.1522329 -7.36329429 0.29488197 -0.0075 0.1294573 -78.52425639 550.7893227 19.29859061 0.7701567 -0.0075 -0.06289845 0 1.89559764 0 0 6.49994577 0
+0.1083 77.08001191 264.6914863 -6.92950884 0.2930306 -0.0075 0.12920938 -79.37470717 557.6373115 21.1755835 0.76916958 -0.0075 -0.06328111 0 1.86186797 0 0 6.52248101 0
+0.11 75.18438473 254.3199643 -6.50867271 0.29117408 -0.0075 0.12897117 -80.27545573 564.4651344 23.08069606 0.7682249 -0.0075 -0.06367168 0 1.80467433 0 0 6.54835048 0
+0.1117 73.20014262 244.051786 -6.10151627 0.28933592 -0.0075 0.12874742 -81.23011893 571.2796911 25.00801899 0.76732153 -0.0075 -0.06406863 0 1.7238372 0 0 6.57901305 0
+0.1133 71.12834481 233.8996638 -5.70925549 0.28753943 -0.0075 0.12854198 -82.23753654 578.0843668 26.94894816 0.76645664 -0.0075 -0.06447009 0 1.62038555 0 0 6.61571352 0
+0.115 68.97330351 223.8748221 -5.33340889 0.28580665 -0.0075 0.12835774 -83.2918597 584.8791309 28.89261814 0.76562587 -0.0075 -0.06487391 0 1.49644048 0 0 6.65932413 0
+0.1167 66.7424825 213.9869803 -4.97585644 0.28415711 -0.0075 0.12819622 -84.38300241 591.6604947 30.82617822 0.76482364 -0.0075 -0.06527788 0 1.35526567 0 0 6.71035671 0
+0.1183 64.44583893 204.2444531 -4.63864016 0.28260637 -0.0075 0.12805762 -85.49724047 598.421832 32.73549569 0.76404332 -0.0075 -0.0656797 0 1.2009273 0 0 6.76890649 0
+0.12 62.09544762 194.6543362 -4.32402579 0.28262136 -0.0075 0.12795143 -86.6180845 605.1535217 34.60557473 0.76327771 -0.0075 -0.06607713 0.00212546 1.03130008 -0.28344846 0 6.83467916 0
+0.1217 59.70464227 185.2227025 -4.03430981 0.28266621 -0.0075 0.12784521 -87.72727187 611.8433662 36.42118306 0.76251927 -0.0075 -0.06646807 0.00058736 0.86102721 -0.52379341 0 6.90697869 0
+0.1233 57.28734466 175.9549603 -3.77188805 0.28274072 -0.0075 0.12773896 -88.80578352 618.4769931 38.16746101 0.76176038 -0.0075 -0.06685057 -0.00330068 0.69510832 -0.72439062 0 6.98481916 0
+0.125 54.85730172 166.8561345 -3.53917235 0.28284472 -0.0075 0.12763269 -89.83495023 625.038255 39.83038725 0.76099371 -0.0075 -0.06722288 -0.0081769 0.5385307 -0.88968947 0 7.06696698 0
+0.1267 52.42733708 157.931232 -3.33847626 0.28297802 -0.0075 0.1275264 -90.79741868 631.5097943 41.39728076 0.76021232 -0.0075 -0.06758346 -0.0127208 0.39604116 -1.02492091 0 7.15198286 0
+0.1283 50.0088355 149.1855502 -3.17207663 0.28314043 -0.0075 0.12742009 -91.67802004 637.8734099 42.8570526 0.75940997 -0.0075 -0.06793099 -0.01570415 0.2720298 -1.13577935 0 7.23844495 0
+0.13 47.61112992 140.6249927 -3.04197536 0.28333177 -0.0075 0.12731376 -92.46449213 644.1106747 44.2006235 0.75858121 -0.0075 -0.06826435 -0.01610743 0.17018128 -1.22808253 0 7.3249793 0
+0.1317 45.24141603 132.2562759 -2.94996915 0.28355185 -0.0075 0.12720742 -93.14801908 650.2032135 45.42088431 0.75772153 -0.0075 -0.06858263 -0.01310934 0.09353782 -1.3073843 0 7.4103932 0
+0.1333 42.90433538 124.087082 -2.89738407 0.28380049 -0.0075 0.12710106 -93.72338498 656.1333029 46.51296977 0.75682742 -0.0075 -0.06888506 -0.00618774 0.04420326 -1.3787277 0 7.49373322 0
+0.135 40.60232083 116.1261725 -2.88507622 0.28407751 -0.0075 0.1269947 -94.1890993 661.8842062 47.47412631 0.75589645 -0.0075 -0.06917105 0.00491094 0.02335953 -1.44630807 0 7.57438685 0
+0.1367 38.33570327 108.3833209 -2.91319425 0.2843827 -0.0075 0.12688832 -94.54728201 667.4405479 48.30362754 0.75492718 -0.0075 -0.06944018 0.02011834 0.0311741 -1.51328615 0 7.6520445 0
+0.1383 36.10311654 100.8692695 -2.9811046 0.2847159 -0.0075 0.12678194 -94.80316345 672.7886595 49.00271436 0.7539192 -0.0075 -0.06969215 0.03909238 0.06681284 -1.58162366 0 7.72674046 0
+0.14 33.9020042 93.59552711 -3.08724584 0.28507692 -0.0075 0.12667556 -94.964632 677.9167343 49.5743159 0.75287309 -0.0075 -0.06992685 0.0612207 0.12846283 -1.65205616 0 7.79884091 0
+0.1417 31.72923726 86.57412231 -3.22892801 0.28546556 -0.0075 0.12656917 -95.04162218 682.815187 50.02296974 0.75179023 -0.0075 -0.07014431 0.08564977 0.21331044 -1.72403981 0 7.8689543 0
+0.1433 29.58182468 79.81726132 -3.40240289 0.28588165 -0.0075 0.12646278 -95.04530987 687.4765293 50.35452115 0.75067288 -0.0075 -0.07034472 0.11137223 0.31779019 -1.79587566 0 7.93792476 0
+0.145 27.45728888 73.33696882 -3.60263357 0.286325 -0.0075 0.1263564 -94.98733619 691.8956314 50.57603994 0.74952401 -0.0075 -0.07052845 0.13724555 0.43754716 -1.86490428 0 8.00666629 0
+0.1467 25.35455162 67.1447017 -3.8234347 0.28679542 -0.0075 0.12625002 -94.87915718 696.0695921 50.69545591 0.74834714 -0.0075 -0.07069607 0.16208007 0.5677481 -1.92762432 0 8.07609432 0
+0.1483 23.27414985 61.25089518 -4.05746636 0.28729273 -0.0075 0.12614365 -94.73131153 699.9977051 50.72155829 0.74714624 -0.0075 -0.07084831 0.18467639 0.70313808 -1.98006393 0 8.14698491 0
+0.15 21.21869988 55.66466762 -4.29642244 0.28781675 -0.0075 0.12603728 -94.55287459 703.6813063 50.66372296 0.74592553 -0.0075 -0.07098613 0.20388461 0.83832254 -2.01798212 0 8.21990636 0
+0.1517 19.19308779 50.39336193 -4.53118206 0.28836728 -0.0075 0.12593093 -94.35106783 707.1235186 50.53171221 0.74468941 -0.0075 -0.07111068 0.21865287 0.96795456 -2.03720474 0 8.29510765 0
+0.1533 17.20448419 45.44230567 -4.75211543 0.28894414 -0.0075 0.12582459 -94.13091152 710.3290362 50.33565093 0.74344223 -0.0075 -0.07122323 0.22808285 1.08689625 -2.03387819 0 8.37249201 0
+0.155 15.26221019 40.81453228 -4.94946544 0.28954715 -0.0075 0.12571827 -93.89511148 713.303705 50.08573317 0.74218825 -0.0075 -0.07132522 0.23147592 1.19049473 -2.00477344 0 8.4516077 0
+0.1567 13.37739285 36.51058185 -5.11357698 0.29017612 -0.0075 0.12561197 -93.64404088 716.0543651 49.79214968 0.7409314 -0.0075 -0.07141815 0.22833513 1.27466955 -1.94746552 0 8.53153892 0
+0.1583 11.56271535 32.52841599 -5.23547991 0.29083087 -0.0075 0.12550568 -93.37595765 718.5883087 49.46482266 0.73967519 -0.0075 -0.07150361 0.21842282 1.33621717 -1.86049587 0 8.61102475 0
+0.16 9.83158888 28.86339598 -5.30716986 0.29151121 -0.0075 0.12539942 -93.08728639 720.9131035 49.11335212 0.73842256 -0.0075 -0.07158317 0.20173753 1.37276939 -1.74355282 0 8.68846844 0
+0.1617 8.19781211 25.50836549 -5.32208978 0.29221695 -0.0075 0.12529319 -92.77298622 723.0361698 48.74673704 0.73717582 -0.0075 -0.07165838 0.17853366 1.38304018 -1.5974243 0 8.76202466 0
+0.1633 6.67470967 22.45373947 -5.27540626 0.29294791 -0.0075 0.12518698 -92.42709386 724.9645348 48.3732939 0.73593659 -0.0075 -0.07173068 0.14929698 1.36679201 -1.42407016 0 8.82969999 0
+0.165 5.27457741 19.68774747 -5.16435635 0.2937039 -0.0075 0.1250808 -92.04315215 726.7045812 48.00052868 0.73470573 -0.0075 -0.07180134 0.11475457 1.32482653 -1.22650781 0 8.88953221 0
+0.1667 4.00805885 17.19665682 -4.98843424 0.29448475 -0.0075 0.12497465 -91.61481898 728.2618443 47.63488247 0.73348348 -0.0075 -0.07187152 0.07583927 1.25898872 -1.00869461 0 8.93968256 0
+0.1683 2.88347788 14.96508691 -4.74946638 0.29529026 -0.0075 0.12486853 -91.13630233 729.6410077 47.28179778 0.73226942 -0.0075 -0.07194212 0.0336649 1.17204365 -0.77538175 0 8.97850296 0
+0.17 1.90650082 12.9763539 -4.45172267 0.29612024 -0.0075 0.12476245 -90.60286139 730.8457591 46.94554337 0.73106262 -0.0075 -0.07201387 -0.010479 1.06761105 -0.53192014 0 9.00475428 0
+0.1717 1.07968301 11.21285648 -4.10159326 0.29697452 -0.0075 0.12465641 -90.01121115 731.8790477 46.62933291 0.72986172 -0.0075 -0.07208733 -0.05525139 0.94984695 -0.28402616 0 9.01758401 0
+0.1733 0.40247214 9.65643223 -3.70758239 0.2978529 -0.0075 0.12455041 -89.35983317 732.7429917 46.33527484 0.72866515 -0.0075 -0.07216285 -0.0992078 0.82345842 -0.03751461 0 9.01666995 0
+0.175 -0.1291005 8.28871531 -3.27976959 0.2987552 -0.0075 0.12444445 -88.64911866 733.4392178 46.06456786 0.72747129 -0.0075 -0.07224067 -0.14092356 0.69328662 0.20183613 0 9.0022224 0
+0.1767 -0.52206489 7.0915362 -2.82947803 0.29968125 -0.0075 0.12433853 -87.88148115 733.9690537 45.8176001 0.72627867 -0.0075 -0.07232096 -0.1790018 0.56413779 0.42861299 0 8.97501408 0
+0.1783 -0.78638511 6.04715661 -2.36874413 0.30063084 -0.0075 0.12423267 -87.06136726 734.3337158 45.59415898 0.72508619 -0.0075 -0.07240383 -0.21212854 0.44059874 0.63789957 0 8.93629434 0
+0.18 -0.93461826 5.13862729 -1.90977036 0.30160379 -0.0075 0.12412685 -86.19498765 734.5346778 45.39372841 0.72389323 -0.0075 -0.0724894 -0.23911986 0.32675796 0.82545125 0 8.88774214 0
+0.1817 -0.9813154 4.35001887 -1.46438459 0.30259993 -0.0075 0.12402108 -85.29018978 734.5737906 45.21555196 0.72269989 -0.0075 -0.07257793 -0.25898133 0.22605165 0.98788223 0 8.83137705 0
+0.1833 -0.94257398 3.66659875 -1.04341165 0.30361906 -0.0075 0.12391537 -84.35608667 734.4536092 45.05908014 0.72150696 -0.0075 -0.07266975 -0.27094261 0.1410311 1.12272949 0 8.76934604 0
+0.185 -0.83531338 3.07502898 -0.65636792 0.304661 -0.0075 0.12380971 -83.40261658 734.1773215 44.92403186 0.72031605 -0.0075 -0.07276536 -0.27445983 0.07338542 1.22853633 0 8.70391586 0
+0.1867 -0.67681984 2.56342725 -0.31081948 0.30572556 -0.0075 0.12370411 -82.44009014 733.7490289 44.81065348 0.71912952 -0.0075 -0.07286541 -0.26931017 0.02368801 1.30485552 0 8.63724989 0
+0.1883 -0.48383851 2.12141012 -0.01227908 0.30681256 -0.0075 0.12359857 -81.47879391 733.1735033 44.71975426 0.71795045 -0.0075 -0.07297074 -0.25550845 -0.00842739 1.35229918 0 8.57131831 0
+0.19 0 0 0 0.30792181 -0.0075 0.12349309 -80.52846815 732.4561664 44.65285726 0.71678245 -0.0075 -0.07308226 0 0 0 0 8.50778482 0
+0.1917 0 0 0 0.30905313 -0.0075 0.12338767 -79.59781072 731.6029454 44.61211267 0.71562951 -0.0075 -0.073201 0 0 0 0 8.44790067 0
+0.1933 0 0 0 0.31020633 -0.0075 0.12328233 -78.69421645 730.6199299 44.60015822 0.71449572 -0.0075 -0.073328 0 0 0 0 8.39242246 0
+0.195 0 0 0 0.31138123 -0.0075 0.12317705 -77.8233846 729.5131902 44.62012719 0.71338495 -0.0075 -0.0734642 0 0 0 0 8.34160619 0
+0.1967 0 0 0 0.31257764 -0.0075 0.12307184 -76.98910935 728.2883123 44.67520052 0.71230069 -0.0075 -0.07361039 0 0 0 0 8.2952608 0
+0.1983 0 0 0 0.31379537 -0.0075 0.12296671 -76.19318842 726.9502595 44.76854369 0.71124566 -0.0075 -0.07376712 0 0 0 0 8.25268809 0
+0.2 0 0 0 0.31503424 -0.0075 0.12286165 -75.43541932 725.5029347 44.90288862 0.71022158 -0.0075 -0.07393458 0 0 0 0 8.21291334 0
+0.2017 0 0 0 0.31629407 -0.0075 0.12275667 -74.71363966 723.9491461 45.08032769 0.70922901 -0.0075 -0.07411254 0 0 0 0 8.17469718 0
+0.2033 0 0 0 0.31757467 -0.0075 0.12265177 -74.0240008 722.2903532 45.30193715 0.70826722 -0.0075 -0.07430029 0 0 0 0 8.13667369 0
+0.205 0 0 0 0.31887584 -0.0075 0.12254695 -73.36125165 720.5267213 45.5676278 0.70733409 -0.0075 -0.07449667 0 0 0 0 8.09746888 0
+0.2067 0 0 0 0.32019742 -0.0075 0.12244222 -72.71903582 718.6572475 45.87602713 0.70642613 -0.0075 -0.07469996 0 0 0 0 8.05582631 0
+0.2083 0 0 0 0.32153921 -0.0075 0.12233757 -72.09041859 716.6798313 46.22420604 0.70553866 -0.0075 -0.07490804 0 0 0 0 8.01072103 0
+0.21 0 0 0 0.32290103 -0.0075 0.12223301 -71.46821159 714.5917867 46.6078614 0.70466593 -0.0075 -0.07511839 0 0 0 0 7.96141607 0
+0.2117 0 0 0 0.32428269 -0.0075 0.12212855 -70.84548058 712.3899918 47.0212093 0.70380151 -0.0075 -0.0753282 0 0 0 0 7.90765428 0
+0.2133 0 0 0 0.325684 -0.0075 0.12202417 -70.21591031 710.0715862 47.4573382 0.70293852 -0.0075 -0.07553447 0 0 0 0 7.84948096 0
+0.215 0 0 0 0.32710479 -0.0075 0.12191989 -69.5741687 707.6343051 47.9082672 0.70207011 -0.0075 -0.07573419 0 0 0 0 7.78737978 0
+0.2167 0 0 0 0.32854486 -0.0075 0.12181571 -68.91614142 705.0771181 48.36536779 0.70118972 -0.0075 -0.07592449 0 0 0 0 7.72215501 0
+0.2183 0 0 0 0.33000403 -0.0075 0.12171163 -68.23924655 702.4006033 48.81959727 0.70029153 -0.0075 -0.07610278 0 0 0 0 7.65489764 0
+0.22 0 0 0 0.33148212 -0.0075 0.12160765 -67.54246223 699.6073142 49.26185854 0.69937075 -0.0075 -0.07626688 0 0 0 0 7.58687729 0
+0.2217 0 0 0 0.33297894 -0.0075 0.12150378 -66.82623674 696.7021675 49.6834505 0.69842387 -0.0075 -0.0764151 0 0 0 0 7.51947069 0
+0.2233 0 0 0 0.33449429 -0.0075 0.12140001 -66.09256697 693.6924603 50.07620759 0.69744894 -0.0075 -0.07654643 0 0 0 0 7.45409453 0
+0.225 0 0 0 0.33602801 -0.0075 0.12129635 -65.34464966 690.5880859 50.43298048 0.69644552 -0.0075 -0.07666047 0 0 0 0 7.39200436 0
+0.2267 0 0 0 0.3375799 -0.0075 0.1211928 -64.58666045 687.4011753 50.74762986 0.69541485 -0.0075 -0.07675752 0 0 0 0 7.33432275 0
+0.2283 0 0 0 0.33914978 -0.0075 0.12108937 -63.82344011 684.146148 51.01533257 0.69435955 -0.0075 -0.07683857 0 0 0 0 7.28181964 0
+0.23 0 0 0 0.34073746 -0.0075 0.12098605 -63.06021419 680.8390843 51.23252326 0.69328353 -0.0075 -0.07690519 0 0 0 0 7.23498699 0
+0.2317 0 0 0 0.34234275 -0.0075 0.12088285 -62.30213614 677.4973161 51.39699677 0.69219162 -0.0075 -0.07695946 0 0 0 0 7.19395536 0
+0.2333 0 0 0 0.34396548 -0.0075 0.12077977 -61.55404148 674.1388853 51.50772824 0.69108932 -0.0075 -0.0770038 0 0 0 0 7.15854677 0
+0.235 0 0 0 0.34560545 -0.0075 0.12067681 -60.82015268 670.7818637 51.56477583 0.68998239 -0.0075 -0.07704086 0 0 0 0 7.12827623 0
+0.2367 0 0 0 0.34726249 -0.0075 0.12057397 -60.10376221 667.4438866 51.56921318 0.68887644 -0.0075 -0.07707329 0 0 0 0 7.10239424 0
+0.2383 0 0 0 0.34893639 -0.0075 0.12047126 -59.40715054 664.1414646 51.52271159 0.68777659 -0.0075 -0.0771037 0 0 0 0 7.07997371 0
+0.24 0 0 0 0.35062699 -0.0075 0.12036868 -58.73149115 660.8896823 51.42757048 0.68668709 -0.0075 -0.0771344 0 0 0 0 7.05990689 0
+0.2417 0 0 0 0.35233409 -0.0075 0.12026623 -58.07690642 657.7015843 51.28637734 0.68561114 -0.0075 -0.07716733 0 0 0 0 7.04113263 0
+0.2433 0 0 0 0.35405751 -0.0075 0.12016391 -57.44248453 654.5881431 51.10198711 0.68455072 -0.0075 -0.07720394 0 0 0 0 7.02259542 0
+0.245 0 0 0 0.35579706 -0.0075 0.12006173 -56.82647454 651.5579669 50.87728807 0.68350655 -0.0075 -0.07724513 0 0 0 0 7.00338171 0
+0.2467 0 0 0 0.35755256 -0.0075 0.11995969 -56.22649561 648.617375 50.61518547 0.68247813 -0.0075 -0.07729125 0 0 0 0 6.98276686 0
+0.2483 0 0 0 0.35932383 -0.0075 0.11985778 -55.63975633 645.7705649 50.31855295 0.68146393 -0.0075 -0.0773421 0 0 0 0 6.96025549 0
+0.25 0 0 0 0.36111066 -0.0075 0.11975602 -55.06336785 643.0197657 49.99015887 0.68046164 -0.0075 -0.07739703 0 0 0 0 6.93555713 0
+0.2517 0 0 0 0.36291289 -0.0075 0.1196544 -54.49455983 640.3657152 49.63287983 0.67946834 -0.0075 -0.07745498 0 0 0 0 6.90856549 0
+0.2533 0 0 0 0.36473033 -0.0075 0.11955293 -53.93097159 637.8078653 49.24954996 0.67848095 -0.0075 -0.07751463 0 0 0 0 6.87943733 0
+0.255 0 0 0 0.36656279 -0.0075 0.11945161 -53.37079897 635.3449557 48.84319673 0.67749649 -0.0075 -0.07757453 0 0 0 0 6.84840442 0
+0.2567 0 0 0 0.36841008 -0.0075 0.11935043 -52.8129449 632.9752006 48.41694697 0.67651246 -0.0075 -0.07763318 0 0 0 0 6.8158603 0
+0.2583 0 0 0 0.37027202 -0.0075 0.11924942 -52.25709221 630.696844 47.97421351 0.67552699 -0.0075 -0.07768922 0 0 0 0 6.78220779 0
+0.26 0 0 0 0.37214842 -0.0075 0.11914855 -51.70372748 628.5083201 47.5186511 0.67453912 -0.0075 -0.07774142 0 0 0 0 6.74781428 0
+0.2617 0 0 0 0.37403911 -0.0075 0.11904784 -51.15405843 626.408471 47.05412809 0.67354881 -0.0075 -0.07778895 0 0 0 0 6.71295844 0
+0.2633 0 0 0 0.37594388 -0.0075 0.1189473 -50.60989276 624.3967556 46.58475392 0.6725569 -0.0075 -0.07783124 0 0 0 0 6.67779926 0
+0.265 0 0 0 0.37786257 -0.0075 0.11884691 -50.07354565 622.4730841 46.11470382 0.67156509 -0.0075 -0.07786815 0 0 0 0 6.64236168 0
+0.2667 0 0 0 0.37979497 -0.0075 0.11874669 -49.54754233 620.6379517 45.64827853 0.67057569 -0.0075 -0.07789988 0 0 0 0 6.60647247 0
+0.2683 0 0 0 0.38174092 -0.0075 0.11864663 -49.03441691 618.8920988 45.18957197 0.66959146 -0.0075 -0.07792697 0 0 0 0 6.56990263 0
+0.27 0 0 0 0.38370021 -0.0075 0.11854675 -48.5365373 617.2365348 44.74250808 0.66861525 -0.0075 -0.07795031 0 0 0 0 6.53222526 0
+0.2717 0 0 0 0.38567267 -0.0075 0.11844703 -48.05589827 615.6721276 44.31057527 0.66764978 -0.0075 -0.07797098 0 0 0 0 6.49295935 0
+0.2733 0 0 0 0.38765811 -0.0075 0.11834749 -47.59387848 614.19956 43.89680311 0.6666973 -0.0075 -0.07799031 0 0 0 0 6.45154777 0
+0.275 0 0 0 0.38965635 -0.0075 0.11824812 -47.15120246 612.819064 43.50361158 0.66575939 -0.0075 -0.07800972 0 0 0 0 6.40739801 0
+0.2767 0 0 0 0.3916672 -0.0075 0.11814893 -46.72787431 611.530232 43.13272687 0.66483674 -0.0075 -0.07803072 0 0 0 0 6.35996227 0
+0.2783 0 0 0 0.39369047 -0.0075 0.11804992 -46.32306917 610.332032 42.78527529 0.66392911 -0.0075 -0.0780548 0 0 0 0 6.30875667 0
+0.28 0 0 0 0.39572598 -0.0075 0.11795109 -45.93528313 609.2226196 42.46160151 0.66303531 -0.0075 -0.07808351 0 0 0 0 6.25342415 0
+0.2817 0 0 0 0.39777354 -0.0075 0.11785244 -45.5623852 608.1995897 42.16155896 0.66215322 -0.0075 -0.07811831 0 0 0 0 6.19367809 0
+0.2833 0 0 0 0.39983297 -0.0075 0.11775398 -45.20174663 607.2598536 41.88440642 0.66127998 -0.0075 -0.07816062 0 0 0 0 6.12942633 0
+0.285 0 0 0 0.40190408 -0.0075 0.11765571 -44.85043698 606.3999775 41.62907206 0.6604122 -0.0075 -0.07821181 0 0 0 0 6.06062597 0
+0.2867 0 0 0 0.40398669 -0.0075 0.11755763 -44.50544362 605.6162269 41.39421721 0.65954609 -0.0075 -0.0782732 0 0 0 0 5.98737583 0
+0.2883 0 0 0 0.40608062 -0.0075 0.11745974 -44.1638318 604.9048224 41.17843701 0.65867786 -0.0075 -0.07834605 0 0 0 0 5.90986874 0
+0.29 0 0 0 0.40818566 -0.0075 0.11736205 -43.82293166 604.2621027 40.98036933 0.65780386 -0.0075 -0.07843149 0 0 0 0 5.82838542 0
+0.2917 0 0 0 0.41030165 -0.0075 0.11726455 -43.48050225 603.6846152 40.79872463 0.65692092 -0.0075 -0.07853062 0 0 0 0 5.7433074 0
+0.2933 0 0 0 0.4124284 -0.0075 0.11716726 -43.13482172 603.1693844 40.63255187 0.65602641 -0.0075 -0.07864435 0 0 0 0 5.65504484 0
+0.295 0 0 0 0.41456571 -0.0075 0.11707016 -42.78484929 602.7137218 40.48106582 0.65511847 -0.0075 -0.07877346 0 0 0 0 5.56409751 0
+0.2967 0 0 0 0.41671341 -0.0075 0.11697327 -42.43011199 602.3155002 40.3438746 0.65419592 -0.0075 -0.07891848 0 0 0 0 5.47092053 0
+0.2983 0 0 0 0.41887131 -0.0075 0.11687659 -42.07079868 601.9728416 40.2206972 0.65325837 -0.0075 -0.07907966 0 0 0 0 5.37610217 0
+0.3 0 0 0 0.42103922 -0.0075 0.11678011 -41.70766282 601.6841219 40.11146964 0.65230601 -0.0075 -0.07925691 0 0 0 0 5.28023233 0
+0.3017 0 0 0 0.42321696 -0.0075 0.11668385 -41.34189964 601.447723 40.01617567 0.65133957 -0.0075 -0.07944973 0 0 0 0 5.18401392 0
+0.3033 0 0 0 0.42540434 -0.0075 0.11658779 -40.97497197 601.2618756 39.93473257 0.65036015 -0.0075 -0.07965717 0 0 0 0 5.08823314 0
+0.305 0 0 0 0.42760118 -0.0075 0.11649196 -40.60849595 601.1245208 39.86692125 0.64936894 -0.0075 -0.07987784 0 0 0 0 4.99375296 0
+0.3067 0 0 0 0.42980729 -0.0075 0.11639633 -40.24409032 601.0329926 39.8121913 0.64836716 -0.0075 -0.08010988 0 0 0 0 4.90153905 0
+0.3083 0 0 0 0.43202249 -0.0075 0.11630093 -39.8831432 600.9840809 39.76971631 0.64735577 -0.0075 -0.08035097 0 0 0 0 4.812583 0
+0.31 0 0 0 0.43424659 -0.0075 0.11620575 -39.52681448 600.9737317 39.73813961 0.64633538 -0.0075 -0.08059846 0 0 0 0 4.72797761 0
+0.3117 0 0 0 0.4364794 -0.0075 0.1161108 -39.17585205 600.9972268 39.71582845 0.64530614 -0.0075 -0.08084939 0 0 0 0 4.64878748 0
+0.3133 0 0 0 0.43872075 -0.0075 0.11601607 -38.83057662 601.0490114 39.70065231 0.64426773 -0.0075 -0.08110061 0 0 0 0 4.576134 0
+0.315 0 0 0 0.44097044 -0.0075 0.11592156 -38.49081391 601.1229675 39.69022302 0.64321937 -0.0075 -0.08134894 0 0 0 0 4.51102932 0
+0.3167 0 0 0 0.44322828 -0.0075 0.11582729 -38.15596882 601.2125446 39.68194932 0.64215986 -0.0075 -0.08159124 0 0 0 0 4.45437706 0
+0.3183 0 0 0 0.44549411 -0.0075 0.11573325 -37.82503763 601.3109953 39.67315727 0.64108769 -0.0075 -0.08182467 0 0 0 0 4.40687805 0
+0.32 0 0 0 0.44776772 -0.0075 0.11563945 -37.4966905 601.4116889 39.66131108 0.64000113 -0.0075 -0.08204667 0 0 0 0 4.36896123 0
+0.3217 0 0 0 0.45004893 -0.0075 0.11554588 -37.16944237 601.5082684 39.64405541 0.63889842 -0.0075 -0.08225523 0 0 0 0 4.34079936 0
+0.3233 0 0 0 0.45233756 -0.0075 0.11545255 -36.84174562 601.5951091 39.61951492 0.63777782 -0.0075 -0.08244885 0 0 0 0 4.322213 0
+0.325 0 0 0 0.45463342 -0.0075 0.11535946 -36.51209862 601.6673204 39.58627014 0.63663787 -0.0075 -0.08262669 0 0 0 0 4.31273856 0
+0.3267 0 0 0 0.45693633 -0.0075 0.11526662 -36.17911159 601.7211933 39.5436043 0.63547741 -0.0075 -0.08278852 0 0 0 0 4.31152548 0
+0.3283 0 0 0 0.4592461 -0.0075 0.11517402 -35.84164815 601.7541836 39.49136696 0.63429566 -0.0075 -0.08293478 0 0 0 0 4.31744619 0
+0.33 0 0 0 0.46156255 -0.0075 0.11508168 -35.49886718 601.7650671 39.43012506 0.63309228 -0.0075 -0.0830665 0 0 0 0 4.32906945 0
+0.3317 0 0 0 0.46388549 -0.0075 0.11498958 -35.15022773 601.7539561 39.3610576 0.63186731 -0.0075 -0.08318519 0 0 0 0 4.34475168 0
+0.3333 0 0 0 0.46621473 -0.0075 0.11489773 -34.79550738 601.7221914 39.28581609 0.63062117 -0.0075 -0.08329283 0 0 0 0 4.36271935 0
+0.335 0 0 0 0.46855009 -0.0075 0.11480614 -34.43476052 601.6723187 39.20653315 0.62935459 -0.0075 -0.08339165 0 0 0 0 4.38113647 0
+0.3367 0 0 0 0.47089138 -0.0075 0.1147148 -34.06822945 601.6077648 39.12551751 0.62806859 -0.0075 -0.08348402 0 0 0 0 4.3982443 0
+0.3383 0 0 0 0.47323843 -0.0075 0.11462373 -33.69626667 601.5328315 39.04521706 0.62676432 -0.0075 -0.08357234 0 0 0 0 4.41236582 0
+0.34 0 0 0 0.47559103 -0.0075 0.11453291 -33.31929182 601.4522997 38.96794077 0.62544306 -0.0075 -0.0836589 0 0 0 0 4.4220697 0
+0.3417 0 0 0 0.47794902 -0.0075 0.11444236 -32.93767186 601.3713602 38.89585823 0.62410601 -0.0075 -0.08374574 0 0 0 0 4.42612426 0
+0.3433 0 0 0 0.48031219 -0.0075 0.11435208 -32.55163825 601.2952942 38.83071412 0.62275437 -0.0075 -0.0838346 0 0 0 0 4.42363776 0
+0.345 0 0 0 0.48268038 -0.0075 0.11426206 -32.16128041 601.2293395 38.7738413 0.62138922 -0.0075 -0.08392684 0 0 0 0 4.41405465 0
+0.3467 0 0 0 0.48505338 -0.0075 0.11417231 -31.76649725 601.1785192 38.72614273 0.62001152 -0.0075 -0.08402334 0 0 0 0 4.39715072 0
+0.3483 0 0 0 0.48743102 -0.0075 0.11408284 -31.36699436 601.1474741 38.68797395 0.61862218 -0.0075 -0.08412455 0 0 0 0 4.37304437 0
+0.35 0 0 0 0.48981311 -0.0075 0.11399364 -30.96229254 601.1404857 38.65928232 0.61722204 -0.0075 -0.08423048 0 0 0 0 4.34211655 0
+0.3517 0 0 0 0.49219947 -0.0075 0.11390472 -30.55182815 601.1612692 38.63957489 0.61581195 -0.0075 -0.08434077 0 0 0 0 4.30500813 0
+0.3533 0 0 0 0.4945899 -0.0075 0.11381607 -30.1350442 601.2131141 38.62812937 0.61439275 -0.0075 -0.08445468 0 0 0 0 4.26247176 0
+0.355 0 0 0 0.49698423 -0.0075 0.11372771 -29.7114502 601.2986948 38.62397036 0.61296535 -0.0075 -0.08457123 0 0 0 0 4.21541779 0
+0.3567 0 0 0 0.49938227 -0.0075 0.11363963 -29.28070148 601.4201951 38.6261264 0.61153078 -0.0075 -0.08468922 0 0 0 0 4.16475906 0
+0.3583 0 0 0 0.50178383 -0.0075 0.11355184 -28.84272958 601.5792154 38.63361092 0.61009016 -0.0075 -0.08480736 0 0 0 0 4.11142893 0
+0.36 0 0 0 0.50418873 -0.0075 0.11346433 -28.39775374 601.7767947 38.64554888 0.60864476 -0.0075 -0.08492429 0 0 0 0 4.05631261 0
+0.3617 0 0 0 0.50659679 -0.0075 0.11337712 -27.94631502 602.0133932 38.66130014 0.60719588 -0.0075 -0.0850387 0 0 0 0 4.00019507 0
+0.3633 0 0 0 0.5090078 -0.0075 0.11329019 -27.48932396 602.2888312 38.68035133 0.60574488 -0.0075 -0.08514939 0 0 0 0 3.94376237 0
+0.365 0 0 0 0.51142161 -0.0075 0.11320357 -27.02798282 602.6023192 38.7024702 0.60429296 -0.0075 -0.08525529 0 0 0 0 3.88755435 0
+0.3667 0 0 0 0.513838 -0.0075 0.11311723 -26.56369119 602.9522537 38.72754518 0.60284124 -0.0075 -0.08535549 0 0 0 0 3.83203656 0
+0.3683 0 0 0 0.51625681 -0.0075 0.1130312 -26.09796874 603.336367 38.75566025 0.60139054 -0.0075 -0.08544931 0 0 0 0 3.77755528 0
+0.37 0 0 0 0.51867784 -0.0075 0.11294547 -25.63233761 603.7515295 38.78688354 0.59994135 -0.0075 -0.08553631 0 0 0 0 3.72444098 0
+0.3717 0 0 0 0.52110091 -0.0075 0.11286004 -25.16809526 604.1938293 38.82131611 0.59849378 -0.0075 -0.08561627 0 0 0 0 3.67295902 0
+0.3733 0 0 0 0.52352584 -0.0075 0.11277492 -24.70620614 604.658589 38.85892917 0.59704747 -0.0075 -0.08568921 0 0 0 0 3.62337936 0
+0.375 0 0 0 0.52595244 -0.0075 0.1126901 -24.2471746 605.1404322 38.89951332 0.59560162 -0.0075 -0.08575546 0 0 0 0 3.57596139 0
+0.3767 0 0 0 0.52838052 -0.0075 0.1126056 -23.7909282 605.6334229 38.94271693 0.59415496 -0.0075 -0.08581551 0 0 0 0 3.53095154 0
+0.3783 0 0 0 0.53080989 -0.0075 0.11252141 -23.33672544 606.1311405 38.98788848 0.59270586 -0.0075 -0.08587016 0 0 0 0 3.48862544 0
+0.38 0 0 0 0.53324038 -0.0075 0.11243753 -22.8831397 606.6270211 39.03422576 0.59125239 -0.0075 -0.08592041 0 0 0 0 3.44922503 0
+0.3817 0 0 0 0.5356718 -0.0075 0.11235397 -22.42813902 607.1144185 39.08064624 0.58979251 -0.0075 -0.08596753 0 0 0 0 3.41300988 0
+0.3833 0 0 0 0.53810396 -0.0075 0.11227072 -21.96908606 607.5870184 39.12604781 0.58832414 -0.0075 -0.08601295 0 0 0 0 3.38014027 0
+0.385 0 0 0 0.54053667 -0.0075 0.1121878 -21.50292126 608.0390336 39.16921345 0.58684542 -0.0075 -0.0860583 0 0 0 0 3.35072968 0
+0.3867 0 0 0 0.54296976 -0.0075 0.1121052 -21.02634689 608.465526 39.20899131 0.58535478 -0.0075 -0.08610541 0 0 0 0 3.32472179 0
+0.3883 0 0 0 0.54540303 -0.0075 0.11202293 -20.53605993 608.8626178 39.24436927 0.5838511 -0.0075 -0.08615616 0 0 0 0 3.30191127 0
+0.39 0 0 0 0.5478363 -0.0075 0.11194098 -20.02897788 609.2276926 39.27451912 0.5823339 -0.0075 -0.08621255 0 0 0 0 3.28194168 0
+0.3917 0 0 0 0.55026939 -0.0075 0.11185937 -19.50248755 609.5595938 39.29895004 0.58080334 -0.0075 -0.08627658 0 0 0 0 3.26427364 0
+0.3933 0 0 0 0.55270211 -0.0075 0.11177809 -18.95470401 609.8586063 39.31744393 0.57926032 -0.0075 -0.08635024 0 0 0 0 3.2482401 0
+0.395 0 0 0 0.55513426 -0.0075 0.11169714 -18.38459902 610.1265828 39.33023125 0.57770647 -0.0075 -0.08643531 0 0 0 0 3.23302188 0
+0.3967 0 0 0 0.55756568 -0.0075 0.11161652 -17.7921617 610.3667634 39.33780887 0.57614413 -0.0075 -0.08653346 0 0 0 0 3.21774215 0
+0.3983 0 0 0 0.55999617 -0.0075 0.11153625 -17.17847628 610.5837605 39.34110978 0.5745762 -0.0075 -0.08664605 0 0 0 0 3.20142293 0
+0.4 0 0 0 0.56242555 -0.0075 0.11145632 -16.54576903 610.7832429 39.34126416 0.57300599 -0.0075 -0.08677411 0 0 0 0 3.18314137 0
+0.4017 0 0 0 0.56485363 -0.0075 0.11137673 -15.89728918 610.9717097 39.33965558 0.5714371 -0.0075 -0.08691826 0 0 0 0 3.16204156 0
+0.4033 0 0 0 0.56728022 -0.0075 0.11129748 -15.23721614 611.1561402 39.33781152 0.56987313 -0.0075 -0.08707867 0 0 0 0 3.13740914 0
+0.405 0 0 0 0.56970515 -0.0075 0.11121859 -14.57045846 611.3436793 39.33721936 0.56831756 -0.0075 -0.08725503 0 0 0 0 3.10874292 0
+0.4067 0 0 0 0.57212822 -0.0075 0.11114004 -13.90233959 611.5413242 39.33940182 0.5667735 -0.0075 -0.0874465 0 0 0 0 3.07573982 0
+0.4083 0 0 0 0.57454926 -0.0075 0.11106185 -13.23832748 611.7555215 39.34570545 0.5652435 -0.0075 -0.08765174 0 0 0 0 3.03836402 0
+0.41 0 0 0 0.57696806 -0.0075 0.11098401 -12.58375754 611.9920824 39.35731989 0.56372936 -0.0075 -0.08786895 0 0 0 0 2.99677266 0
+0.4117 0 0 0 0.57938446 -0.0075 0.11090652 -11.94351362 612.2557334 39.37516877 0.56223205 -0.0075 -0.08809594 0 0 0 0 2.95137001 0
+0.4133 0 0 0 0.58179826 -0.0075 0.1108294 -11.32170874 612.5501314 39.40002421 0.56075159 -0.0075 -0.08833011 0 0 0 0 2.90272106 0
+0.415 0 0 0 0.58420928 -0.0075 0.11075263 -10.7214713 612.8777242 39.43234498 0.55928713 -0.0075 -0.08856872 0 0 0 0 2.85157032 0
+0.4167 0 0 0 0.58661733 -0.0075 0.11067623 -10.14474571 613.2397251 39.4724404 0.55783695 -0.0075 -0.08880882 0 0 0 0 2.79872044 0
+0.4183 0 0 0 0.58902223 -0.0075 0.1106002 -9.59214193 613.6362509 39.52049042 0.55639858 -0.0075 -0.08904745 0 0 0 0 2.74498857 0
+0.42 0 0 0 0.59142379 -0.0075 0.11052453 -9.06290526 614.0664181 39.57648247 0.554969 -0.0075 -0.0892818 0 0 0 0 2.69116553 0
+0.4217 0 0 0 0.59382183 -0.0075 0.11044923 -8.55495749 614.5286274 39.64040716 0.5535447 -0.0075 -0.08950925 0 0 0 0 2.63791204 0
+0.4233 0 0 0 0.59621616 -0.0075 0.1103743 -8.06499097 615.0206927 39.71217288 0.552122 -0.0075 -0.08972753 0 0 0 0 2.58577707 0
+0.425 0 0 0 0.5986066 -0.0075 0.11029975 -7.58862339 615.5402175 39.79173736 0.55069721 -0.0075 -0.0899348 0 0 0 0 2.53513273 0
+0.4267 0 0 0 0.60099295 -0.0075 0.11022557 -7.12062504 616.0847341 39.87901797 0.54926685 -0.0075 -0.09012966 0 0 0 0 2.48623034 0
+0.4283 0 0 0 0.60337504 -0.0075 0.11015178 -6.6552007 616.6520476 39.97398589 0.54782782 -0.0075 -0.09031126 0 0 0 0 2.43913522 0
+0.43 0 0 0 0.60575268 -0.0075 0.11007836 -6.18622131 617.240366 40.0765434 0.54637755 -0.0075 -0.09047927 0 0 0 0 2.39380227 0
+0.4317 0 0 0 0.60812569 -0.0075 0.11000533 -5.70755123 617.84848 40.18651277 0.54491402 -0.0075 -0.09063391 0 0 0 0 2.35011526 0
+0.4333 0 0 0 0.61049387 -0.0075 0.10993268 -5.21330384 618.475876 40.30363007 0.54343587 -0.0075 -0.09077581 0 0 0 0 2.30789786 0
+0.435 0 0 0 0.61285705 -0.0075 0.10986042 -4.69814027 619.1227076 40.42741913 0.5419423 -0.0075 -0.09090606 0 0 0 0 2.26700265 0
+0.4367 0 0 0 0.61521503 -0.0075 0.10978854 -4.15742493 619.7898324 40.55726477 0.54043306 -0.0075 -0.09102601 0 0 0 0 2.22734238 0
+0.4383 0 0 0 0.61756764 -0.0075 0.10971706 -3.58739037 620.478632 40.69226877 0.53890837 -0.0075 -0.09113723 0 0 0 0 2.1889704 0
+0.44 0 0 0 0.61991468 -0.0075 0.10964598 -2.98529984 621.1909891 40.83133705 0.53736874 -0.0075 -0.09124138 0 0 0 0 2.15204638 0
+0.4417 0 0 0 0.62225598 -0.0075 0.10957529 -2.34946035 621.9290066 40.97311938 0.53581484 -0.0075 -0.09134012 0 0 0 0 2.11690868 0
+0.4433 0 0 0 0.62459134 -0.0075 0.109505 -1.67923985 622.6949031 41.11613014 0.53424738 -0.0075 -0.09143499 0 0 0 0 2.08401364 0
+0.445 0 0 0 0.62692058 -0.0075 0.10943511 -0.97503459 623.4907871 41.25880368 0.53266694 -0.0075 -0.09152734 0 0 0 0 2.05392944 0
+0.4467 0 0 0 0.62924352 -0.0075 0.10936562 -0.23821745 624.3184654 41.39955784 0.53107389 -0.0075 -0.09161826 0 0 0 0 2.02729119 0
+0.4483 0 0 0 0.63155996 -0.0075 0.10929654 0.52904174 625.1793178 41.53700548 0.52946835 -0.0075 -0.0917085 0 0 0 0 2.00474238 0
+0.45 0 0 0 0.63386973 -0.0075 0.10922786 1.32389508 626.0741542 41.66995792 0.52785019 -0.0075 -0.09179851 0 0 0 0 1.98689895 0
+0.4517 0 0 0 0.63617264 -0.0075 0.1091596 2.14291729 627.0032417 41.79764216 0.526219 -0.0075 -0.09188845 0 0 0 0 1.97422466 0
+0.4533 0 0 0 0.6384685 -0.0075 0.10909174 2.98233095 627.9661736 41.91970409 0.5245742 -0.0075 -0.0919782 0 0 0 0 1.96702809 0
+0.455 0 0 0 0.64075713 -0.0075 0.1090243 3.83817364 628.962006 42.03640741 0.52291518 -0.0075 -0.09206742 0 0 0 0 1.96535564 0
+0.4567 0 0 0 0.64303835 -0.0075 0.10895728 4.70638549 629.9892578 42.14856107 0.52124132 -0.0075 -0.09215564 0 0 0 0 1.96899995 0
+0.4583 0 0 0 0.64531196 -0.0075 0.10889068 5.58299239 631.046035 42.2576157 0.51955223 -0.0075 -0.09224232 0 0 0 0 1.97744382 0
+0.46 0 0 0 0.64757778 -0.0075 0.10882449 6.46426831 632.1301412 42.36560516 0.5178478 -0.0075 -0.09232692 0 0 0 0 1.98991101 0
+0.4617 0 0 0 0.64983563 -0.0075 0.10875873 7.34681301 633.2392067 42.47499078 0.51612837 -0.0075 -0.09240901 0 0 0 0 2.00539039 0
+0.4633 0 0 0 0.65208532 -0.0075 0.10869339 8.22768488 634.3708458 42.58865606 0.51439474 -0.0075 -0.09248831 0 0 0 0 2.02263954 0
+0.465 0 0 0 0.65432666 -0.0075 0.10862848 9.1045072 635.5227169 42.70964519 0.51264827 -0.0075 -0.09256471 0 0 0 0 2.04029757 0
+0.4667 0 0 0 0.65655948 -0.0075 0.108564 9.97552221 636.6927051 42.84110454 0.51089077 -0.0075 -0.09263829 0 0 0 0 2.05691509 0
+0.4683 0 0 0 0.65878357 -0.0075 0.10849995 10.83966047 637.8788987 42.98595904 0.50912448 -0.0075 -0.09270938 0 0 0 0 2.07105754 0
+0.47 0 0 0 0.66099877 -0.0075 0.10843634 11.69654521 639.0796897 43.14683809 0.50735195 -0.0075 -0.09277844 0 0 0 0 2.08135522 0
+0.4717 0 0 0 0.66320488 -0.0075 0.10837316 12.54656177 640.2937639 43.32583883 0.50557592 -0.0075 -0.0928461 0 0 0 0 2.08663933 0
+0.4733 0 0 0 0.66540172 -0.0075 0.10831042 13.39085096 641.5201244 43.52442653 0.50379914 -0.0075 -0.09291302 0 0 0 0 2.08593821 0
+0.475 0 0 0 0.66758911 -0.0075 0.10824812 14.23123127 642.7580859 43.74334867 0.50202417 -0.0075 -0.0929799 0 0 0 0 2.07852775 0
+0.4767 0 0 0 0.66976685 -0.0075 0.10818626 15.07017681 644.0072533 43.98249582 0.50025329 -0.0075 -0.09304735 0 0 0 0 2.06398628 0
+0.4783 0 0 0 0.67193476 -0.0075 0.10812485 15.91076569 645.2675394 44.24103648 0.49848832 -0.0075 -0.09311585 0 0 0 0 2.0421471 0
+0.48 0 0 0 0.67409265 -0.0075 0.10806389 16.75649394 646.5391187 44.51731094 0.49673053 -0.0075 -0.09318575 0 0 0 0 2.01313331 0
+0.4817 0 0 0 0.67624035 -0.0075 0.10800337 17.61112768 647.8224981 44.80904624 0.49498054 -0.0075 -0.09325714 0 0 0 0 1.97728919 0
+0.4833 0 0 0 0.67837767 -0.0075 0.10794331 18.47859658 649.1184165 45.11339841 0.49323839 -0.0075 -0.0933299 0 0 0 0 1.93520696 0
+0.485 0 0 0 0.68050441 -0.0075 0.1078837 19.36276705 650.4279772 45.42720006 0.49150354 -0.0075 -0.09340364 0 0 0 0 1.88760809 0
+0.4867 0 0 0 0.6826204 -0.0075 0.10782454 20.26726002 651.7526488 45.7470186 0.48977494 -0.0075 -0.09347783 0 0 0 0 1.83532915 0
+0.4883 0 0 0 0.68472545 -0.0075 0.10776585 21.19527847 653.0942724 46.06941523 0.48805115 -0.0075 -0.09355172 0 0 0 0 1.77924968 0
+0.49 0 0 0 0.68681937 -0.0075 0.10770761 22.14940113 654.4550958 46.39114215 0.48633046 -0.0075 -0.09362447 0 0 0 0 1.7202407 0
+0.4917 0 0 0 0.68890198 -0.0075 0.10764984 23.13140512 655.8377638 46.70915625 0.484611 -0.0075 -0.0936952 0 0 0 0 1.65915231 0
+0.4933 0 0 0 0.69097309 -0.0075 0.10759253 24.14216642 657.2452825 47.02090355 0.48289088 -0.0075 -0.09376304 0 0 0 0 1.59673055 0
+0.495 0 0 0 0.69303253 -0.0075 0.10753569 25.1815868 658.6808699 47.32425929 0.48116831 -0.0075 -0.09382719 0 0 0 0 1.53369562 0
+0.4967 0 0 0 0.69508009 -0.0075 0.10747932 26.24855241 660.1480096 47.6176777 0.47944163 -0.0075 -0.09388701 0 0 0 0 1.47066376 0
+0.4983 0 0 0 0.6971156 -0.0075 0.10742342 27.34093696 661.6501424 47.90011434 0.47770943 -0.0075 -0.09394202 0 0 0 0 1.40817792 0
+0.5 0 0 0 0.69913887 -0.0075 0.10736799 28.45568457 663.1906203 48.17109596 0.47597045 -0.0075 -0.09399192 0 0 0 0 1.34667794 0
+0.5017 0 0 0 0.70114971 -0.0075 0.10731304 29.58897306 664.7724998 48.43057551 0.47422361 -0.0075 -0.09403667 0 0 0 0 1.28658391 0
+0.5033 0 0 0 0.70314795 -0.0075 0.10725857 30.7363266 666.3983212 48.67889729 0.47246795 -0.0075 -0.09407642 0 0 0 0 1.22826628 0
+0.505 0 0 0 0.70513339 -0.0075 0.10720457 31.89284361 668.0700015 48.91673842 0.47070255 -0.0075 -0.09411148 0 0 0 0 1.17208224 0
+0.5067 0 0 0 0.70710585 -0.0075 0.10715106 33.05345805 669.7885705 49.14493395 0.4689265 -0.0075 -0.09414232 0 0 0 0 1.11843836 0
+0.5083 0 0 0 0.70906515 -0.0075 0.10709804 34.21317703 671.5541799 49.36452056 0.46713881 -0.0075 -0.09416947 0 0 0 0 1.06771923 0
+0.51 0 0 0 0.71101109 -0.0075 0.1070455 35.36732242 673.3659607 49.57649404 0.46533843 -0.0075 -0.09419354 0 0 0 0 1.02035048 0
+0.5117 0 0 0 0.7129435 -0.0075 0.10699345 36.5117636 675.2220985 49.78189454 0.46352417 -0.0075 -0.0942151 0 0 0 0 0.97674017 0
+0.5133 0 0 0 0.71486218 -0.0075 0.10694189 37.64314823 677.1198208 49.98166095 0.46169481 -0.0075 -0.09423469 0 0 0 0 0.93733214 0
+0.515 0 0 0 0.71676696 -0.0075 0.10689083 38.75899934 679.055619 50.17666648 0.45984913 -0.0075 -0.09425274 0 0 0 0 0.90252691 0
+0.5167 0 0 0 0.71865764 -0.0075 0.10684026 39.85787115 681.0253764 50.36771042 0.45798601 -0.0075 -0.09426956 0 0 0 0 0.87267361 0
+0.5183 0 0 0 0.72053405 -0.0075 0.10679019 40.93939934 683.0245971 50.55550999 0.45610462 -0.0075 -0.09428531 0 0 0 0 0.8480723 0
+0.52 0 0 0 0.72239599 -0.0075 0.10674062 42.00433184 685.0487512 50.74075462 0.45420451 -0.0075 -0.09430002 0 0 0 0 0.828928 0
+0.5217 0 0 0 0.72424328 -0.0075 0.10669155 43.05444177 687.0934113 50.92405025 0.45228576 -0.0075 -0.09431357 0 0 0 0 0.81532771 0
+0.5233 0 0 0 0.72607573 -0.0075 0.10664299 44.09244085 689.1546442 51.1060692 0.45034913 -0.0075 -0.09432574 0 0 0 0 0.80718725 0
+0.525 0 0 0 0.72789317 -0.0075 0.10659493 45.12187575 691.2291386 51.28746989 0.44839615 -0.0075 -0.09433622 0 0 0 0 0.80430284 0
+0.5267 0 0 0 0.7296954 -0.0075 0.10654738 46.14688202 693.3144499 51.46899267 0.44642912 -0.0075 -0.09434459 0 0 0 0 0.80628653 0
+0.5283 0 0 0 0.73148224 -0.0075 0.10650035 47.1720508 695.4090586 51.65140109 0.4444512 -0.0075 -0.09435041 0 0 0 0 0.81261876 0
+0.53 0 0 0 0.7332535 -0.0075 0.10645383 48.20220978 697.5124518 51.83548067 0.44246635 -0.0075 -0.09435323 0 0 0 0 0.82265559 0
+0.5317 0 0 0 0.735009 -0.0075 0.10640782 49.24225158 699.6251009 52.0220487 0.4404792 -0.0075 -0.09435257 0 0 0 0 0.83565331 0
+0.5333 0 0 0 0.73674855 -0.0075 0.10636233 50.29689333 701.7483213 52.21184673 0.4384949 -0.0075 -0.094348 0 0 0 0 0.85079749 0
+0.535 0 0 0 0.73847197 -0.0075 0.10631736 51.37049814 703.8841632 52.40556982 0.4365189 -0.0075 -0.0943391 0 0 0 0 0.86723348 0
+0.5367 0 0 0 0.74017907 -0.0075 0.10627291 52.46697475 706.0350741 52.60372763 0.4345568 -0.0075 -0.09432547 0 0 0 0 0.88417766 0
+0.5383 0 0 0 0.74186967 -0.0075 0.10622899 53.58959833 708.2037589 52.80669929 0.43261397 -0.0075 -0.09430672 0 0 0 0 0.90087202 0
+0.54 0 0 0 0.74354358 -0.0075 0.1061856 54.74092378 710.392819 53.01454857 0.43069543 -0.0075 -0.0942825 0 0 0 0 0.91671665 0
+0.5417 0 0 0 0.74520061 -0.0075 0.10614273 55.92274723 712.6045303 53.22710251 0.42880553 -0.0075 -0.09425244 0 0 0 0 0.93125684 0
+0.5433 0 0 0 0.74684058 -0.0075 0.1061004 57.1360828 714.8405739 53.44384044 0.42694781 -0.0075 -0.0942162 0 0 0 0 0.94425159 0
+0.545 0 0 0 0.74846331 -0.0075 0.10605859 58.3811018 717.101838 53.66388076 0.4251248 -0.0075 -0.09417341 0 0 0 0 0.95565231 0
+0.5467 0 0 0 0.75006861 -0.0075 0.10601733 59.65718633 719.388245 53.88605191 0.42333786 -0.0075 -0.09412366 0 0 0 0 0.96559679 0
+0.5483 0 0 0 0.75165629 -0.0075 0.1059766 60.9629786 721.6986283 54.10882145 0.42158722 -0.0075 -0.09406656 0 0 0 0 0.97445218 0
+0.55 0 0 0 0.75322616 -0.0075 0.10593641 62.29640781 724.0307451 54.33041474 0.4198719 -0.0075 -0.09400169 0 0 0 0 0.98272824 0
+0.5517 0 0 0 0.75477805 -0.0075 0.10589677 63.65480983 726.3811893 54.5487449 0.41818977 -0.0075 -0.09392865 0 0 0 0 0.9910832 0
+0.5533 0 0 0 0.75631177 -0.0075 0.10585766 65.03501196 728.7455943 54.76161601 0.41653766 -0.0075 -0.09384701 0 0 0 0 1.00025151 0
+0.555 0 0 0 0.75782713 -0.0075 0.10581911 66.43349607 731.1186873 54.96668532 0.41491155 -0.0075 -0.09375641 0 0 0 0 1.01100916 0
+0.5567 0 0 0 0.75932394 -0.0075 0.1057811 67.84641571 733.4944533 55.16157726 0.41330656 -0.0075 -0.09365652 0 0 0 0 1.02405574 0
+0.5583 0 0 0 0.76080203 -0.0075 0.10574365 69.26979326 735.8663429 55.3439452 0.4117173 -0.0075 -0.09354708 0 0 0 0 1.04002183 0
+0.56 0 0 0 0.7622612 -0.0075 0.10570675 70.69970311 738.2274219 55.51150703 0.41013801 -0.0075 -0.09342796 0 0 0 0 1.05940655 0
+0.5617 0 0 0 0.76370127 -0.0075 0.1056704 72.1323258 740.5706178 55.66217016 0.40856268 -0.0075 -0.09329908 0 0 0 0 1.08250125 0
+0.5633 0 0 0 0.76512206 -0.0075 0.10563461 73.56412189 742.8888518 55.79396354 0.40698531 -0.0075 -0.09316053 0 0 0 0 1.10944104 0
+0.565 0 0 0 0.76652338 -0.0075 0.10559938 74.99198863 745.1752805 55.90520792 0.40540004 -0.0075 -0.09301251 0 0 0 0 1.14013551 0
+0.5667 0 0 0 0.76790503 -0.0075 0.10556472 76.41333744 747.4233498 55.99438636 0.40380133 -0.0075 -0.09285538 0 0 0 0 1.17434501 0
+0.5683 0 0 0 0.76926685 -0.0075 0.10553062 77.82615491 749.6270629 56.06026737 0.40218403 -0.0075 -0.09268964 0 0 0 0 1.21163098 0
+0.57 0 0 0 0.77060864 -0.0075 0.10549708 79.22912933 751.7809678 56.10183578 0.4005436 -0.0075 -0.09251591 0 0 0 0 1.25146229 0
+0.5717 0 0 0 0.77193022 -0.0075 0.10546411 80.62158858 753.8802725 56.11833255 0.39887613 -0.0075 -0.09233496 0 0 0 0 1.29323587 0
+0.5733 0 0 0 0.7732314 -0.0075 0.10543172 82.00355204 755.9209602 56.10922769 0.39717849 -0.0075 -0.09214768 0 0 0 0 1.33635607 0
+0.575 0 0 0 0.774512 -0.0075 0.1053999 83.37565931 757.8997626 56.0741918 0.39544842 -0.0075 -0.09195507 0 0 0 0 1.38029677 0
+0.5767 0 0 0 0.77577182 -0.0075 0.10536865 84.73904394 759.8142474 56.01317689 0.39368456 -0.0075 -0.0917582 0 0 0 0 1.42462046 0
+0.5783 0 0 0 0.7770107 -0.0075 0.10533798 86.09524214 761.6627954 55.92631301 0.39188657 -0.0075 -0.09155824 0 0 0 0 1.46908835 0
+0.58 0 0 0 0.77822843 -0.0075 0.10530789 87.44598727 763.4446691 55.81410112 0.39005513 -0.0075 -0.09135639 0 0 0 0 1.51356354 0
+0.5817 0 0 0 0.77942484 -0.0075 0.10527838 88.79300418 765.1598507 55.67725316 0.38819192 -0.0075 -0.09115391 0 0 0 0 1.55811224 0
+0.5833 0 0 0 0.78059973 -0.0075 0.10524946 90.13785972 766.8091357 55.51688364 0.38629968 -0.0075 -0.09095203 0 0 0 0 1.60293401 0
+0.585 0 0 0 0.78175293 -0.0075 0.10522112 91.48174899 768.3939136 55.33445087 0.3843821 -0.0075 -0.09075197 0 0 0 0 1.64837079 0
+0.5867 0 0 0 0.78288425 -0.0075 0.10519337 92.82524266 769.9160895 55.13181012 0.38244372 -0.0075 -0.09055489 0 0 0 0 1.69479964 0
+0.5883 0 0 0 0.78399351 -0.0075 0.10516622 94.16823445 771.3779107 54.9112601 0.38048983 -0.0075 -0.09036187 0 0 0 0 1.74261245 0
+0.59 0 0 0 0.78508051 -0.0075 0.10513965 95.50981312 772.7816827 54.67550162 0.37852625 -0.0075 -0.09017381 0 0 0 0 1.79211978 0
+0.5917 0 0 0 0.78614507 -0.0075 0.10511368 96.84816419 774.1296642 54.42767231 0.37655908 -0.0075 -0.08999147 0 0 0 0 1.84341699 0
+0.5933 0 0 0 0.78718701 -0.0075 0.10508831 98.18064355 775.4236048 54.17118833 0.37459445 -0.0075 -0.0898154 0 0 0 0 1.896431 0
+0.595 0 0 0 0.78820614 -0.0075 0.10506354 99.50385714 776.664579 53.90980813 0.37263823 -0.0075 -0.08964586 0 0 0 0 1.9507799 0
+0.5967 0 0 0 0.78920227 -0.0075 0.10503937 100.8138024 777.8525588 53.64733508 0.37069572 -0.0075 -0.08948285 0 0 0 0 2.00583857 0
+0.5983 -2.19936715 2.41526491 -0.48421601 0.79017523 -0.0075 0.10501581 102.106077 778.9862043 53.38763395 0.36877129 -0.0075 -0.08932604 0.31199689 -0.15469574 -0.59252531 0 2.06065554 0
+0.6 -2.46284812 2.8094625 -0.47299343 0.79112482 -0.0075 0.10499285 103.3762204 780.0625392 53.13432786 0.36686823 -0.0075 -0.08917476 0.34514822 -0.14940853 -0.61890848 0 2.11408463 0
+0.6017 -2.70764191 3.30518824 -0.46104358 0.79205086 -0.0075 0.1049705 104.6200012 781.0767772 52.89064502 0.36498845 -0.0075 -0.08902803 0.37746712 -0.14630601 -0.63566017 0 2.16478543 0
+0.6033 -2.92422488 3.9255338 -0.45378023 0.79295317 -0.0075 0.10494876 105.8337027 782.0222239 52.65923639 0.36313234 -0.0075 -0.08888455 0.40892799 -0.1453902 -0.64254414 0 2.21131547 0
+0.605 -3.10198329 4.69675514 -0.45663777 0.79383155 -0.0075 0.10492763 107.0144878 782.8901383 52.44193665 0.36129868 -0.0075 -0.08874276 0.43954131 -0.14647047 -0.63958868 0 2.25225787 0
+0.6067 -3.22948317 5.64813841 -0.47459695 0.79468583 -0.0075 0.10490712 108.1606754 783.6699944 52.23966934 0.35948479 -0.0075 -0.08860085 0.46936935 -0.14919159 -0.62703537 0 2.28632679 0
+0.6083 -3.29458702 6.81166799 -0.51176707 0.79551581 -0.0075 0.10488722 109.2719805 784.3494799 52.05217761 0.35768652 -0.0075 -0.08845691 0.49854472 -0.15292099 -0.60529366 0 2.31253747 0
+0.61 -3.28508293 8.22163077 -0.570847 0.79632132 -0.0075 0.10486795 110.3496887 784.9149431 51.87808626 0.35589863 -0.0075 -0.08830895 0.527244 -0.15686299 -0.5749651 0 2.33021365 0
+0.6117 -3.18899084 9.91403678 -0.65273027 0.79710216 -0.0075 0.1048493 111.3967692 785.3517417 51.71475984 0.3541151 -0.0075 -0.08815507 0.55568665 -0.15997839 -0.53673679 0 2.3391628 0
+0.6133 -2.99537133 11.92583371 -0.75604698 0.79785816 -0.0075 0.10483127 112.4177827 785.6448125 51.55843333 0.35232958 -0.0075 -0.08799352 0.58409623 -0.16108112 -0.49140827 0 2.33963779 0
+0.615 -2.69484314 14.29413063 -0.87688962 0.79858912 -0.0075 0.10481387 113.4187647 785.7791889 51.40428713 0.35053581 -0.0075 -0.08782284 0.61266095 -0.15888368 -0.43980903 0 2.33238039 0
+0.6167 -2.28041373 17.05515577 -1.00857505 0.79929486 -0.0075 0.10479709 114.4069569 785.7405826 51.24663856 0.34872827 -0.0075 -0.087642 0.64147727 -0.15208098 -0.38278031 0 2.31858835 0
+0.6183 -1.74824442 20.24313863 -1.14157671 0.7999752 -0.0075 0.10478095 115.390451 785.5160277 51.07921951 0.34690255 -0.0075 -0.08745045 0.67051708 -0.13943894 -0.32115296 0 2.29986121 0
+0.62 -1.09830372 23.88916617 -1.26364279 0.80062994 -0.0075 0.10476544 116.3777944 785.0943324 50.89545224 0.34505599 -0.0075 -0.08724826 0.69958274 -0.11988896 -0.25574161 0 2.27809411 0
+0.6217 -0.33512687 28.01995577 -1.35996764 0.80125891 -0.0075 0.10475056 117.3774157 784.4666778 50.68886425 0.34318803 -0.0075 -0.0870361 0.72825949 -0.09266887 -0.18731713 0 2.25528584 0
+0.6233 0.53184507 32.65663022 -1.41373444 0.80186192 -0.0075 0.10473633 118.3971289 783.6267803 50.45330214 0.3413005 -0.0075 -0.08681538 0.7559258 -0.05732267 -0.11659163 0 2.23350043 0
+0.625 1.48768085 37.81365348 -1.40666728 0.80243879 -0.0075 0.10472273 119.4435642 782.5711874 50.18344724 0.33939783 -0.0075 -0.08658813 0.78171764 -0.01389465 -0.04429856 0 2.21459086 0
+0.6267 2.51207252 43.49781088 -1.31978353 0.80298932 -0.0075 0.10470977 120.5216427 781.2992194 49.87495139 0.33748706 -0.0075 -0.08635703 0.80455355 0.03712019 0.02887947 0 2.20015773 0
+0.6283 3.57927966 49.70733538 -1.13424534 0.80351333 -0.0075 0.10469746 121.6340714 779.8127867 49.52475867 0.33557766 -0.0075 -0.0861253 0.82316798 0.09470072 0.10220716 0 2.19138896 0
+0.63 4.65859614 56.43136632 -0.83237722 0.80401064 -0.0075 0.10468579 122.781071 778.1160107 49.13129847 0.33368121 -0.0075 -0.08589659 0.83619193 0.15731617 0.17489008 0 2.18899616 0
+0.6317 5.71500768 63.64953989 -0.39860312 0.80448106 -0.0075 0.10467478 123.9601062 776.2146923 48.694479 0.33181093 -0.0075 -0.08567479 0.84223731 0.22299149 0.24604968 0 2.19317934 0
+0.6333 6.71007571 71.33197805 0.17963548 0.80492441 -0.0075 0.10466441 125.1657529 774.1156742 48.21571826 0.32998099 -0.0075 -0.08546388 0.83997177 0.28936096 0.31468225 0 2.20360999 0
+0.635 7.60322839 79.43959787 0.91093666 0.8053405 -0.0075 0.10465469 126.3898621 771.8259665 47.69775401 0.32820576 -0.0075 -0.08526771 0.82825729 0.35381348 0.3796243 0 2.21951887 0
+0.6367 8.35297592 87.92474692 1.79930402 0.80572915 -0.0075 0.10464564 127.6216978 769.3520484 47.14450742 0.32649901 -0.0075 -0.08508979 0.8062112 0.41357454 0.43952143 0 2.23974386 0
+0.6383 8.91871981 96.73218318 2.84355041 0.80609016 -0.0075 0.10463723 128.8483709 766.698895 46.56066465 0.32487295 -0.0075 -0.08493309 0.77333206 0.46595139 0.4928786 0 2.26290008 0
+0.64 9.2621201 105.8003544 4.03703256 0.80642336 -0.0075 0.10462949 130.0553371 763.8692864 45.95145377 0.32333743 -0.0075 -0.08479982 0.72957563 0.50840319 0.53800013 0 2.2874708 0
+0.6417 9.34888549 115.0629632 5.36763531 0.80672856 -0.0075 0.10462241 131.2271389 760.8631212 45.3221717 0.32189929 -0.0075 -0.08469127 0.67542411 0.5387567 0.57307263 0 2.31204755 0
+0.6433 9.1502422 124.4506726 6.81803899 0.80700557 -0.0075 0.10461599 132.3480524 757.6769038 44.67782795 0.32056162 -0.0075 -0.0846077 0.61190952 0.55532364 0.59617496 0 2.33541972 0
+0.645 8.64439258 133.8930534 8.36624577 0.80725421 -0.0075 0.10461024 133.402859 754.3034747 44.02281535 0.31932342 -0.0075 -0.08454822 0.54060997 0.55703447 0.60537449 0 2.35668843 0
+0.6467 7.81765021 143.320528 9.98637239 0.80747429 -0.0075 0.10460516 134.3776494 750.731868 43.36055311 0.31817945 -0.0075 -0.08451082 0.46362016 0.54352679 0.59877037 0 2.37538631 0
+0.6483 6.66521238 152.6663451 11.64970522 0.80766563 -0.0075 0.10460075 135.2604645 746.9475677 42.69334798 0.31712025 -0.0075 -0.08449237 0.38345108 0.51517417 0.57459364 0 2.39145677 0
+0.65 5.19183634 161.8684107 13.32580495 0.80782804 -0.0075 0.10459701 136.0419252 742.9327954 42.02215733 0.31613248 -0.0075 -0.08448874 0.30295725 0.47315202 0.53131092 0 2.40528332 0
+0.6517 3.4116314 170.8709915 14.98383172 0.80796134 -0.0075 0.10459394 136.7156574 738.6672491 41.34670846 0.31519952 -0.0075 -0.0844949 0.22516496 0.41929513 0.46767449 0 2.41754599 0
+0.6533 1.34795128 179.626099 16.59376774 0.80806534 -0.0075 0.10459156 137.278642 734.1288095 40.66544457 0.31430223 -0.0075 -0.08450518 0.15316576 0.35610477 0.38285236 0 2.42920697 0
+0.655 -0.96760811 188.094601 18.12771217 0.80813986 -0.0075 0.10458985 137.7311797 729.2945945 39.97578255 0.31341989 -0.0075 -0.08451345 0.08991864 0.28654845 0.27645089 0 2.44126975 0
+0.6567 -3.49623705 196.2469949 19.56093783 0.8081847 -0.0075 0.10458882 138.0768391 724.1419317 39.27434275 0.31253126 -0.0075 -0.08451344 0.03811012 0.2139103 0.14860906 0 2.45464354 0
+0.6583 -6.19352139 204.0637356 20.87283449 0.80819969 -0.0075 0.10458848 138.3220337 718.649445 38.55724165 0.31161566 -0.0075 -0.08449895 0 0.14162293 0 0 2.4699607 0
+0.66 -9.01119312 211.5352844 22.04756112 0.80738983 -0.0075 0.10469619 138.4754848 712.7981113 37.82049024 0.31065404 -0.0075 -0.08446412 0 0.05651056 0 0 2.48739524 0
+0.6617 -11.89908167 218.6617173 23.07438032 0.80652036 -0.0075 0.10472224 138.5475256 706.5721088 37.0602769 0.30962997 -0.0075 -0.08440371 0 -0.02440327 0 0 2.50657819 0
+0.6633 -14.80731855 225.4520513 23.94781003 0.80560015 -0.0075 0.10467299 138.5491994 699.9596939 36.27336022 0.30853048 -0.0075 -0.08431327 0 -0.09855274 0 0 2.52648233 0
+0.665 -17.68820714 231.9232855 24.66732554 0.80463881 -0.0075 0.10455648 138.4914253 692.9536412 35.45720847 0.30734671 -0.0075 -0.08418938 0 -0.16375928 0 0 2.5455111 0
+0.6667 -20.49838083 238.0992002 25.23691897 0.80364622 -0.0075 0.10438229 138.3840151 685.5517214 34.61035352 0.30607431 -0.0075 -0.08402973 0 -0.21843956 0 0 2.56144801 0
+0.6683 -23.2002402 244.0090365 25.6643447 0.80263258 -0.0075 0.1041612 138.2348183 677.7566602 33.73235051 0.30471367 -0.0075 -0.0838332 0 -0.26158209 0 0 2.57166765 0
+0.67 -25.76355748 249.6860733 25.96026664 0.80160767 -0.0075 0.10390499 138.0489568 669.5760727 32.8238877 0.30326978 -0.0075 -0.08359992 0 -0.29288762 0 0 2.57323659 0
+0.6717 -28.16634816 255.166266 26.13720692 0.80058073 -0.0075 0.10362586 137.8282583 661.0220404 31.88667414 0.30175191 -0.0075 -0.08333118 0 -0.31273454 0 0 2.56318736 0
+0.6733 -30.39545881 260.486877 26.20856553 0.79955996 -0.0075 0.1033361 137.5708496 652.1105309 30.9232522 0.30017301 -0.0075 -0.08302939 0 -0.32214608 0 0 2.53873222 0
+0.675 -32.44671215 265.685372 26.18758501 0.79855227 -0.0075 0.1030476 137.2710293 642.860696 29.93683286 0.29854892 -0.0075 -0.08269788 0 -0.32280119 0 0 2.4975342 0
+0.6767 -34.32447975 270.7983095 26.08646267 0.79756292 -0.0075 0.10277128 136.9194614 633.2939375 28.93091934 0.29689742 -0.0075 -0.08234076 0 -0.3168567 0 0 2.43801543 0
+0.6783 -36.04104981 275.8605769 25.91569479 0.79659529 -0.0075 0.10251686 136.5035423 623.4331627 27.90916543 0.29523716 -0.0075 -0.08196267 0 -0.30689415 0 0 2.35943035 0
+0.68 -37.61520595 280.9048172 25.68347593 0.79565097 -0.0075 0.10229235 136.0080733 613.3017705 26.87497306 0.29358659 -0.0075 -0.08156852 0 -0.29568161 0 0 2.2621143 0
+0.6817 -39.07101599 285.9610165 25.39551109 0.79472957 -0.0075 0.10210399 135.416112 602.9230437 25.83139926 0.29196285 -0.0075 -0.08116327 0 -0.28605633 0 0 2.14743392 0
+0.6833 -40.4359308 291.0564513 25.05487558 0.79382904 -0.0075 0.10195601 134.7100507 592.3192859 24.7808433 0.2903808 -0.0075 -0.08075165 0 -0.28065104 0 0 2.01784323 0
+0.685 -41.73915735 296.215729 24.66226097 0.79294572 -0.0075 0.10185083 133.8726527 581.5113883 23.72508588 0.2888521 -0.0075 -0.08033791 0 -0.28180318 0 0 1.87668579 0
+0.6867 -43.00975354 301.460988 24.21630912 0.79207479 -0.0075 0.10178904 132.8882021 570.5184869 22.66518503 0.28738466 -0.0075 -0.07992565 0 -0.29131793 0 0 1.72808465 0
+0.6883 -44.27502427 306.8122389 23.71418106 0.79121048 -0.0075 0.10176976 131.7436869 559.3576947 21.60158518 0.2859822 -0.0075 -0.07951762 0 -0.31036743 0 0 1.57662171 0
+0.69 -45.55903352 312.2877817 23.15220061 0.79034662 -0.0075 0.10179092 130.4296331 548.0442646 20.53427903 0.28464416 -0.0075 -0.07911563 0 -0.3394315 0 0 1.42704313 0
+0.6917 -46.88125498 317.9045617 22.52648663 0.78947708 -0.0075 0.10184958 128.9409312 536.5916147 19.46290658 0.28336579 -0.0075 -0.0787205 0 -0.37817028 0 0 1.28393883 0
+0.6933 -48.25600934 323.6786775 21.83364185 0.78859589 -0.0075 0.10194237 127.2773346 525.0117707 18.3872043 0.2821386 -0.0075 -0.07833201 0 -0.42556852 0 0 1.15131505 0
+0.695 -49.69167521 329.6256865 21.0712741 0.78769788 -0.0075 0.10206586 125.4436465 513.3156917 17.30702685 0.28095095 -0.0075 -0.07794908 0 -0.47987218 0 0 1.03246139 0
+0.6967 -51.1908648 335.7608743 20.23851764 0.78677874 -0.0075 0.10221689 123.4496018 501.5138244 16.2227536 0.27978883 -0.0075 -0.07756978 0 -0.53880359 0 0 0.92957575 0
+0.6983 -52.7506074 342.099489 19.33619569 0.78583523 -0.0075 0.10239282 121.3095357 489.616452 15.13544504 0.27863677 -0.0075 -0.07719149 0 -0.59967897 0 0 0.84371967 0
+0.7 -54.36315668 348.6566659 18.36703736 0.7848653 -0.0075 0.10259174 119.0416889 477.6342921 14.04699749 0.2774789 -0.0075 -0.07681119 0 -0.65960541 0 0 0.77474191 0
+0.7017 -56.016844 355.4473921 17.33555413 0.78386823 -0.0075 0.10281252 116.6672701 465.5788859 12.96022589 0.27629987 -0.0075 -0.07642561 0 -0.71565735 0 0 0.72131381 0
+0.7033 -57.69727618 362.4862953 16.24771957 0.78284446 -0.0075 0.10305482 114.2094247 453.4628301 11.87891483 0.27508578 -0.0075 -0.07603146 0 -0.76509555 0 0 0.68102814 0
+0.705 -59.38871638 369.7873039 15.1106057 0.78179566 -0.0075 0.10331907 111.6919416 441.300119 10.80771727 0.27382496 -0.0075 -0.07562571 0 -0.80554656 0 0 0.65065676 0
+0.7067 -61.07521878 377.3632936 13.93177385 0.78072452 -0.0075 0.10360628 109.1381303 429.1060719 9.75193436 0.27250861 -0.0075 -0.07520578 0 -0.83508937 0 0 0.62645861 0
+0.7083 -62.74217028 385.2256263 12.71872198 0.77963447 -0.0075 0.10391792 106.5695753 416.8974607 8.71748492 0.27113125 -0.0075 -0.07476972 0 -0.85251122 0 0 0.60440878 0
+0.71 -64.37704509 393.383636 11.47822479 0.77852973 -0.0075 0.10425565 104.0051821 404.6922571 7.71041458 0.26969107 -0.0075 -0.07431645 0 -0.85722739 0 0 0.58069056 0
+0.7117 -65.97057958 401.8441174 10.21576702 0.77741484 -0.0075 0.10462107 101.460304 392.5094774 6.73681252 0.26819002 -0.0075 -0.07384586 0 -0.84941169 0 0 0.55188326 0
+0.7133 -67.51716958 410.6108791 8.93497798 0.77629465 -0.0075 0.10501556 98.94624899 380.3688343 5.80245689 0.26663374 -0.0075 -0.07335887 0 -0.8299109 0 0 0.51528996 0
+0.715 -69.01517112 419.6842736 7.63736073 0.775174 -0.0075 0.10544 96.469933 368.2904165 4.91249136 0.26503136 -0.0075 -0.07285761 0 -0.80018485 0 0 0.46916247 0
+0.7167 -70.46686149 429.0609017 6.32204936 0.77405766 -0.0075 0.10589475 94.03389843 356.2943027 4.07128859 0.26339518 -0.0075 -0.07234536 0 -0.76219742 0 0 0.41283452 0
+0.7183 -71.87796133 438.7333072 4.98576301 0.7729501 -0.0075 0.1063794 91.63673773 344.40011 3.28222902 0.26174026 -0.0075 -0.07182661 0 -0.7182173 0 0 0.34677369 0
+0.72 -73.25712328 448.6898207 3.6230641 0.77185542 -0.0075 0.10689287 89.27351993 332.6267659 2.54766404 0.26008393 -0.0075 -0.07130699 0 -0.67070654 0 0 0.27251635 0
+0.7217 -74.61482508 458.9144859 2.2266493 0.77077728 -0.0075 0.10743328 86.93674678 320.9920331 1.86884107 0.25844534 -0.0075 -0.07079319 0 -0.62208183 0 0 0.19256323 0
+0.7233 -75.96264029 469.3870511 0.78798424 0.76971866 -0.0075 0.10799811 84.61724124 309.5123473 1.24603572 0.25684502 -0.0075 -0.07029285 0 -0.57462031 0 0 0.11011392 0
+0.725 -77.31182794 480.0831455 -0.70206934 0.76868202 -0.0075 0.10858422 82.30522233 298.2024979 0.67854282 0.25530438 -0.0075 -0.06981454 0 -0.53025722 0 0 0.02885482 0
+0.7267 -78.67241578 490.9744751 -2.25247341 0.76766915 -0.0075 0.10918802 79.99125886 287.0754803 0.16496781 0.25384514 -0.0075 -0.06936747 0 -0.49050886 0 0 -0.04747916 0
+0.7283 -80.05215995 502.0291743 -3.87125048 0.76668113 -0.0075 0.10980557 77.66730901 276.1423365 -0.29665013 0.25248896 -0.0075 -0.06896133 0 -0.45637302 0 0 -0.11535745 0
+0.73 -81.45572132 513.2121987 -5.56468562 0.76571835 -0.0075 0.11043274 75.32752957 265.412049 -0.70862185 0.25125685 -0.0075 -0.06860609 0 -0.42831358 0 0 -0.17177706 0
+0.7317 -82.88410168 524.4857651 -7.33660079 0.76478053 -0.0075 0.11106536 72.96878859 254.8915399 -1.07336271 0.25016853 -0.0075 -0.06831172 0 -0.40628302 0 0 -0.21455763 0
+0.7333 -84.33421766 535.809828 -9.1878273 0.76386669 -0.0075 0.11169932 70.59113357 244.5855627 -1.39328502 0.24924172 -0.0075 -0.06808785 0 -0.38974418 0 0 -0.24247882 0
+0.735 -85.79912899 547.1426436 -11.11574652 0.76297514 -0.0075 0.11233067 68.19780511 234.4968589 -1.67056004 0.24849148 -0.0075 -0.06794347 0 -0.37784088 0 0 -0.25542816 0
+0.7367 -87.26797672 558.4412694 -13.11408842 0.76210361 -0.0075 0.11295569 65.79513063 224.6260987 -1.90715749 0.24792925 -0.0075 -0.06788663 0 -0.36940725 0 0 -0.25436508 0
+0.7383 -88.72681402 569.6621687 -15.17289552 0.76124918 -0.0075 0.11357097 63.39194295 214.9720787 -2.10469401 0.24756176 -0.0075 -0.06792396 0 -0.36318246 0 0 -0.24129291 0
+0.74 -90.15914581 580.7617918 -17.27880278 0.76040842 -0.0075 0.11417339 60.99906957 205.5318034 -2.26449807 0.24739011 -0.0075 -0.0680603 0 -0.35788809 0 0 -0.21900087 0
+0.7417 -91.54698642 591.6971216 -19.41538583 0.75957735 -0.0075 0.11476017 58.62840088 196.3007285 -2.38766916 0.24740502 -0.0075 -0.06805942 0 -0.35234616 0 0.04689994 -0.20482928 0.00068259
+0.7433 -92.87185047 602.4262948 -21.56381659 0.7587516 -0.0075 0.11532884 56.29195948 187.2730018 -2.47514896 0.24744963 -0.0075 -0.06805679 0 -0.34560067 0 0.1088928 -0.19268987 0.02873509
+0.745 -94.11580723 612.9091211 -23.70359063 0.75792644 -0.0075 0.11587723 54.00105574 178.44178 -2.52787094 0.24752375 -0.0075 -0.06805241 0 -0.33699058 0 0.18291003 -0.18521465 0.07626595
+0.7467 -95.26261574 623.1076294 -25.8133548 0.75709685 -0.0075 0.11640345 51.76527172 169.7996702 -2.5468143 0.2476272 -0.0075 -0.06804631 0 -0.32620824 0 0.26555663 -0.18457679 0.13468652
+0.7483 -96.29840763 632.9865482 -27.87184249 0.75625774 -0.0075 0.1169058 49.59175175 161.339048 -2.53320058 0.2477598 -0.0075 -0.06803848 0 -0.31326717 0 0.35323507 -0.19220836 0.19498518
+0.75 -97.2126435 642.5138135 -29.85868585 0.75540398 -0.0075 0.11738281 47.48451746 153.0526701 -2.48846324 0.24792136 -0.0075 -0.06802895 0 -0.29856484 0 0.44220724 -0.20868229 0.24806274
+0.7517 -97.99839749 651.6610294 -31.75531305 0.75453058 -0.0075 0.11783319 45.44416498 144.9340513 -2.41441097 0.24811171 -0.0075 -0.06801772 0 -0.28275716 0 0.52876227 -0.23352751 0.28514662
+0.7533 -98.65283685 660.4038568 -33.54560935 0.75363278 -0.0075 0.11825586 43.46765549 136.9780659 -2.31315225 0.24833066 -0.0075 -0.06800479 0 -0.26674416 0 0.60932496 -0.26529051 0.29815199
+0.755 -99.17702727 668.7224005 -35.21653281 0.75270624 -0.0075 0.11864989 41.54851852 129.1813868 -2.18710837 0.24857803 -0.0075 -0.0679902 0 -0.25156281 0 0.68058488 -0.30156218 0.28014941
+0.7567 -99.57578178 676.6014441 -36.75845832 0.7517471 -0.0075 0.11901461 39.67722156 121.5429209 -2.03892649 0.24885363 -0.0075 -0.06797393 0 -0.23831302 0 0.73963494 -0.33917962 0.2257584
+0.7583 -99.85721801 684.0306681 -38.16539365 0.75075213 -0.0075 0.11934955 37.84181279 114.0641938 -1.87136167 0.24915728 -0.0075 -0.06795601 0 -0.22809473 0 0.78407482 -0.37446482 0.13150521
+0.76 -100.0319587 691.0047166 -39.43495175 0.74971883 -0.0075 0.11965454 36.02882038 106.7495448 -1.68722089 0.2494888 -0.0075 -0.06793645 0 -0.22186252 0 0.81214357 -0.40354661 -0.00385936
+0.7617 -100.1124936 697.5232504 -40.56813363 0.74864551 -0.0075 0.1199297 34.22407566 99.60629612 -1.48909283 0.24984801 -0.0075 -0.06791525 0 -0.2204511 0 0.82273462 -0.42274839 -0.17922626
+0.7633 -100.1120784 703.5908047 -41.56901694 0.74753142 -0.0075 0.12017551 32.41385268 92.64460153 -1.27939927 0.25023472 -0.0075 -0.06789243 0 -0.22440538 0 0.81550678 -0.42882514 -0.39106215
+0.765 -100.044164 709.2166042 -42.44418141 0.74637665 -0.0075 0.12039286 30.58586871 85.8773398 -1.06015111 0.25064875 -0.0075 -0.067868 0 -0.23403885 0 0.79085731 -0.41936448 -0.63347137
+0.7667 -99.92130008 714.4142658 -43.20218842 0.74518229 -0.0075 0.12058311 28.73026201 79.31955607 -0.83300812 0.25108992 -0.0075 -0.06784197 0 -0.24936772 0 0.74989073 -0.39292619 -0.89844937
+0.7683 -99.75459406 719.2012545 -43.85286226 0.74395029 -0.0075 0.12074802 26.84038766 72.98809847 -0.59917584 0.25155804 -0.0075 -0.06781434 0 -0.27017045 0 0.6943887 -0.34928852 -1.17622468
+0.77 -99.55306568 723.598411 -44.40669124 0.74268345 -0.0075 0.12088982 24.91352297 66.90083872 -0.3595017 0.25205294 -0.0075 -0.06778514 0 -0.29596567 0 0.62669202 -0.28946635 -1.45569975
+0.7717 -99.3232625 727.6292836 -44.87416889 0.74138531 -0.0075 0.12101117 22.95125917 61.07590175 -0.11455205 0.25257443 -0.0075 -0.06775436 0 -0.32607253 0 0.54959292 -0.21573572 -1.72504856
+0.7733 -99.06908287 731.3194404 -45.26531249 0.74006007 -0.0075 0.1211151 20.95950858 55.53090835 0.1352617 0.25312232 -0.0075 -0.06772203 0 -0.35967723 0 0.46620144 -0.13147359 -1.97235467
+0.775 -98.79173184 734.6957644 -45.58926573 0.7387124 -0.0075 0.12120497 18.94857786 50.28198839 0.38947066 0.25369644 -0.0075 -0.06768815 0 -0.395825 0 0.37977059 -0.04094401 -2.18622853
+0.7767 -98.49014375 737.7857075 -45.85396824 0.73734719 -0.0075 0.12128436 16.93262753 45.34312677 0.64747259 0.2542966 -0.0075 -0.06765273 0 -0.43355002 0 0.29353437 0.05099355 -2.3564584
+0.7783 -98.16101025 740.616514 -46.06607431 0.73596954 -0.0075 0.121357 14.92908824 40.72529422 0.90813146 0.25492263 -0.0075 -0.06761579 0 -0.47182453 0 0.21060142 0.13933399 -2.47455868
+0.78 -97.79968406 743.2145493 -46.23088808 0.7345844 -0.0075 0.12142661 12.95786187 36.43595503 1.16984341 0.25557432 -0.0075 -0.06757733 0 -0.50971661 0 0.13374965 0.21915902 -2.53423023
+0.7817 -97.40053222 745.6046397 -46.3525466 0.73319645 -0.0075 0.12149677 11.04036582 32.47854238 1.43022505 0.25625151 -0.0075 -0.06753737 0 -0.54632602 0 0.06535353 0.28615149 -2.53168863
+0.7833 -96.95766416 747.8094864 -46.43414611 0.73180995 -0.0075 0.12157082 9.19843286 28.8523301 1.68610527 0.25695401 -0.0075 -0.06749591 0 -0.58083128 0 0.00729685 0.33681532 -2.46584579
+0.785 -96.46554947 749.8493255 -46.47812185 0.73042857 -0.0075 0.12165169 7.45321791 25.55227794 1.93355996 0.25768164 -0.0075 -0.06745298 0 -0.61251913 0 -0.03911637 0.36876931 -2.33836591
+0.7867 -95.91958937 751.7415495 -46.48654288 0.72905526 -0.0075 0.12174185 5.82425793 22.56921152 2.16792791 0.25843421 -0.0075 -0.06740857 0 -0.64074087 0 -0.07316564 0.38095733 -2.15350084
+0.7883 -95.31673439 753.5005732 -46.46142346 0.72769216 -0.0075 0.12184323 4.32838983 19.8902123 2.38399384 0.25921155 -0.0075 -0.06736269 0 -0.66495221 0 -0.09470141 0.37374856 -1.91783851
+0.79 -94.65565506 755.1377891 -46.40504168 0.72634062 -0.0075 0.1219571 2.97916569 17.49899334 2.57619959 0.26001346 -0.0075 -0.06731537 0 -0.68466511 0 -0.10411985 0.34887472 -1.63988224
+0.7917 -93.93724343 756.6615835 -46.32012646 0.72500112 -0.0075 0.12208412 1.78611029 15.37671314 2.7390379 0.26083978 -0.0075 -0.06726661 0 -0.69951585 0 -0.10229291 0.30929071 -1.32955227
+0.7933 -93.16439296 758.0775308 -46.21004811 0.72367344 -0.0075 0.1222243 0.75450711 13.50249882 2.86721809 0.2616903 -0.0075 -0.06721642 0 -0.70914574 0 -0.09046846 0.25900712 -0.99763967
+0.795 -92.34221826 759.3886524 -46.07883395 0.72235663 -0.0075 0.12237703 -0.11478453 11.85433533 2.95624655 0.26256486 -0.0075 -0.06716481 0 -0.71332365 0 -0.07021535 0.20263294 -0.65525432
+0.7967 -91.47758653 760.5957865 -45.93115415 0.72104931 -0.0075 0.12254118 -0.82522898 10.40972009 3.00258479 0.26346327 -0.0075 -0.06711179 0 -0.71188381 0 -0.04327614 0.14514333 -0.31327038
+0.7983 -90.57887719 761.6979642 -45.7721704 0.71974969 -0.0075 0.12271519 -1.38423516 9.14639183 3.00407661 0.26438534 -0.0075 -0.06705738 0 -0.70475444 0 -0.01148634 0.09141262 0.01816735
+0.8 -89.65562377 762.692824 -45.60736613 0.7184558 -0.0075 0.12289718 -1.80266022 8.04292883 2.96023421 0.2653309 -0.0075 -0.06700158 0 -0.6919826 0 0.02329752 0.0458591 0.33003158
+0.8017 -88.71783178 763.5769631 -45.44225823 0.71716567 -0.0075 0.12308507 -2.09405291 7.07922022 2.8723252 0.26629975 -0.0075 -0.06694441 0 -0.67371888 0 0.05931351 0.0120893 0.61476741
+0.8033 -87.77566669 764.346311 -45.28212931 0.71587746 -0.0075 0.12327669 -2.27403954 6.23691042 2.74354147 0.26729173 -0.0075 -0.06688587 0 -0.65031111 0 0.09492723 -0.00739905 0.86644245
+0.805 -86.83872123 764.9964492 -45.1317561 0.71458968 -0.0075 0.12346989 -2.35926618 5.49949864 2.57884154 0.26830663 -0.0075 -0.06682598 0 -0.62223601 0 0.12868805 -0.01137989 1.08088859
+0.8067 -85.91574488 765.5228538 -44.9951093 0.71330119 -0.0075 0.12366269 -2.36678685 4.85256722 2.38486546 0.26934429 -0.0075 -0.06676474 0 -0.59016845 0 0.15935278 -0.00004405 1.25561985
+0.8083 -85.01396804 765.9211397 -44.87522045 0.71201145 -0.0075 0.12385333 -2.31322366 4.28361397 2.16954217 0.27040453 -0.0075 -0.06670217 0 -0.5549096 0 0.18590766 0.02508719 1.38972802
+0.81 -84.13903721 766.1871729 -44.77401379 0.71072045 -0.0075 0.12404035 -2.2140587 3.78203662 1.94181075 0.27148714 -0.0075 -0.06663829 0 -0.5174042 0 0.20753348 0.06123225 1.48370087
+0.8117 -83.29473852 766.3171337 -44.69228814 0.70942872 -0.0075 0.12422265 -2.08311555 3.3388638 1.71103389 0.27259196 -0.0075 -0.06657309 0 -0.47868507 0 0.22362639 0.10468581 1.53916622
+0.8133 -82.48281266 766.3075464 -44.62972895 0.70813737 -0.0075 0.12439947 -1.9321478 2.94652789 1.48654564 0.27371881 -0.0075 -0.06650659 0 -0.43982604 0 0.23375987 0.15104532 1.55862221
+0.815 -81.70317033 766.1552233 -44.58501777 0.70684791 -0.0075 0.12457045 0 0 0 0.27486749 -0.0075 -0.06643881 0 -0.40193122 0 0 0 0
+0.8167 -80.9538838 765.857223 -44.55603296 0.70556224 -0.0075 0.12473554 0 0 0 0.27603782 -0.0075 -0.06636974 0 -0.36602248 0 0 0 0
+0.8183 -80.23161406 765.4108041 -44.54007394 0.70428245 -0.0075 0.12489499 0 0 0 0.27722963 -0.0075 -0.06629941 0 -0.33303615 0 0 0 0
+0.82 -79.53166413 764.8133575 -44.53414416 0.70301074 -0.0075 0.12504931 0 0 0 0.27844273 -0.0075 -0.06622783 0 -0.3037033 0 0 0 0
+0.8217 -78.84866961 764.0623961 -44.53519113 0.70174918 -0.0075 0.12519919 0 0 0 0.27967694 -0.0075 -0.06615499 0 -0.27858501 0 0 0 0
+0.8233 -78.17677282 763.1555281 -44.54041405 0.7004997 -0.0075 0.12534548 0 0 0 0.28093207 -0.0075 -0.06608092 0 -0.25797099 0 0 0 0
+0.825 -77.51014162 762.0904474 -44.54739327 0.69926382 -0.0075 0.12548908 0 0 0 0.28220794 -0.0075 -0.06600563 0 -0.24191944 0 0 0 0
+0.8267 -76.84337211 760.8650021 -44.55430299 0.69804265 -0.0075 0.12563095 0 0 0 0.28350438 -0.0075 -0.06592913 0 -0.23027214 0 0 0 0
+0.8283 -76.17172332 759.4772077 -44.56001575 0.69683678 -0.0075 0.12577199 0 0 0 0.28482118 -0.0075 -0.06585142 0 -0.2226285 0 0 0 0
+0.83 -75.49151469 757.9253826 -44.56407362 0.69564626 -0.0075 0.12591307 0 0 0 0.28615819 -0.0075 -0.06577252 0 -0.21843899 0 0 0 0
+0.8317 -74.80005206 756.2082659 -44.56668122 0.69447061 -0.0075 0.126055 0 0 0 0.2875152 -0.0075 -0.06569244 0 -0.21701288 0 0 0 0
+0.8333 -74.0960299 754.3251453 -44.56860281 0.69330882 -0.0075 0.12619853 0 0 0 0.28889204 -0.0075 -0.06561119 0 -0.21764077 0 0 0 0
+0.835 -73.37925793 752.2759723 -44.5710903 0.69215942 -0.0075 0.12634429 0 0 0 0.29028853 -0.0075 -0.06552878 0 -0.21956382 0 0 0 0
+0.8367 -72.65075308 750.0614542 -44.57560737 0.69102059 -0.0075 0.12649287 0 0 0 0.29170448 -0.0075 -0.06544522 0 -0.22210854 0 0 0 0
+0.8383 -71.91242765 747.6831432 -44.5837421 0.68989026 -0.0075 0.12664478 0 0 0 0.29313971 -0.0075 -0.06536053 0 -0.22469012 0 0 0 0
+0.84 -71.16692694 745.1434669 -44.59697787 0.68876621 -0.0075 0.12680043 0 0 0 0.29459404 -0.0075 -0.06527471 0 -0.22685836 0 0 0 0
+0.8417 -70.41737616 742.4458289 -44.61656813 0.68764622 -0.0075 0.12696019 0 0 0 0.29606728 -0.0075 -0.06518777 0 -0.22831543 0 0 0 0
+0.8433 -69.66688803 739.594592 -44.6434335 0.68652822 -0.0075 0.1271243 0 0 0 0.29755925 -0.0075 -0.06509972 0 -0.22885183 0 0 0 0
+0.845 -68.91855583 736.5950995 -44.67808276 0.68541034 -0.0075 0.12729296 0 0 0 0.29906978 -0.0075 -0.06501058 0 -0.22840432 0 0 0 0
+0.8467 -68.17494385 733.4536765 -44.72060277 0.68429106 -0.0075 0.12746625 0 0 0 0.30059867 -0.0075 -0.06492036 0 -0.22692227 0 0 0 0
+0.8483 -67.4381165 730.1775689 -44.77062781 0.68316918 -0.0075 0.12764415 0 0 0 0.30214574 -0.0075 -0.06482907 0 -0.22442842 0 0 0 0
+0.85 -66.70916641 726.7749241 -44.82746755 0.68204402 -0.0075 0.12782648 0 0 0 0.30371081 -0.0075 -0.06473671 0 -0.22090003 0 0 0 0
+0.8517 -65.98841544 723.2547463 -44.89008449 0.6809153 -0.0075 0.12801292 0 0 0 0.3052937 -0.0075 -0.0646433 0 -0.21625989 0 0 0 0
+0.8533 -65.27523875 719.6269386 -44.95726578 0.67978326 -0.0075 0.12820298 0 0 0 0.30689423 -0.0075 -0.06454885 0 -0.2103027 0 0 0 0
+0.855 -64.56810697 715.9022487 -45.02769384 0.67864858 -0.0075 0.12839601 0 0 0 0.30851221 -0.0075 -0.06445337 0 -0.20269798 0 0 0 0
+0.8567 -63.86491204 712.0923291 -45.100033 0.67751233 -0.0075 0.1285912 0 0 0 0.31014745 -0.0075 -0.06435687 0 -0.19299852 0 0 0 0
+0.8583 -63.16296878 708.2096948 -45.17298245 0.67637596 -0.0075 0.12878762 0 0 0 0.31179979 -0.0075 -0.06425936 0 -0.18059135 0 0 0 0
+0.86 -62.4594464 704.2677256 -45.24533254 0.67524122 -0.0075 0.12898421 0 0 0 0.31346903 -0.0075 -0.06416086 0 -0.1648254 0 0 0 0
+0.8617 -61.75140614 700.2806728 -45.31597035 0.67411008 -0.0075 0.12917987 0 0 0 0.31515499 -0.0075 -0.06406137 0 -0.14498694 0 0 0 0
+0.8633 -61.03636266 696.2635683 -45.38381293 0.67298465 -0.0075 0.12937347 0 0 0 0.31685749 -0.0075 -0.0639609 0 -0.12042557 0 0 0 0
+0.865 -60.31222315 692.2322148 -45.44787706 0.67186717 -0.0075 0.12956391 0 0 0 0.31857635 -0.0075 -0.06385947 0 -0.09055822 0 0 0 0
+0.8667 -59.57769493 688.2030741 -45.50708946 0.67075983 -0.0075 0.12975026 0 0 0 0.32031137 -0.0075 -0.06375708 0 -0.05499423 0 0 0 0
+0.8683 -58.83238571 684.193132 -45.56033224 0.66966483 -0.0075 0.12993175 0 0 0 0.32206239 -0.0075 -0.06365375 0 -0.01358475 0 0 0 0
+0.87 -58.07687078 680.2196477 -45.60633833 0.66858416 -0.0075 0.13010786 0 0 0 0.32382922 -0.0075 -0.06354948 0 0.03354718 0 0 0 0
+0.8717 -57.31282068 676.2999478 -45.64362149 0.66751965 -0.0075 0.13027838 0 0 0 0.32561167 -0.0075 -0.0634443 0 0.08590835 0 0 0 0
+0.8733 -56.54267672 672.4510483 -45.67044775 0.66647297 -0.0075 0.13044339 0 0 0 0.32740957 -0.0075 -0.0633382 0 0.14271447 0 0 0 0
+0.875 -55.76983 668.6893486 -45.68487582 0.6654454 -0.0075 0.13060333 0 0 0 0.32922272 -0.0075 -0.0632312 0 0.20280743 0 0 0 0
+0.8767 -54.99810781 665.0303025 -45.68476967 0.66443803 -0.0075 0.13075896 0 0 0 0.33105095 -0.0075 -0.06312332 0 0.26478133 0 0 0 0
+0.8783 -54.23174895 661.4880464 -45.66787351 0.66345152 -0.0075 0.13091137 0 0 0 0.33289408 -0.0075 -0.06301455 0 0.32697764 0 0 0 0
+0.88 -53.47497668 658.0750613 -45.63196878 0.66248624 -0.0075 0.13106189 0 0 0 0.33475191 -0.0075 -0.06290491 0 0.38762973 0 0 0 0
+0.8817 -52.73182452 654.8018176 -45.57496088 0.66154208 -0.0075 0.13121207 0 0 0 0.33662428 -0.0075 -0.06279442 0 0.4449375 0 0 0 0
+0.8833 -52.0058202 651.6764703 -45.49504289 0.66061856 -0.0075 0.13136353 0 0 0 0.33851099 -0.0075 -0.06268308 0 0.4971635 0 0 0 0
+0.885 -51.29961861 648.7046571 -45.39086258 0.65971482 -0.0075 0.13151789 0 0 0 0.34041186 -0.0075 -0.06257091 0 0.54277083 0 0 0 0
+0.8867 -50.61503611 645.889377 -45.26168183 0.65882957 -0.0075 0.13167671 0 0 0 0.34232671 -0.0075 -0.06245791 0 0.58048383 0 0 0 0
+0.8883 -49.95263065 643.230939 -45.10749871 0.65796116 -0.0075 0.13184133 0 0 0 0.34425537 -0.0075 -0.0623441 0 0.6094712 0 0 0 0
+0.89 -49.31189663 640.7269939 -44.92918104 0.65710758 -0.0075 0.13201281 0 0 0 0.34619763 -0.0075 -0.06222948 0 0.62932131 0 0 0 0
+0.8917 -48.69108638 638.3726934 -44.7285195 0.65626652 -0.0075 0.13219188 0 0 0 0.34815333 -0.0075 -0.06211407 0 0.6401569 0 0 0 0
+0.8933 -48.08752379 636.1608409 -44.50824375 0.65543534 -0.0075 0.13237885 0 0 0 0.35012228 -0.0075 -0.06199788 0 0.64260175 0 0 0 0
+0.895 -47.4976058 634.0822047 -44.27201155 0.65461121 -0.0075 0.13257355 0 0 0 0.35210429 -0.0075 -0.06188092 0 0.63778587 0 0 0 0
+0.8967 -46.9170405 632.1258833 -44.02427604 0.65379117 -0.0075 0.13277538 0 0 0 0.35409919 -0.0075 -0.0617632 0 0.62728145 0 0 0 0
+0.8983 -46.34127997 630.2796641 -43.77016729 0.65297212 -0.0075 0.13298327 0 0 0 0.35610679 -0.0075 -0.06164472 0 0.61302248 0 0 0 0
+0.9 -45.76558773 628.530499 -43.51535322 0.65215103 -0.0075 0.13319575 0 0 0 0.3581269 -0.0075 -0.06152551 0 0.59725758 0 0 0 0
+0.9017 -45.18558292 626.8649544 -43.26576212 0.65132493 -0.0075 0.13341099 0 0 0 0.36015935 -0.0075 -0.06140557 0 0.58235562 0 0 0 0
+0.9033 -44.59732471 625.2696163 -43.02737956 0.65049111 -0.0075 0.1336269 0 0 0 0.36220396 -0.0075 -0.06128492 0 0.57075943 0 0 0 0
+0.905 -43.99787602 623.7315021 -42.80597515 0.64964701 -0.0075 0.1338412 0 0 0 0.36426053 -0.0075 -0.06116356 0 0.56477989 0 0 0 0
+0.9067 -43.3852527 622.2384405 -42.60685834 0.64879055 -0.0075 0.13405152 0 0 0 0.3663289 -0.0075 -0.0610415 0 0.56651923 0 0 0 0
+0.9083 -42.75875327 620.779358 -42.43459022 0.64792003 -0.0075 0.13425549 0 0 0 0.36840886 -0.0075 -0.06091875 0 0.57772048 0 0 0 0
+0.91 -42.11902855 619.3446141 -42.29284998 0.64703431 -0.0075 0.13445087 0 0 0 0.37050025 -0.0075 -0.06079534 0 0.59968908 0 0 0 0
+0.9117 -41.46801164 617.9261849 -42.18423877 0.64613284 -0.0075 0.13463561 0 0 0 0.37260288 -0.0075 -0.06067126 0 0.63322313 0 0 0 0
+0.9133 -40.80901421 616.5178448 -42.110107 0.64521571 -0.0075 0.13480805 0 0 0 0.37471656 -0.0075 -0.06054653 0 0.67852839 0 0 0 0
+0.915 -40.14641854 615.1152355 -42.07060127 0.64428368 -0.0075 0.13496683 0 0 0 0.37684112 -0.0075 -0.06042115 0 0.73526304 0 0 0 0
+0.9167 -39.48578859 613.7158701 -42.06456997 0.64333811 -0.0075 0.13511109 0 0 0 0.37897637 -0.0075 -0.06029515 0 0.80245476 0 0 0 0
+0.9183 -38.8332538 612.319114 -42.08965189 0.6423811 -0.0075 0.13524042 0 0 0 0.38112212 -0.0075 -0.06016852 0 0.87865291 0 0 0 0
+0.92 -38.19552037 610.9260627 -42.14233698 0.64141527 -0.0075 0.13535494 0 0 0 0.3832782 -0.0075 -0.06004129 0 0.96188088 0 0 0 0
+0.9217 -37.57936427 609.5394662 -42.2182066 0.6404438 -0.0075 0.13545524 0 0 0 0.38544443 -0.0075 -0.05991345 0 1.04979906 0 0 0 0
+0.9233 -36.99140911 608.1635227 -42.31206383 0.63947029 -0.0075 0.1355424 0 0 0 0.38762061 -0.0075 -0.05978503 0 1.13981337 0 0 0 0
+0.925 -36.43780798 606.8037231 -42.41824026 0.6384986 -0.0075 0.13561794 0 0 0 0.38980657 -0.0075 -0.05965604 0 1.2292027 0 0 0 0
+0.9267 -35.92386829 605.4665832 -42.53081913 0.63753272 -0.0075 0.1356837 0 0 0 0.39200213 -0.0075 -0.05952647 0 1.31525014 0 0 0 0
+0.9283 -35.45405155 604.1594132 -42.6438792 0.63657658 -0.0075 0.13574183 0 0 0 0.3942071 -0.0075 -0.05939635 0 1.39534678 0 0 0 0
+0.93 -35.0314094 602.890055 -42.75179777 0.63563392 -0.0075 0.13579462 0 0 0 0.39642129 -0.0075 -0.05926569 0 1.46720491 0 0 0 0
+0.9317 -34.65773799 601.666606 -42.84943931 0.63470807 -0.0075 0.13584443 0 0 0 0.39864453 -0.0075 -0.05913449 0 1.528867 0 0 0 0
+0.9333 -34.33324013 600.4972338 -42.93241333 0.63380188 -0.0075 0.13589353 0 0 0 0.40087664 -0.0075 -0.05900277 0 1.5789146 0 0 0 0
+0.935 -34.05676981 599.3898856 -42.99719292 0.63291745 -0.0075 0.13594407 0 0 0 0.40311742 -0.0075 -0.05887054 0 1.61649935 0 0 0 0
+0.9367 -33.82565328 598.3521474 -43.04129583 0.6320562 -0.0075 0.13599788 0 0 0 0.40536671 -0.0075 -0.0587378 0 1.64137489 0 0 0 0
+0.9383 -33.63591843 597.3909935 -43.06325361 0.63121864 -0.0075 0.1360565 0 0 0 0.4076243 -0.0075 -0.05860458 0 1.65391995 0 0 0 0
+0.94 -33.48251467 596.5126331 -43.06269766 0.63040443 -0.0075 0.136121 0 0 0 0.40989003 -0.0075 -0.05847087 0 1.65511833 0 0 0 0
+0.9417 -33.3593249 595.7223864 -43.04027571 0.6296124 -0.0075 0.13619201 0 0 0 0.41216371 -0.0075 -0.0583367 0 1.64650269 0 0 0 0
+0.9433 -33.25965704 595.0246264 -42.99752497 0.6288406 -0.0075 0.13626966 0 0 0 0.41444516 -0.0075 -0.05820207 0 1.63002694 0 0 0 0
+0.945 -33.17625517 594.4226813 -42.9367452 0.62808649 -0.0075 0.13635364 0 0 0 0.41673419 -0.0075 -0.05806699 0 1.60805116 0 0 0 0
+0.9467 -33.10186887 593.918893 -42.86080031 0.62734694 -0.0075 0.1364432 0 0 0 0.41903062 -0.0075 -0.05793147 0 1.58310911 0 0 0 0
+0.9483 -33.02928099 593.514668 -42.77292416 0.6266186 -0.0075 0.13653729 0 0 0 0.42133427 -0.0075 -0.05779553 0 1.5578552 0 0 0 0
+0.95 -32.95181305 593.2104438 -42.67641134 0.6258979 -0.0075 0.13663461 0 0 0 0.42364496 -0.0075 -0.05765917 0 1.53488565 0 0 0 0
+0.9517 -32.86350541 593.0058611 -42.57450108 0.62518138 -0.0075 0.13673367 0 0 0 0.4259625 -0.0075 -0.05752241 0 1.51657969 0 0 0 0
+0.9533 -32.75929943 592.8997907 -42.47003342 0.62446579 -0.0075 0.13683297 0 0 0 0.42828671 -0.0075 -0.05738525 0 1.50501686 0 0 0 0
+0.955 -32.63528958 592.8905007 -42.36532366 0.62374835 -0.0075 0.13693108 0 0 0 0.43061741 -0.0075 -0.05724771 0 1.5018531 0 0 0 0
+0.9567 -32.48874905 592.9757852 -42.26202865 0.6230268 -0.0075 0.13702673 0 0 0 0.43295441 -0.0075 -0.0571098 0 1.50826553 0 0 0 0
+0.9583 -32.31846086 593.1531002 -42.16098808 0.62229946 -0.0075 0.13711896 0 0 0 0.43529754 -0.0075 -0.05697153 0 1.52483421 0 0 0 0
+0.96 -32.12443248 593.4196364 -42.06221061 0.62156542 -0.0075 0.13720711 0 0 0 0.4376466 -0.0075 -0.05683291 0 1.55163861 0 0 0 0
+0.9617 -31.90820661 593.7723961 -41.9648647 0.6208243 -0.0075 0.13729094 0 0 0 0.44000142 -0.0075 -0.05669394 0 1.58813582 0 0 0 0
+0.9633 -31.67253557 594.2082213 -41.8673254 0.62007637 -0.0075 0.13737054 0 0 0 0.44236181 -0.0075 -0.05655465 0 1.63328237 0 0 0 0
+0.965 -31.42137814 594.7237679 -41.76728058 0.61932239 -0.0075 0.13744636 0 0 0 0.4447276 -0.0075 -0.05641504 0 1.68557201 0 0 0 0
+0.9667 -31.15966533 595.3155698 -41.66190983 0.61856344 -0.0075 0.13751916 0 0 0 0.44709859 -0.0075 -0.05627513 0 1.74309704 0 0 0 0
+0.9683 -30.89304078 595.9799535 -41.54804317 0.61780082 -0.0075 0.13758994 0 0 0 0.44947461 -0.0075 -0.05613491 0 1.80371121 0 0 0 0
+0.97 -30.62777093 596.7129685 -41.42241624 0.61703578 -0.0075 0.13765983 0 0 0 0.45185547 -0.0075 -0.05599441 0 1.8651094 0 0 0 0
+0.9717 -30.37025663 597.5103217 -41.28188701 0.6162694 -0.0075 0.13773 0 0 0 0.454241 -0.0075 -0.05585364 0 1.92497445 0 0 0 0
+0.9733 -30.12700711 598.367231 -41.12361826 0.61550232 -0.0075 0.13780158 0 0 0 0.45663099 -0.0075 -0.0557126 0 1.98102992 0 0 0 0
+0.975 -29.90410975 599.2783477 -40.94532803 0.61473475 -0.0075 0.13787552 0 0 0 0.45902529 -0.0075 -0.05557131 0 2.03125864 0 0 0 0
+0.9767 -29.70718307 600.2376695 -40.74545136 0.61396613 -0.0075 0.13795248 0 0 0 0.46142369 -0.0075 -0.05542977 0 2.07390411 0 0 0 0
+0.9783 -29.54089285 601.2385446 -40.52326034 0.6131953 -0.0075 0.13803287 0 0 0 0.46382603 -0.0075 -0.05528801 0 2.10761225 0 0 0 0
+0.98 -29.40889342 602.2736096 -40.27897162 0.61242031 -0.0075 0.13811671 0 0 0 0.46623211 -0.0075 -0.05514602 0 2.13149366 0 0 0 0
+0.9817 -29.31366252 603.3348763 -40.01381415 0.6116385 -0.0075 0.13820365 0 0 0 0.46864176 -0.0075 -0.05500382 0 2.14512363 0 0 0 0
+0.9833 -29.25622411 604.4137957 -39.72995486 0.61084658 -0.0075 0.13829302 0 0 0 0.47105478 -0.0075 -0.05486143 0 2.14858173 0 0 0 0
+0.985 -29.23629805 605.501344 -39.43044633 0.61004072 -0.0075 0.13838383 0 0 0 0.47347101 -0.0075 -0.05471884 0 2.14241574 0 0 0 0
+0.9867 -29.25207669 606.588251 -39.11916544 0.60921672 -0.0075 0.1384748 0 0 0 0.47589024 -0.0075 -0.05457608 0 2.12763033 0 0 0 0
+0.9883 -29.300464 607.6652129 -38.8005574 0.60837014 -0.0075 0.13856454 0 0 0 0.47831232 -0.0075 -0.05443315 0 2.10556311 0 0 0 0
+0.99 -29.37687383 608.7231569 -38.47951111 0.60749665 -0.0075 0.13865154 0 0 0 0.48073704 -0.0075 -0.05429006 0 2.07791328 0 0 0 0
+0.9917 -29.47567861 609.7535468 -38.16114899 0.60659206 -0.0075 0.13873436 0 0 0 0.48316423 -0.0075 -0.05414683 0 2.04656707 0 0 0 0
+0.9933 -29.59023024 610.7486829 -37.8506128 0.60565262 -0.0075 0.13881166 0 0 0 0.4855937 -0.0075 -0.05400346 0 2.01355011 0 0 0 0
+0.995 -29.71312239 611.7018997 -37.55282628 0.60467514 -0.0075 0.13888233 0 0 0 0.48802527 -0.0075 -0.05385997 0 1.98094865 0 0 0 0
+0.9967 -29.83654433 612.6078758 -37.27229883 0.60365716 -0.0075 0.13894552 0 0 0 0.49045877 -0.0075 -0.05371636 0 1.95075823 0 0 0 0
+0.9983 -29.95238446 613.462784 -37.01297156 0.60259705 -0.0075 0.13900069 0 0 0 0.492894 -0.0075 -0.05357265 0 1.92484282 0 0 0 0
+1 -30.05269994 614.2644397 -36.77801075 0.60149409 -0.0075 0.13904768 0 0 0 0.49533078 -0.0075 -0.05342885 0 1.90482298 0 0 0 0
+1.0017 -30.12973389 615.0124344 -36.56979909 0.60034854 -0.0075 0.13908665 0 0 0 0.49776893 -0.0075 -0.05328497 0 1.89206725 0 0 0 0
+1.0033 -30.17649266 615.7080822 -36.38979111 0.5991615 -0.0075 0.13911811 0 0 0 0.50020828 -0.0075 -0.05314102 0 1.88754482 0 0 0 0
+1.005 -30.18668597 616.354384 -36.2385499 0.59793497 -0.0075 0.13914285 0 0 0 0.50264862 -0.0075 -0.05299701 0 1.89190468 0 0 0 0
+1.0067 -30.15513586 616.9558317 -36.11571971 0.59667166 -0.0075 0.13916192 0 0 0 0.50508979 -0.0075 -0.05285296 0 1.90536478 0 0 0 0
+1.0083 -30.07781538 617.5182263 -36.02011528 0.59537492 -0.0075 0.13917649 0 0 0 0.5075316 -0.0075 -0.05270886 0 1.92771209 0 0 0 0
+1.01 -29.95194669 618.0483292 -35.94978463 0.59404852 -0.0075 0.13918782 0 0 0 0.50997387 -0.0075 -0.05256474 0 1.95835748 0 0 0 0
+1.0117 -29.77614791 618.5536022 -35.90215167 0.59269653 -0.0075 0.13919716 0 0 0 0.51241641 -0.0075 -0.0524206 0 1.99632358 0 0 0 0
+1.0133 -29.55018263 619.0418483 -35.87415014 0.59132318 -0.0075 0.13920564 0 0 0 0.51485904 -0.0075 -0.05227645 0 2.04033988 0 0 0 0
+1.015 -29.27522568 619.5208464 -35.86235701 0.58993257 -0.0075 0.13921427 0 0 0 0.51730158 -0.0075 -0.05213232 0 2.08882906 0 0 0 0
+1.0167 -28.95346912 619.9980389 -35.86322316 0.58852866 -0.0075 0.13922386 0 0 0 0.51974384 -0.0075 -0.05198819 0 2.1400623 0 0 0 0
+1.0183 -28.58821461 620.4801587 -35.87315548 0.58711496 -0.0075 0.13923495 0 0 0 0.52218565 -0.0075 -0.0518441 0 2.19213999 0 0 0 0
+1.02 -28.18345331 620.9729894 -35.88874915 0.58569462 -0.0075 0.1392478 0 0 0 0.52462682 -0.0075 -0.05170004 0 2.2431398 0 0 0 0
+1.0217 -27.74381089 621.4810789 -35.90688645 0.58427014 -0.0075 0.13926241 0 0 0 0.52706717 -0.0075 -0.05155603 0 2.29118339 0 0 0 0
+1.0233 -27.27425734 622.0076442 -35.92492303 0.58284352 -0.0075 0.13927851 0 0 0 0.52950651 -0.0075 -0.05141208 0 2.33450682 0 0 0 0
+1.025 -26.77977848 622.5544553 -35.94074424 0.58141612 -0.0075 0.13929559 0 0 0 0.53194466 -0.0075 -0.0512682 0 2.37157117 0 0 0 0
+1.0267 -26.2653277 623.1218193 -35.95288284 0.5799887 -0.0075 0.139313 0 0 0 0.53438144 -0.0075 -0.0511244 0 2.40109825 0 0 0 0
+1.0283 -25.73538705 623.7086167 -35.96059707 0.57856148 -0.0075 0.1393299 0 0 0 0.53681667 -0.0075 -0.05098069 0 2.42217973 0 0 0 0
+1.03 -25.19402644 624.3123988 -35.96385459 0.57713412 -0.0075 0.13934542 0 0 0 0.53925017 -0.0075 -0.05083709 0 2.43425571 0 0 0 0
+1.0317 -24.64446231 624.9295012 -35.96335934 0.57570593 -0.0075 0.13935861 0 0 0 0.54168174 -0.0075 -0.0506936 0 2.4372168 0 0 0 0
+1.0333 -24.08918765 625.5552386 -35.96046081 0.57427572 -0.0075 0.13936855 0 0 0 0.54411121 -0.0075 -0.05055023 0 2.4313294 0 0 0 0
+1.035 -23.52968457 626.1841703 -35.95713343 0.5728421 -0.0075 0.13937436 0 0 0 0.5465384 -0.0075 -0.050407 0 2.41728764 0 0 0 0
+1.0367 -22.96644639 626.8102956 -35.95583654 0.57140344 -0.0075 0.13937528 0 0 0 0.54896312 -0.0075 -0.05026391 0 2.39620049 0 0 0 0
+1.0383 -22.39911684 627.4273919 -35.95943356 0.56995798 -0.0075 0.13937067 0 0 0 0.5513852 -0.0075 -0.05012098 0 2.36949751 0 0 0 0
+1.04 -21.82642044 628.0291859 -35.97099772 0.56850384 -0.0075 0.13936002 0 0 0 0.55380444 -0.0075 -0.04997821 0 2.33890105 0 0 0 0
+1.0417 -21.24642779 628.6095973 -35.99365583 0.56703911 -0.0075 0.13934296 0 0 0 0.55622066 -0.0075 -0.04983563 0 2.30630506 0 0 0 0
+1.0433 -20.65648547 629.1629944 -36.03046161 0.56556197 -0.0075 0.13931923 0 0 0 0.55863369 -0.0075 -0.04969323 0 2.27375485 0 0 0 0
+1.045 -20.05367332 629.6843581 -36.08414641 0.5640706 -0.0075 0.13928874 0 0 0 0.56104333 -0.0075 -0.04955103 0 2.24325594 0 0 0 0
+1.0467 -19.43470612 630.1695176 -36.15706666 0.56256343 -0.0075 0.13925147 0 0 0 0.56344941 -0.0075 -0.04940905 0 2.21679471 0 0 0 0
+1.0483 -18.79639503 630.6153004 -36.25099226 0.56103897 -0.0075 0.13920755 0 0 0 0.56585175 -0.0075 -0.04926728 0 2.19616302 0 0 0 0
+1.05 -18.13570135 631.019705 -36.36704812 0.55949606 -0.0075 0.1391572 0 0 0 0.56825015 -0.0075 -0.04912574 0 2.18291504 0 0 0 0
+1.0517 -17.44998635 631.3819218 -36.50563276 0.55793377 -0.0075 0.13910074 0 0 0 0.57064445 -0.0075 -0.04898445 0 2.17831885 0 0 0 0
+1.0533 -16.73727635 631.702497 -36.66636683 0.55635149 -0.0075 0.13903859 0 0 0 0.57303445 -0.0075 -0.04884341 0 2.18323771 0 0 0 0
+1.055 -15.99616757 631.9833087 -36.84808544 0.55474907 -0.0075 0.13897125 0 0 0 0.57541997 -0.0075 -0.04870264 0 2.19816687 0 0 0 0
+1.0567 -15.22619104 632.2276012 -37.04890971 0.5531267 -0.0075 0.13889931 0 0 0 0.57780083 -0.0075 -0.04856214 0 2.22317385 0 0 0 0
+1.0583 -14.42759847 632.4400217 -37.26633371 0.55148512 -0.0075 0.13882345 0 0 0 0.58017685 -0.0075 -0.04842193 0 2.25797829 0 0 0 0
+1.06 -13.60159988 632.6265192 -37.49729685 0.54982549 -0.0075 0.13874449 0 0 0 0.58254784 -0.0075 -0.04828201 0 2.30189525 0 0 0 0
+1.0617 -12.75013853 632.7943019 -37.73838565 0.54814954 -0.0075 0.13866336 0 0 0 0.58491363 -0.0075 -0.0481424 0 2.35395459 0 0 0 0
+1.0633 -11.87601841 632.9516561 -37.98593273 0.54645935 -0.0075 0.13858109 0 0 0 0.58727402 -0.0075 -0.04800311 0 2.41289454 0 0 0 0
+1.065 -10.98263729 633.1078041 -38.23620225 0.54475748 -0.0075 0.1384988 0 0 0 0.58962884 -0.0075 -0.04786415 0 2.47723962 0 0 0 0
+1.0667 -10.07385305 633.2726763 -38.48553915 0.5430468 -0.0075 0.1384177 0 0 0 0.59197791 -0.0075 -0.04772553 0 2.545401 0 0 0 0
+1.0683 -9.15395945 633.4567133 -38.73055681 0.54133039 -0.0075 0.13833904 0 0 0 0.59432103 -0.0075 -0.04758725 0 2.61570103 0 0 0 0
+1.07 -8.22729293 633.6706104 -38.96823751 0.53961148 -0.0075 0.13826412 0 0 0 0.59665803 -0.0075 -0.04744934 0 2.68646869 0 0 0 0
+1.0717 -7.2982947 633.9250042 -39.19603171 0.53789321 -0.0075 0.13819421 0 0 0 0.59898873 -0.0075 -0.0473118 0 2.75606256 0 0 0 0
+1.0733 -6.37114246 634.2301939 -39.41197091 0.53617855 -0.0075 0.1381305 0 0 0 0.60131294 -0.0075 -0.04717465 0 2.82295851 0 0 0 0
+1.075 -5.44987845 634.5958017 -39.61468429 0.53447001 -0.0075 0.13807406 0 0 0 0.60363048 -0.0075 -0.04703789 0 2.8857163 0 0 0 0
+1.0767 -4.53805274 635.0304729 -39.80343346 0.53276963 -0.0075 0.13802572 0 0 0 0.60594117 -0.0075 -0.04690153 0 2.94307581 0 0 0 0
+1.0783 -3.63874125 635.5416148 -39.97807034 0.53107869 -0.0075 0.13798608 0 0 0 0.60824482 -0.0075 -0.04676558 0 2.9939145 0 0 0 0
+1.08 -2.75447756 636.1351926 -40.13903743 0.5293977 -0.0075 0.13795541 0 0 0 0.61054125 -0.0075 -0.04663007 0 3.03726552 0 0 0 0
+1.0817 -1.88713339 636.8155178 -40.28730462 0.52772633 -0.0075 0.13793364 0 0 0 0.61283028 -0.0075 -0.04649499 0 3.07237814 0 0 0 0
+1.0833 -1.03808311 637.5851699 -40.42428181 0.52606328 -0.0075 0.13792034 0 0 0 0.61511173 -0.0075 -0.04636036 0 3.09863652 0 0 0 0
+1.085 -0.20800732 638.4449066 -40.5517822 0.5244064 -0.0075 0.13791468 0 0 0 0.61738541 -0.0075 -0.04622618 0 3.11563648 0 0 0 0
+1.0867 0.60284567 639.3936503 -40.67188241 0.52275269 -0.0075 0.13791547 0 0 0 0.61965114 -0.0075 -0.04609248 0 3.1231356 0 0 0 0
+1.0883 1.39489594 640.4286481 -40.78686309 0.52109852 -0.0075 0.13792115 0 0 0 0.62190874 -0.0075 -0.04595925 0 3.1211 0 0 0 0
+1.09 2.16898052 641.5455801 -40.89910769 0.51943972 -0.0075 0.13792991 0 0 0 0.62415802 -0.0075 -0.04582652 0 3.10968687 0 0 0 0
+1.0917 2.92645747 642.7388453 -41.0110461 0.51777189 -0.0075 0.1379397 0 0 0 0.6263988 -0.0075 -0.04569428 0 3.0893042 0 0 0 0
+1.0933 3.66912352 644.001836 -41.12503088 0.51609055 -0.0075 0.13794837 0 0 0 0.62863091 -0.0075 -0.04556256 0 3.0605936 0 0 0 0
+1.095 4.39916759 645.3272716 -41.2432636 0.51439148 -0.0075 0.13795375 0 0 0 0.63085415 -0.0075 -0.04543137 0 3.02443609 0 0 0 0
+1.0967 5.11925035 646.7075317 -41.36773201 0.51267095 -0.0075 0.13795378 0 0 0 0.63306835 -0.0075 -0.0453007 0 2.98199601 0 0 0 0
+1.0983 5.83227387 648.1350219 -41.50010845 0.51092588 -0.0075 0.13794657 0 0 0 0.63527331 -0.0075 -0.04517058 0 2.93461065 0 0 0 0
+1.1 6.54166417 649.6024866 -41.64168248 0.50915421 -0.0075 0.13793054 0 0 0 0.63746887 -0.0075 -0.04504102 0 2.88388837 0 0 0 0
+1.1017 7.25108751 651.1032956 -41.79327619 0.5073549 -0.0075 0.13790448 0 0 0 0.63965483 -0.0075 -0.04491202 0 2.83158146 0 0 0 0
+1.1033 7.96462924 652.6317279 -41.9552115 0.50552815 -0.0075 0.13786763 0 0 0 0.64183101 -0.0075 -0.0447836 0 2.77957521 0 0 0 0
+1.105 8.68659831 654.1830918 -42.12719641 0.50367536 -0.0075 0.13781972 0 0 0 0.64399724 -0.0075 -0.04465577 0 2.72979173 0 0 0 0
+1.1067 9.42152644 655.7538688 -42.30839153 0.50179917 -0.0075 0.13776098 0 0 0 0.64615332 -0.0075 -0.04452853 0 2.68412969 0 0 0 0
+1.1083 10.17407997 657.3416905 -42.49734799 0.49990329 -0.0075 0.13769213 0 0 0 0.64829907 -0.0075 -0.04440191 0 2.64435728 0 0 0 0
+1.11 10.9488619 658.9452721 -42.69203458 0.49799238 -0.0075 0.13761434 0 0 0 0.65043432 -0.0075 -0.0442759 0 2.61202486 0 0 0 0
+1.1117 11.7504624 660.5642495 -42.88993934 0.49607183 -0.0075 0.13752913 0 0 0 0.65255888 -0.0075 -0.04415053 0 2.58843599 0 0 0 0
+1.1133 12.58308857 662.1989929 -43.08808954 0.49414745 -0.0075 0.13743836 0 0 0 0.65467256 -0.0075 -0.0440258 0 2.57447836 0 0 0 0
+1.115 13.45065453 663.8503678 -43.2832371 0.4922253 -0.0075 0.13734403 0 0 0 0.65677519 -0.0075 -0.04390172 0 2.57069183 0 0 0 0
+1.1167 14.3563757 665.5194411 -43.47199909 0.49031125 -0.0075 0.13724826 0 0 0 0.65886658 -0.0075 -0.0437783 0 2.57719349 0 0 0 0
+1.1183 15.30279799 667.2072543 -43.65108004 0.4884108 -0.0075 0.13715312 0 0 0 0.66094655 -0.0075 -0.04365556 0 2.59370912 0 0 0 0
+1.12 16.29150641 668.9145067 -43.81740386 0.48652875 -0.0075 0.13706057 0 0 0 0.66301491 -0.0075 -0.0435335 0 2.61958554 0 0 0 0
+1.1217 17.32305597 670.6413418 -43.96835966 0.48466898 -0.0075 0.13697229 0 0 0 0.66507148 -0.0075 -0.04341214 0 2.65385624 0 0 0 0
+1.1233 18.39697928 672.3871497 -44.10196805 0.48283428 -0.0075 0.13688966 0 0 0 0.66711609 -0.0075 -0.04329148 0 2.6953157 0 0 0 0
+1.125 19.51161564 674.1504957 -44.21702036 0.48102626 -0.0075 0.1368137 0 0 0 0.66914854 -0.0075 -0.04317154 0 2.74260179 0 0 0 0
+1.1267 20.66430316 675.9290812 -44.31325913 0.47924534 -0.0075 0.13674504 0 0 0 0.67116866 -0.0075 -0.04305233 0 2.79437114 0 0 0 0
+1.1283 21.85119688 677.7197877 -44.39137038 0.47749067 -0.0075 0.13668393 0 0 0 0.67317625 -0.0075 -0.04293386 0 2.84927293 0 0 0 0
+1.13 23.06764887 679.5188334 -44.45305387 0.47576038 -0.0075 0.13663023 0 0 0 0.67517115 -0.0075 -0.04281614 0 2.90615157 0 0 0 0
+1.1317 24.30815225 681.3218636 -44.50088276 0.47405157 -0.0075 0.13658354 0 0 0 0.67715316 -0.0075 -0.04269917 0 2.9640344 0 0 0 0
+1.1333 25.56670215 683.1242631 -44.53825407 0.47236067 -0.0075 0.13654315 0 0 0 0.67912211 -0.0075 -0.04258298 0 3.0221992 0 0 0 0
+1.135 26.83698607 684.9213425 -44.56908554 0.47068352 -0.0075 0.13650822 0 0 0 0.68107781 -0.0075 -0.04246757 0 3.08018232 0 0 0 0
+1.1367 28.112665 686.7086725 -44.59766636 0.46901579 -0.0075 0.13647782 0 0 0 0.68302008 -0.0075 -0.04235296 0 3.13777783 0 0 0 0
+1.1383 29.38771348 688.4823164 -44.62837493 0.46735311 -0.0075 0.13645099 0 0 0 0.68494873 -0.0075 -0.04223914 0 3.19502601 0 0 0 0
+1.14 30.65652071 690.2391118 -44.66531812 0.46569131 -0.0075 0.13642692 0 0 0 0.68686358 -0.0075 -0.04212614 0 3.25207947 0 0 0 0
+1.1417 31.91438593 691.9768225 -44.71211197 0.46402672 -0.0075 0.13640489 0 0 0 0.68876445 -0.0075 -0.04201397 0 3.30922962 0 0 0 0
+1.1433 33.15744294 693.6942798 -44.77159637 0.46235619 -0.0075 0.13638436 0 0 0 0.69065116 -0.0075 -0.04190263 0 3.36670624 0 0 0 0
+1.145 34.38309546 695.3914681 -44.84560498 0.46067739 -0.0075 0.13636503 0 0 0 0.69252353 -0.0075 -0.04179214 0 3.42468734 0 0 0 0
+1.1467 35.5899775 697.0694669 -44.93482139 0.45898872 -0.0075 0.13634677 0 0 0 0.69438136 -0.0075 -0.04168251 0 3.48321086 0 0 0 0
+1.1483 36.77810978 698.7304684 -45.03876895 0.45728946 -0.0075 0.13632967 0 0 0 0.69622449 -0.0075 -0.04157374 0 3.54212879 0 0 0 0
+1.15 37.94881807 700.3776097 -45.15572952 0.45557967 -0.0075 0.13631398 0 0 0 0.69805272 -0.0075 -0.04146585 0 3.60107839 0 0 0 0
+1.1517 39.10466117 702.0147719 -45.28290548 0.45386016 -0.0075 0.13630008 0 0 0 0.69986587 -0.0075 -0.04135885 0 3.65949622 0 0 0 0
+1.1533 40.24937376 703.6463747 -45.41657184 0.45213236 -0.0075 0.1362884 0 0 0 0.70166377 -0.0075 -0.04125276 0 3.71664559 0 0 0 0
+1.155 41.38749908 705.2771213 -45.55227831 0.45039821 -0.0075 0.1362794 0 0 0 0.70344622 -0.0075 -0.04114757 0 3.77162494 0 0 0 0
+1.1567 42.52438366 706.9117018 -45.68519945 0.44866005 -0.0075 0.13627344 0 0 0 0.70521305 -0.0075 -0.04104331 0 3.82355229 0 0 0 0
+1.1583 43.66567327 708.5546077 -45.81040895 0.44692037 -0.0075 0.1362708 0 0 0 0.70696407 -0.0075 -0.04093998 0 3.87154614 0 0 0 0
+1.16 44.81726459 710.2099349 -45.92316521 0.44518183 -0.0075 0.13627162 0 0 0 0.7086991 -0.0075 -0.04083759 0 3.91485285 0 0 0 0
+1.1617 45.98484125 711.881141 -46.01923493 0.44344699 -0.0075 0.13627591 0 0 0 0.71041795 -0.0075 -0.04073616 0 3.95294795 0 0 0 0
+1.1633 47.17361115 713.5709568 -46.09520062 0.44171824 -0.0075 0.13628345 0 0 0 0.71212045 -0.0075 -0.04063569 0 3.98559298 0 0 0 0
+1.165 48.38810255 715.2812579 -46.14853019 0.43999769 -0.0075 0.13629392 0 0 0 0.71380641 -0.0075 -0.0405362 0 4.01284608 0 0 0 0
+1.1667 49.6318685 717.0129846 -46.17776 0.4382871 -0.0075 0.13630678 0 0 0 0.71547565 -0.0075 -0.04043769 0 4.03508233 0 0 0 0
+1.1683 50.90741984 718.7661613 -46.18257358 0.4365878 -0.0075 0.13632137 0 0 0 0.71712799 -0.0075 -0.04034018 0 4.05302952 0 0 0 0
+1.17 52.21595587 720.5399571 -46.16367259 0.43490064 -0.0075 0.13633697 0 0 0 0.71876324 -0.0075 -0.04024369 0 4.06760751 0 0 0 0
+1.1717 53.55752752 722.3327201 -46.12273628 0.43322609 -0.0075 0.13635279 0 0 0 0.72038121 -0.0075 -0.04014821 0 4.07997685 0 0 0 0
+1.1733 54.93075969 724.1420666 -46.06225424 0.43156401 -0.0075 0.13636801 0 0 0 0.72198174 -0.0075 -0.04005376 0 4.09135783 0 0 0 0
+1.175 56.33311593 725.9650084 -45.98528265 0.42991385 -0.0075 0.13638188 0 0 0 0.72356463 -0.0075 -0.03996035 0 4.10291724 0 0 0 0
+1.1767 57.76095833 727.7979519 -45.89518972 0.42827455 -0.0075 0.13639367 0 0 0 0.7251297 -0.0075 -0.03986799 0 4.11570063 0 0 0 0
+1.1783 59.20966554 729.6368652 -45.7955056 0.42664459 -0.0075 0.13640273 0 0 0 0.72667678 -0.0075 -0.03977669 0 4.13051186 0 0 0 0
+1.18 60.67393371 731.4773775 -45.68963361 0.42502203 -0.0075 0.13640848 0 0 0 0.72820566 -0.0075 -0.03968647 0 4.14781196 0 0 0 0
+1.1817 62.14794787 733.3148139 -45.58064724 0.42340458 -0.0075 0.13641048 0 0 0 0.72971619 -0.0075 -0.03959733 0 4.16769297 0 0 0 0
+1.1833 63.62576009 735.1443109 -45.47125739 0.42178962 -0.0075 0.13640834 0 0 0 0.73120816 -0.0075 -0.03950929 0 4.18992506 0 0 0 0
+1.185 65.10132933 736.9608907 -45.36364428 0.42017425 -0.0075 0.13640179 0 0 0 0.7326814 -0.0075 -0.03942235 0 4.21383624 0 0 0 0
+1.1867 66.56902965 738.7594891 -45.25943611 0.41855544 -0.0075 0.13639061 0 0 0 0.73413573 -0.0075 -0.03933653 0 4.23850293 0 0 0 0
+1.1883 68.02367332 740.5350201 -45.15978264 0.41693004 -0.0075 0.13637468 0 0 0 0.73557096 -0.0075 -0.03925183 0 4.26277056 0 0 0 0
+1.19 69.46082358 742.2824904 -45.06544414 0.41529488 -0.0075 0.13635386 0 0 0 0.73698691 -0.0075 -0.03916827 0 4.28537182 0 0 0 0
+1.1917 70.87695345 743.9970027 -44.976796 0.41364698 -0.0075 0.13632812 0 0 0 0.7383834 -0.0075 -0.03908586 0 4.30508547 0 0 0 0
+1.1933 72.26952689 745.6738844 -44.89404277 0.41198356 -0.0075 0.13629742 0 0 0 0.73976024 -0.0075 -0.03900461 0 4.32084171 0 0 0 0
+1.195 73.63711211 747.308774 -44.81731953 0.41030221 -0.0075 0.13626177 0 0 0 0.74111725 -0.0075 -0.03892453 0 4.33182982 0 0 0 0
+1.1967 74.97924823 748.8976943 -44.74672768 0.40860099 -0.0075 0.13622126 0 0 0 0.74245426 -0.0075 -0.03884563 0 4.33756733 0 0 0 0
+1.1983 76.29660307 750.4371376 -44.68254182 0.40687858 -0.0075 0.13617598 0 0 0 0.74377107 -0.0075 -0.03876793 0 4.33806266 0 0 0 0
+1.2 77.59060723 751.9241437 -44.62512451 0.40513424 -0.0075 0.1361261 0 0 0 0.7450675 -0.0075 -0.03869142 0 4.33366528 0 0 0 0
+1.2017 78.86354575 753.3563602 -44.5749576 0.40336803 -0.0075 0.13607188 0 0 0 0.74634337 -0.0075 -0.03861613 0 4.32515328 0 0 0 0
+1.2033 80.11822771 754.732017 -44.53258533 0.40158069 -0.0075 0.13601363 0 0 0 0.7475985 -0.0075 -0.03854206 0 4.3136361 0 0 0 0
+1.205 81.35784155 756.0499938 -44.49856826 0.39977372 -0.0075 0.13595176 0 0 0 0.74883271 -0.0075 -0.03846923 0 4.30044598 0 0 0 0
+1.2067 82.58573709 757.3097463 -44.47328776 0.3979493 -0.0075 0.1358868 0 0 0 0.75004581 -0.0075 -0.03839764 0 4.28701667 0 0 0 0
+1.2083 83.80512993 758.5112256 -44.45688753 0.3961102 -0.0075 0.13581933 0 0 0 0.75123762 -0.0075 -0.03832731 0 4.27474317 0 0 0 0
+1.21 85.01898468 759.6547634 -44.44915162 0.39425964 -0.0075 0.13575004 0 0 0 0.75240796 -0.0075 -0.03825825 0 4.26483772 0 0 0 0
+1.2117 86.2296946 760.7408812 -44.44929705 0.39240112 -0.0075 0.13567965 0 0 0 0.75355664 -0.0075 -0.03819046 0 4.2581222 0 0 0 0
+1.2133 87.43915928 761.7700698 -44.45603836 0.39053835 -0.0075 0.13560893 0 0 0 0.75468348 -0.0075 -0.03812396 0 4.25506224 0 0 0 0
+1.215 88.64842545 762.742581 -44.46746801 0.38867487 -0.0075 0.13553864 0 0 0 0.7557883 -0.0075 -0.03805877 0 4.25555832 0 0 0 0
+1.2167 89.85784476 763.6582341 -44.4811162 0.38681404 -0.0075 0.13546951 0 0 0 0.75687092 -0.0075 -0.03799488 0 4.25901301 0 0 0 0
+1.2183 91.06699087 764.5161128 -44.49399225 0.38495874 -0.0075 0.13540223 0 0 0 0.75793115 -0.0075 -0.03793231 0 4.2643376 0 0 0 0
+1.22 92.27470253 765.31445 -44.50284867 0.38311125 -0.0075 0.1353374 0 0 0 0.75896881 -0.0075 -0.03787108 0 4.27003802 0 0 0 0
+1.2217 93.47923104 766.0503982 -44.50420052 0.38127314 -0.0075 0.13527553 0 0 0 0.75998372 -0.0075 -0.03781119 0 4.27431274 0 0 0 0
+1.2233 94.6783871 766.7199048 -44.4946112 0.3794452 -0.0075 0.13521699 0 0 0 0.76097569 -0.0075 -0.03775265 0 4.27522274 0 0 0 0
+1.225 95.86982589 767.3176775 -44.47099475 0.37762737 -0.0075 0.135162 -1.98114462 0.28592401 -0.85974471 0.76194455 -0.0075 -0.03769547 0 4.27093005 0 -0.03717157 -0.07514324 -0.0793649
+1.2267 97.05110936 767.8371892 -44.43070119 0.37581878 -0.0075 0.13511069 -2.08681953 0.70971528 -0.90293147 0.7628901 -0.0075 -0.03763968 0 4.25977944 0 -0.01136243 -0.06590709 -0.10196949
+1.2283 98.22020126 768.2707489 -44.37180714 0.37401793 -0.0075 0.13506305 -2.14502405 1.25797444 -0.92810943 0.76381217 -0.0075 -0.03758526 0 4.24063508 0 0.01546565 -0.05697331 -0.11008248
+1.23 99.37545718 768.6096822 -44.29326004 0.37222266 -0.0075 0.13501899 -2.14412895 1.95366344 -0.93446473 0.76471058 -0.0075 -0.03753225 0 4.21291148 0 0.04311063 -0.04720694 -0.10345852
+1.2317 100.5159855 768.8445526 -44.19494929 0.37043041 -0.0075 0.13497833 -2.07168978 2.82191786 -0.92240438 0.76558514 -0.0075 -0.03748064 0 4.17672409 0 0.07119005 -0.03531908 -0.08251024
+1.2333 101.6417855 768.9653592 -44.07768515 0.36863844 -0.0075 0.13494088 -1.91479951 3.88995463 -0.89373534 0.76643566 -0.0075 -0.03743045 0 4.13297777 0 0.09914707 -0.02008049 -0.04827616
+1.235 102.7538989 768.9619069 -43.94323358 0.36684402 -0.0075 0.1349064 -1.66061292 5.1869784 -0.85178011 0.76726198 -0.0075 -0.03738168 0 4.0833511 0 0.1262539 -0.00034455 -0.00238063
+1.2367 103.8544873 768.8241152 -43.79408534 0.36504469 -0.0075 0.1348747 -1.29682585 6.74392418 -0.80167472 0.76806389 -0.0075 -0.03733436 0 4.03021149 0 0.15171811 0.02482802 0.05314726
+1.2383 104.9467685 768.5423141 -43.63328019 0.36323844 -0.0075 0.13484563 -0.81247547 8.59308955 -0.75036035 0.76884123 -0.0075 -0.03728849 0 3.97652025 0 0.17468222 0.0561146 0.11589535
+1.24 106.0350671 768.1075882 -43.46417625 0.36142399 -0.0075 0.13481914 -0.198623 10.76745297 -0.70675023 0.7695938 -0.0075 -0.03724408 0 3.92568877 0 0.1943222 0.09387108 0.18325682
+1.2417 107.1244555 767.5120709 -43.29003309 0.35960089 -0.0075 0.13479532 0.55087739 13.30013402 -0.68158587 0.77032143 -0.0075 -0.03720114 0 3.88119909 0 0.20988601 0.13812428 0.25253244
+1.2433 108.2206882 766.7491055 -43.11380477 0.35776973 -0.0075 0.13477439 1.43858111 16.22333705 -0.68742781 0.77102393 -0.0075 -0.03715968 0 3.84651953 0 0.22075678 0.18860485 0.32111543
+1.245 109.329691 765.8133967 -42.93781159 0.35593212 -0.0075 0.13475669 2.46271189 19.56742758 -0.73826378 0.77170112 -0.0075 -0.03711972 0 3.82476756 0 0.226475 0.24471881 0.38655871
+1.2467 110.4573328 764.7011361 -42.76340971 0.35409082 -0.0075 0.13474272 3.61651708 23.35978349 -0.84923316 0.77235282 -0.0075 -0.03708126 0 3.81841026 0 0.22679322 0.30565005 0.44670357
+1.2483 111.6089518 763.4099135 -42.59072229 0.35224965 -0.0075 0.13473314 4.88770514 27.6236006 -1.03616458 0.77297884 -0.0075 -0.03704432 0 3.82905098 0 0.22172029 0.3704011 0.4997686
+1.25 112.788875 761.9386815 -42.41862836 0.35041338 -0.0075 0.13472873 6.25807536 32.3766972 -1.31483151 0.773579 -0.0075 -0.0370089 0 3.85726454 0 0.21148586 0.43791016 0.54436294
+1.2517 114.0000452 760.2875855 -42.24464094 0.34858762 -0.0075 0.13473042 7.70346416 37.63033673 -1.70031836 0.77415312 -0.0075 -0.03697502 0 3.90246037 0 0.1965534 0.50712556 0.57960545
+1.2533 115.2435203 758.4576836 -42.06489314 0.34677856 -0.0075 0.13473922 9.1936987 43.38832626 -2.20613749 0.77470101 -0.0075 -0.03694269 0 3.96276207 0 0.17759927 0.57712704 0.60502385
+1.255 116.5182702 756.4506276 -41.87439362 0.34499275 -0.0075 0.13475616 10.69308715 49.64600961 -2.84349706 0.7752225 -0.0075 -0.03691192 0 4.03513277 0 0.15546381 0.6472343 0.62062654
+1.2567 117.8207062 754.2683107 -41.66715822 0.34323672 -0.0075 0.13478232 12.16108447 56.38987665 -3.62032228 0.7757174 -0.0075 -0.03688271 0 4.11533106 0 0.13111239 0.71703542 0.62679755
+1.2583 119.1447899 751.9124578 -41.43656707 0.34151675 -0.0075 0.13481871 13.55310358 63.59715173 -4.54067975 0.77618552 -0.0075 -0.03685509 0 4.19822622 0 0.10560581 0.78645255 0.62427363
+1.26 120.4818091 749.38422 -41.1757317 0.33983848 -0.0075 0.13486622 14.82177976 71.23591908 -5.60402631 0.77662669 -0.0075 -0.03682905 0 4.27798209 0 0.08001993 0.85573793 0.61401674
+1.2617 121.820568 746.6838552 -40.87793801 0.33820656 -0.0075 0.13492558 15.91843341 79.26557714 -6.80469115 0.77704072 -0.0075 -0.03680462 0 4.34834789 0 0.05536467 0.92552623 0.59713946
+1.2633 123.1477057 743.8102851 -40.5369705 0.33662441 -0.0075 0.13499733 16.79462893 87.63761204 -8.13178645 0.77742744 -0.0075 -0.0367818 0 4.40303427 0 0.03258538 0.99672463 0.57483523
+1.265 124.4480165 740.7608047 -40.14758387 0.33509386 -0.0075 0.13508166 17.40388182 96.29680557 -9.56910456 0.77778664 -0.0075 -0.0367606 0 4.43606606 0 0.01247423 1.07051759 0.54820891
+1.2667 125.7050394 737.5308553 -39.70588593 0.33361495 -0.0075 0.13517842 17.70362343 105.1826757 -11.09544805 0.77811816 -0.0075 -0.03674104 0 4.44213631 0 -0.00437325 1.14828588 0.51829887
+1.2683 126.9016051 734.1138042 -39.20948565 0.33218578 -0.0075 0.13528705 17.65682472 114.2313646 -12.68524229 0.77842182 -0.0075 -0.03672312 0 4.41689217 0 -0.01754967 1.23146081 0.48589765
+1.27 128.0207554 730.5008902 -38.65780974 0.33080244 -0.0075 0.13540653 17.23370194 123.3774616 -14.30948391 0.77869742 -0.0075 -0.03670686 0 4.35733302 0 -0.0268506 1.32143551 0.45156626
+1.2717 129.0462709 726.6812735 -38.05216813 0.32945894 -0.0075 0.13553533 16.4132797 132.5562075 -15.93663263 0.77894478 -0.0075 -0.03669226 0 4.26190772 0 -0.03233525 1.41944865 0.41555815
+1.2733 129.9636221 722.642155 -37.3957361 0.32814747 -0.0075 0.13567146 15.18449867 141.7055259 -17.53411468 0.77916373 -0.0075 -0.03667934 0 4.13076719 0 -0.03424973 1.52651215 0.37780618
+1.275 130.760577 718.368993 -36.69339685 0.32685846 -0.0075 0.13581243 13.54710122 150.7680447 -19.06968157 0.77935408 -0.0075 -0.03666811 0 3.9657766 0 -0.03302051 1.64325777 0.33792268
+1.2767 131.4278583 713.8458777 -35.9515951 0.32558094 -0.0075 0.1359553 11.51215215 159.6929495 -20.512758 0.77951564 -0.0075 -0.03665857 0 3.77046648 0 -0.02926524 1.76993907 0.29521309
+1.2783 131.9596337 709.0559227 -35.17798333 0.32430291 -0.0075 0.13609673 9.10200595 168.4375352 -21.83597467 0.77964824 -0.0075 -0.03665075 0 3.54996249 0 -0.02369917 1.90636917 0.24874502
+1.28 132.3537903 703.98178 -34.38103681 0.32301177 -0.0075 0.13623309 6.34981128 176.968495 -23.0163082 0.77975169 -0.0075 -0.03664464 0 3.31074823 0 -0.01713791 2.05187479 0.19733867
+1.2817 132.612193 698.6062115 -33.56970992 0.32169482 -0.0075 0.13636048 3.29868029 185.2626738 -24.03619052 0.77982581 -0.0075 -0.03664027 0 3.06045517 0 -0.01043754 2.20530573 0.13969899
+1.2833 132.7403656 692.9126892 -32.75286845 0.32033976 -0.0075 0.13647498 0.00017059 193.3076411 -24.88415202 0.77987042 -0.0075 -0.03663764 0 2.80742024 0 -0.00445453 2.36508815 0.07439775
+1.285 132.7474173 686.8860327 -31.93899751 0.3189353 -0.0075 0.13657271 -3.4874191 201.1015283 -25.5553224 0.77988533 -0.0075 -0.03663676 0 2.56047386 0 0 2.52929376 0
+1.2867 132.6453052 680.5130002 -31.13572495 0.31747156 -0.0075 0.13664996 -7.10117166 208.6526796 -26.05132088 0.7794634 -0.0075 -0.03664805 0 2.32845126 0 0 2.70621696 0
+1.2883 132.4482135 673.7829163 -30.34947775 0.31594063 -0.0075 0.13670338 -10.7759432 215.978778 -26.37999044 0.77898425 -0.0075 -0.03664689 0 2.11982847 0 0 2.8840209 0
+1.29 132.1716306 666.6881407 -29.58519437 0.31433695 -0.0075 0.13673014 -14.44680442 223.1056679 -26.55467862 0.77844414 -0.0075 -0.03663244 0 1.94233629 0 0 3.06038369 0
+1.2917 131.8313219 659.2245141 -28.84613838 0.31265762 -0.0075 0.13672799 -18.05159061 230.0659502 -26.59310205 0.77784074 -0.0075 -0.03660446 0 1.80260192 0 0 3.23303366 0
+1.2933 131.4423921 651.3916893 -28.13375405 0.31090266 -0.0075 0.13669542 -21.53330727 236.8972984 -26.51627134 0.77717348 -0.0075 -0.03656358 0 1.70589163 0 0 3.39983624 0
+1.295 131.0181149 643.1933394 -27.44761639 0.3090751 -0.0075 0.1366318 -24.84233823 243.6408338 -26.34692842 0.7764433 -0.0075 -0.03651115 0 1.65578739 0 0 3.55892259 0
+1.2967 130.5691323 634.6372534 -26.78561613 0.30718101 -0.0075 0.1365373 -27.93828244 250.3392116 -26.10817676 0.77565292 -0.0075 -0.03644919 0 1.65414102 0 0 3.70881692 0
+1.2983 130.102449 625.7352845 -26.14393117 0.3052293 -0.0075 0.13641309 -30.79141126 257.0351131 -25.82197764 0.77480654 -0.0075 -0.03638051 0 1.70082591 0 0 3.84847441 0
+1.3 129.6210587 616.5031609 -25.51736249 0.30323164 -0.0075 0.13626124 -33.38359949 263.7695709 -25.50795648 0.77391004 -0.0075 -0.03630858 0 1.79381226 0 0 3.97741272 0
+1.3017 129.1233982 606.9601242 -24.89956998 0.30120197 -0.0075 0.13608469 -35.70866947 270.5806502 -25.18222076 0.77297066 -0.0075 -0.03623744 0 1.92916963 0 0 4.09573744 0
+1.3033 128.6033491 597.1285355 -24.28343315 0.29915612 -0.0075 0.13588714 -37.77219668 277.5023554 -24.85661892 0.77199687 -0.0075 -0.03617167 0 2.10124404 0 0 4.20415439 0
+1.305 128.050508 587.0332808 -23.66130917 0.29711133 -0.0075 0.135673 -39.59075876 284.5637323 -24.53833408 0.77099815 -0.0075 -0.03611627 0 2.30285306 0 0 4.30390004 0
+1.3067 127.4506383 576.7011642 -23.02548175 0.29508563 -0.0075 0.13544723 -41.19066782 291.78833 -24.22962527 0.76998433 -0.0075 -0.03607639 0 2.52557167 0 0 4.39673714 0
+1.3083 126.7865495 566.1602348 -22.36854499 0.29309723 -0.0075 0.13521513 -42.60616352 299.1937969 -23.92820957 0.7689656 -0.0075 -0.0360573 0 2.76014402 0 0 4.48487562 0
+1.31 126.0389844 555.4390642 -21.68360345 0.29116395 -0.0075 0.13498223 -43.87733533 306.7919204 -23.6276719 0.7679518 -0.0075 -0.03606405 0 2.99675509 0 0 4.57080259 0
+1.3117 125.1880514 544.5660277 -20.96476508 0.2893026 -0.0075 0.13475404 -45.04778519 314.5886164 -23.31837552 0.76695226 -0.0075 -0.03610138 0 3.22559961 0 0 4.657201 0
+1.3133 124.2142842 533.568598 -20.20729101 0.28752833 -0.0075 0.13453589 -46.1620874 322.5843874 -22.98825479 0.76597514 -0.0075 -0.03617333 0 3.4371645 0 0 4.74678812 0
+1.315 123.1001777 522.4727204 -19.40790333 0.28585424 -0.0075 0.13433268 -47.26337839 330.7746914 -22.62405344 0.76502732 -0.0075 -0.03628317 0 3.62279527 0 0 4.84214328 0
+1.3167 121.8313719 511.3022055 -18.5649153 0.28429083 -0.0075 0.13414876 -48.39109484 339.1505235 -22.21239113 0.76411387 -0.0075 -0.03643325 0 3.7750444 0 0 4.94548723 0
+1.3183 120.3977724 500.0783267 -17.67840747 0.28284573 -0.0075 0.1339877 -49.57892791 347.6990809 -21.74072439 0.76323785 -0.0075 -0.03662473 0 3.88799145 0 0 5.05863873 0
+1.32 118.7944674 488.8194241 -16.75024399 0.28152335 -0.0075 0.13385227 -50.85319015 356.4043476 -21.19837606 0.76240024 -0.0075 -0.03685765 0 3.95757247 0 0 5.18285492 0
+1.3217 117.0222801 477.5406813 -15.78404859 0.28032484 -0.0075 0.13374428 -52.23175078 365.2478548 -20.57710913 0.76159971 -0.0075 -0.03713077 0 3.98171259 0 0 5.31873572 0
+1.3233 115.0881828 466.2540605 -14.78522253 0.27924798 -0.0075 0.1336645 -53.72335961 374.2092095 -19.87171506 0.76083285 -0.0075 -0.03744168 0 3.96048879 0 0 5.466218 0
+1.325 113.0049616 454.9683011 -13.76070108 0.27828722 -0.0075 0.13361269 -55.32759658 383.2668956 -19.08009217 0.76009419 -0.0075 -0.0377868 0 3.89599341 0 0 5.62454497 0
+1.3267 110.7909951 443.6891168 -12.71890771 0.27743391 -0.0075 0.13358749 -57.03541262 392.3987203 -18.20334134 0.75937653 -0.0075 -0.0381616 0 3.79240162 0 0 5.79229913 0
+1.3283 108.4692664 432.4194791 -11.66936535 0.27667639 -0.0075 0.13358663 -58.83009495 401.5825599 -17.24533898 0.75867112 -0.0075 -0.03856077 0 3.65556827 0 0 5.96744309 0
+1.33 106.0663901 421.1600717 -10.62246688 0.27600043 -0.0075 0.13360695 -60.68870764 410.7968364 -16.21233141 0.75796818 -0.0075 -0.03897849 0 3.49276487 0 0 6.14749762 0
+1.3317 103.6111944 409.9097423 -9.58918287 0.27538952 -0.0075 0.13364453 -62.58387955 420.021025 -15.11223497 0.75725737 -0.0075 -0.03940863 0 3.31234598 0 0 6.32964057 0
+1.3333 101.1332147 398.6661308 -8.580698 0.2748253 -0.0075 0.13369476 -64.4857412 429.2362018 -13.95378999 0.75652821 -0.0075 -0.03984504 0 3.12324975 0 0 6.51086759 0
+1.335 98.66122656 387.4262338 -7.60800431 0.27428807 -0.0075 0.1337526 -66.363976 438.4254117 -12.74592408 0.75577079 -0.0075 -0.04028187 0 2.93455784 0 0 6.68817905 0
+1.3367 96.22160217 376.1870358 -6.68147282 0.27375723 -0.0075 0.13381269 -68.18986564 447.5741909 -11.49687413 0.75497609 -0.0075 -0.04071382 0 2.75493861 0 0 6.85871762 0
+1.3383 93.83708774 364.9461416 -5.81062327 0.27321192 -0.0075 0.13386947 -69.93804567 456.6707426 -10.21361163 0.75413667 -0.0075 -0.04113636 0 2.59233389 0 0 7.0199353 0
+1.34 91.52544344 353.7023387 -5.003623 0.27263153 -0.0075 0.13391748 -71.58812244 465.7063745 -8.90121954 0.75324693 -0.0075 -0.04154596 0 2.4534042 0 0 7.16966916 0
+1.3417 89.29879638 342.4561421 -4.26709492 0.27199652 -0.0075 0.13395146 -73.12584382 474.67554 -7.56262824 0.7523035 -0.0075 -0.04194023 0 2.34329925 0 0 7.30629026 0
+1.3433 87.16294728 331.2101918 -3.60584369 0.27128891 -0.0075 0.1339666 -74.54377654 483.5759602 -6.19834588 0.75130553 -0.0075 -0.04231792 0 2.26531763 0 0 7.42876952 0
+1.345 85.11734229 319.9695769 -3.02264945 0.27049318 -0.0075 0.13395864 -75.84158207 492.4085726 -4.80656468 0.7502548 -0.0075 -0.042679 0 2.22076906 0 0 7.53668319 0
+1.3467 83.15533298 308.7419841 -2.51818879 0.26959693 -0.0075 0.13392411 -77.02582953 501.1772572 -3.38347444 0.74915573 -0.0075 -0.04302469 0 2.20894197 0 0 7.63020135 0
+1.3483 81.26468486 297.5377738 -2.09103737 0.26859165 -0.0075 0.13386036 -78.10926059 509.8886233 -1.92350119 0.7480152 -0.0075 -0.04335716 0 2.2270983 0 0 7.71005577 0
+1.35 79.42863278 286.3698856 -1.73777316 0.26747346 -0.0075 0.13376573 -79.10972438 518.5514525 -0.42001295 0.74684242 -0.0075 -0.04367951 0 2.27070193 0 0 7.77745491 0
+1.3517 77.62697315 275.2536205 -1.45304198 0.26624385 -0.0075 0.13363979 -80.0489094 527.176215 1.13410843 0.74564833 -0.0075 -0.04399549 0 2.33357366 0 0 7.83392232 0
+1.3533 75.83759028 264.2063236 -1.22996492 0.26491035 -0.0075 0.1334832 -80.95069381 535.774259 2.74574685 0.74444526 -0.0075 -0.04430928 0 2.40833861 0 0 7.88126517 0
+1.355 74.03766807 253.2469393 -1.06035358 0.26348678 -0.0075 0.13329788 -81.83948815 544.3571283 4.42091358 0.74324626 -0.0075 -0.04462512 0 2.48672088 0 0 7.92141875 0
+1.3567 72.20532737 242.3954989 -0.93511547 0.26199375 -0.0075 0.13308695 -82.73858115 552.9356969 6.16399841 0.74206449 -0.0075 -0.04494717 0 2.56006244 0 0 7.95630599 0
+1.3583 70.32085524 231.6725334 -0.84468919 0.26045845 -0.0075 0.13285462 -83.66864611 561.519334 7.9772494 0.7409126 -0.0075 -0.0452792 0 2.61978028 0 0 7.98773968 0
+1.36 68.36782835 221.0985331 -0.77949919 0.25891446 -0.0075 0.13260601 -84.64635769 570.115139 9.86039275 0.739802 -0.0075 -0.04562428 0 2.65781554 0 0 8.01734743 0
+1.3617 66.33406346 210.6933595 -0.73041618 0.25740111 -0.0075 0.132347 -85.68345554 578.7271463 11.81020751 0.73874236 -0.0075 -0.0459847 0 2.66716156 0 0 8.0464825 0
+1.3633 64.21211914 200.4757079 -0.68909679 0.25596227 -0.0075 0.13208394 -86.786062 587.3558174 13.82050473 0.73774097 -0.0075 -0.04636178 0 2.64218874 0 0 8.07611517 0
+1.365 61.99966156 190.4626859 -0.64850121 0.25597832 -0.0075 0.1318999 -87.95438477 595.9974128 15.8820705 0.73680248 -0.0075 -0.04675579 0.01460901 2.5734592 -0.25392898 0 8.10690155 0
+1.3667 59.69920523 180.6694399 -0.60308126 0.25602635 -0.0075 0.131716 -89.18285835 604.6438122 17.98291862 0.73592851 -0.0075 -0.04716596 0.02622005 2.46576544 -0.45679922 0 8.13915935 0
+1.3683 57.31796954 171.1089022 -0.54912301 0.25610614 -0.0075 0.13153224 -90.4605381 613.2822693 20.10855473 0.7351177 -0.0075 -0.04759048 0.03425772 2.31975051 -0.60529277 0 8.17288631 0
+1.37 54.86702436 161.7916363 -0.48480426 0.2562175 -0.0075 0.13134864 -91.77194049 621.8955631 22.24244658 0.73436564 -0.0075 -0.04802663 0.03854357 2.1380511 -0.69828263 0 8.2078144 0
+1.3717 52.36053945 152.7258573 -0.4102755 0.25636022 -0.0075 0.13116518 -93.09797551 630.4622872 24.36661601 0.73366519 -0.0075 -0.04847091 0.03933439 1.92518201 -0.7368945 0 8.24349416 0
+1.3733 49.81482448 143.9174718 -0.327621 0.25653411 -0.0075 0.13098188 -94.41719125 638.9572651 26.46213448 0.73300675 -0.0075 -0.0489192 0.03731051 1.6873797 -0.72451526 0 8.27934019 0
+1.375 47.24721588 135.3703519 -0.24061087 0.25673897 -0.0075 0.13079874 -95.70703093 647.3522854 28.50985879 0.73237871 -0.0075 -0.04936702 0.03350463 1.43219112 -0.66662541 0 8.31467056 0
+1.3767 44.67519658 127.0866262 -0.15454928 0.25697459 -0.0075 0.13061576 -96.94507886 655.6167666 30.49091549 0.73176805 -0.0075 -0.04980969 0.0292745 1.16818525 -0.57052434 0 8.34886981 0
+1.3783 42.11529478 119.067037 -0.0758068 0.25724077 -0.0075 0.13043293 -98.11024006 663.7187745 32.38746882 0.73116087 -0.0075 -0.05024252 0.02617804 0.9044062 -0.44499857 0 8.38139747 0
+1.38 39.58253594 111.3113602 -0.0115601 0.25753731 -0.0075 0.13025027 -99.18377716 671.6258477 34.18310758 0.73054309 -0.0075 -0.05066103 0.02593734 0.65007344 -0.29981087 0 8.41190299 0
+1.3817 37.08966285 103.8187921 0.0308623 0.25786402 -0.0075 0.13006778 -100.1501236 679.3061195 35.8633726 0.729901 -0.0075 -0.05106113 0.03025489 0.41396485 -0.14523012 0 8.44021976 0
+1.3833 34.64699397 96.58838628 0.0442911 0.25822068 -0.0075 0.12988546 -100.9974208 686.7291825 37.41609873 0.72922185 -0.0075 -0.05143925 0.04077546 0.20412706 0.00858616 0 8.46644411 0
+1.385 32.26214485 89.61936077 0.02230758 0.2586071 -0.0075 0.12970332 -101.7178797 693.8670412 38.83163124 0.72849435 -0.0075 -0.05179245 0.05893042 0.02745479 0.15204581 0 8.49090816 0
+1.3867 29.94021712 82.91148495 -0.04030909 0.25902308 -0.0075 0.12952135 -102.3077462 700.6949705 40.10306446 0.72770909 -0.0075 -0.05211853 0.08584079 -0.11064739 0.27671389 0 8.51411436 0
+1.3883 27.68418704 76.46523984 -0.14722612 0.25946841 -0.0075 0.12933955 -102.7672295 707.192049 41.22617644 0.72685886 -0.0075 -0.05241608 0.12223631 -0.2064122 0.37572342 0 8.53679766 0
+1.39 25.49516173 70.2819898 -0.30012902 0.2599429 -0.0075 0.12915794 -103.0999716 713.3418382 42.19956132 0.72593883 -0.0075 -0.05268445 0.16837326 -0.25801249 0.44409737 0 8.5598148 0
+1.3917 23.37317874 64.3640298 -0.4986041 0.26044635 -0.0075 0.12897651 -103.3125258 719.1325273 43.02432154 0.7249468 -0.0075 -0.05292381 0.22403268 -0.26546077 0.47903359 0 8.58415013 0
+1.3933 21.31757793 58.71446902 -0.73978228 0.26097854 -0.0075 0.12879527 -103.4136649 724.5572654 43.70409276 0.723883 -0.0075 -0.05313504 0.28843007 -0.23077579 0.47993938 0 8.61071882 0
+1.395 19.3278613 53.33711754 -1.0186022 0.26153929 -0.0075 0.12861422 -103.4136291 729.6139514 44.24467506 0.72275012 -0.0075 -0.05331974 0.36031805 -0.15767751 0.44843862 0 8.64042739 0
+1.3967 17.40393285 48.23622301 -1.32767912 0.26212839 -0.0075 0.12843336 -103.3233454 734.3051351 44.65388336 0.72155304 -0.0075 -0.05348009 0.43794623 -0.05155377 0.38815112 0 8.67397728 0
+1.3983 15.54677376 43.4162131 -1.65767729 0.26274564 -0.0075 0.12825269 -103.1537906 738.6375275 44.94119475 0.7202985 -0.0075 -0.05361875 0.51917438 0.08091895 0.30449077 0 8.71181361 0
+1.4 13.75860551 38.88129249 -1.99759284 0.26339083 -0.0075 0.12807223 -102.915396 742.6214585 45.11746726 0.71899474 -0.0075 -0.05373884 0.60151664 0.23201248 0.20420101 0 8.75411385 0
+1.4017 12.04297151 34.63514296 -2.33519332 0.26406378 -0.0075 0.12789196 -102.6174522 746.2702686 45.19479128 0.71765113 -0.0075 -0.05384363 0.68226359 0.39325082 0.09496261 0 8.80072655 0
+1.4033 10.4048813 30.68046442 -2.65762034 0.26476427 -0.0075 0.12771189 -102.2679057 749.5993916 45.18598952 0.71627763 -0.0075 -0.0539366 0.75860681 0.55596975 -0.0151159 0 8.85117233 0
+1.405 8.85037525 27.01863059 -2.95187089 0.26549211 -0.0075 0.12753203 -101.8730419 752.625756 45.10457465 0.71488438 -0.0075 -0.05402114 0.82775495 0.71148107 -0.11801906 0 8.90457478 0
+1.4067 7.38642681 23.64938865 -3.20559318 0.26624709 -0.0075 0.12735238 -101.4374751 755.3667484 44.96426006 0.7134812 -0.0075 -0.05410055 0.88708702 0.85167453 -0.20627194 0 8.95981691 0
+1.4083 6.02023927 20.57053018 -3.40747786 0.26702901 -0.0075 0.12717294 -100.9642108 757.8396613 44.77886996 0.7120772 -0.0075 -0.05417782 0.9342089 0.96919754 -0.2734141 0 9.01541449 0
+1.41 4.75906003 17.77775059 -3.54807906 0.26783768 -0.0075 0.12699372 -100.4548655 760.0607413 44.56195274 0.71068034 -0.0075 -0.05425559 0.96713235 1.05796801 -0.31427861 0 9.06971324 0
+1.4117 3.60940086 15.26447114 -3.62011556 0.26867288 -0.0075 0.12681471 -99.90991304 762.0446942 44.32659453 0.70929717 -0.0075 -0.05433603 0.98429747 1.11326198 -0.3253322 0 9.12094279 0
+1.4133 2.57668533 13.02185211 -3.61904193 0.26953443 -0.0075 0.12663591 -99.32901866 763.804081 44.08515073 0.70793263 -0.0075 -0.05442074 0.98470778 1.13204549 -0.30472761 0 9.16733386 0
+1.415 1.66476076 11.03876115 -3.54328759 0.27042212 -0.0075 0.12645735 -98.71138845 765.3488822 43.84897606 0.70658992 -0.0075 -0.05451073 0.96796814 1.11311699 -0.25243813 0 9.20721966 0
+1.4167 0.87544987 9.30196063 -3.39429232 0.27133574 -0.0075 0.126279 -98.05603313 766.6864734 43.62823384 0.70527047 -0.0075 -0.05460641 0.93428432 1.05700486 -0.17013584 0 9.23911859 0
+1.4183 0.20851743 7.79627715 -3.17663411 0.2722751 -0.0075 0.12610088 -97.3621633 767.8213136 43.43153151 0.70397405 -0.0075 -0.05470765 0.88450297 0.96613843 -0.06102577 0 9.26188902 0
+1.42 -0.3387204 6.50492154 -2.89772024 0.27324 -0.0075 0.125923 -96.62939155 768.755274 43.26595641 0.70269889 -0.0075 -0.05481373 0.82004199 0.84453634 0.070362 0 9.27471058 0
+1.4217 -0.77111793 5.40984811 -2.5675748 0.27423023 -0.0075 0.12574534 -95.85796643 769.4876844 43.13671852 0.70144194 -0.0075 -0.0549235 0.74286056 0.69774302 0.21853789 0 9.27725409 0
+1.4233 -1.09574744 4.49211009 -2.19820045 0.2752456 -0.0075 0.12556792 -95.04891708 770.0159076 43.04719526 0.70019916 -0.0075 -0.05503546 0.65533495 0.5324073 0.37736606 0 9.26963038 0
+1.425 -1.32149338 3.73232905 -1.80315029 0.27628589 -0.0075 0.12539074 -94.20407394 770.3356418 42.99885391 0.69896588 -0.0075 -0.05514782 0.56021761 0.35603405 0.54046553 0 9.25247752 0
+1.4267 -1.45882916 3.11106594 -1.39674006 0.27735092 -0.0075 0.1252138 -93.32603751 770.4415741 42.99125258 0.6977372 -0.0075 -0.05525872 0.46047849 0.17652575 0.70152028 0 9.22691807 0
+1.4283 -1.51934996 2.60927071 -0.99332593 0.27844048 -0.0075 0.12503711 -92.41814648 770.3280259 43.0221829 0.69650833 -0.0075 -0.05536631 0.35919668 0.00177467 0.8546789 0 9.19443979 0
+1.43 0 0 0 0.27955437 -0.0075 0.12486066 -91.48435774 769.9894274 43.08785764 0.69527495 -0.0075 -0.05546889 0 0 0 0 9.15689396 0
+1.4317 0 0 0 0.28069239 -0.0075 0.12468446 -90.5290362 769.4211519 43.18324693 0.69403345 -0.0075 -0.05556504 0 0 0 0 9.11630837 0
+1.4333 0 0 0 0.28185433 -0.0075 0.12450851 -89.55689885 768.6197919 43.30221608 0.69278127 -0.0075 -0.05565377 0 0 0 0 9.07481352 0
+1.435 0 0 0 0.28304 -0.0075 0.12433281 -88.57278819 767.5837718 43.43814799 0.691517 -0.0075 -0.05573452 0 0 0 0 9.03445328 0
+1.4367 0 0 0 0.2842492 -0.0075 0.12415738 -87.58141691 766.3135267 43.58422248 0.69024058 -0.0075 -0.05580729 0 0 0 0 8.99715398 0
+1.4383 0 0 0 0.28548172 -0.0075 0.1239822 -86.58729699 764.8118251 43.73382714 0.68895327 -0.0075 -0.05587264 0 0 0 0 8.96448165 0
+1.44 0 0 0 0.28673736 -0.0075 0.12380729 -85.59454498 763.083722 43.8810214 0.68765765 -0.0075 -0.0559317 0 0 0 0 8.93754503 0
+1.4417 0 0 0 0.28801592 -0.0075 0.12363264 -84.60679875 761.1364724 44.02083154 0.68635746 -0.0075 -0.05598611 0 0 0 0 8.91697581 0
+1.4433 0 0 0 0.28931721 -0.0075 0.12345826 -83.62708269 758.9794061 44.14957621 0.68505738 -0.0075 -0.056038 0 0 0 0 8.90275114 0
+1.445 0 0 0 0.29064101 -0.0075 0.12328415 -82.65783647 756.6234205 44.26497788 0.68376284 -0.0075 -0.05608984 0 0 0 0 8.89425122 0
+1.4467 0 0 0 0.29198714 -0.0075 0.12311031 -81.70078986 754.0807391 44.36638442 0.68247966 -0.0075 -0.05614436 0 0 0 0 8.89023579 0
+1.4483 0 0 0 0.29335538 -0.0075 0.12293675 -80.75701404 751.3642422 44.45457278 0.68121378 -0.0075 -0.05620437 0 0 0 0 8.88900182 0
+1.45 0 0 0 0.29474554 -0.0075 0.12276347 -79.82694332 748.4870998 44.53170223 0.67997092 -0.0075 -0.05627266 0 0 0 0 8.88835798 0
+1.4517 0 0 0 0.29615741 -0.0075 0.12259047 -78.91034756 745.46221 44.60103372 0.67875622 -0.0075 -0.05635181 0 0 0 0 8.88584198 0
+1.4533 0 0 0 0.2975908 -0.0075 0.12241775 -78.00649018 742.3018253 44.66653288 0.67757398 -0.0075 -0.05644414 0 0 0 0 8.87885779 0
+1.455 0 0 0 0.2990455 -0.0075 0.12224533 -77.11413945 739.0171561 44.73257425 0.67642736 -0.0075 -0.05655145 0 0 0 0 8.86480308 0
+1.4567 0 0 0 0.30052131 -0.0075 0.12207319 -76.23170115 735.6180572 44.80336007 0.67531822 -0.0075 -0.05667504 0 0 0 0 8.84133161 0
+1.4583 0 0 0 0.30201804 -0.0075 0.12190134 -75.35728066 732.1130156 44.88264406 0.67424693 -0.0075 -0.05681555 0 0 0 0 8.80646595 0
+1.46 0 0 0 0.30353547 -0.0075 0.12172979 -74.48881546 728.5089449 44.97318827 0.67321243 -0.0075 -0.05697298 0 0 0 0 8.75882824 0
+1.4617 0 0 0 0.30507341 -0.0075 0.12155854 -73.62411703 724.8115031 45.07658003 0.6722122 -0.0075 -0.05714662 0 0 0 0 8.69764747 0
+1.4633 0 0 0 0.30663167 -0.0075 0.12138759 -72.76100616 721.025171 45.19286348 0.6712424 -0.0075 -0.05733514 0 0 0 0 8.62291305 0
+1.465 0 0 0 0.30821002 -0.0075 0.12121694 -71.89741637 717.1536759 45.32050111 0.67029802 -0.0075 -0.05753664 0 0 0 0 8.53529575 0
+1.4667 0 0 0 0.30980829 -0.0075 0.1210466 -71.03140348 713.2003363 45.45640726 0.66937318 -0.0075 -0.0577487 0 0 0 0 8.43616346 0
+1.4683 0 0 0 0.31142626 -0.0075 0.12087657 -70.16132561 709.1684855 45.59597175 0.66846138 -0.0075 -0.05796852 0 0 0 0 8.32749234 0
+1.47 0 0 0 0.31306373 -0.0075 0.12070684 -69.28581872 705.0619275 45.73348798 0.66755581 -0.0075 -0.05819303 0 0 0 0 8.21167677 0
+1.4717 0 0 0 0.3147205 -0.0075 0.12053744 -68.40388591 700.8852346 45.86230386 0.66664972 -0.0075 -0.05841899 0 0 0 0 8.09149207 0
+1.4733 0 0 0 0.31639638 -0.0075 0.12036835 -67.51481376 696.6442718 45.97541794 0.66573665 -0.0075 -0.05864314 0 0 0 0 7.96975481 0
+1.475 0 0 0 0.31809116 -0.0075 0.12019958 -66.61830304 692.3462204 46.06572908 0.66481078 -0.0075 -0.05886232 0 0 0 0 7.84923506 0
+1.4767 0 0 0 0.31980464 -0.0075 0.12003113 -65.71434405 687.9999458 46.12667145 0.66386704 -0.0075 -0.05907353 0 0 0 0 7.73234606 0
+1.4783 0 0 0 0.32153661 -0.0075 0.11986301 -64.80325656 683.61583 46.15243684 0.66290133 -0.0075 -0.05927403 0 0 0 0 7.62113479 0
+1.48 0 0 0 0.32328688 -0.0075 0.11969521 -63.88566803 679.2057891 46.13839151 0.6619106 -0.0075 -0.05946141 0 0 0 0 7.51701696 0
+1.4817 0 0 0 0.32505525 -0.0075 0.11952775 -62.96243106 674.7830086 46.08132633 0.66089282 -0.0075 -0.05963354 0 0 0 0 7.42078746 0
+1.4833 0 0 0 0.32684151 -0.0075 0.11936062 -62.0346153 670.3616625 45.97944461 0.65984703 -0.0075 -0.05978873 0 0 0 0 7.33263129 0
+1.485 0 0 0 0.32864547 -0.0075 0.11919382 -61.103392 665.9566174 45.83252943 0.65877314 -0.0075 -0.05992555 0 0 0 0 7.25203809 0
+1.4867 0 0 0 0.33046692 -0.0075 0.11902737 -60.1700805 661.5828734 45.64161511 0.65767189 -0.0075 -0.06004295 0 0 0 0 7.17798554 0
+1.4883 0 0 0 0.33230567 -0.0075 0.11886125 -59.23602909 657.2554266 45.40898847 0.65654456 -0.0075 -0.06014017 0 0 0 0 7.10895967 0
+1.49 0 0 0 0.3341615 -0.0075 0.11869548 -58.30271953 652.9885813 45.13767746 0.6553929 -0.0075 -0.06021675 0 0 0 0 7.0432264 0
+1.4917 0 0 0 0.33603422 -0.0075 0.11853006 -57.37164498 648.7958274 44.83134514 0.65421889 -0.0075 -0.06027247 0 0 0 0 6.97886278 0
+1.4933 0 0 0 0.33792364 -0.0075 0.11836499 -56.44440274 644.6893872 44.49372314 0.65302459 -0.0075 -0.06030733 0 0 0 0 6.91412626 0
+1.495 0 0 0 0.33982953 -0.0075 0.11820027 -55.52262162 640.680133 44.12841313 0.65181213 -0.0075 -0.06032159 0 0 0 0 6.84748865 0
+1.4967 0 0 0 0.34175172 -0.0075 0.1180359 -54.60797679 636.7774426 43.7386538 0.65058353 -0.0075 -0.06031572 0 0 0 0 6.77779657 0
+1.4983 0 0 0 0.34368999 -0.0075 0.11787189 -53.7022268 632.989153 43.32699136 0.64934078 -0.0075 -0.06029047 0 0 0 0 6.70440559 0
+1.5 0 0 0 0.34564415 -0.0075 0.11770825 -52.80719167 629.3217624 42.89534764 0.64808574 -0.0075 -0.06024684 0 0 0 0 6.6271505 0
+1.5017 0 0 0 0.34761399 -0.0075 0.11754496 -51.92480261 625.7802621 42.44492294 0.64682032 -0.0075 -0.06018613 0 0 0 0 6.5464256 0
+1.5033 0 0 0 0.34959931 -0.0075 0.11738204 -51.05702198 622.3686599 41.97642976 0.64554642 -0.0075 -0.06010994 0 0 0 0 6.46304166 0
+1.505 0 0 0 0.35159991 -0.0075 0.11721949 -50.205896 619.0898362 41.49010076 0.64426612 -0.0075 -0.06002021 0 0 0 0 6.37824709 0
+1.5067 0 0 0 0.3536156 -0.0075 0.11705732 -49.37339256 615.9459266 40.98617231 0.64298176 -0.0075 -0.05991918 0 0 0 0 6.29347453 0
+1.5083 0 0 0 0.35564616 -0.0075 0.11689551 -48.56142445 612.9383761 40.46495836 0.64169593 -0.0075 -0.05980934 0 0 0 0 6.21027617 0
+1.51 0 0 0 0.3576914 -0.0075 0.11673409 -47.77175927 610.0681015 39.92719412 0.64041149 -0.0075 -0.05969348 0 0 0 0 6.13008823 0
+1.5117 0 0 0 0.35975112 -0.0075 0.11657304 -47.00597064 607.3355706 39.37436726 0.63913144 -0.0075 -0.05957451 0 0 0 0 6.05406132 0
+1.5133 0 0 0 0.36182511 -0.0075 0.11641237 -46.26534666 604.7407254 38.80873747 0.63785891 -0.0075 -0.05945542 0 0 0 0 5.98302983 0
+1.515 0 0 0 0.36391318 -0.0075 0.11625209 -45.55084315 602.2830855 38.23352434 0.63659691 -0.0075 -0.05933916 0 0 0 0 5.91731235 0
+1.5167 0 0 0 0.36601512 -0.0075 0.1160922 -44.86302614 599.9613679 37.65282336 0.63534817 -0.0075 -0.05922845 0 0 0 0 5.85677254 0
+1.5183 0 0 0 0.36813074 -0.0075 0.1159327 -44.20193573 597.773682 37.0716241 0.63411496 -0.0075 -0.0591257 0 0 0 0 5.80077189 0
+1.52 0 0 0 0.37025982 -0.0075 0.11577359 -43.56714383 595.7171679 36.49536803 0.63289878 -0.0075 -0.05903287 0 0 0 0 5.74827695 0
+1.5217 0 0 0 0.37240218 -0.0075 0.11561488 -42.95774607 593.787992 35.92982439 0.63170017 -0.0075 -0.05895139 0 0 0 0 5.69788044 0
+1.5233 0 0 0 0.37455761 -0.0075 0.11545656 -42.37234087 591.9812148 35.38072876 0.63051857 -0.0075 -0.058882 0 0 0 0 5.64802272 0
+1.525 0 0 0 0.3767259 -0.0075 0.11529865 -41.80913211 590.2907752 34.853322 0.62935217 -0.0075 -0.05882483 0 0 0 0 5.59714456 0
+1.5267 0 0 0 0.37890686 -0.0075 0.11514114 -41.26594038 588.7095539 34.35216639 0.62819796 -0.0075 -0.05877923 0 0 0 0 5.54376582 0
+1.5283 0 0 0 0.38110029 -0.0075 0.11498404 -40.74030175 587.2293933 33.88074359 0.62705187 -0.0075 -0.05874397 0 0 0 0 5.48679239 0
+1.53 0 0 0 0.38330599 -0.0075 0.11482735 -40.22954833 585.8414842 33.44130258 0.62590886 -0.0075 -0.05871723 0 0 0 0 5.42552634 0
+1.5317 0 0 0 0.38552374 -0.0075 0.11467107 -39.7309245 584.5364384 33.03468435 0.62476338 -0.0075 -0.0586968 0 0 0 0 5.35977406 0
+1.5333 0 0 0 0.38775336 -0.0075 0.1145152 -39.24168072 583.3048299 32.66044501 0.62360955 -0.0075 -0.05868019 0 0 0 0 5.28982447 0
+1.535 0 0 0 0.38999465 -0.0075 0.11435976 -38.75919712 582.1374997 32.31689405 0.62244169 -0.0075 -0.05866486 0 0 0 0 5.21650993 0
+1.5367 0 0 0 0.39224739 -0.0075 0.11420473 -38.2811111 581.0259467 32.00136258 0.62125475 -0.0075 -0.0586484 0 0 0 0 5.1410487 0
+1.5383 0 0 0 0.39451139 -0.0075 0.11405012 -37.80532188 579.9627472 31.71057408 0.62004474 -0.0075 -0.05862864 0 0 0 0 5.06495181 0
+1.54 0 0 0 0.39678646 -0.0075 0.11389595 -37.33011642 578.9418814 31.44086667 0.61880916 -0.0075 -0.05860399 0 0 0 0 4.98994859 0
+1.5417 0 0 0 0.39907238 -0.0075 0.1137422 -36.85417667 577.959078 31.18874739 0.61754728 -0.0075 -0.05857341 0 0 0 0 4.91769054 0
+1.5433 0 0 0 0.40136895 -0.0075 0.11358888 -36.37660689 577.0118921 30.95111516 0.6162604 -0.0075 -0.05853663 0 0 0 0 4.84966837 0
+1.545 0 0 0 0.40367599 -0.0075 0.11343599 -35.89693836 576.0999358 30.7257037 0.61495184 -0.0075 -0.05849413 0 0 0 0 4.78697898 0
+1.5467 0 0 0 0.40599327 -0.0075 0.11328355 -35.41515759 575.2246685 30.51122647 0.61362692 -0.0075 -0.05844715 0 0 0 0 4.73026973 0
+1.5483 0 0 0 0.40832061 -0.0075 0.11313154 -34.93163802 574.389309 30.30756968 0.61229274 -0.0075 -0.05839763 0 0 0 0 4.67960315 0
+1.55 0 0 0 0.41065781 -0.0075 0.11297997 -34.44709777 573.5984929 30.11575377 0.61095777 -0.0075 -0.05834808 0 0 0 0 4.63450305 0
+1.5517 0 0 0 0.41300465 -0.0075 0.11282885 -33.96258636 572.8578453 29.93779628 0.60963142 -0.0075 -0.05830146 0 0 0 0 4.59395939 0
+1.5533 0 0 0 0.41536095 -0.0075 0.11267818 -33.47931844 572.1735832 29.77661925 0.60832348 -0.0075 -0.05826091 0 0 0 0 4.55646869 0
+1.555 0 0 0 0.41772649 -0.0075 0.11252795 -32.9986895 571.5519203 29.63553689 0.60704343 -0.0075 -0.05822962 0 0 0 0 4.52025287 0
+1.5567 0 0 0 0.42010108 -0.0075 0.11237818 -32.52215718 570.9986331 29.51808145 0.60579978 -0.0075 -0.05821055 0 0 0 0 4.48329578 0
+1.5583 0 0 0 0.42248452 -0.0075 0.11222887 -32.05121621 570.5184215 29.42743631 0.60459952 -0.0075 -0.05820623 0 0 0 0 4.44365104 0
+1.56 0 0 0 0.4248766 -0.0075 0.11208001 -31.58728088 570.1146288 29.36617181 0.60344749 -0.0075 -0.05821857 0 0 0 0 4.39955366 0
+1.5617 0 0 0 0.42727713 -0.0075 0.11193162 -31.13165075 569.7887437 29.33580074 0.60234607 -0.0075 -0.0582487 0 0 0 0 4.34966719 0
+1.5633 0 0 0 0.42968591 -0.0075 0.11178368 -30.68539365 569.540298 29.33660494 0.60129489 -0.0075 -0.05829691 0 0 0 0 4.2931397 0
+1.565 0 0 0 0.43210272 -0.0075 0.11163622 -30.2492916 569.3667453 29.3674297 0.60029072 -0.0075 -0.05836249 0 0 0 0 4.22977047 0
+1.5667 0 0 0 0.43452738 -0.0075 0.11148922 -29.82381458 569.2634933 29.42556689 0.59932764 -0.0075 -0.05844394 0 0 0 0 4.16000723 0
+1.5683 0 0 0 0.43695968 -0.0075 0.1113427 -29.40902974 569.2241588 29.5070376 0.59839722 -0.0075 -0.05853878 0 0 0 0 4.08485958 0
+1.57 0 0 0 0.43939942 -0.0075 0.11119665 -29.00463678 569.2408013 29.60656421 0.5974891 -0.0075 -0.05864392 0 0 0 0 4.00593774 0
+1.5717 0 0 0 0.44184639 -0.0075 0.11105108 -28.60989445 569.3044856 29.71806382 0.59659141 -0.0075 -0.05875566 0 0 0 0 3.9252165 0
+1.5733 0 0 0 0.44430041 -0.0075 0.11090599 -28.22364976 569.4055701 29.83487632 0.59569159 -0.0075 -0.05886993 0 0 0 0 3.84497469 0
+1.575 0 0 0 0.44676126 -0.0075 0.11076138 -27.84430216 569.5344633 29.95030731 0.59477696 -0.0075 -0.05898252 0 0 0 0 3.76753263 0
+1.5767 0 0 0 0.44922874 -0.0075 0.11061726 -27.46989538 569.6820474 30.05792767 0.59383552 -0.0075 -0.05908931 0 0 0 0 3.69513299 0
+1.5783 0 0 0 0.45170266 -0.0075 0.11047362 -27.09809899 569.8402306 30.15211954 0.59285655 -0.0075 -0.05918641 0 0 0 0 3.62965816 0
+1.58 0 0 0 0.45418282 -0.0075 0.11033048 -26.72638271 570.0024162 30.22834065 0.59183109 -0.0075 -0.05927043 0 0 0 0 3.57254977 0
+1.5817 0 0 0 0.456669 -0.0075 0.11018783 -26.35209523 570.1637743 30.28331816 0.59075243 -0.0075 -0.05933858 0 0 0 0 3.52471976 0
+1.5833 0 0 0 0.45916102 -0.0075 0.11004568 -25.97252445 570.3215619 30.31537205 0.58961635 -0.0075 -0.05938879 0 0 0 0 3.48641691 0
+1.585 0 0 0 0.46165866 -0.0075 0.10990403 -25.58508353 570.4751189 30.32424182 0.58842124 -0.0075 -0.0594198 0 0 0 0 3.4573281 0
+1.5867 0 0 0 0.46416174 -0.0075 0.10976287 -25.18739307 570.6260202 30.31118678 0.58716806 -0.0075 -0.05943118 0 0 0 0 3.43653754 0
+1.5883 0 0 0 0.46667004 -0.0075 0.10962223 -24.77745264 570.777682 30.27866741 0.58586012 -0.0075 -0.05942329 0 0 0 0 3.42268535 0
+1.59 0 0 0 0.46918337 -0.0075 0.10948209 -24.35372592 570.9353421 30.23019169 0.58450273 -0.0075 -0.05939727 0 0 0 0 3.41400388 0
+1.5917 0 0 0 0.47170152 -0.0075 0.10934246 -23.91533828 571.1055558 30.1698219 0.58310274 -0.0075 -0.05935492 0 0 0 0 3.4085718 0
+1.5933 0 0 0 0.4742243 -0.0075 0.10920334 -23.46207197 571.295814 30.10198814 0.58166809 -0.0075 -0.05929858 0 0 0 0 3.40441855 0
+1.595 0 0 0 0.47675151 -0.0075 0.10906474 -22.99447647 571.5141357 30.03104321 0.5802072 -0.0075 -0.05923097 0 0 0 0 3.39972898 0
+1.5967 0 0 0 0.47928293 -0.0075 0.10892666 -22.51387233 571.7684958 29.9608596 0.5787285 -0.0075 -0.05915509 0 0 0 0 3.39302613 0
+1.5983 0 0 0 0.48181838 -0.0075 0.10878909 -22.02228499 572.0665282 29.89472463 0.57723992 -0.0075 -0.05907395 0 0 0 0 3.38320433 0
+1.6 0 0 0 0.48435765 -0.0075 0.10865206 -21.52239253 572.4150016 29.83494851 0.57574851 -0.0075 -0.05899056 0 0 0 0 3.36970386 0
+1.6017 0 0 0 0.48690053 -0.0075 0.10851554 -21.01741732 572.8197101 29.78288892 0.57426003 -0.0075 -0.05890776 0 0 0 0 3.35244764 0
+1.6033 0 0 0 0.48944684 -0.0075 0.10837956 -20.51100943 573.2849839 29.73881749 0.57277881 -0.0075 -0.05882801 0 0 0 0 3.3318798 0
+1.605 0 0 0 0.49199636 -0.0075 0.10824411 -20.00700688 573.8137329 29.7021464 0.57130765 -0.0075 -0.05875341 0 0 0 0 3.3088452 0
+1.6067 0 0 0 0.4945489 -0.0075 0.1081092 -19.50924596 574.4072972 29.67142721 0.56984783 -0.0075 -0.05868554 0 0 0 0 3.28454784 0
+1.6083 0 0 0 0.49710425 -0.0075 0.10797482 -19.02130949 575.065445 29.6446249 0.56839931 -0.0075 -0.05862548 0 0 0 0 3.26036344 0
+1.61 0 0 0 0.49966222 -0.0075 0.10784098 -18.54628139 575.7865315 29.61941314 0.56696087 -0.0075 -0.05857374 0 0 0 0 3.23767829 0
+1.6117 0 0 0 0.5022226 -0.0075 0.10770768 -18.08659608 576.5675487 29.59328625 0.56553041 -0.0075 -0.05853035 0 0 0 0 3.21780314 0
+1.6133 0 0 0 0.50478519 -0.0075 0.10757493 -17.64379133 577.4044326 29.56399054 0.56410518 -0.0075 -0.05849481 0 0 0 0 3.20168177 0
+1.615 0 0 0 0.50734979 -0.0075 0.10744273 -17.21841311 578.2921067 29.52961098 0.56268212 -0.0075 -0.05846616 0 0 0 0 3.1898726 0
+1.6167 0 0 0 0.5099162 -0.0075 0.10731108 -16.80991623 579.2248589 29.48881872 0.56125807 -0.0075 -0.05844307 0 0 0 0 3.18245116 0
+1.6183 0 0 0 0.51248422 -0.0075 0.10717998 -16.41660055 580.1963913 29.44089267 0.55983013 -0.0075 -0.05842391 0 0 0 0 3.17899741 0
+1.62 0 0 0 0.51505365 -0.0075 0.10704944 -16.03566267 581.2000881 29.38581972 0.55839576 -0.0075 -0.0584068 0 0 0 0 3.17855072 0
+1.6217 0 0 0 0.51762428 -0.0075 0.10691945 -15.66327902 582.2292281 29.32420176 0.5569529 -0.0075 -0.05838975 0 0 0 0 3.1797335 0
+1.6233 0 0 0 0.52019592 -0.0075 0.10679003 -15.29480156 583.2770895 29.25714944 0.5555001 -0.0075 -0.05837078 0 0 0 0 3.18084248 0
+1.625 0 0 0 0.52276836 -0.0075 0.10666118 -14.92497401 584.3371795 29.18622852 0.55403646 -0.0075 -0.05834794 0 0 0 0 3.17991467 0
+1.6267 0 0 0 0.52534141 -0.0075 0.10653289 -14.54823628 585.4032512 29.11312377 0.55256166 -0.0075 -0.05831952 0 0 0 0 3.17500286 0
+1.6283 0 0 0 0.52791486 -0.0075 0.10640517 -14.15899578 586.4695634 29.03961529 0.5510759 -0.0075 -0.05828403 0 0 0 0 3.16427406 0
+1.63 0 0 0 0.53048851 -0.0075 0.10627802 -13.75197752 587.530881 28.96723821 0.54957987 -0.0075 -0.0582404 0 0 0 0 3.14623084 0
+1.6317 0 0 0 0.53306216 -0.0075 0.10615145 -13.32250131 588.5826892 28.89722727 0.54807468 -0.0075 -0.05818798 0 0 0 0 3.11979768 0
+1.6333 0 0 0 0.53563561 -0.0075 0.10602546 -12.86679594 589.6212872 28.83032404 0.54656182 -0.0075 -0.05812669 0 0 0 0 3.08449444 0
+1.635 0 0 0 0.53820866 -0.0075 0.10590004 -12.38225723 590.6439125 28.76677103 0.54504315 -0.0075 -0.058057 0 0 0 0 3.04042961 0
+1.6367 0 0 0 0.5407811 -0.0075 0.10577521 -11.86761547 591.6488859 28.70632167 0.54352081 -0.0075 -0.05797997 0 0 0 0 2.98831919 0
+1.6383 0 0 0 0.54335274 -0.0075 0.10565097 -11.32310326 592.6356503 28.64820223 0.54199724 -0.0075 -0.05789731 0 0 0 0 2.92950915 0
+1.64 0 0 0 0.54592337 -0.0075 0.10552732 -10.75042986 593.6048932 28.59137485 0.5404752 -0.0075 -0.05781124 0 0 0 0 2.86581234 0
+1.6417 0 0 0 0.5484928 -0.0075 0.10540426 -10.15275313 594.5584856 28.53452615 0.53895773 -0.0075 -0.05772455 0 0 0 0 2.79947429 0
+1.6433 0 0 0 0.55106082 -0.0075 0.10528179 -9.53448204 595.4995897 28.47640105 0.53744814 -0.0075 -0.05764041 0 0 0 0 2.73292386 0
+1.645 0 0 0 0.55362723 -0.0075 0.10515992 -8.90105957 596.4324535 28.41588356 0.53594997 -0.0075 -0.0575623 0 0 0 0 2.66863614 0
+1.6467 0 0 0 0.55619183 -0.0075 0.10503865 -8.25869375 597.3623749 28.35226951 0.53446688 -0.0075 -0.05749384 0 0 0 0 2.60891057 0
+1.6483 0 0 0 0.55875442 -0.0075 0.10491798 -7.61396959 598.2954227 28.28534808 0.5330025 -0.0075 -0.05743862 0 0 0 0 2.55572093 0
+1.65 0 0 0 0.5613148 -0.0075 0.10479791 -6.97349693 599.2381813 28.21552639 0.53156032 -0.0075 -0.05740004 0 0 0 0 2.51052898 0
+1.6517 0 0 0 0.56387277 -0.0075 0.10467846 -6.34349124 600.1974755 28.14396377 0.53014345 -0.0075 -0.05738106 0 0 0 0 2.47419809 0
+1.6533 0 0 0 0.56642812 -0.0075 0.10455961 -5.72939278 601.1799703 28.07239262 0.52875443 -0.0075 -0.05738411 0 0 0 0 2.44697227 0
+1.655 0 0 0 0.56898066 -0.0075 0.10444138 -5.13554543 602.1918718 28.00323118 0.52739501 -0.0075 -0.05741083 0 0 0 0 2.42836232 0
+1.6567 0 0 0 0.57153018 -0.0075 0.10432377 -4.56493548 603.2384977 27.93928372 0.52606593 -0.0075 -0.05746206 0 0 0 0 2.41728778 0
+1.6583 0 0 0 0.57407649 -0.0075 0.10420677 -4.01896941 604.32409 27.88368904 0.52476673 -0.0075 -0.05753765 0 0 0 0 2.41207035 0
+1.66 0 0 0 0.57661937 -0.0075 0.1040904 -3.49744153 605.451412 27.83960354 0.52349563 -0.0075 -0.0576365 0 0 0 0 2.41062896 0
+1.6617 0 0 0 0.57915864 -0.0075 0.10397465 -2.99854272 606.6216467 27.81006123 0.52224944 -0.0075 -0.05775652 0 0 0 0 2.41060627 0
+1.6633 0 0 0 0.58169409 -0.0075 0.10385953 -2.51895252 607.8342829 27.79769311 0.52102362 -0.0075 -0.05789475 0 0 0 0 2.40962094 0
+1.665 0 0 0 0.58422551 -0.0075 0.10374503 -2.05406362 609.0870921 27.80455098 0.51981243 -0.0075 -0.05804744 0 0 0 0 2.40542366 0
+1.6667 0 0 0 0.58675272 -0.0075 0.10363117 -1.59824739 610.3763403 27.83203068 0.5186091 -0.0075 -0.05821026 0 0 0 0 2.39603364 0
+1.6683 0 0 0 0.5892755 -0.0075 0.10351795 -1.14526004 611.6969278 27.88066754 0.51740616 -0.0075 -0.0583785 0 0 0 0 2.37996928 0
+1.67 0 0 0 0.59179365 -0.0075 0.10340536 -0.68862142 613.0427894 27.95030036 0.51619573 -0.0075 -0.0585473 0 0 0 0 2.35625763 0
+1.6717 0 0 0 0.59430698 -0.0075 0.10329341 -0.2220401 614.4071708 28.03993236 0.51497 -0.0075 -0.05871189 0 0 0 0 2.32456171 0
+1.6733 0 0 0 0.59681528 -0.0075 0.10318211 0.26021171 615.7831986 28.1480254 0.51372163 -0.0075 -0.05886782 0 0 0 0 2.28515144 0
+1.675 0 0 0 0.59931836 -0.0075 0.10307145 0.76292736 617.1641992 28.27255204 0.51244416 -0.0075 -0.05901119 0 0 0 0 2.23894927 0
+1.6767 0 0 0 0.601816 -0.0075 0.10296144 1.28972148 618.5442199 28.4113347 0.51113243 -0.0075 -0.05913879 0 0 0 0 2.18735439 0
+1.6783 0 0 0 0.60430802 -0.0075 0.10285208 1.84281388 619.9183946 28.56218117 0.50978283 -0.0075 -0.05924831 0 0 0 0 2.13216947 0
+1.68 0 0 0 0.6067942 -0.0075 0.10274338 2.42293539 621.2832627 28.72313049 0.50839363 -0.0075 -0.05933838 0 0 0 0 2.07544731 0
+1.6817 0 0 0 0.60927436 -0.0075 0.10263533 3.02936823 622.6370836 28.89277463 0.50696498 -0.0075 -0.05940858 0 0 0 0 2.01927533 0
+1.6833 0 0 0 0.61174828 -0.0075 0.10252795 3.65999481 623.979816 29.07022902 0.50549897 -0.0075 -0.05945951 0 0 0 0 1.96570025 0
+1.685 0 0 0 0.61421576 -0.0075 0.10242122 4.31154415 625.3132885 29.25542913 0.50399949 -0.0075 -0.05949261 0 0 0 0 1.9164955 0
+1.6867 0 0 0 0.61667661 -0.0075 0.10231516 4.97989579 626.6408873 29.44903139 0.50247202 -0.0075 -0.05951008 0 0 0 0 1.87313547 0
+1.6883 0 0 0 0.61913063 -0.0075 0.10220977 5.66042319 627.9675488 29.65245812 0.50092329 -0.0075 -0.0595147 0 0 0 0 1.83662978 0
+1.69 0 0 0 0.6215776 -0.0075 0.10210505 6.34836853 629.2993208 29.86764321 0.49936087 -0.0075 -0.05950971 0 0 0 0 1.80754637 0
+1.6917 0 0 0 0.62401734 -0.0075 0.102001 7.03921292 630.6430233 30.0970004 0.49779265 -0.0075 -0.05949853 0 0 0 0 1.78593046 0
+1.6933 0 0 0 0.62644964 -0.0075 0.10189763 7.72901385 632.0058794 30.34309468 0.49622637 -0.0075 -0.0594846 0 0 0 0 1.77138691 0
+1.695 0 0 0 0.6288743 -0.0075 0.10179494 8.41470291 633.3950034 30.60832891 0.49466913 -0.0075 -0.05947121 0 0 0 0 1.76316144 0
+1.6967 0 0 0 0.63129111 -0.0075 0.10169292 9.09434968 634.8170948 30.89484394 0.49312692 -0.0075 -0.05946125 0 0 0 0 1.76016302 0
+1.6983 0 0 0 0.63369989 -0.0075 0.1015916 9.76724335 636.2779344 31.2040304 0.49160427 -0.0075 -0.0594572 0 0 0 0 1.76123121 0
+1.7 0 0 0 0.63610042 -0.0075 0.10149096 10.43400898 637.7822803 31.53649087 0.490104 -0.0075 -0.05946094 0 0 0 0 1.76514056 0
+1.7017 0 0 0 0.6384925 -0.0075 0.101391 11.09650516 639.3334715 31.89175169 0.48862703 -0.0075 -0.05947376 0 0 0 0 1.7707678 0
+1.7033 0 0 0 0.64087594 -0.0075 0.10129175 11.75767446 640.9334931 32.26829924 0.4871723 -0.0075 -0.05949633 0 0 0 0 1.77713424 0
+1.705 0 0 0 0.64325053 -0.0075 0.10119318 12.42132134 642.5828974 32.66345956 0.48573691 -0.0075 -0.0595288 0 0 0 0 1.78356221 0
+1.7067 0 0 0 0.64561608 -0.0075 0.10109532 13.09179024 644.2808562 33.07357318 0.48431629 -0.0075 -0.0595708 0 0 0 0 1.78965176 0
+1.7083 0 0 0 0.64797237 -0.0075 0.10099815 13.77370317 646.0253945 33.4941555 0.48290454 -0.0075 -0.0596216 0 0 0 0 1.79531727 0
+1.71 0 0 0 0.65031921 -0.0075 0.10090169 14.47160472 647.8135566 33.92004026 0.4814948 -0.0075 -0.05968021 0 0 0 0 1.80083197 0
+1.7117 0 0 0 0.65265641 -0.0075 0.10080593 15.18967453 649.6418174 34.34582408 0.48007972 -0.0075 -0.05974555 0 0 0 0 1.8066693 0
+1.7133 0 0 0 0.65498375 -0.0075 0.10071088 15.93144558 651.5062302 34.76600915 0.47865187 -0.0075 -0.05981652 0 0 0 0 1.81350595 0
+1.715 0 0 0 0.65730103 -0.0075 0.10061654 16.69960128 653.4029178 35.17545683 0.47720418 -0.0075 -0.05989222 0 0 0 0 1.82207484 0
+1.7167 0 0 0 0.65960807 -0.0075 0.10052292 17.49581698 655.3281991 35.56956219 0.47573037 -0.0075 -0.05997194 0 0 0 0 1.83314498 0
+1.7183 0 0 0 0.66190464 -0.0075 0.10043002 18.3207684 657.2789143 35.94463781 0.4742252 -0.0075 -0.06005526 0 0 0 0 1.84735042 0
+1.72 0 0 0 0.66419056 -0.0075 0.10033783 19.17415545 659.2526135 36.29800355 0.47268482 -0.0075 -0.06014212 0 0 0 0 1.86519954 0
+1.7217 0 0 0 0.66646563 -0.0075 0.10024636 20.05481002 661.24764 36.62809614 0.47110686 -0.0075 -0.06023281 0 0 0 0 1.88700295 0
+1.7233 0 0 0 0.66872963 -0.0075 0.10015562 20.96096405 663.2632348 36.93460429 0.46949052 -0.0075 -0.06032789 0 0 0 0 1.91280668 0
+1.725 0 0 0 0.67098237 -0.0075 0.10006561 21.89044854 665.2994969 37.21825541 0.46783652 -0.0075 -0.06042824 0 0 0 0 1.94243962 0
+1.7267 0 0 0 0.67322366 -0.0075 0.09997633 22.8409499 667.3574018 37.4808542 0.46614695 -0.0075 -0.06053489 0 0 0 0 1.97545352 0
+1.7283 0 0 0 0.67545328 -0.0075 0.09988778 23.81031637 669.4385402 37.72500639 0.46442508 -0.0075 -0.06064898 0 0 0 0 2.01124785 0
+1.73 0 0 0 0.67767103 -0.0075 0.09979997 24.79678523 671.5451361 37.95397392 0.46267511 -0.0075 -0.06077168 0 0 0 0 2.04907452 0
+1.7317 0 0 0 0.67987673 -0.0075 0.09971289 25.79922855 673.6797506 38.17132398 0.4609019 -0.0075 -0.06090408 0 0 0 0 2.08815009 0
+1.7333 0 0 0 0.68207016 -0.0075 0.09962656 26.81730259 675.8451983 38.38081261 0.45911063 -0.0075 -0.0610471 0 0 0 0 2.12771081 0
+1.735 0 0 0 0.68425112 -0.0075 0.09954097 27.85155562 678.0443867 38.58610446 0.45730657 -0.0075 -0.06120147 0 0 0 0 2.16710034 0
+1.7367 0 0 0 0.68641941 -0.0075 0.09945613 28.90337836 680.2801249 38.79055134 0.45549477 -0.0075 -0.06136766 0 0 0 0 2.2057835 0
+1.7383 0 0 0 0.68857484 -0.0075 0.09937204 29.97497197 682.5550779 38.99719915 0.45367986 -0.0075 -0.06154585 0 0 0 0 2.24336268 0
+1.74 0 0 0 0.6907172 -0.0075 0.09928869 31.06918886 684.8716192 39.20852914 0.45186589 -0.0075 -0.061736 0 0 0 0 2.27968263 0
+1.7417 0 0 0 0.69284628 -0.0075 0.09920611 32.18927804 687.2318244 39.42661171 0.45005618 -0.0075 -0.06193779 0 0 0 0 2.31471912 0
+1.7433 0 0 0 0.6949619 -0.0075 0.09912428 33.33868599 689.6373388 39.65300735 0.44825335 -0.0075 -0.06215073 0 0 0 0 2.34865574 0
+1.745 0 0 0 0.69706384 -0.0075 0.09904321 34.52076409 692.0894846 39.88893596 0.44645923 -0.0075 -0.0623742 0 0 0 0 2.38177928 0
+1.7467 0 0 0 0.69915191 -0.0075 0.09896291 35.73850123 694.5891203 40.13531477 0.44467497 -0.0075 -0.06260748 0 0 0 0 2.41446472 0
+1.7483 0 0 0 0.7012259 -0.0075 0.09888337 36.99424756 697.136718 40.39292628 0.44290109 -0.0075 -0.06284986 0 0 0 0 2.44705548 0
+1.75 0 0 0 0.70328562 -0.0075 0.09880459 38.28950889 699.7323136 40.66250349 0.44113757 -0.0075 -0.06310064 0 0 0 0 2.4798407 0
+1.7517 0 0 0 0.70533086 -0.0075 0.09872659 39.62472496 702.3754166 40.94478451 0.43938396 -0.0075 -0.06335922 0 0 0 0 2.51303331 0
+1.7533 0 0 0 0.70736142 -0.0075 0.09864937 40.99924664 705.065037 41.24067029 0.43763946 -0.0075 -0.06362506 0 0 0 0 2.54667815 0
+1.755 0 0 0 0.70937711 -0.0075 0.09857292 42.41129508 707.7995225 41.55108316 0.43590308 -0.0075 -0.06389773 0 0 0 0 2.58072075 0
+1.7567 0 0 0 0.71137771 -0.0075 0.09849725 43.85796454 710.5766209 41.87711015 0.43417368 -0.0075 -0.06417688 0 0 0 0 2.61495305 0
+1.7583 0 0 0 0.71336303 -0.0075 0.09842236 45.33540088 713.3932561 42.21979428 0.43245004 -0.0075 -0.06446217 0 0 0 0 2.64909436 0
+1.76 0 0 0 0.71533287 -0.0075 0.09834825 46.83894605 716.2455862 42.58013355 0.43073091 -0.0075 -0.06475326 0 0 0 0 2.68274042 0
+1.7617 0 0 0 0.71728703 -0.0075 0.09827494 48.36331482 719.1288964 42.95885858 0.42901503 -0.0075 -0.06504974 0 0 0 0 2.71549094 0
+1.7633 0 0 0 0.7192253 -0.0075 0.09820241 49.90286401 722.037595 43.35637047 0.42730116 -0.0075 -0.06535105 0 0 0 0 2.74698275 0
+1.765 0 0 0 0.72114749 -0.0075 0.09813068 51.45184208 724.9652363 43.77262323 0.42558807 -0.0075 -0.06565645 0 0 0 0 2.77694375 0
+1.7667 0 0 0 0.72305339 -0.0075 0.09805974 53.00458085 727.9045484 44.2068625 0.42387458 -0.0075 -0.06596496 0 0 0 0 2.8052843 0
+1.7683 0 0 0 0.7249428 -0.0075 0.0979896 54.55578681 730.847637 44.65777438 0.42215956 -0.0075 -0.06627529 0 0 0 0 2.83205024 0
+1.77 0 0 0 0.72681552 -0.0075 0.09792026 56.10069024 733.78604 45.12328149 0.420442 -0.0075 -0.06658589 0 0 0 0 2.85751909 0
+1.7717 0 0 0 0.72867135 -0.0075 0.09785173 57.63511095 736.7111437 45.60063068 0.41872094 -0.0075 -0.06689493 0 0 0 0 2.88207697 0
+1.7733 0 0 0 0.7305101 -0.0075 0.097784 59.15559414 739.6142003 46.08641624 0.41699562 -0.0075 -0.06720036 0 0 0 0 2.90628294 0
+1.775 0 0 0 0.73233155 -0.0075 0.09771708 60.65942468 742.4867725 46.57681913 0.41526546 -0.0075 -0.06749992 0 0 0 0 2.93075155 0
+1.7767 0 0 0 0.73413551 -0.0075 0.09765097 62.14458284 745.3209923 47.06758391 0.41353016 -0.0075 -0.06779126 0 0 0 0 2.95615927 0
+1.7783 0 0 0 0.73592177 -0.0075 0.09758568 63.60973248 748.109762 47.55435589 0.41178972 -0.0075 -0.06807202 0 0 0 0 2.98310356 0
+1.78 0 0 0 0.73769014 -0.0075 0.0975212 65.05412753 750.8471372 48.03287794 0.41004452 -0.0075 -0.06833991 0 0 0 0 3.01206475 0
+1.7817 0 0 0 0.73944041 -0.0075 0.09745755 66.47748729 753.5284246 48.49900284 0.40829535 -0.0075 -0.06859286 0 0 0 0 3.043386 0
+1.7833 0 0 0 0.74117239 -0.0075 0.09739471 67.87993445 756.1504246 48.94913382 0.40654337 -0.0075 -0.06882908 0 0 0 0 3.07708866 0
+1.785 0 0 0 0.74288586 -0.0075 0.09733271 69.26185471 758.7113867 49.38015568 0.40479011 -0.0075 -0.06904716 0 0 0 0 3.11298562 0
+1.7867 0 0 0 0.74458064 -0.0075 0.09727153 70.62379762 761.2111565 49.78967808 0.40303747 -0.0075 -0.06924615 0 0 0 0 3.15058868 0
+1.7883 0 0 0 0.74625652 -0.0075 0.09721118 71.966454 763.6508871 50.17597162 0.40128758 -0.0075 -0.06942557 0 0 0 0 3.1892232 0
+1.79 0 0 0 0.74791329 -0.0075 0.09715167 73.29063575 766.0329872 50.53807773 0.39954277 -0.0075 -0.06958549 0 0 0 0 3.22798023 0
+1.7917 0 0 0 0.74955076 -0.0075 0.09709299 74.59722691 768.3608695 50.87563807 0.39780544 -0.0075 -0.06972648 0 0 0 0 3.26586414 0
+1.7933 0 0 0 0.75116873 -0.0075 0.09703515 75.88720628 770.6386007 51.18886558 0.39607787 -0.0075 -0.06984958 0 0 0 0 3.30183107 0
+1.795 0 0 0 0.752767 -0.0075 0.09697815 77.16168867 772.8706148 51.47843441 0.39436214 -0.0075 -0.06995628 0 0 0 0 3.33484716 0
+1.7967 0 0 0 0.75434536 -0.0075 0.096922 78.42188481 775.0612792 51.74519179 0.39265999 -0.0075 -0.07004842 0 0 0 0 3.36404875 0
+1.7983 0 0 0 0.75590361 -0.0075 0.0968667 79.66916507 777.214642 51.9901905 0.39097265 -0.0075 -0.07012809 0 0 0 0 3.3887556 0
+1.8 0 0 0 0.75744155 -0.0075 0.09681224 80.90510834 779.3339503 52.21439517 0.38930082 -0.0075 -0.07019752 0 0 0 0 3.40860737 0
+1.8017 0 0 0 0.75895898 -0.0075 0.09675864 82.13143766 781.4215699 52.41864153 0.38764457 -0.0075 -0.07025905 0 0 0 0 3.42352654 0
+1.8033 0 0 0 0.76045571 -0.0075 0.09670589 83.35001592 783.4785838 52.6034621 0.38600336 -0.0075 -0.07031494 0 0 0 0 3.43381583 0
+1.805 0 0 0 0.76193152 -0.0075 0.096654 84.56280407 785.5047424 52.76911753 0.38437599 -0.0075 -0.07036732 0 0 0 0 3.44008219 0
+1.8067 0 0 0 0.76338622 -0.0075 0.09660297 85.77174724 787.4983893 52.9155256 0.38276073 -0.0075 -0.07041815 0 0 0 0 3.44323686 0
+1.8083 0 0 0 0.76481961 -0.0075 0.09655281 86.97867108 789.4564162 53.04228552 0.38115539 -0.0075 -0.07046911 0 0 0 0 3.44442893 0
+1.81 0 0 0 0.76623148 -0.0075 0.09650351 88.1851523 791.3744153 53.14884574 0.37955738 -0.0075 -0.07052156 0 0 0 0 3.44497601 0
+1.8117 0 0 0 0.76762164 -0.0075 0.09645508 89.39244735 793.2467239 53.23444675 0.37796397 -0.0075 -0.07057655 0 0 0 0 3.44632106 0
+1.8133 0 0 0 0.76898988 -0.0075 0.09640752 90.60132073 795.0667647 53.29831801 0.37637236 -0.0075 -0.07063482 0 0 0 0 3.44988805 0
+1.815 0 0 0 0.77033601 -0.0075 0.09636084 91.8120021 796.8271083 53.33970946 0.37477985 -0.0075 -0.07069679 0 0 0 0 3.45707849 0
+1.8167 0 0 0 0.77165981 -0.0075 0.09631503 93.02410174 798.5198637 53.35809268 0.37318398 -0.0075 -0.07076258 0 0 0 0 3.46913069 0
+1.8183 0 0 0 0.7729611 -0.0075 0.09627011 94.23657625 800.1367919 53.35312118 0.37158265 -0.0075 -0.07083208 0 0 0 0 3.4871113 0
+1.82 0 0 0 0.77423966 -0.0075 0.09622607 95.44777846 801.6695698 53.32477735 0.36997416 -0.0075 -0.07090494 0 0 0 0 3.51183221 0
+1.8217 0 0 0 0.7754953 -0.0075 0.09618291 96.65554721 803.1100013 53.27336813 0.36835729 -0.0075 -0.07098063 0 0 0 0 3.54389213 0
+1.8233 0 0 0 0.77672782 -0.0075 0.09614064 97.85731429 804.4500653 53.19944197 0.36673126 -0.0075 -0.07105848 0 0 0 0 3.5836834 0
+1.825 0 0 0 0.77793702 -0.0075 0.09609926 99.05032071 805.6821227 53.10387989 0.36509572 -0.0075 -0.07113767 0 0 0 0 3.63134133 0
+1.8267 0 0 0 0.77912269 -0.0075 0.09605877 100.2318624 806.798842 52.98768921 0.36345068 -0.0075 -0.07121732 0 0 0 0 3.68684434 0
+1.8283 0 0 0 0.78028463 -0.0075 0.09601918 101.399443 807.793324 52.85203159 0.36179641 -0.0075 -0.07129641 0 0 0 0 3.74997698 0
+1.83 -1.39212267 2.00520835 0.49354844 0.78142265 -0.0075 0.09598049 102.5511097 808.6589476 52.69803345 0.3601333 -0.0075 -0.07137389 0.39067566 0.00374698 0.26346658 0 3.82040281 0
+1.8317 -1.57084362 2.36396876 0.49601082 0.78253654 -0.0075 0.0959427 103.6856128 809.3894275 52.52674724 0.3584618 -0.0075 -0.0714486 0.37369685 0.00952745 0.24272035 0 3.89765494 0
+1.8333 -1.72592482 2.79270591 0.47786802 0.7836261 -0.0075 0.09590582 104.8026137 809.9786761 52.33897633 0.35678226 -0.0075 -0.07151937 0.35363323 0.01173964 0.22390047 0 3.98123903 0
+1.835 -1.84569527 3.30859708 0.43864734 0.78469113 -0.0075 0.09586984 105.9028735 810.4207643 52.13525794 0.35509491 -0.0075 -0.07158498 0.33090284 0.01067211 0.20848772 0 4.07058785 0
+1.8367 -1.91703751 3.93177881 0.37861026 0.78573143 -0.0075 0.09583477 106.9883102 810.7099035 51.91583575 0.35339979 -0.0075 -0.07164417 0.30604982 0.00691202 0.19797186 0 4.16505032 0
+1.8383 -1.9256771 4.68530869 0.29883372 0.78674679 -0.0075 0.09580062 108.061946 810.8403781 51.68051297 0.35169674 -0.0075 -0.07169571 0.27974691 0.00137017 0.19381001 0 4.26395271 0
+1.84 -1.85682186 5.59509746 0.20135444 0.78773702 -0.0075 0.09576738 109.1278715 810.8066191 51.42880916 0.3499854 -0.0075 -0.07173838 0.25277431 -0.00480638 0.19735435 0 4.36650367 0
+1.8417 -1.69567819 6.68965279 0.08928584 0.78870192 -0.0075 0.09573505 110.1910914 810.6030998 51.15988025 0.34826535 -0.0075 -0.07177105 0.22598578 -0.0101897 0.20979803 0 4.47182168 0
+1.8433 -1.42832557 7.99966809 -0.03296563 0.78964128 -0.0075 0.09570365 111.2571927 810.2245714 50.87264302 0.34653613 -0.0075 -0.07179275 0.20024349 -0.01319158 0.2321058 0 4.57888982 0
+1.845 -1.04237373 9.55747275 -0.15969755 0.7905549 -0.0075 0.09567317 112.3321083 809.6660047 50.5658401 0.34479747 -0.0075 -0.07180265 0.17641484 -0.01210604 0.2649789 0 4.68659794 0
+1.8467 -0.52804554 11.3962827 -0.28375014 0.79144259 -0.0075 0.09564362 113.4217268 808.922715 50.23822091 0.34304936 -0.0075 -0.07180017 0.15531234 -0.00525325 0.30873593 0 4.79367826 0
+1.8483 0.1211604 13.54935118 -0.39648031 0.79230414 -0.0075 0.095615 114.5315004 807.9904876 49.88854559 0.34129228 -0.0075 -0.07178502 0.13764348 0.00900149 0.36334964 0 4.89874918 0
+1.85 0.907543 16.04895311 -0.48779778 0.79313934 -0.0075 0.09558731 115.6660431 806.8655925 49.51573444 0.33952731 -0.0075 -0.07175724 0.12398237 0.03209892 0.4283353 0 5.00032191 0
+1.8517 1.82847422 18.92540584 -0.54626887 0.79394801 -0.0075 0.09556055 116.828769 805.5448612 49.11908259 0.33775623 -0.0075 -0.0717172 0.1147235 0.06514572 0.50274509 0 5.09679649 0
+1.8533 2.87595371 22.20583963 -0.55929755 0.79472993 -0.0075 0.09553473 118.0214911 804.0256671 48.69814018 0.33598155 -0.0075 -0.07166568 0.11006528 0.10892878 0.58520751 0 5.18657843 0
+1.855 4.03608359 25.91315871 -0.51336527 0.79548492 -0.0075 0.09550985 119.2441813 802.3059187 48.25293019 0.33420659 -0.0075 -0.07160379 0.10997326 0.16372894 0.67391104 0 5.26805479 0
+1.8567 5.2890373 30.0649586 -0.3945056 0.79621275 -0.0075 0.09548591 120.4948325 800.3838487 47.78390353 0.33243535 -0.0075 -0.07153298 0.11421129 0.22928652 0.76666181 0 5.33977004 0
+1.8583 6.60902762 34.67249119 -0.1886164 0.79691324 -0.0075 0.09546292 121.7692946 798.2580782 47.291967 0.33067248 -0.0075 -0.07145499 0.12230979 0.30474389 0.86095796 0 5.40040868 0
+1.86 7.96489097 39.7399251 0.1178999 0.79758619 -0.0075 0.09544087 123.0613275 795.9272581 46.77835852 0.32892301 -0.0075 -0.07137177 0.13363168 0.38871003 0.95410997 0 5.44890983 0
+1.8617 9.32050497 45.26370367 0.53760186 0.79823138 -0.0075 0.09541978 124.3627007 793.3899444 46.24473118 0.32719215 -0.0075 -0.07128542 0.14736937 0.47915767 1.04328026 0 5.4844721 0
+1.8633 10.63592196 51.23225871 1.08135261 0.79884863 -0.0075 0.09539963 125.6634233 790.6443981 45.6929155 0.32548506 -0.0075 -0.07119805 0.16259424 0.57358078 1.12567992 0 5.50666613 0
+1.865 11.8683934 57.6259057 1.75770916 0.79943773 -0.0075 0.09538045 126.9520308 787.6882564 45.12485166 0.32380646 -0.0075 -0.07111173 0.17829955 0.66906875 1.19862155 0 5.51540257 0
+1.8667 12.97371978 64.41711208 2.57236107 0.79999848 -0.0075 0.09536222 128.2160161 784.518461 44.54259055 0.32216043 -0.0075 -0.0710283 0.19344898 0.76235623 1.25964142 0 5.51094577 0
+1.8683 13.90790981 71.57098496 3.52761332 0.80053068 -0.0075 0.09534496 129.4422478 781.1309803 43.94796522 0.32055011 -0.0075 -0.07094938 0.20702659 0.85004749 1.30664382 0 5.49398906 0
+1.87 14.62853988 79.04608709 4.62199259 0.80103412 -0.0075 0.09532866 130.617468 777.5207836 43.3426819 0.31897746 -0.0075 -0.07087618 0.21809498 0.9287048 1.33793831 0 5.46547178 0
+1.8717 15.09654822 86.79550699 5.84993472 0.80150861 -0.0075 0.09531332 131.7288762 773.6817119 42.72808578 0.31744317 -0.0075 -0.07080949 0.22587354 0.99508777 1.35232579 0 5.42661233 0
+1.8733 15.27762338 94.76812384 7.20178319 0.80195394 -0.0075 0.09529896 132.7645236 769.6066427 42.10516841 0.31594649 -0.0075 -0.07074961 0.22973803 1.04626213 1.34911317 0 5.37873799 0
+1.875 15.14381613 102.9100993 8.66382631 0.80236992 -0.0075 0.09528556 133.7138011 765.2874582 41.47443717 0.31448531 -0.0075 -0.07069636 0.2292717 1.07983063 1.32817269 0 5.32326845 0
+1.8767 14.67458213 111.1663911 10.21862248 0.80275634 -0.0075 0.09527315 134.5678881 760.7152612 40.835962 0.31305619 -0.0075 -0.07064901 0.22427556 1.09400368 1.28983208 0 5.26152913 0
+1.8783 13.8578932 119.4823737 11.84545678 0.803113 -0.0075 0.09526171 135.3200095 755.8806136 40.1892879 0.31165459 -0.0075 -0.07060635 0.21478503 1.08775916 1.23492473 0 5.1947076 0
+1.88 12.6908086 127.805354 13.52099506 0.80343971 -0.0075 0.09525125 135.9657024 750.7737814 39.5334859 0.31027508 -0.0075 -0.07056677 0.20108015 1.06091143 1.16466336 0 5.1237379 0
+1.8817 11.17971295 136.086065 15.22005651 0.80373625 -0.0075 0.09524177 136.5030165 745.3851044 38.86724773 0.30891168 -0.0075 -0.07052822 0.1836619 1.01407988 1.08055804 0 5.04919458 0
+1.8833 9.34035537 144.2799467 16.91654886 0.80400243 -0.0075 0.09523328 136.93246 739.705221 38.18877338 0.3075582 -0.0075 -0.07048842 0.16322055 0.94878303 0.98437932 0 4.97129486 0
+1.885 7.19723157 152.3482796 18.58438657 0.80423805 -0.0075 0.09522578 137.2568944 733.7254762 37.4959809 0.30620853 -0.0075 -0.07044487 0.14060067 0.86727571 0.87802148 0 4.88979475 0
+1.8867 4.78288853 160.2590723 20.19838043 0.80444291 -0.0075 0.09521927 137.4814053 727.4380674 36.78650063 0.30485702 -0.0075 -0.07039492 0.11674921 0.77250537 0.76342859 0 4.80406554 0
+1.8883 2.13655097 167.9876245 21.73523906 0.8046168 -0.0075 0.09521376 137.6128722 720.8364247 36.05778219 0.30349876 -0.0075 -0.07033589 0.09265395 0.66792667 0.64248762 0 4.71307651 0
+1.89 -0.69710405 175.5168438 23.17426608 0.80475953 -0.0075 0.09520924 137.6596253 713.9152639 35.30710761 0.30212985 -0.0075 -0.07026517 0.06929391 0.5574048 0.51703221 0 4.61552827 0
+1.8917 -3.66986738 182.8372507 24.49801978 0.80487088 -0.0075 0.09520572 137.6309429 706.670767 34.53175267 0.30074753 -0.0075 -0.07018019 0.04760515 0.44491452 0.38869854 0 4.50991759 0
+1.8933 -6.73174031 189.9467665 25.69277492 0.80495068 -0.0075 0.0952032 137.5364626 699.1006684 33.72895338 0.2993503 -0.0075 -0.07007858 0.02841097 0.33440581 0.25895494 0 4.39471602 0
+1.895 -9.83282011 196.8501997 26.74873015 0.8049987 -0.0075 0.09520169 137.3856542 691.2042011 32.89597231 0.29793794 -0.0075 -0.06995814 0.01238364 0.22963181 0.1290548 0 4.26847172 0
+1.8967 -12.92529183 203.5586379 27.66004286 0.80501475 -0.0075 0.09520118 137.1871261 682.9821697 32.03025752 0.29651143 -0.0075 -0.06981691 0 0.13388029 0 0 4.12996708 0
+1.8983 -15.96498084 210.088595 28.42458401 0.80439223 -0.0075 0.09524205 136.9481068 674.4367618 31.1293746 0.29507276 -0.0075 -0.06965313 0 0.03332622 0 0 3.9784046 0
+1.9 -18.91313421 216.461051 29.04357984 0.80378336 -0.0075 0.09526342 136.6738686 665.5716128 30.19119502 0.29362482 -0.0075 -0.06946529 0 -0.05294163 0 0 3.81346593 0
+1.9017 -21.73752905 222.7004961 29.5210229 0.80318478 -0.0075 0.09526798 136.3673333 656.3916174 29.21385639 0.29217112 -0.0075 -0.06925212 0 -0.12350964 0 0 3.6354923 0
+1.9033 -24.41357655 228.8338444 29.86303061 0.80259306 -0.0075 0.0952591 136.0286902 646.9029979 28.19592149 0.29071556 -0.0075 -0.06901258 0 -0.17781402 0 0 3.44548551 0
+1.905 -26.92478793 234.8895092 30.07709583 0.80200498 -0.0075 0.09524057 135.6552154 637.1131821 27.13640395 0.28926222 -0.0075 -0.06874588 0 -0.21605146 0 0 3.24518511 0
+1.9067 -29.26303489 240.8964508 30.1713467 0.80141732 -0.0075 0.0952165 135.2412402 627.0308378 26.03487733 0.28781515 -0.0075 -0.06845148 0 -0.23916941 0 0 3.03699429 0
+1.9083 -31.42831503 246.8834051 30.15389501 0.80082709 -0.0075 0.09519125 134.7782022 616.6659683 24.89158611 0.28637818 -0.0075 -0.06812909 0 -0.24878504 0 0 2.8239099 0
+1.91 -33.42811165 252.8781975 30.03219908 0.80023138 -0.0075 0.0951692 134.2549821 606.0298461 23.70747906 0.28495482 -0.0075 -0.06777869 0 -0.24702348 0 0 2.60943521 0
+1.9117 -35.27661891 258.9071927 29.81265513 0.79962737 -0.0075 0.09515468 133.6582918 595.1352538 22.48436864 0.28354816 -0.0075 -0.06740058 0 -0.23645136 0 0 2.39738875 0
+1.9133 -36.99332247 264.9948862 29.50028856 0.79901249 -0.0075 0.09515175 132.9733333 583.9964302 21.2248902 0.28216095 -0.0075 -0.06699541 0 -0.21984608 0 0 2.19176328 0
+1.915 -38.60184369 271.1636385 29.09869303 0.79838424 -0.0075 0.09516419 132.1844115 572.6292427 19.93264444 0.28079552 -0.0075 -0.06656417 0 -0.20013641 0 0 1.99649918 0
+1.9167 -40.12821328 277.4335282 28.61004986 0.79774034 -0.0075 0.09519534 131.2758447 561.0511526 18.61211106 0.27945401 -0.0075 -0.06610827 0 -0.18017331 0 0 1.81531785 0
+1.9183 -41.59944183 283.8223178 28.03543371 0.79707863 -0.0075 0.09524811 130.2327133 549.2812456 17.2687242 0.27813833 -0.0075 -0.06562952 0 -0.16263264 0 0 1.65144703 0
+1.92 -43.04188795 290.3455447 27.37515424 0.7963973 -0.0075 0.09532499 129.0417149 537.3401778 15.90874323 0.27685029 -0.0075 -0.06513016 0 -0.14985781 0 0 1.50752085 0
+1.9217 -44.47990425 297.016635 26.62920108 0.79569482 -0.0075 0.09542798 127.6919961 525.2500109 14.53912393 0.27559174 -0.0075 -0.06461292 0 -0.14377719 0 0 1.38544923 0
+1.9233 -45.93472362 303.847126 25.7977461 0.79496995 -0.0075 0.09555865 126.1758147 513.0340203 13.16748643 0.27436453 -0.0075 -0.06408093 0 -0.14585304 0 0 1.2862658 0
+1.925 -47.42339501 310.8468333 24.88161999 0.79422188 -0.0075 0.09571812 124.4891504 500.716391 11.80184099 0.27317056 -0.0075 -0.06353771 0 -0.15699391 0 0 1.2101631 0
+1.9267 -48.95831614 318.0240809 23.88279873 0.79345017 -0.0075 0.09590716 122.6320446 488.3219769 10.45046691 0.27201179 -0.0075 -0.06298717 0 -0.17762635 0 0 1.15646949 0
+1.9283 -50.54673782 325.3859067 22.80464865 0.79265488 -0.0075 0.09612608 120.6088616 475.8757647 9.12168202 0.27089008 -0.0075 -0.06243345 0 -0.20765788 0 0 1.1237154 0
+1.93 -52.19098013 332.9382451 21.65225094 0.79183647 -0.0075 0.09637492 118.4282001 463.4025864 7.82365926 0.26980707 -0.0075 -0.06188096 0 -0.24656839 0 0 1.109719 0
+1.9317 -53.88853423 340.6861361 20.43236988 0.79099594 -0.0075 0.09665341 116.1027096 450.92666 6.56415384 0.26876408 -0.0075 -0.06133424 0 -0.29343395 0 0 1.11178129 0
+1.9333 -55.63284958 348.6338316 19.15334774 0.79013461 -0.0075 0.09696096 113.6485779 438.4711504 5.35047353 0.26776184 -0.0075 -0.06079782 0 -0.34707244 0 0 1.12678193 0
+1.935 -57.41401819 356.7849221 17.82487445 0.78925423 -0.0075 0.09729673 111.0849637 426.0578678 4.18926202 0.26680033 -0.0075 -0.06027614 0 -0.40610374 0 0 1.15140564 0
+1.9367 -59.21977389 365.1423132 16.45758908 0.78835686 -0.0075 0.09765956 108.4332007 413.7069533 3.08633708 0.26587875 -0.0075 -0.05977357 0 -0.4690463 0 0 1.18235978 0
+1.9383 -61.03664746 373.7083254 15.06261288 0.78744475 -0.0075 0.09804808 105.7159189 401.4366611 2.04678561 0.26499544 -0.0075 -0.05929415 0 -0.53448552 0 0 1.21646437 0
+1.94 -62.85085301 382.4846075 13.65093691 0.78652037 -0.0075 0.09846063 102.9561417 389.2632119 1.07480928 0.26414784 -0.0075 -0.05884168 0 -0.60107085 0 0 1.25085922 0
+1.9417 -64.64950474 391.4721393 12.23293196 0.78558626 -0.0075 0.09889539 100.1762707 377.2008203 0.17383623 0.26333268 -0.0075 -0.0584196 0 -0.66764023 0 0 1.28303072 0
+1.9433 -66.42128849 400.6712149 10.81767736 0.78464503 -0.0075 0.0993503 97.3973297 365.2616024 -0.65346725 0.26254616 -0.0075 -0.05803098 0 -0.73322149 0 0 1.31092547 0
+1.945 -68.15744006 410.0812897 9.41256356 0.78369917 -0.0075 0.09982321 94.63809804 353.4558086 -1.40506409 0.26178423 -0.0075 -0.05767843 0 -0.79712331 0 0 1.33294205 0
+1.9467 -69.8520574 419.7009427 8.02287317 0.78275117 -0.0075 0.10031188 91.91457154 341.7919245 -2.07956939 0.261043 -0.0075 -0.05736425 0 -0.85886952 0 0 1.34797666 0
+1.9483 -71.50253919 429.5276691 6.65155225 0.78180332 -0.0075 0.10081402 89.23949495 330.276918 -2.67606304 0.26031912 -0.0075 -0.0570903 0 -0.91825452 0 0 1.35532785 0
+1.95 -73.1095562 439.5577653 5.29910155 0.78085782 -0.0075 0.10132732 86.62213051 318.9164848 -3.19404022 0.2596102 -0.0075 -0.05685806 0 -0.9753171 0 0 1.35465293 0
+1.9517 -74.67679603 449.7861381 3.96363478 0.77991676 -0.0075 0.1018495 84.06822641 307.7152177 -3.6334686 0.2589152 -0.0075 -0.0566687 0 -1.0302323 0 0 1.34589993 0
+1.9533 -76.21073899 460.2061345 2.64107127 0.77898204 -0.0075 0.10237835 81.58015816 296.6769144 -3.99458284 0.25823467 -0.0075 -0.05652288 0 -1.0833389 0 0 1.32912002 0
+1.955 -77.71983684 470.8093428 1.32548147 0.77805543 -0.0075 0.10291171 79.15731252 285.8046326 -4.27808623 0.25757086 -0.0075 -0.05642088 0 -1.13500282 0 0 1.30452458 0
+1.9567 -79.21402287 481.5854058 0.00957988 0.77713855 -0.0075 0.10344759 76.79644981 275.1009425 -4.4851182 0.25692763 -0.0075 -0.05636248 0 -1.18562708 0 0 1.27236905 0
+1.9583 -80.70374307 492.5218251 -1.3148295 0.77623289 -0.0075 0.10398403 74.49240503 264.5678433 -4.61735632 0.25631016 -0.0075 -0.05634679 0 -1.23554801 0 0 1.23294847 0
+1.96 -82.19933713 503.6037547 -2.65620041 0.77533966 -0.0075 0.1045192 72.23866767 254.206944 -4.67708199 0.25572447 -0.0075 -0.05637216 0 -1.28502155 0 0 1.18655924 0
+1.9617 -83.71012895 514.8138403 -4.02270685 0.77446 -0.0075 0.10505129 70.02799619 244.0194572 -4.66735405 0.2551767 -0.0075 -0.05643612 0 -1.33417537 0 0 1.13359437 0
+1.9633 -85.24379382 526.1320901 -5.42167722 0.77359473 -0.0075 0.10557849 67.85310356 234.0061134 -4.59200609 0.25467217 -0.0075 -0.05653511 0 -1.38297174 0 0 1.07446123 0
+1.965 -86.80583143 537.5358299 -6.85908824 0.77274446 -0.0075 0.10609899 65.70709653 224.1672318 -4.45576402 0.25421424 -0.0075 -0.05666429 0 -1.4312179 0 0 1.00969881 0
+1.9667 -88.3990308 548.9997107 -8.33914117 0.77190954 -0.0075 0.10661095 63.58395508 214.5026217 -4.26433201 0.25380318 -0.0075 -0.05681756 0 -1.47850493 0 0 0.94004995 0
+1.9683 -90.02342147 560.495811 -9.8639841 0.77108992 -0.0075 0.10711246 61.47878013 205.0117169 -4.0241985 0.25343495 -0.0075 -0.05698717 0 -1.52431254 0 0 0.86640922 0
+1.97 -91.67605515 571.9938027 -11.43347662 0.77028522 -0.0075 0.10760152 59.38799523 195.6935405 -3.7427255 0.2534503 -0.0075 -0.05698685 0 -1.5679399 0 0.0346472 0.77813105 -0.06852323
+1.9717 -93.35128237 583.4612118 -13.04503635 0.76949466 -0.0075 0.10807608 57.30934904 186.54695 -3.42788862 0.25349624 -0.0075 -0.05698588 0 -1.60862945 0 0.065473 0.68950083 -0.13302675
+1.9733 -95.04086217 594.8637915 -14.69375161 0.76871708 -0.0075 0.10853398 55.2418325 177.5707171 -3.08812891 0.25357256 -0.0075 -0.05698426 0 -1.64554692 0 0.09043986 0.60272436 -0.19732371
+1.975 -96.73455852 606.1659967 -16.37238148 0.76795084 -0.0075 0.108973 53.18543261 168.763858 -2.7320523 0.25367909 -0.0075 -0.05698201 0 -1.67790002 0 0.10770132 0.52006945 -0.26567104
+1.9767 -98.42048222 617.3315534 -18.07159517 0.76719397 -0.0075 0.10939099 51.14085851 160.1258853 -2.3682056 0.25381564 -0.0075 -0.05697912 0 -1.70492 0 0.11568611 0.44380222 -0.34248664
+1.9783 -100.0857032 628.3240602 -19.78024096 0.7664441 -0.0075 0.10978579 49.10920539 151.6570733 -2.00467118 0.25398201 -0.0075 -0.05697559 0 -1.72593442 0 0.11314361 0.37601327 -0.4320321
+1.98 -101.7169091 639.1076773 -21.48562734 0.76569848 -0.0075 0.11015542 47.09155783 143.3588221 -1.64877067 0.25417801 -0.0075 -0.05697144 0 -1.74045359 0 0.09920654 0.31852095 -0.5380912
+1.9817 -103.3008074 649.6477359 -23.17388381 0.76495414 -0.0075 0.11049804 45.08880333 135.2338647 -1.30686519 0.25440346 -0.0075 -0.05696665 0 -1.74813445 0 0.07346564 0.27274571 -0.6635935
+1.9833 -104.8248804 659.9114296 -24.83031499 0.76420783 -0.0075 0.11081209 43.10124749 127.2865995 -0.98395493 0.25465817 -0.0075 -0.05696124 0 -1.74890061 0 0.03597303 0.23953583 -0.81033435
+1.985 -106.2775715 669.8684046 -26.43978936 0.76345616 -0.0075 0.11109627 41.12853428 119.5231308 -0.68366827 0.25494194 -0.0075 -0.05695521 0 -1.74289458 0 -0.01272932 0.21914486 -0.97875314
+1.9867 -107.6488137 679.4913074 -27.98710504 0.76269564 -0.0075 0.11134968 39.16949157 111.9514528 -0.40800795 0.25525459 -0.0075 -0.05694855 0 -1.73053774 0 -0.0716243 0.21107716 -1.16776456
+1.9883 -108.9301165 688.75628 -29.45740416 0.76192282 -0.0075 0.11157177 37.22218535 104.581262 -0.15745337 0.25559593 -0.0075 -0.05694128 0 -1.71244669 0 -0.1392617 0.21415568 -1.374742
+1.99 -110.1147948 697.6432814 -30.83649395 0.76113422 -0.0075 0.11176246 35.28406794 97.4238929 0.06900214 0.25596577 -0.0075 -0.05693339 0 -1.68948441 0 -0.21378795 0.22652399 -1.59554708
+1.9917 -111.1979485 706.1363517 -32.1112239 0.76032654 -0.0075 0.11192211 33.35214054 90.49198759 0.27369823 0.25636392 -0.0075 -0.05692489 0 -1.66270696 0 -0.29304572 0.24576243 -1.82469574
+1.9933 -112.1763397 714.2236551 -33.26983459 0.75949666 -0.0075 0.11205146 31.42338516 83.79905536 0.45999528 0.25679019 -0.0075 -0.05691578 0 -1.63327125 0 -0.37464923 0.26901391 -2.05561548
+1.995 -113.0484 721.897465 -34.30220766 0.75864166 -0.0075 0.11215172 29.4950257 77.35909496 0.63202787 0.25724438 -0.0075 -0.05690607 0 -1.60246602 0 -0.45607953 0.29315391 -2.28095954
+1.9967 -113.8137979 729.1540043 -35.20017729 0.75775898 -0.0075 0.11222442 27.56502775 71.18592361 0.79422865 0.25772632 -0.0075 -0.05689575 0 -1.57158553 0 -0.53478503 0.31502705 -2.49298787
+1.9983 -114.4734342 735.9931928 -35.95774935 0.75684634 -0.0075 0.11227142 25.63235323 65.29269003 0.9510616 0.25823582 -0.0075 -0.05688483 0 -1.54192414 0 -0.608304 0.33158919 -2.68402432
+2 -115.0289517 742.4183438 -36.57134492 0.75590188 -0.0075 0.11229483 23.69745837 59.69119052 1.10653957 0.25877267 -0.0075 -0.05687331 0 -1.51465199 0 -0.67433042 0.34017516 -2.84685758
+2.0017 -115.4826826 748.4357712 -37.03986784 0.75492415 -0.0075 0.11229703 21.76249902 54.39143382 1.26396991 0.2593367 -0.0075 -0.0568612 0 -1.49082348 0 -0.73081262 0.33865162 -2.97514499
+2.0033 -115.8372966 754.0543793 -37.36487953 0.75391217 -0.0075 0.11228048 19.83158029 49.4010449 1.42556402 0.25992771 -0.0075 -0.0568485 0 -1.47126845 0 -0.77601686 0.32562642 -3.06376722
+2.005 -116.0957022 759.285206 -37.55057891 0.75286539 -0.0075 0.11224776 17.9109252 44.72492141 1.5923065 0.26054552 -0.0075 -0.05683521 0 -1.45659321 0 -0.80857838 0.30049676 -3.10907449
+2.0067 -116.260936 764.1410109 -37.60372388 0.75178376 -0.0075 0.11220149 16.00880504 40.36500195 1.76380224 0.26118993 -0.0075 -0.05682133 0 -1.44715826 0 -0.8275403 0.26353123 -3.10908155
+2.0083 -116.3359088 768.6358538 -37.53351739 0.75066777 -0.0075 0.11214426 14.13550035 36.32007051 1.93821132 0.26186076 -0.0075 -0.05680686 0 -1.44301913 0 -0.8323419 0.21584494 -3.06350862
+2.01 -116.3235679 772.7847524 -37.35136068 0.74951836 -0.0075 0.11207863 12.30294683 32.5858087 2.11241838 0.26255781 -0.0075 -0.05679182 0 -1.44400951 0 -0.82284729 0.15928971 -2.97382083
+2.0117 -116.2266483 776.6033863 -37.07060021 0.74833705 -0.0075 0.11200708 10.52451528 29.15486762 2.28208418 0.2632809 -0.0075 -0.0567762 0 -1.44965805 0 -0.79927527 0.09638467 -2.84303629
+2.0133 -116.0479672 780.1078119 -36.70610442 0.74712583 -0.0075 0.11193202 8.81444725 26.01721475 2.4420208 0.26402984 -0.0075 -0.05676 0 -1.4592845 0 -0.76221529 0.03008777 -2.67557017
+2.015 -115.7902294 783.3142508 -36.27394717 0.74588717 -0.0075 0.11185574 7.18741658 23.16039108 2.58642694 0.26480444 -0.0075 -0.05674323 0 -1.47199856 0 -0.71255679 -0.0363348 -2.47696525
+2.0167 -115.4562991 786.2388525 -35.79081482 0.74462397 -0.0075 0.11178048 5.65796915 20.57005886 2.70931774 0.2656045 -0.0075 -0.05672589 0 -1.48680167 0 -0.65143943 -0.09958735 -2.25351934
+2.0183 -115.0491731 788.8975028 -35.27356532 0.74333951 -0.0075 0.11170832 4.23991835 18.23042117 2.8048241 0.26642985 -0.0075 -0.05670799 0 -1.50261816 0 -0.58019982 -0.15650813 -2.01197915
+2.02 -114.5720407 791.3056179 -34.73874243 0.7420374 -0.0075 0.11164125 2.94578865 16.12477258 2.86764043 0.26728028 -0.0075 -0.05668952 0 -1.51836558 0 -0.5003087 -0.20432846 -1.7591706
+2.0217 -114.0284282 793.4780205 -34.20205823 0.74072144 -0.0075 0.11158118 1.78620728 14.23599252 2.8933887 0.26815562 -0.0075 -0.05667049 0 -1.53305834 0 -0.413353 -0.24085014 -1.5017238
+2.0233 -113.4220462 795.4287175 -33.67801986 0.73939561 -0.0075 0.11152985 0.76952114 12.54695816 2.87881786 0.26905567 -0.0075 -0.0566509 0 -1.54576874 0 -0.32095699 -0.26454562 -1.2457516
+2.025 -112.7570902 797.1707245 -33.17951801 0.73806385 -0.0075 0.11148888 -0.09870479 11.04101187 2.82216005 0.26998024 -0.0075 -0.05663075 0 -1.5557944 0 -0.22477599 -0.27466334 -0.99667677
+2.0267 -112.0379701 798.7158769 -32.71756091 0.73673004 -0.0075 0.11145975 -0.81584381 9.70219568 2.72315432 0.27092915 -0.0075 -0.05661006 0 -1.56263398 0 -0.12643169 -0.27120285 -0.75902049
+2.0283 -111.2695532 800.0745272 -32.30103554 0.7353978 -0.0075 0.11144374 -1.38252269 8.51559018 2.58320413 0.27190219 -0.0075 -0.05658881 0 -1.56607146 0 -0.0275112 -0.25493955 -0.53636745
+2.03 -110.4569246 801.2553824 -31.93666273 0.73407046 -0.0075 0.1114419 -1.80255261 7.46738366 2.40527007 0.2728992 -0.0075 -0.05656702 0 -1.56615768 0 0.07049286 -0.22729351 -0.3312902
+2.0317 -109.6054369 802.2652917 -31.62894494 0.73275087 -0.0075 0.11145504 -2.08287262 6.545001 2.19382547 0.27391996 -0.0075 -0.05654468 0 -1.56325312 0 0.16617001 -0.19029104 -0.14539053
+2.0333 -108.7206055 803.1091012 -31.38029102 0.73144146 -0.0075 0.11148367 -2.23346213 5.73702103 1.95459945 0.2749643 -0.0075 -0.0565218 0 -1.55798506 0 0.25821824 -0.1463536 0.02057277
+2.035 -107.8079561 803.7895537 -31.19119714 0.73014408 -0.0075 0.11152801 -2.2668479 5.03313119 1.69431918 0.27603203 -0.0075 -0.05649839 0 -1.55117301 0 0.34548912 -0.0981508 0.16662408
+2.0367 -106.8731602 804.3072843 -31.06052664 0.72885996 -0.0075 0.11158798 -2.19782282 4.4240074 1.42049825 0.27712296 -0.0075 -0.05647443 0 -1.54387466 0 0.42693516 -0.04841926 0.29336347
+2.0383 -105.9216406 804.6608246 -30.98577797 0.72758982 -0.0075 0.11166316 -2.04284893 3.90110956 1.14091143 0.27823689 -0.0075 -0.05644995 0 -1.53720857 0 0.50171919 0.00028291 0.40185821
+2.04 -104.9587803 804.846731 -30.96345769 0.72633378 -0.0075 0.11175287 -1.81957582 3.45662095 0.86342747 0.27937364 -0.0075 -0.05642493 0 -1.53238528 0 0.56914572 0.04565298 0.4934581
+2.0417 -103.9896188 804.859797 -30.98943773 0.72509149 -0.0075 0.11185611 0 0 0 0.28053302 -0.0075 -0.05639939 0 -1.53057076 0 0 0 0
+2.0433 -103.0188495 804.6932863 -31.05917763 0.72386219 -0.0075 0.11197168 0 0 0 0.28171484 -0.0075 -0.05637333 0 -1.53283183 0 0 0 0
+2.045 -102.0506481 804.3393256 -31.16817893 0.72264487 -0.0075 0.11209817 0 0 0 0.2829189 -0.0075 -0.05634674 0 -1.54006272 0 0 0 0
+2.0467 -101.0886317 803.7893391 -31.31216396 0.72143825 -0.0075 0.11223404 0 0 0 0.28414503 -0.0075 -0.05631963 0 -1.55288548 0 0 0 0
+2.0483 -100.135856 803.0344561 -31.48725099 0.72024101 -0.0075 0.11237772 0 0 0 0.28539303 -0.0075 -0.05629201 0 -1.57164408 0 0 0 0
+2.05 -99.19454473 802.0659727 -31.69013939 0.71905184 -0.0075 0.11252762 0 0 0 0.28666271 -0.0075 -0.05626388 0 -1.59631662 0 0 0 0
+2.0517 -98.26634068 800.8757603 -31.91812463 0.71786944 -0.0075 0.11268222 0 0 0 0.28795389 -0.0075 -0.05623523 0 -1.62658329 0 0 0 0
+2.0533 -97.35193906 799.4566351 -32.1690774 0.71669274 -0.0075 0.11284012 0 0 0 0.28926637 -0.0075 -0.05620608 0 -1.6617237 0 0 0 0
+2.055 -96.45131311 797.8027053 -32.44141399 0.71552082 -0.0075 0.11300004 0 0 0 0.29059996 -0.0075 -0.05617642 0 -1.70073451 0 0 0 0
+2.0567 -95.5635825 795.9096784 -32.73400315 0.71435301 -0.0075 0.11316093 0 0 0 0.29195447 -0.0075 -0.05614627 0 -1.74229197 0 0 0 0
+2.0583 -94.68710869 793.7750443 -33.04595454 0.7131888 -0.0075 0.11332192 0 0 0 0.29332972 -0.0075 -0.05611561 0 -1.78484433 0 0 0 0
+2.06 -93.81955887 791.3981923 -33.37656034 0.71202791 -0.0075 0.11348236 0 0 0 0.29472552 -0.0075 -0.05608446 0 -1.82664186 0 0 0 0
+2.0617 -92.95798491 788.7804482 -33.72510132 0.71087017 -0.0075 0.1136418 0 0 0 0.29614167 -0.0075 -0.05605281 0 -1.86582171 0 0 0 0
+2.0633 -92.09904979 785.9250396 -34.09067576 0.70971551 -0.0075 0.11379998 0 0 0 0.29757799 -0.0075 -0.05602067 0 -1.90051825 0 0 0 0
+2.065 -91.23899667 782.8369856 -34.47211669 0.70856392 -0.0075 0.11395678 0 0 0 0.29903429 -0.0075 -0.05598805 0 -1.92887152 0 0 0 0
+2.0667 -90.37404706 779.5230208 -34.86789325 0.70741535 -0.0075 0.11411223 0 0 0 0.30051037 -0.0075 -0.05595494 0 -1.94918384 0 0 0 0
+2.0683 -89.50031201 775.99144 -35.27606818 0.70626978 -0.0075 0.11426647 0 0 0 0.30200606 -0.0075 -0.05592135 0 -1.95990479 0 0 0 0
+2.07 -88.61422492 772.2519729 -35.69430422 0.70512708 -0.0075 0.11441972 0 0 0 0.30352115 -0.0075 -0.05588728 0 -1.95973286 0 0 0 0
+2.0717 -87.7125963 768.315637 -36.11988265 0.70398706 -0.0075 0.11457227 0 0 0 0.30505546 -0.0075 -0.05585274 0 -1.94763271 0 0 0 0
+2.0733 -86.79282972 764.1945799 -36.54970653 0.70284945 -0.0075 0.11472449 0 0 0 0.30660881 -0.0075 -0.05581772 0 -1.9229281 0 0 0 0
+2.075 -85.85306378 759.9019502 -36.98044087 0.70171393 -0.0075 0.11487679 0 0 0 0.308181 -0.0075 -0.05578223 0 -1.88526555 0 0 0 0
+2.0767 -84.89223162 755.451787 -37.40852511 0.70058016 -0.0075 0.11502964 0 0 0 0.30977183 -0.0075 -0.05574628 0 -1.8346324 0 0 0 0
+2.0783 -83.91023665 750.8589676 -37.83027276 0.6994478 -0.0075 0.11518355 0 0 0 0.31138113 -0.0075 -0.05570985 0 -1.77142353 0 0 0 0
+2.08 -82.90773784 746.139104 -38.24196949 0.69831656 -0.0075 0.11533912 0 0 0 0.31300871 -0.0075 -0.05567297 0 -1.6963293 0 0 0 0
+2.0817 -81.88639561 741.3084954 -38.63990982 0.69718622 -0.0075 0.11549702 0 0 0 0.31465437 -0.0075 -0.05563563 0 -1.61038744 0 0 0 0
+2.0833 -80.8485782 736.3840327 -39.02046589 0.69605662 -0.0075 0.11565801 0 0 0 0.31631792 -0.0075 -0.05559783 0 -1.51491807 0 0 0 0
+2.085 -79.79740759 731.3830336 -39.3800771 0.69492767 -0.0075 0.11582295 0 0 0 0.31799918 -0.0075 -0.05555958 0 -1.41151552 0 0 0 0
+2.0867 -78.73649033 726.3231233 -39.71533359 0.69379931 -0.0075 0.11599274 0 0 0 0.31969795 -0.0075 -0.05552087 0 -1.30198291 0 0 0 0
+2.0883 -77.66976792 721.2220354 -40.02291721 0.69267146 -0.0075 0.11616832 0 0 0 0.32141405 -0.0075 -0.05548172 0 -1.18832054 0 0 0 0
+2.09 -76.60130235 716.0974182 -40.29963499 0.69154401 -0.0075 0.11635065 0 0 0 0.32314729 -0.0075 -0.05544213 0 -1.07264285 0 0 0 0
+2.0917 -75.53496895 710.9666139 -40.54245733 0.69041676 -0.0075 0.11654063 0 0 0 0.32489747 -0.0075 -0.05540209 0 -0.95710648 0 0 0 0
+2.0933 -74.47447573 705.8464186 -40.74851727 0.68928927 -0.0075 0.11673912 0 0 0 0.32666442 -0.0075 -0.05536161 0 -0.8438948 0 0 0 0
+2.095 -73.42293519 700.7528204 -40.9151789 0.68816093 -0.0075 0.11694682 0 0 0 0.32844793 -0.0075 -0.0553207 0 -0.73504681 0 0 0 0
+2.0967 -72.38296191 695.7007591 -41.04008033 0.68703079 -0.0075 0.11716423 0 0 0 0.33024782 -0.0075 -0.05527935 0 -0.6325209 0 0 0 0
+2.0983 -71.35632072 690.7039086 -41.12125088 0.68589766 -0.0075 0.11739162 0 0 0 0.33206391 -0.0075 -0.05523757 0 -0.53801795 0 0 0 0
+2.1 -70.34406648 685.7744774 -41.15714 0.68476005 -0.0075 0.11762897 0 0 0 0.33389599 -0.0075 -0.05519537 0 -0.45295783 0 0 0 0
+2.1017 -69.34639443 680.9231358 -41.14685605 0.68361624 -0.0075 0.11787594 0 0 0 0.33574389 -0.0075 -0.05515273 0 -0.37839841 0 0 0 0
+2.1033 -68.36266812 676.1589598 -41.09020979 0.68246439 -0.0075 0.11813189 0 0 0 0.3376074 -0.0075 -0.05510968 0 -0.31496311 0 0 0 0
+2.105 -67.39163335 671.4894628 -40.98786474 0.68130261 -0.0075 0.11839591 0 0 0 0.33948635 -0.0075 -0.05506621 0 -0.26281493 0 0 0 0
+2.1067 -66.43136601 666.9206589 -40.8414647 0.68012912 -0.0075 0.11866679 0 0 0 0.34138055 -0.0075 -0.05502232 0 -0.22160197 0 0 0 0
+2.1083 -65.4796677 662.4571945 -40.65365276 0.67894236 -0.0075 0.11894316 0 0 0 0.3432898 -0.0075 -0.05497801 0 -0.1905355 0 0 0 0
+2.11 -64.53393104 658.1025268 -40.42812016 0.67774124 -0.0075 0.1192235 0 0 0 0.34521391 -0.0075 -0.0549333 0 -0.16829367 0 0 0 0
+2.1117 -63.59159528 653.8590984 -40.16956365 0.67652518 -0.0075 0.11950621 0 0 0 0.3471527 -0.0075 -0.05488817 0 -0.15316072 0 0 0 0
+2.1133 -62.65010797 649.7286614 -39.88360551 0.67529433 -0.0075 0.11978975 0 0 0 0.34910598 -0.0075 -0.05484264 0 -0.14303291 0 0 0 0
+2.115 -61.70719056 645.7124459 -39.57661356 0.67404957 -0.0075 0.12007271 0 0 0 0.35107355 -0.0075 -0.05479671 0 -0.13553729 0 0 0 0
+2.1167 -60.76099622 641.8113916 -39.25554563 0.6727926 -0.0075 0.12035385 0 0 0 0.35305523 -0.0075 -0.05475038 0 -0.12813166 0 0 0 0
+2.1183 -59.81018334 638.0263048 -38.92764639 0.67152586 -0.0075 0.12063224 0 0 0 0.35505082 -0.0075 -0.05470365 0 -0.11821418 0 0 0 0
+2.12 -58.85409324 634.3579458 -38.60020565 0.67025251 -0.0075 0.12090722 0 0 0 0.35706015 -0.0075 -0.05465653 0 -0.10331816 0 0 0 0
+2.1217 -57.89258646 630.8070733 -38.28021743 0.66897634 -0.0075 0.12117846 0 0 0 0.35908302 -0.0075 -0.05460902 0 -0.08117834 0 0 0 0
+2.1233 -56.926363 627.3744521 -37.97409934 0.66770144 -0.0075 0.12144593 0 0 0 0.36111923 -0.0075 -0.05456111 0 -0.04994 0 0 0 0
+2.125 -55.95657829 624.0607841 -37.68742714 0.66643223 -0.0075 0.12170989 0 0 0 0.36316861 -0.0075 -0.05451283 0 -0.00819157 0 0 0 0
+2.1267 -54.98506456 620.8665983 -37.4247055 0.66517307 -0.0075 0.12197085 0 0 0 0.36523095 -0.0075 -0.05446416 0 0.04488261 0 0 0 0
+2.1283 -54.01418768 617.7921773 -37.1893192 0.6639281 -0.0075 0.12222944 0 0 0 0.36730608 -0.0075 -0.05441511 0 0.10949243 0 0 0 0
+2.13 -53.04676092 614.8373149 -36.98334582 0.66270092 -0.0075 0.12248638 0 0 0 0.3693938 -0.0075 -0.05436568 0 0.1852014 0 0 0 0
+2.1317 -52.08599081 612.001202 -36.80761528 0.66149454 -0.0075 0.12274239 0 0 0 0.37149393 -0.0075 -0.05431588 0 0.27089866 0 0 0 0
+2.1333 -51.1352616 609.2822775 -36.66181654 0.6603111 -0.0075 0.12299804 0 0 0 0.37360627 -0.0075 -0.0542657 0 0.36491987 0 0 0 0
+2.135 -50.19823446 606.6781145 -36.54465703 0.65915187 -0.0075 0.12325373 0 0 0 0.37573063 -0.0075 -0.05421516 0 0.46509172 0 0 0 0
+2.1367 -49.27846907 604.1854235 -36.45414406 0.65801722 -0.0075 0.12350959 0 0 0 0.37786683 -0.0075 -0.05416425 0 0.56892492 0 0 0 0
+2.1383 -48.37968794 601.800054 -36.38782156 0.65690651 -0.0075 0.12376547 0 0 0 0.38001467 -0.0075 -0.05411298 0 0.67368518 0 0 0 0
+2.14 -47.50538591 599.5170713 -36.34310097 0.65581834 -0.0075 0.12402093 0 0 0 0.38217397 -0.0075 -0.05406135 0 0.77664601 0 0 0 0
+2.1417 -46.65896957 597.3308427 -36.31750926 0.65475055 -0.0075 0.1242752 0 0 0 0.38434454 -0.0075 -0.05400936 0 0.87518808 0 0 0 0
+2.1433 -45.84362547 595.2352724 -36.30898182 0.65370043 -0.0075 0.12452727 0 0 0 0.38652618 -0.0075 -0.05395702 0 0.96697557 0 0 0 0
+2.145 -45.06218311 593.2239541 -36.31602631 0.65266494 -0.0075 0.12477589 0 0 0 0.38871872 -0.0075 -0.05390433 0 1.05010431 0 0 0 0
+2.1467 -44.3171722 591.2904861 -36.33782521 0.65164083 -0.0075 0.1250197 0 0 0 0.39092195 -0.0075 -0.05385128 0 1.12317368 0 0 0 0
+2.1483 -43.61056049 589.4287141 -36.37429138 0.65062493 -0.0075 0.12525729 0 0 0 0.39313569 -0.0075 -0.05379789 0 1.18541575 0 0 0 0
+2.15 -42.94390153 587.6329897 -36.42598386 0.64961421 -0.0075 0.12548735 0 0 0 0.39535975 -0.0075 -0.05374416 0 1.23664924 0 0 0 0
+2.1517 -42.31806501 585.8984074 -36.49395494 0.64860602 -0.0075 0.12570868 0 0 0 0.39759394 -0.0075 -0.05369009 0 1.27733791 0 0 0 0
+2.1533 -41.73341904 584.2209565 -36.57948559 0.64759801 -0.0075 0.1259204 0 0 0 0.39983808 -0.0075 -0.05363568 0 1.30845677 0 0 0 0
+2.155 -41.18953143 582.5976727 -36.68382326 0.64658842 -0.0075 0.12612188 0 0 0 0.40209196 -0.0075 -0.05358093 0 1.33143464 0 0 0 0
+2.1567 -40.68526159 581.0267077 -36.80782748 0.64557588 -0.0075 0.12631294 0 0 0 0.40435541 -0.0075 -0.05352586 0 1.34801646 0 0 0 0
+2.1583 -40.21871742 579.5073774 -36.95167977 0.64455954 -0.0075 0.12649378 0 0 0 0.40662823 -0.0075 -0.05347045 0 1.36013995 0 0 0 0
+2.16 -39.78720315 578.0401129 -37.11458029 0.64353889 -0.0075 0.12666504 0 0 0 0.40891024 -0.0075 -0.05341472 0 1.36978574 0 0 0 0
+2.1617 -39.38738321 576.6264018 -37.29456053 0.64251374 -0.0075 0.12682779 0 0 0 0.41120124 -0.0075 -0.05335866 0 1.37879613 0 0 0 0
+2.1633 -39.01519267 575.2686191 -37.48832411 0.64148413 -0.0075 0.12698351 0 0 0 0.41350104 -0.0075 -0.05330229 0 1.38881941 0 0 0 0
+2.165 -38.66619072 573.9698348 -37.69123585 0.6404501 -0.0075 0.12713398 0 0 0 0.41580947 -0.0075 -0.05324559 0 1.40112573 0 0 0 0
+2.1667 -38.33544836 572.7336276 -37.8974399 0.63941178 -0.0075 0.12728119 0 0 0 0.41812631 -0.0075 -0.05318859 0 1.41659421 0 0 0 0
+2.1683 -38.01792442 571.5638504 -38.10003075 0.63836915 -0.0075 0.12742733 0 0 0 0.4204514 -0.0075 -0.05313127 0 1.43564388 0 0 0 0
+2.17 -37.70851622 570.4644486 -38.29143226 0.6373221 -0.0075 0.12757457 0 0 0 0.42278453 -0.0075 -0.05307364 0 1.45826824 0 0 0 0
+2.1717 -37.40235613 569.4392668 -38.46376792 0.63627033 -0.0075 0.12772504 0 0 0 0.42512553 -0.0075 -0.0530157 0 1.48405724 0 0 0 0
+2.1733 -37.0950496 568.4918696 -38.60934958 0.63521338 -0.0075 0.12788071 0 0 0 0.42747419 -0.0075 -0.05295746 0 1.51228212 0 0 0 0
+2.175 -36.78282941 567.6253648 -38.72118358 0.63415055 -0.0075 0.12804327 0 0 0 0.42983033 -0.0075 -0.05289892 0 1.54201432 0 0 0 0
+2.1767 -36.46288348 566.8422923 -38.79341778 0.63308097 -0.0075 0.12821405 0 0 0 0.43219376 -0.0075 -0.05284008 0 1.57217069 0 0 0 0
+2.1783 -36.13324666 566.1445119 -38.8217546 0.63200367 -0.0075 0.12839393 0 0 0 0.43456429 -0.0075 -0.05278095 0 1.60169434 0 0 0 0
+2.18 -35.79315148 565.5331501 -38.80377657 0.6309175 -0.0075 0.12858331 0 0 0 0.43694173 -0.0075 -0.05272152 0 1.62958764 0 0 0 0
+2.1817 -35.44283647 565.008588 -38.73920237 0.62982133 -0.0075 0.12878206 0 0 0 0.4393259 -0.0075 -0.05266181 0 1.65511097 0 0 0 0
+2.1833 -35.08370935 564.5704515 -38.62989369 0.62871389 -0.0075 0.1289895 0 0 0 0.4417166 -0.0075 -0.0526018 0 1.67775325 0 0 0 0
+2.185 -34.71809373 564.2176531 -38.47984411 0.62759396 -0.0075 0.12920447 0 0 0 0.44411364 -0.0075 -0.05254152 0 1.69733177 0 0 0 0
+2.1867 -34.34914264 563.9483862 -38.29489268 0.62646024 -0.0075 0.12942527 0 0 0 0.44651684 -0.0075 -0.05248095 0 1.71398956 0 0 0 0
+2.1883 -33.98069757 563.7601831 -38.08238505 0.6253114 -0.0075 0.12964978 0 0 0 0.448926 -0.0075 -0.05242011 0 1.728135 0 0 0 0
+2.19 -33.61679005 563.6499676 -37.85072694 0.62414611 -0.0075 0.12987546 0 0 0 0.45134094 -0.0075 -0.05235899 0 1.74045355 0 0 0 0
+2.1917 -33.26158955 563.6141286 -37.60881036 0.62296297 -0.0075 0.13009949 0 0 0 0.45376146 -0.0075 -0.0522976 0 1.75178324 0 0 0 0
+2.1933 -32.9188248 563.6486183 -37.36546615 0.62176057 -0.0075 0.13031881 0 0 0 0.45618738 -0.0075 -0.05223593 0 1.76309866 0 0 0 0
+2.195 -32.59176406 563.7490116 -37.12888055 0.6205374 -0.0075 0.13053027 0 0 0 0.45861851 -0.0075 -0.052174 0 1.77533263 0 0 0 0
+2.1967 -32.28269717 563.9106564 -36.90612991 0.61929203 -0.0075 0.13073071 0 0 0 0.46105466 -0.0075 -0.05211181 0 1.78937756 0 0 0 0
+2.1983 -31.99290777 564.1286801 -36.70270063 0.61802295 -0.0075 0.13091706 0 0 0 0.46349563 -0.0075 -0.05204936 0 1.80594319 0 0 0 0
+2.2 -31.72242463 564.3981681 -36.52224139 0.61672882 -0.0075 0.13108641 0 0 0 0.46594124 -0.0075 -0.05198665 0 1.82554541 0 0 0 0
+2.2017 -31.4698859 564.7142171 -36.36636925 0.61540845 -0.0075 0.13123616 0 0 0 0.46839131 -0.0075 -0.05192368 0 1.84845212 0 0 0 0
+2.2033 -31.23266286 565.072088 -36.23466322 0.61406092 -0.0075 0.13136407 0 0 0 0.47084563 -0.0075 -0.05186046 0 1.8746471 0 0 0 0
+2.205 -31.00679771 565.4673332 -36.12480687 0.61268576 -0.0075 0.13146833 0 0 0 0.47330403 -0.0075 -0.05179699 0 1.90393515 0 0 0 0
+2.2067 -30.78739765 565.8959135 -36.03288071 0.61128294 -0.0075 0.13154766 0 0 0 0.47576631 -0.0075 -0.05173327 0 1.93589928 0 0 0 0
+2.2083 -30.56861483 566.354346 -35.95376508 0.60985311 -0.0075 0.13160131 0 0 0 0.47823228 -0.0075 -0.05166931 0 1.97001855 0 0 0 0
+2.21 -30.34432923 566.8397635 -35.88155826 0.60839752 -0.0075 0.13162908 0 0 0 0.48070175 -0.0075 -0.05160511 0 2.00568871 0 0 0 0
+2.2117 -30.10818793 567.3500361 -35.81015412 0.60691816 -0.0075 0.13163136 0 0 0 0.48317454 -0.0075 -0.05154066 0 2.04234003 0 0 0 0
+2.2133 -29.85414006 567.8837788 -35.73363145 0.60541777 -0.0075 0.13160908 0 0 0 0.48565045 -0.0075 -0.05147599 0 2.07942803 0 0 0 0
+2.215 -29.57678104 568.4404679 -35.64679422 0.60389984 -0.0075 0.13156371 0 0 0 0.4881293 -0.0075 -0.05141108 0 2.11655144 0 0 0 0
+2.2167 -29.27163214 569.0203799 -35.54556191 0.60236847 -0.0075 0.13149715 0 0 0 0.49061089 -0.0075 -0.05134594 0 2.15349517 0 0 0 0
+2.2183 -28.93558517 569.6246156 -35.42722301 0.60082827 -0.0075 0.13141174 0 0 0 0.49309504 -0.0075 -0.05128057 0 2.19017634 0 0 0 0
+2.22 -28.56694288 570.255009 -35.29059782 0.59928425 -0.0075 0.13131014 0 0 0 0.49558155 -0.0075 -0.05121498 0 2.22669888 0 0 0 0
+2.2217 -28.16578782 570.9139714 -35.13608221 0.59774145 -0.0075 0.13119523 0 0 0 0.49807025 -0.0075 -0.05114917 0 2.26325002 0 0 0 0
+2.2233 -27.73369792 571.6043971 -34.96555989 0.59620494 -0.0075 0.13107002 0 0 0 0.50056093 -0.0075 -0.05108314 0 2.30009683 0 0 0 0
+2.225 -27.2739812 572.3294324 -34.7821416 0.59467941 -0.0075 0.13093752 0 0 0 0.50305341 -0.0075 -0.05101689 0 2.33746232 0 0 0 0
+2.2267 -26.79124852 573.0923495 -34.59000004 0.59316908 -0.0075 0.13080068 0 0 0 0.5055475 -0.0075 -0.05095043 0 2.37551862 0 0 0 0
+2.2283 -26.29128298 573.8962853 -34.39391778 0.59167736 -0.0075 0.13066224 0 0 0 0.50804301 -0.0075 -0.05088376 0 2.41430269 0 0 0 0
+2.23 -25.78071154 574.7441249 -34.19896764 0.59020682 -0.0075 0.13052471 0 0 0 0.51053975 -0.0075 -0.05081688 0 2.45365409 0 0 0 0
+2.2317 -25.26648665 575.6382218 -34.01017915 0.58875899 -0.0075 0.13039025 0 0 0 0.51303753 -0.0075 -0.0507498 0 2.49322681 0 0 0 0
+2.2333 -24.75570837 576.5802644 -33.83214019 0.58733425 -0.0075 0.13026059 0 0 0 0.51553617 -0.0075 -0.05068251 0 2.53241848 0 0 0 0
+2.235 -24.25491266 577.5711472 -33.6687724 0.58593198 -0.0075 0.13013703 0 0 0 0.51803547 -0.0075 -0.05061503 0 2.57049249 0 0 0 0
+2.2367 -23.76991295 578.6108471 -33.52317076 0.58455041 -0.0075 0.13002038 0 0 0 0.52053524 -0.0075 -0.05054735 0 2.60654201 0 0 0 0
+2.2383 -23.30523044 579.6984666 -33.39750316 0.58318698 -0.0075 0.12991098 0 0 0 0.52303529 -0.0075 -0.05047948 0 2.63965341 0 0 0 0
+2.24 -22.86403432 580.8321798 -33.29297293 0.58183828 -0.0075 0.12980878 0 0 0 0.52553544 -0.0075 -0.05041141 0 2.66897327 0 0 0 0
+2.2417 -22.44784294 582.0093549 -33.20997317 0.58050044 -0.0075 0.1297133 0 0 0 0.5280355 -0.0075 -0.05034316 0 2.69381472 0 0 0 0
+2.2433 -22.05647861 583.2266483 -33.14817765 0.57916917 -0.0075 0.1296238 0 0 0 0.53053527 -0.0075 -0.05027473 0 2.71375961 0 0 0 0
+2.245 -21.68815597 584.4801565 -33.10674722 0.57784016 -0.0075 0.12953927 0 0 0 0.53303457 -0.0075 -0.05020611 0 2.72873489 0 0 0 0
+2.2467 -21.33949011 585.7656043 -33.08455094 0.57650925 -0.0075 0.12945856 0 0 0 0.5355332 -0.0075 -0.05013731 0 2.73911588 0 0 0 0
+2.2483 -21.00591925 587.0785716 -33.08034945 0.57517262 -0.0075 0.12938049 0 0 0 0.53803098 -0.0075 -0.05006834 0 2.74566892 0 0 0 0
+2.25 -20.6817591 588.4147505 -33.09299154 0.5738271 -0.0075 0.12930392 0 0 0 0.54052773 -0.0075 -0.0499992 0 2.74963895 0 0 0 0
+2.2517 -20.36087222 589.7701402 -33.12154675 0.57247008 -0.0075 0.12922788 0 0 0 0.54302324 -0.0075 -0.04992988 0 2.75261149 0 0 0 0
+2.2533 -20.03684246 591.1412849 -33.1653943 0.57109982 -0.0075 0.12915161 0 0 0 0.54551733 -0.0075 -0.04986039 0 2.7564725 0 0 0 0
+2.255 -19.70352156 592.5254198 -33.22419466 0.56971531 -0.0075 0.12907468 0 0 0 0.54800981 -0.0075 -0.04979075 0 2.76324766 0 0 0 0
+2.2567 -19.35541005 593.9205736 -33.29787727 0.56831631 -0.0075 0.12899694 0 0 0 0.55050049 -0.0075 -0.04972093 0 2.77496582 0 0 0 0
+2.2583 -18.98790264 595.3256695 -33.38648658 0.56690332 -0.0075 0.1289186 0 0 0 0.55298918 -0.0075 -0.04965096 0 2.79348559 0 0 0 0
+2.26 -18.59766148 596.7405455 -33.49004013 0.56547748 -0.0075 0.12884021 0 0 0 0.5554757 -0.0075 -0.04958084 0 2.82030604 0 0 0 0
+2.2617 -18.18265186 598.1659188 -33.60839099 0.56404043 -0.0075 0.12876259 0 0 0 0.55795985 -0.0075 -0.04951055 0 2.85650275 0 0 0 0
+2.2633 -17.7424538 599.6033368 -33.74104609 0.56259414 -0.0075 0.12868685 0 0 0 0.56044144 -0.0075 -0.04944012 0 2.9025254 0 0 0 0
+2.265 -17.27796859 601.0550103 -33.88705793 0.56114084 -0.0075 0.12861423 0 0 0 0.56292029 -0.0075 -0.04936954 0 2.95821722 0 0 0 0
+2.2667 -16.79155104 602.5236178 -34.04486655 0.55968277 -0.0075 0.12854607 0 0 0 0.5653962 -0.0075 -0.04929882 0 3.02268749 0 0 0 0
+2.2683 -16.28659885 604.0121459 -34.21229934 0.55822215 -0.0075 0.12848367 0 0 0 0.56786899 -0.0075 -0.04922795 0 3.09440591 0 0 0 0
+2.27 -15.7673796 605.5236007 -34.38655846 0.55676095 -0.0075 0.12842821 0 0 0 0.57033846 -0.0075 -0.04915694 0 3.17125764 0 0 0 0
+2.2717 -15.23866836 607.0608614 -34.56435024 0.55530089 -0.0075 0.12838066 0 0 0 0.57280443 -0.0075 -0.0490858 0 3.25067107 0 0 0 0
+2.2733 -14.70525155 608.6264802 -34.74204251 0.5538434 -0.0075 0.12834168 0 0 0 0.57526671 -0.0075 -0.04901452 0 3.32981751 0 0 0 0
+2.275 -14.17182418 610.2224711 -34.91581512 0.55238947 -0.0075 0.1283116 0 0 0 0.5777251 -0.0075 -0.04894312 0 3.40575666 0 0 0 0
+2.2767 -13.64236119 611.8501881 -35.08196813 0.55093979 -0.0075 0.12829032 0 0 0 0.58017943 -0.0075 -0.04887158 0 3.47570839 0 0 0 0
+2.2783 -13.12011203 613.5102075 -35.23710961 0.54949459 -0.0075 0.12827737 0 0 0 0.58262949 -0.0075 -0.04879992 0 3.53714026 0 0 0 0
+2.28 -12.60712099 615.2022793 -35.37843573 0.54805385 -0.0075 0.12827183 0 0 0 0.5850751 -0.0075 -0.04872813 0 3.58807018 0 0 0 0
+2.2817 -12.10429515 616.9252896 -35.5039178 0.54661716 -0.0075 0.12827244 0 0 0 0.58751608 -0.0075 -0.04865623 0 3.62711117 0 0 0 0
+2.2833 -11.61118922 618.677389 -35.61249737 0.54518397 -0.0075 0.12827764 0 0 0 0.58995223 -0.0075 -0.04858421 0 3.65359125 0 0 0 0
+2.285 -11.12613208 620.4559912 -35.7041332 0.54375348 -0.0075 0.12828564 0 0 0 0.59238335 -0.0075 -0.04851207 0 3.66760263 0 0 0 0
+2.2867 -10.64643126 622.2579728 -35.77990885 0.54232475 -0.0075 0.12829455 0 0 0 0.59480927 -0.0075 -0.04843983 0 3.66998861 0 0 0 0
+2.2883 -10.16841706 624.079791 -35.84194558 0.54089675 -0.0075 0.12830243 0 0 0 0.5972298 -0.0075 -0.04836747 0 3.66226967 0 0 0 0
+2.29 -9.68793186 625.9176227 -35.89325864 0.5394683 -0.0075 0.12830744 0 0 0 0.59964473 -0.0075 -0.04829501 0 3.64647166 0 0 0 0
+2.2917 -9.20038724 627.7675389 -35.9376318 0.53803824 -0.0075 0.12830788 0 0 0 0.6020539 -0.0075 -0.04822245 0 3.62507263 0 0 0 0
+2.2933 -8.70137251 629.6256457 -35.97929131 0.53660523 -0.0075 0.1283023 0 0 0 0.60445709 -0.0075 -0.04814979 0 3.60069879 0 0 0 0
+2.295 -8.18660211 631.4882908 -36.02273384 0.53516806 -0.0075 0.12828953 0 0 0 0.60685414 -0.0075 -0.04807703 0 3.57605458 0 0 0 0
+2.2967 -7.6524972 633.352132 -36.07238166 0.53372538 -0.0075 0.12826876 0 0 0 0.60924483 -0.0075 -0.04800417 0 3.55368101 0 0 0 0
+2.2983 -7.09626541 635.2143301 -36.1323886 0.53227586 -0.0075 0.12823953 0 0 0 0.611629 -0.0075 -0.04793123 0 3.53583914 0 0 0 0
+2.3 -6.5160761 637.0725385 -36.2063142 0.53081812 -0.0075 0.12820172 0 0 0 0.61400644 -0.0075 -0.04785819 0 3.52433533 0 0 0 0
+2.3017 -5.91121067 638.9249801 -36.29698162 0.52935079 -0.0075 0.12815556 0 0 0 0.61637698 -0.0075 -0.04778507 0 3.5204359 0 0 0 0
+2.3033 -5.28191477 640.7704548 -36.40632953 0.52787254 -0.0075 0.1281015 0 0 0 0.61874041 -0.0075 -0.04771187 0 3.52484627 0 0 0 0
+2.305 -4.62949262 642.6083331 -36.53531335 0.52638209 -0.0075 0.12804026 0 0 0 0.62109655 -0.0075 -0.04763859 0 3.53765771 0 0 0 0
+2.3067 -3.95589506 644.4385617 -36.68392046 0.52487837 -0.0075 0.12797269 0 0 0 0.62344521 -0.0075 -0.04756523 0 3.55846766 0 0 0 0
+2.3083 -3.26384937 646.261616 -36.85122239 0.52336044 -0.0075 0.12789974 0 0 0 0.6257862 -0.0075 -0.0474918 0 3.58636587 0 0 0 0
+2.31 -2.55632962 648.078492 -37.03550678 0.52182769 -0.0075 0.12782243 0 0 0 0.62811934 -0.0075 -0.04741829 0 3.62012038 0 0 0 0
+2.3117 -1.83649391 649.890557 -37.23435273 0.52027981 -0.0075 0.12774173 0 0 0 0.63044442 -0.0075 -0.04734471 0 3.65822571 0 0 0 0
+2.3133 -1.10733448 651.6995918 -37.44492665 0.5187169 -0.0075 0.12765857 0 0 0 0.63276127 -0.0075 -0.04727107 0 3.69901934 0 0 0 0
+2.315 -0.37142086 653.5076267 -37.66407234 0.51713948 -0.0075 0.12757379 0 0 0 0.63506969 -0.0075 -0.04719737 0 3.74083745 0 0 0 0
+2.3167 0.36920563 655.3169353 -37.88857986 0.51554859 -0.0075 0.12748812 0 0 0 0.6373695 -0.0075 -0.04712361 0 3.78208835 0 0 0 0
+2.3183 1.11338278 657.1300158 -38.11543587 0.51394574 -0.0075 0.12740219 0 0 0 0.6396605 -0.0075 -0.04704978 0 3.82138523 0 0 0 0
+2.32 1.86060443 658.9494623 -38.34191246 0.51233288 -0.0075 0.12731657 0 0 0 0.6419425 -0.0075 -0.04697591 0 3.85752964 0 0 0 0
+2.3217 2.61135302 660.7779299 -38.56576558 0.51071244 -0.0075 0.12723173 0 0 0 0.64421533 -0.0075 -0.04690198 0 3.88966593 0 0 0 0
+2.3233 3.36676998 662.6180236 -38.78533736 0.50908707 -0.0075 0.12714814 0 0 0 0.64647877 -0.0075 -0.046828 0 3.91716145 0 0 0 0
+2.325 4.12877892 664.4722635 -38.99963702 0.50745976 -0.0075 0.12706623 0 0 0 0.64873266 -0.0075 -0.04675398 0 3.93967141 0 0 0 0
+2.3267 4.89983035 666.3429214 -39.2083833 0.50583353 -0.0075 0.12698639 0 0 0 0.65097679 -0.0075 -0.04667991 0 3.95715 0 0 0 0
+2.3283 5.68268776 668.2320211 -39.41202812 0.50421136 -0.0075 0.12690906 0 0 0 0.65321099 -0.0075 -0.04660581 0 3.9697532 0 0 0 0
+2.33 6.48035574 670.1412345 -39.6116591 0.50259607 -0.0075 0.1268347 0 0 0 0.65543505 -0.0075 -0.04653166 0 3.9778416 0 0 0 0
+2.3317 7.29570079 672.0717754 -39.80897949 0.50099009 -0.0075 0.12676381 0 0 0 0.65764879 -0.0075 -0.04645748 0 3.98193051 0 0 0 0
+2.3333 8.13140657 674.0244115 -40.00624359 0.49939539 -0.0075 0.12669689 0 0 0 0.65985202 -0.0075 -0.04638327 0 3.98269772 0 0 0 0
+2.335 8.98960279 675.9993498 -40.20605321 0.49781327 -0.0075 0.12663448 0 0 0 0.66204455 -0.0075 -0.04630903 0 3.98085915 0 0 0 0
+2.3367 9.87200938 677.9962251 -40.41127343 0.49624446 -0.0075 0.12657706 0 0 0 0.6642262 -0.0075 -0.04623476 0 3.97726531 0 0 0 0
+2.3383 10.77956736 680.0141374 -40.62485973 0.49468888 -0.0075 0.12652506 0 0 0 0.66639676 -0.0075 -0.04616047 0 3.97278421 0 0 0 0
+2.34 11.71256772 682.0516796 -40.84967299 0.49314579 -0.0075 0.12647886 0 0 0 0.66855606 -0.0075 -0.04608616 0 3.96832244 0 0 0 0
+2.3417 12.67068297 684.1070117 -41.08830349 0.49161381 -0.0075 0.12643876 0 0 0 0.67070391 -0.0075 -0.04601183 0 3.96482089 0 0 0 0
+2.3433 13.65283772 686.178007 -41.34296801 0.49009097 -0.0075 0.12640491 0 0 0 0.67284011 -0.0075 -0.04593749 0 3.96318739 0 0 0 0
+2.345 14.65748658 688.2623548 -41.61526871 0.48857483 -0.0075 0.12637736 0 0 0 0.67496447 -0.0075 -0.04586313 0 3.96430598 0 0 0 0
+2.3467 15.68258058 690.3576942 -41.90606724 0.48706271 -0.0075 0.12635607 0 0 0 0.67707681 -0.0075 -0.04578877 0 3.96895179 0 0 0 0
+2.3483 16.72586877 692.4617705 -42.2154158 0.48555178 -0.0075 0.12634081 0 0 0 0.67917693 -0.0075 -0.0457144 0 3.97778947 0 0 0 0
+2.35 17.78481735 694.5726249 -42.54234295 0.48403925 -0.0075 0.1263313 0 0 0 0.68126465 -0.0075 -0.04564002 0 3.99122245 0 0 0 0
+2.3517 18.857006 696.6887032 -42.88490021 0.48252267 -0.0075 0.12632717 0 0 0 0.68333978 -0.0075 -0.04556564 0 4.00946612 0 0 0 0
+2.3533 19.94005135 698.8089773 -43.24015311 0.48099991 -0.0075 0.12632799 0 0 0 0.68540213 -0.0075 -0.04549127 0 4.03241657 0 0 0 0
+2.355 21.03179336 700.9330912 -43.60419692 0.47946939 -0.0075 0.1263333 0 0 0 0.6874515 -0.0075 -0.0454169 0 4.05961016 0 0 0 0
+2.3567 22.1303995 703.0612667 -43.97226408 0.47793016 -0.0075 0.12634266 0 0 0 0.68948772 -0.0075 -0.04534254 0 4.09025879 0 0 0 0
+2.3583 23.2342657 705.1943387 -44.33888702 0.47638188 -0.0075 0.12635561 0 0 0 0.69151059 -0.0075 -0.04526819 0 4.12316452 0 0 0 0
+2.36 24.34226235 707.3336826 -44.69810509 0.47482485 -0.0075 0.12637172 0 0 0 0.69351991 -0.0075 -0.04519385 0 4.15677798 0 0 0 0
+2.3617 25.45350703 709.4810302 -45.04367572 0.47325995 -0.0075 0.12639062 0 0 0 0.69551551 -0.0075 -0.04511952 0 4.18923998 0 0 0 0
+2.3633 26.56755285 711.6383627 -45.36946451 0.47168857 -0.0075 0.1264119 0 0 0 0.69749719 -0.0075 -0.04504522 0 4.21854747 0 0 0 0
+2.365 27.68414888 713.8076896 -45.6696618 0.47011235 -0.0075 0.12643519 0 0 0 0.69946476 -0.0075 -0.04497094 0 4.24252649 0 0 0 0
+2.3667 28.80337263 715.9907891 -45.93910664 0.46853323 -0.0075 0.1264601 0 0 0 0.70141803 -0.0075 -0.04489668 0 4.25909414 0 0 0 0
+2.3683 29.92544164 718.1889593 -46.17358953 0.46695303 -0.0075 0.12648618 0 0 0 0.70335682 -0.0075 -0.04482245 0 4.26637206 0 0 0 0
+2.37 31.0507176 720.4028427 -46.37012301 0.46537339 -0.0075 0.1265129 0 0 0 0.70528094 -0.0075 -0.04474825 0 4.2627821 0 0 0 0
+2.3717 32.17978449 722.6321372 -46.52706163 0.46379564 -0.0075 0.12653959 0 0 0 0.70719019 -0.0075 -0.04467409 0 4.2472721 0 0 0 0
+2.3733 33.31324863 724.875523 -46.644317 0.46222055 -0.0075 0.12656543 0 0 0 0.70908438 -0.0075 -0.04459996 0 4.21940954 0 0 0 0
+2.375 34.45195082 727.1305702 -46.72338084 0.46064835 -0.0075 0.12658943 0 0 0 0.71096333 -0.0075 -0.04452586 0 4.17949261 0 0 0 0
+2.3767 35.59678943 729.3936837 -46.76720435 0.45907854 -0.0075 0.12661047 0 0 0 0.71282685 -0.0075 -0.04445181 0 4.12855734 0 0 0 0
+2.3783 36.7489655 731.6602014 -46.78021365 0.45751001 -0.0075 0.12662724 0 0 0 0.71467475 -0.0075 -0.04437781 0 4.06849945 0 0 0 0
+2.38 37.90971225 733.9244551 -46.76795769 0.4559409 -0.0075 0.12663831 0 0 0 0.71650683 -0.0075 -0.04430385 0 4.00188668 0 0 0 0
+2.3817 39.08059491 736.1799927 -46.73684881 0.45436886 -0.0075 0.12664216 0 0 0 0.71832291 -0.0075 -0.04422994 0 3.93195172 0 0 0 0
+2.3833 40.26345557 738.41977 -46.69380366 0.45279111 -0.0075 0.12663722 0 0 0 0.7201228 -0.0075 -0.04415608 0 3.86242436 0 0 0 0
+2.385 41.46034561 740.636507 -46.64587995 0.4512046 -0.0075 0.12662194 0 0 0 0.72190632 -0.0075 -0.04408228 0 3.79733131 0 0 0 0
+2.3867 42.67363681 742.8229686 -46.59980712 0.4496062 -0.0075 0.12659489 0 0 0 0.72367326 -0.0075 -0.04400854 0 3.74083934 0 0 0 0
+2.3883 43.90584448 744.9722932 -46.56161343 0.44799295 -0.0075 0.12655484 0 0 0 0.72542345 -0.0075 -0.04393486 0 3.69696132 0 0 0 0
+2.39 45.15967893 747.0783115 -46.53628162 0.44636216 -0.0075 0.12650078 0 0 0 0.72715668 -0.0075 -0.04386125 0 3.66936571 0 0 0 0
+2.3917 46.43773083 749.1357861 -46.52738436 0.44471163 -0.0075 0.12643207 0 0 0 0.72887278 -0.0075 -0.0437877 0 3.66109986 0 0 0 0
+2.3933 47.74263179 751.1406445 -46.53694047 0.44303987 -0.0075 0.12634841 0 0 0 0.73057156 -0.0075 -0.04371422 0 3.67448694 0 0 0 0
+2.395 49.07663328 753.0901414 -46.5652117 0.44134611 -0.0075 0.12624997 0 0 0 0.73225282 -0.0075 -0.04364081 0 3.7108534 0 0 0 0
+2.3967 50.441604 754.9830031 -46.61072878 0.43963045 -0.0075 0.12613734 0 0 0 0.73391637 -0.0075 -0.04356748 0 3.77051938 0 0 0 0
+2.3983 51.83880079 756.8193575 -46.67034965 0.43789388 -0.0075 0.1260116 0 0 0 0.73556203 -0.0075 -0.04349423 0 3.85275964 0 0 0 0
+2.4 53.26860908 758.6007833 -46.73951159 0.43613824 -0.0075 0.12587424 0 0 0 0.7371896 -0.0075 -0.04342106 0 3.95574181 0 0 0 0
+2.4017 54.73050815 760.330114 -46.81243809 0.43436615 -0.0075 0.12572716 0 0 0 0.7387989 -0.0075 -0.04334797 0 4.07666375 0 0 0 0
+2.4033 56.22278033 762.0111845 -46.88249936 0.4325809 -0.0075 0.12557262 0 0 0 0.74038974 -0.0075 -0.04327497 0 4.2118219 0 0 0 0
+2.405 57.74264682 763.6486729 -46.94271074 0.43078631 -0.0075 0.12541309 0 0 0 0.74196193 -0.0075 -0.04320206 0 4.35685116 0 0 0 0
+2.4067 59.28598388 765.2477399 -46.98605115 0.42898652 -0.0075 0.12525122 0 0 0 0.74351527 -0.0075 -0.04312924 0 4.5068488 0 0 0 0
+2.4083 60.84758945 766.8137409 -47.00601314 0.42718584 -0.0075 0.12508971 0 0 0 0.74504958 -0.0075 -0.04305652 0 4.65675142 0 0 0 0
+2.41 62.42102321 768.3518983 -46.9969505 0.42538845 -0.0075 0.12493121 0 0 0 0.74656468 -0.0075 -0.04298389 0 4.80146778 0 0 0 0
+2.4117 63.99890161 769.8670145 -46.95439502 0.4235983 -0.0075 0.12477822 0 0 0 0.74806036 -0.0075 -0.04291137 0 4.93611982 0 0 0 0
+2.4133 65.57312089 771.3631129 -46.87538564 0.42181889 -0.0075 0.12463299 0 0 0 0.74953645 -0.0075 -0.04283895 0 5.05635802 0 0 0 0
+2.415 67.13491995 772.8432466 -46.75867557 0.42005306 -0.0075 0.12449741 0 0 0 0.75099274 -0.0075 -0.04276663 0 5.15846588 0 0 0 0
+2.4167 68.67542473 774.3092867 -46.60474055 0.41830297 -0.0075 0.12437294 0 0 0 0.75242906 -0.0075 -0.04269443 0 5.23957433 0 0 0 0
+2.4183 70.1857989 775.7617137 -46.4157642 0.41656995 -0.0075 0.12426061 0 0 0 0.75384522 -0.0075 -0.04262234 0 5.29771418 0 0 0 0
+2.42 71.65772302 777.1996336 -46.1955758 0.41485452 -0.0075 0.12416089 0 0 0 0.75524101 -0.0075 -0.04255036 0 5.3319529 0 0 0 0
+2.4217 73.0835619 778.6207075 -45.94931659 0.41315634 -0.0075 0.12407382 0 0 0 0.75661626 -0.0075 -0.0424785 0 5.34227824 0 0 0 0
+2.4233 74.45690844 780.0211748 -45.68321556 0.41147438 -0.0075 0.12399893 0 0 0 0.75797078 -0.0075 -0.04240676 0 5.32964199 0 0 0 0
+2.425 75.77268991 781.3959846 -45.40420284 0.4098069 -0.0075 0.1239353 0 0 0 0.75930437 -0.0075 -0.04233515 0 5.29581355 0 0 0 0
+2.4267 77.02743646 782.7389309 -45.11953024 0.40815165 -0.0075 0.12388165 0 0 0 0.76061685 -0.0075 -0.04226366 0 5.24324919 0 0 0 0
+2.4283 78.21960607 784.0427803 -44.8363193 0.40650605 -0.0075 0.12383636 0 0 0 0.76190802 -0.0075 -0.0421923 0 5.17498183 0 0 0 0
+2.43 79.34949953 785.29954 -44.56123857 0.4048673 -0.0075 0.1237976 0 0 0 0.7631777 -0.0075 -0.04212107 0 5.09438701 0 0 0 0
+2.4317 80.41945308 786.5006691 -44.30012466 0.40323259 -0.0075 0.1237634 0 0 0 0.7644257 -0.0075 -0.04204998 0 5.00505696 0 0 0 0
+2.4333 81.43364234 787.6372911 -44.05766225 0.40159925 -0.0075 0.12373177 0 0 0 0.76565183 -0.0075 -0.04197903 0 4.9105853 0 0 0 0
+2.435 82.39815189 788.7004058 -43.8372944 0.39996488 -0.0075 0.12370072 0 0 0 0.7668559 -0.0075 -0.04190821 0 4.81450261 0 0 0 0
+2.4367 83.32056514 789.6811189 -43.64097455 0.39832741 -0.0075 0.12366839 -2.27926332 1.54956762 0.05303168 0.76803772 -0.0075 -0.04183754 0 4.72003328 0 -0.21412122 -0.23278474 0.29829541
+2.4383 84.20987621 790.570799 -43.46919533 0.39668528 -0.0075 0.1236331 -2.62124606 1.90632266 -0.03827619 0.7691971 -0.0075 -0.04176702 0 4.63009698 0 -0.22448541 -0.16637818 0.26925366
+2.44 85.07611783 791.3612222 -43.32102605 0.39503738 -0.0075 0.12359339 -2.89651656 2.33516587 -0.14205045 0.77033385 -0.0075 -0.04169664 0 4.54720369 0 -0.23898052 -0.09636309 0.24022625
+2.4417 85.92998341 792.044793 -43.19421342 0.39338309 -0.0075 0.1235481 -3.0793958 2.85466189 -0.25381991 0.77144778 -0.0075 -0.04162642 0 4.47335973 0 -0.25827561 -0.02501034 0.21264557
+2.4433 86.7825634 792.6145589 -43.08537496 0.39172231 -0.0075 0.12349636 -3.14425786 3.48653852 -0.36937548 0.7725387 -0.0075 -0.04155635 0 4.41015789 0 -0.28300597 0.04535803 0.18807308
+2.445 87.64478487 793.0643515 -42.99024944 0.39005536 -0.0075 0.12343761 -3.06661269 4.2556607 -0.48517561 0.77360643 -0.0075 -0.04148644 0 4.35872791 0 -0.31378143 0.11253197 0.16802218
+2.4467 88.52719719 793.3888475 -42.90394946 0.38838292 -0.0075 0.1233716 -2.8240532 5.18963593 -0.59902658 0.77465077 -0.0075 -0.04141669 0 4.31976979 0 -0.35110441 0.174559 0.15395893
+2.4483 89.43944397 793.5835327 -42.82113633 0.38670597 -0.0075 0.12329843 -2.39741841 6.31855898 -0.7105086 0.77567154 -0.0075 -0.0413471 0 4.29352661 0 -0.39529953 0.22984748 0.14717231
+2.45 90.39007591 793.6447746 -42.7363684 0.38502574 -0.0075 0.12321841 -1.77177304 7.67427484 -0.82151479 0.77666854 -0.0075 -0.04127768 0 4.27993006 0 -0.44644027 0.2772739 0.14878837
+2.4517 91.38609279 793.5698246 -42.64424668 0.38334355 -0.0075 0.12313217 -0.93727375 9.28978514 -0.93642344 0.77764159 -0.0075 -0.04120843 0 4.27850238 0 -0.50429495 0.31623306 0.15972286
+2.4533 92.43282797 793.3568004 -42.53964417 0.38166089 -0.0075 0.12304057 0.1098711 11.19832779 -1.06232524 0.77859049 -0.0075 -0.04113935 0 4.28846208 0 -0.56826373 0.34670443 0.18066101
+2.455 93.53370114 793.0046387 -42.41779483 0.37997923 -0.0075 0.12294466 1.36685137 13.43234562 -1.20898781 0.77951507 -0.0075 -0.04107044 0 4.30873961 0 -0.6373369 0.36921748 0.21207499
+2.4567 94.6899998 792.5130926 -42.27441543 0.37830009 -0.0075 0.1228457 2.82382963 16.02247737 -1.38852669 0.78041511 -0.0075 -0.04100171 0 4.33790602 0 -0.71010444 0.38489444 0.25419295
+2.4583 95.90098456 791.8825713 -42.1057023 0.37662495 -0.0075 0.12274508 4.46372004 18.99624769 -1.61517429 0.78129045 -0.0075 -0.04093316 0 4.37424515 0 -0.78471484 0.39535654 0.30706674
+2.46 97.16370744 791.1140876 -41.9083561 0.37495529 -0.0075 0.12264432 6.26215968 22.3769658 -1.90452192 0.78214089 -0.0075 -0.0408648 0 4.41570594 0 -0.85896223 0.40264608 0.37049723
+2.4617 98.47323463 790.2091347 -41.67961829 0.37329254 -0.0075 0.12254499 8.18799152 26.18240337 -2.27283899 0.78296623 -0.0075 -0.04079662 0 4.45996457 0 -0.93035289 0.40913483 0.44412294
+2.4633 99.82262984 789.1694597 -41.41710738 0.3716381 -0.0075 0.12244869 10.20367975 30.42380227 -2.73613063 0.7837663 -0.0075 -0.04072863 0 4.50437138 0 -0.99621925 0.41737509 0.52730251
+2.465 101.2033749 787.9969372 -41.11891817 0.36999335 -0.0075 0.12235702 12.2661592 35.10478932 -3.30926258 0.7845409 -0.0075 -0.04066083 0 4.54608257 0 -1.05382932 0.43000426 0.619161
+2.4667 102.6054109 786.6932947 -40.78352119 0.36835954 -0.0075 0.12227154 14.32803031 40.22064933 -4.00488042 0.78528984 -0.0075 -0.04059322 0 4.58203685 0 -1.10056335 0.44958587 0.71856828
+2.4683 104.0175209 785.2598711 -40.4097833 0.36673781 -0.0075 0.12219368 16.33869562 45.75782167 -4.83253126 0.78601293 -0.0075 -0.04052581 0 4.60908711 0 -1.13405517 0.47854827 0.82407475
+2.47 105.4277572 783.6973285 -39.99699417 0.3651291 -0.0075 0.12212472 18.24582771 51.69362655 -5.79784668 0.78670998 -0.0075 -0.04045861 0 4.62413579 0 -1.15233291 0.51902797 0.93393719
+2.4717 106.8236717 782.0053906 -39.54492032 0.36353401 -0.0075 0.12206574 19.99694366 57.9965266 -6.90167861 0.78738081 -0.0075 -0.0403916 0 4.62420381 0 -1.15400298 0.57279159 1.0460546
+2.4733 108.192873 780.182552 -39.05389521 0.3619528 -0.0075 0.12201748 21.54098816 64.6265176 -8.13985566 0.78802522 -0.0075 -0.0403248 0 4.60670663 0 -1.13829657 0.64116136 1.15805244
+2.475 109.523301 778.2258676 -38.52483615 0.36038523 -0.0075 0.12198045 22.82988033 71.53616659 -9.50275454 0.78864303 -0.0075 -0.04025821 0 4.56950291 0 -1.1051868 0.72494948 1.26723249
+2.4767 110.8037915 776.1307595 -37.95941574 0.3588305 -0.0075 0.12195473 23.82012368 78.6717035 -10.97544776 0.78923404 -0.0075 -0.04019183 0 4.51115715 0 -1.05541906 0.82448058 1.37070382
+2.4783 112.0242154 773.8908744 -37.36002629 0.35728711 -0.0075 0.12194007 24.47420933 85.9747383 -12.53797873 0.78979806 -0.0075 -0.04012566 0 4.4309987 0 -0.99047164 0.93953945 1.46540411
+2.48 113.1760404 771.4980709 -36.72994336 0.35575288 -0.0075 0.1219358 24.76186632 93.38399056 -14.16605262 0.79033492 -0.0075 -0.04005971 0 4.32933604 0 -0.91250036 1.06945996 1.54825419
+2.4817 114.252462 768.9424268 -36.07325001 0.35422491 -0.0075 0.12194087 24.66115618 100.837307 -15.83183079 0.79084441 -0.0075 -0.03999398 0 4.20743696 0 -0.82424407 1.21311799 1.61627928
+2.4833 115.2486895 766.2124098 -35.39479843 0.35269962 -0.0075 0.12195386 24.15917118 108.2737911 -17.50505951 0.79132635 -0.0075 -0.03992848 0 4.06756296 0 -0.72885917 1.36904385 1.66672064
+2.485 116.1621614 763.295071 -34.70008379 0.35117286 -0.0075 0.12197306 23.25258143 115.6358174 -19.15441928 0.79178055 -0.0075 -0.0398632 0 3.91297794 0 -0.62971889 1.53545135 1.69723984
+2.4867 116.9924715 760.1764079 -33.9950966 0.34964004 -0.0075 0.12199649 21.94779404 122.8710619 -20.74864276 0.79220682 -0.0075 -0.03979814 0 3.74776557 0 -0.53029649 1.71033093 1.70596268
+2.4883 117.7415454 756.8417699 -33.28611095 0.34809639 -0.0075 0.12202203 20.26077148 129.9341438 -22.25811217 0.79260496 -0.0075 -0.03973332 0 3.57676534 0 -0.4338797 1.89152835 1.69167298
+2.49 118.413321 753.2762715 -32.57930611 0.3465371 -0.0075 0.1220475 18.21658751 136.7881879 -23.6559839 0.7929748 -0.0075 -0.03966873 0 3.40524459 0 -0.34343505 2.0768042 1.65383023
+2.4917 119.0137223 749.4653321 -31.88059104 0.34495772 -0.0075 0.12207075 15.84869975 143.4056999 -24.91940482 0.79331614 -0.0075 -0.03960438 0 3.23874471 0 -0.26145573 2.26397202 1.59268879
+2.4933 119.5502187 745.3950966 -31.19514798 0.34335432 -0.0075 0.12208981 13.19783705 149.7693914 -26.03035703 0.79362879 -0.0075 -0.03954027 0 3.08267572 0 -0.18981175 2.45088474 1.50922108
+2.495 120.0316591 741.052913 -30.5272178 0.34172391 -0.0075 0.12210291 10.31068231 155.8722272 -26.976396 0.79391257 -0.0075 -0.0394764 0 2.94213916 0 -0.12969153 2.63551192 1.40511613
+2.4967 120.4676937 736.4277232 -29.8798016 0.34006455 -0.0075 0.12210865 7.23848267 161.7171515 -27.75090299 0.79416727 -0.0075 -0.03941278 0 2.82161252 0 -0.0815712 2.81594016 1.28271003
+2.4983 120.8683196 731.5103765 -29.25444838 0.33837564 -0.0075 0.12210599 4.03529784 167.3165018 -28.35307886 0.79439272 -0.0075 -0.0393494 0 2.72467962 0 -0.04523274 2.99044627 1.14477683
+2.5 121.2435375 726.293838 -28.6511314 0.33665805 -0.0075 0.12209437 0.75633082 172.6907879 -28.78771139 0.79458873 -0.0075 -0.03928628 0 2.6539061 0 -0.01980145 3.1574675 0.99444594
diff --git a/Bindings/Python/tutorials/resources/Tutorial 5/subject01_walk1_grf.xml b/Bindings/Python/tutorials/resources/Tutorial 5/subject01_walk1_grf.xml
new file mode 100644
index 0000000000..1fad3903be
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 5/subject01_walk1_grf.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+ false
+
+ calcn_r
+
+ ground
+
+ ground
+
+ ground_force_v
+
+ ground_force_p
+
+ ground_torque_
+
+ Unassigned
+
+
+ false
+
+ calcn_l
+
+ ground
+
+ ground
+
+ 1_ground_force_v
+
+ 1_ground_force_p
+
+ 1_ground_torque_
+
+ Unassigned
+
+
+
+
+ subject01_walk1_grf.mot
+
+
diff --git a/Bindings/Python/tutorials/resources/Tutorial 6/gait10dof18musc_Strong_actuators.xml b/Bindings/Python/tutorials/resources/Tutorial 6/gait10dof18musc_Strong_actuators.xml
new file mode 100644
index 0000000000..aa726193a3
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 6/gait10dof18musc_Strong_actuators.xml
@@ -0,0 +1,157 @@
+
+
+
+
+
+
+
+ false
+
+ -Inf
+
+ Inf
+
+ pelvis
+
+ -0.034 0.0 0
+
+ false
+
+ 1 0 0
+
+ true
+
+ 100
+
+
+
+ false
+
+ -Inf
+
+ Inf
+
+ pelvis
+
+ -0.034 0.0 0
+
+ false
+
+ 0 1 0
+
+ true
+
+ 100
+
+
+
+ false
+
+ -Inf
+
+ Inf
+
+ pelvis
+
+ ground
+
+ true
+
+ 0 0 1
+
+ 100
+
+
+
+
+
+ false
+
+ -Inf
+
+ Inf
+
+ hip_flexion_r
+
+ 100
+
+
+
+ false
+
+ -Inf
+
+ Inf
+
+ knee_angle_r
+
+ 100
+
+
+
+ false
+
+ -Inf
+
+ Inf
+
+ ankle_angle_r
+
+ 100
+
+
+
+ false
+
+ -Inf
+
+ Inf
+
+ hip_flexion_l
+
+ 100
+
+
+
+ false
+
+ -Inf
+
+ Inf
+
+ knee_angle_l
+
+ 100
+
+
+
+ false
+
+ -Inf
+
+ Inf
+
+ ankle_angle_l
+
+ 100
+
+
+
+ false
+
+ -Inf
+
+ Inf
+
+ lumbar_extension
+
+ 100
+
+
+
+
+
diff --git a/Bindings/Python/tutorials/resources/Tutorial 6/gait10dof18musc_simbody.osim b/Bindings/Python/tutorials/resources/Tutorial 6/gait10dof18musc_simbody.osim
new file mode 100644
index 0000000000..720c2398b6
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 6/gait10dof18musc_simbody.osim
@@ -0,0 +1,3695 @@
+
+
+
+ A planar reduced gait model with 10 degrees of freedom and 18 muscles by Ajay Seth. Closely based on Delp S.L., Loan J.P., Hoy M.G., Zajac F.E., Topp E.L., Rosen J.M., Thelen D.G., Anderson F.C., Seth A. Notes: 3D, 23 DOF gait model created by D.G. Thelen, Univ. of Wisconsin-Madison, and Ajay Seth, Frank C. Anderson, and Scott L. Delp, Stanford University. Lower extremity joint defintions based on Delp et al. (1990). Low back joint and anthropometry based on Anderson and Pandy (1999, 2001). Planar knee model of Yamaguchi and Zajac (1989). Seth replaced tibia translation constraints with a CustomJoint for the knee and removed the patella to eliminate all kinematic constraints; insertions of the quadrucepts are handled with moving points in the tibia frame as defined by Delp 1990. Number of muscles was reduced by Anderson to improve simulation speed for demonstrations and is not intended to be used in research. License: Creative Commons (CCBY 3.0). You are free to distribute, remix, tweak, and build upon this work, even commercially, as long as you credit us for the original creation. http://creativecommons.org/licenses/by/3.0/ More Information: http://simtk-confluence.stanford.edu:8080/display/OpenSim/Gait+2392+and+2354+Models
+ Delp, S.L., Loan, J.P., Hoy, M.G., Zajac, F.E., Topp E.L., Rosen, J.M.: An interactive graphics-based model of the lower extremity to study orthopaedic surgical procedures, IEEE Transactions on Biomedical Engineering, vol. 37, pp. 757-767, 1990. Yamaguchi G.T., Zajac F.E.: A planar model of the knee joint to characterize the knee extensor mechanism." J . Biomech. vol. 22. pp. 1-10. 1989. Anderson F.C., Pandy M.G.: A dynamic optimization solution for vertical jumping in three dimensions. Computer Methods in Biomechanics and Biomedical Engineering 2:201-231, 1999. Anderson F.C., Pandy M.G.: Dynamic optimization of human walking. Journal of Biomechanical Engineering 123:381-390, 2001.
+ meters
+ N
+
+ 0 -9.80665 0
+
+
+
+
+ 0
+ 0 0 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 11.3751712907406
+ -0.0724378 0 0
+ 0.10423369488353
+ 0.0883147356454813
+ 0.058707499355607
+ 0
+ 0
+ 0
+
+
+
+
+ ground
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ translational
+
+ 0
+
+ 0
+
+ -5 5
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+ translational
+
+ 0.95
+
+ 0
+
+ -1 2
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ pelvis_tilt
+
+ 0 0 1
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+ pelvis_tx
+
+ 1 0 0
+
+
+
+ 1 0
+
+
+
+
+
+ pelvis_ty
+
+ 0 1 0
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+
+
+ 0.02
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+ sacrum.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ pelvis.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ l_pelvis.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.02458 1.02458 1.02458
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 8.98403823076288
+ 0 -0.195031 0
+ 0.170220714339411
+ 0.0446209639530494
+ 0.179500857839617
+ 0
+ 0
+ 0
+
+
+
+
+ pelvis
+
+ -0.072437806 -0.067724738 0.08555243
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 2.0943951
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+
+
+
+ femur_r.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.14724 1.14724 1.14724
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 3.58100089669871
+ 0 -0.184557 0
+ 0.0475693660337908
+ 0.00481356680103835
+ 0.048230051673149
+ 0
+ 0
+ 0
+
+
+
+
+ femur_r
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 0.17453293
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ knee_angle_r
+
+ 0 0 1
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+ 0
+
+
+
+
+
+
+ knee_angle_r
+
+ 1 0 0
+
+
+
+
+
+ -2.0944 -1.74533 -1.39626 -1.0472 -0.698132 -0.349066 -0.174533 0.197344 0.337395 0.490178 1.52146 2.0944
+ -0.0032 0.00179 0.00411 0.0041 0.00212 -0.001 -0.0031 -0.005227 -0.005435 -0.005574 -0.005435 -0.00525
+
+
+ 1.14724
+
+
+
+
+
+ knee_angle_r
+
+ 0 1 0
+
+
+
+
+
+ -2.0944 -1.22173 -0.523599 -0.349066 -0.174533 0.159149 2.0944
+ -0.4226 -0.4082 -0.399 -0.3976 -0.3966 -0.395264 -0.396
+
+
+ 1.14724
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+
+
+ 0
+
+
+ 1.14724
+
+
+
+
+
+
+
+
+
+
+
+
+ tibia_r.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ fibula.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 0.988523 0.988523 0.988523
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 0.0965880214888392
+ 0 0 0
+ 0.00119861044391961
+ 0.00119861044391961
+ 0.00119861044391961
+ 0
+ 0
+ 0
+
+
+
+
+ tibia_r
+
+ 0 -0.42506489 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+
+
+
+ talus.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.11398 1.11398 1.11398
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1.20735026861049
+ 0.102708 0.0308124 0
+ 0.00142646082990259
+ 0.00397371231187149
+ 0.004177492430429
+ 0
+ 0
+ 0
+
+
+
+
+ talus_r
+
+ -0.0543288046 -0.046731461 0.0088227216
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+
+ false
+
+
+
+
+
+
+
+
+ foot.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.02708 1.02708 1.02708
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 0.209209654544826
+ 0.035537 0.00616248 -0.0179739
+ 0.000101890059278756
+ 0.000203780118557512
+ 0.000101890059278756
+ 0
+ 0
+ 0
+
+
+
+
+ calcn_r
+
+ 0.183641904 -0.00205416 0.0011092464
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+
+ false
+
+
+
+
+
+
+
+
+ bofoot.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.02708 1.02708 1.02708
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 8.98403823076288
+ 0 -0.195031 0
+ 0.170220714339411
+ 0.0446209639530494
+ 0.179500857839617
+ 0
+ 0
+ 0
+
+
+
+
+ pelvis
+
+ -0.072437806 -0.067724738 -0.08555243
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 2.0943951
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+
+
+
+ femur_l.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.14724 1.14724 1.14724
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 3.58100089669871
+ 0 -0.184557 0
+ 0.0475693660337908
+ 0.00481356680103835
+ 0.048230051673149
+ 0
+ 0
+ 0
+
+
+
+
+ femur_l
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -2.0943951 0.17453293
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+ knee_angle_l
+
+ 0 0 1
+
+
+
+ 1 0
+
+
+
+
+
+
+
+ 0 1 0
+
+
+
+ 0
+
+
+
+
+
+
+
+ 1 0 0
+
+
+
+ 0
+
+
+
+
+
+
+ knee_angle_l
+
+ 1 0 0
+
+
+
+
+
+ -2.0944 -1.74533 -1.39626 -1.0472 -0.698132 -0.349066 -0.174533 0.197344 0.337395 0.490178 1.52146 2.0944
+ -0.0032 0.00179 0.00411 0.0041 0.00212 -0.001 -0.0031 -0.005227 -0.005435 -0.005574 -0.005435 -0.00525
+
+
+ 1.14724
+
+
+
+
+
+ knee_angle_l
+
+ 0 1 0
+
+
+
+
+
+ -2.0944 -1.22173 -0.523599 -0.349066 -0.174533 0.159149 2.0944
+ -0.4226 -0.4082 -0.399 -0.3976 -0.3966 -0.395264 -0.396
+
+
+ 1.14724
+
+
+
+
+
+
+
+ 0 0 1
+
+
+
+
+
+ 0
+
+
+ 1.14724
+
+
+
+
+
+
+
+
+
+
+
+
+ tibia_l.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ l_fibula.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 0.988523 0.988523 0.988523
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 0.0965880214888392
+ 0 0 0
+ 0.00119861044391961
+ 0.00119861044391961
+ 0.00119861044391961
+ 0
+ 0
+ 0
+
+
+
+
+ tibia_l
+
+ 0 -0.42506489 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.04719755 1.04719755
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+
+
+
+ l_talus.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.11398 1.11398 1.11398
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 1.20735026861049
+ 0.102708 0.0308124 0
+ 0.00142646082990259
+ 0.00397371231187149
+ 0.004177492430429
+ 0
+ 0
+ 0
+
+
+
+
+ talus_l
+
+ -0.0543288046 -0.046731461 -0.0088227216
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+
+ false
+
+
+
+
+
+
+
+
+ l_foot.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.02708 1.02708 1.02708
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 0.209209654544826
+ 0.035537 0.00616248 0.0179739
+ 0.000101890059278756
+ 0.000203780118557512
+ 0.000101890059278756
+ 0
+ 0
+ 0
+
+
+
+
+ calcn_l
+
+ 0.183641904 -0.00205416 -0.0011092464
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+
+ false
+
+
+
+
+
+
+
+
+ l_bofoot.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.02708 1.02708 1.02708
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+ 33.0684545650479
+ -0.0323916 0.34551 0
+ 1.66031441687787
+ 0.850707047779741
+ 1.61178301547574
+ 0
+ 0
+ 0
+
+
+
+
+ pelvis
+
+ -0.103175206 0.08350327 0
+
+ 0 0 0
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ rotational
+
+ 0
+
+ 0
+
+ -1.57079633 1.57079633
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+ false
+
+
+
+
+
+
+
+
+ hat_spine.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ hat_jaw.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ hat_skull.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+ hat_ribs.vtp
+
+ 1 1 1
+
+
+
+ 0 0 0 0 0 0
+
+ 1 1 1
+
+ 4
+
+ 1
+
+
+
+
+
+ 1.07972 1.07972 1.07972
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.129056 -0.105091 0.0711468
+ pelvis
+
+
+ -0.0297545 -0.0355868 0.0290922
+ tibia_r
+
+
+ -0.0231314 -0.0556538 0.0339063
+ tibia_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 2700
+
+ 0.123631055838816
+
+ 0.369758937646367
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.0057362 -0.242182 0.0268454
+ femur_r
+
+
+ -0.0297545 -0.0355868 0.0290922
+ tibia_r
+
+
+ -0.0231314 -0.0556538 0.0339063
+ tibia_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 804
+
+ 0.191444885177129
+
+ 0.0984889871720488
+
+ 0.40142573
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.134937 0.00891385 0.0473356
+ pelvis
+
+
+ -0.137704 -0.0623969 0.0832984
+ pelvis
+
+
+ -0.0516258 -0.0669988 0.0289104
+ femur_r
+
+
+ -0.0178969 -0.11656 0.0480694
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1944
+
+ 0.1708506011799
+
+ 0.0798173936678562
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0662903 0.0908802 0.0296104
+ pelvis
+
+
+ -0.024385 -0.0584011 0.0777656
+ pelvis
+
+
+ -0.0295079 -0.0824787 0.0836057
+ pelvis
+ -1.5708 0.785398
+ hip_flexion_r
+
+
+ 0.00183558 -0.0581651 0.00435951
+ femur_r
+
+
+ -0.0215681 -0.0684902 0.0119313
+ femur_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 2342
+
+ 0.105172518735367
+
+ 0.168276029976587
+
+ 0.13962634
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0302251 -0.0318644 0.0991793
+ pelvis
+
+
+ 0.0383178 -0.462338 0.00217976
+ femur_r
+ -2.61799 -1.45997
+ knee_angle_r
+
+
+ 0.0610488 0.0207432 0.00138393
+ tibia_r
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0155805 0.0179938 0.0275081 0.0296564 0.0307615 0.0365695 0.0422074 0.0450902 0.048391 0.0534299 0.0617576 0.0617669 0.0617762 0.0633083 0.066994 0.0733035 0.0573481
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0234116 0.0237613 0.0251141 0.0252795 0.0253146 0.0249184 0.0242373 0.0238447 0.0234197 0.0227644 0.020984 0.0209814 0.0209788 0.0205225 0.0191754 0.0159554 -0.0673774
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+ -2.0944 0.1745
+ 0.0014 0.0014
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1169
+
+ 0.130462375970093
+
+ 0.354766110094112
+
+ 0.08726646
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.03327 -0.220729 0.0355644
+ femur_r
+
+
+ 0.0384325 -0.239085 0.0326963
+ femur_r
+
+
+ 0.0393503 -0.462338 0.00630982
+ femur_r
+ -2.61799 -1.42
+ knee_angle_r
+
+
+ 0.0548266 0.025002 0.00177934
+ tibia_r
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0082733 0.0106866 0.0202042 0.022353 0.0234583 0.0292715 0.0349465 0.037871 0.0412569 0.0465287 0.0554632 0.0554735 0.0554837 0.0571717 0.061272 0.0684368 0.0648818
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.025599 0.0259487 0.0273124 0.0274796 0.0275151 0.0271363 0.0265737 0.0263073 0.0261187 0.0260129 0.0252923 0.0252911 0.0252898 0.0250526 0.0242191 0.0218288 -0.0685706
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+ -2.0944 2.0944
+ 0.0018 0.0018
+
+
+ 0.988523
+
+
+ knee_angle_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 5000
+
+ 0.124678696688354
+
+ 0.135165689867749
+
+ 0.05235988
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0217976 -0.450751 -0.0269601
+ femur_r
+
+
+ -0.0344172 -0.46142 -0.0295988
+ femur_r
+ -0.785398 0.174533
+ knee_angle_r
+
+
+ 0 0.0318395 -0.00544352
+ calcn_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 2500
+
+ 0.0901287504947768
+
+ 0.360515001979107
+
+ 0.29670597
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.00237246 -0.151541 0.00701851
+ tibia_r
+
+
+ 0 0.0318395 -0.00544352
+ calcn_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 5137
+
+ 0.050288844245806
+
+ 0.25144422122903
+
+ 0.43633231
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.0176946 -0.160536 0.011368
+ tibia_r
+
+
+ 0.0325224 -0.390565 -0.0174969
+ tibia_r
+
+
+ 0.119758 0.018282 -0.0313259
+ calcn_r
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 3000
+
+ 0.0979125746841543
+
+ 0.222801062801698
+
+ 0.08726646
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.129056 -0.105091 -0.0711468
+ pelvis
+
+
+ -0.0297545 -0.0355868 -0.0290922
+ tibia_l
+
+
+ -0.0231314 -0.0556538 -0.0339063
+ tibia_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 2700
+
+ 0.123631055838816
+
+ 0.369758937646367
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.0057362 -0.242182 -0.0268454
+ femur_l
+
+
+ -0.0297545 -0.0355868 -0.0290922
+ tibia_l
+
+
+ -0.0231314 -0.0556538 -0.0339063
+ tibia_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 804
+
+ 0.191444885177129
+
+ 0.0984889871720488
+
+ 0.40142573
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.134937 0.00891385 -0.0473356
+ pelvis
+
+
+ -0.137704 -0.0623969 -0.0832984
+ pelvis
+
+
+ -0.0516258 -0.0669988 -0.0289104
+ femur_l
+
+
+ -0.0178969 -0.11656 -0.0480694
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1944
+
+ 0.1708506011799
+
+ 0.0798173936678562
+
+ 0
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0662903 0.0908802 -0.0296104
+ pelvis
+
+
+ -0.024385 -0.0584011 -0.0777656
+ pelvis
+
+
+ -0.0295079 -0.0824787 -0.0836057
+ pelvis
+ -1.5708 0.785398
+ hip_flexion_l
+
+
+ 0.00183558 -0.0581651 -0.00435951
+ femur_l
+
+
+ -0.0215681 -0.0684902 -0.0119313
+ femur_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 2342
+
+ 0.105172518735367
+
+ 0.168276029976587
+
+ 0.13962634
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0302251 -0.0318644 -0.0991793
+ pelvis
+
+
+ 0.0383178 -0.462338 -0.00217976
+ femur_l
+ -2.61799 -1.45997
+ knee_angle_l
+
+
+ 0.0610488 0.0207432 -0.00138393
+ tibia_l
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0155805 0.0179938 0.0275081 0.0296564 0.0307615 0.0365695 0.0422074 0.0450902 0.048391 0.0534299 0.0617576 0.0617669 0.0617762 0.0633083 0.066994 0.0733035 0.0573481
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0234116 0.0237613 0.0251141 0.0252795 0.0253146 0.0249184 0.0242373 0.0238447 0.0234197 0.0227644 0.020984 0.0209814 0.0209788 0.0205225 0.0191754 0.0159554 -0.0673774
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+ -2.0944 0.1745
+ -0.0014 -0.0014
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 1169
+
+ 0.130462375970093
+
+ 0.354766110094112
+
+ 0.08726646
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.03327 -0.220729 -0.0355644
+ femur_l
+
+
+ 0.0384325 -0.239085 -0.0326963
+ femur_l
+
+
+ 0.0393503 -0.462338 -0.00630982
+ femur_l
+ -2.61799 -1.42
+ knee_angle_l
+
+
+ 0.0548266 0.025002 -0.00177934
+ tibia_l
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.0082733 0.0106866 0.0202042 0.022353 0.0234583 0.0292715 0.0349465 0.037871 0.0412569 0.0465287 0.0554632 0.0554735 0.0554837 0.0571717 0.061272 0.0684368 0.0648818
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+ -2.0944 -1.99997 -1.5708 -1.45752 -1.39626 -1.0472 -0.698132 -0.526391 -0.349066 -0.174533 0 0.00017453 0.00034907 0.0279253 0.0872665 0.174533 2.0944
+ 0.025599 0.0259487 0.0273124 0.0274796 0.0275151 0.0271363 0.0265737 0.0263073 0.0261187 0.0260129 0.0252923 0.0252911 0.0252898 0.0250526 0.0242191 0.0218288 -0.0685706
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+ -2.0944 2.0944
+ -0.0018 -0.0018
+
+
+ 0.988523
+
+
+ knee_angle_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 5000
+
+ 0.124678696688354
+
+ 0.135165689867749
+
+ 0.05235988
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.0217976 -0.450751 0.0269601
+ femur_l
+
+
+ -0.0344172 -0.46142 0.0295988
+ femur_l
+ -0.785398 0.174533
+ knee_angle_l
+
+
+ 0 0.0318395 0.00544352
+ calcn_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 2500
+
+ 0.0901287504947768
+
+ 0.360515001979107
+
+ 0.29670597
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ -0.00237246 -0.151541 -0.00701851
+ tibia_l
+
+
+ 0 0.0318395 0.00544352
+ calcn_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 5137
+
+ 0.050288844245806
+
+ 0.25144422122903
+
+ 0.43633231
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+ 0
+
+ 1
+
+
+
+
+
+
+ 0.0176946 -0.160536 -0.011368
+ tibia_l
+
+
+ 0.0325224 -0.390565 0.0174969
+ tibia_l
+
+
+ 0.119758 0.018282 0.0313259
+ calcn_l
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 1 1
+
+ 0 0 0 0 0 0
+
+ false
+
+ 4
+
+
+
+ 1
+
+ 3000
+
+ 0.0979125746841543
+
+ 0.222801062801698
+
+ 0.08726646
+
+ 10
+
+ 0.01
+
+ 0.04
+
+ 0.01
+
+
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.15
+
+ 1.4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ torso
+
+ 0.103606 0.312439 1.04318e-006
+
+ false
+
+
+
+ torso
+
+ -0.0248718 0.426445 0.168585
+
+ false
+
+
+
+ torso
+
+ -0.0220089 0.440789 -0.171971
+
+ false
+
+
+
+ torso
+
+ 0.0595133 0.699598 0.0105017
+
+ false
+
+
+
+ pelvis
+
+ 0.0228989 0.0358624 0.130116
+
+ false
+
+
+
+ pelvis
+
+ 0.0291329 0.0276591 -0.131894
+
+ false
+
+
+
+ pelvis
+
+ -0.172091 0.0400029 0.00619843
+
+ false
+
+
+
+ femur_r
+
+ 0.0507116 -0.220081 0.0883855
+
+ false
+
+
+
+ femur_r
+
+ 0.107902 -0.281747 -0.00690114
+
+ false
+
+
+
+ femur_r
+
+ 0.0395109 -0.340915 0.0789543
+
+ false
+
+
+
+ femur_r
+
+ -0.000586415 -0.426232 0.0605411
+
+ false
+
+
+
+ femur_r
+
+ -0.00243031 -0.442908 -0.0607482
+
+ false
+
+
+
+ tibia_r
+
+ -0.0233139 -0.0603613 0.070733
+
+ false
+
+
+
+ tibia_r
+
+ 0.0516752 -0.0954298 0.0163046
+
+ false
+
+
+
+ tibia_r
+
+ -0.00738164 -0.145526 0.0800029
+
+ false
+
+
+
+ tibia_r
+
+ -0.00490543 -0.430843 0.0549207
+
+ false
+
+
+
+ tibia_r
+
+ 0.00286259 -0.416327 -0.034325
+
+ false
+
+
+
+ calcn_r
+
+ -0.0204819 0.0172884 -0.00503735
+
+ false
+
+
+
+ calcn_r
+
+ 0.122708 0.0309658 -0.0403332
+
+ false
+
+
+
+ calcn_r
+
+ 0.117766 0.011129 0.0669726
+
+ false
+
+
+
+ calcn_r
+
+ 0.207693 -0.0114107 0.0760669
+
+ false
+
+
+
+ calcn_r
+
+ 0.209814 0.00169807 -0.0323684
+
+ false
+
+
+
+ calcn_r
+
+ 0.270734 0.00315005 -0.000612297
+
+ false
+
+
+
+ femur_l
+
+ 0.0358442 -0.20749 -0.0932573
+
+ false
+
+
+
+ femur_l
+
+ 0.114084 -0.249177 -0.0175704
+
+ false
+
+
+
+ femur_l
+
+ 0.025891 -0.316213 -0.0778532
+
+ false
+
+
+
+ femur_l
+
+ -0.000753513 -0.446142 -0.062296
+
+ false
+
+
+
+ femur_l
+
+ 0.000472512 -0.445432 0.0539506
+
+ false
+
+
+
+ tibia_l
+
+ 0.00398588 -0.071611 -0.0777086
+
+ false
+
+
+
+ tibia_l
+
+ 0.0481427 -0.121536 -0.0223037
+
+ false
+
+
+
+ tibia_l
+
+ -0.0132436 -0.114739 -0.0885072
+
+ false
+
+
+
+ tibia_l
+
+ 0.00383431 -0.428451 -0.0544338
+
+ false
+
+
+
+ tibia_l
+
+ 0.0078901 -0.405161 0.0369253
+
+ false
+
+
+
+ calcn_l
+
+ -0.0226192 0.0268643 0.00786188
+
+ false
+
+
+
+ calcn_l
+
+ 0.149706 0.0307045 0.0342606
+
+ false
+
+
+
+ calcn_l
+
+ 0.131321 0.0305726 -0.064363
+
+ false
+
+
+
+ calcn_l
+
+ 0.194745 0.00778416 -0.0748386
+
+ false
+
+
+
+ calcn_l
+
+ 0.211787 0.00788619 0.0273165
+
+ false
+
+
+
+ calcn_l
+
+ 0.260978 0.00906907 0.00201318
+
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Bindings/Python/tutorials/resources/Tutorial 6/subject01_walk_IK.mot b/Bindings/Python/tutorials/resources/Tutorial 6/subject01_walk_IK.mot
new file mode 100644
index 0000000000..6dbf4fee61
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 6/subject01_walk_IK.mot
@@ -0,0 +1,162 @@
+Coordinates
+version=1
+nRows=151
+nColumns=11
+inDegrees=yes
+
+Units are S.I. units (second, meters, Newtons, ...)
+Angles are in degrees.
+
+endheader
+time pelvis_tilt pelvis_tx pelvis_ty hip_flexion_r knee_angle_r ankle_angle_r hip_flexion_l knee_angle_l ankle_angle_l lumbar_extension
+ 0.00000000 10.32995988 0.61213494 1.01790250 -29.10815989 -5.12860733 12.81530059 11.53587638 -0.62251583 -4.61417904 -26.13945065
+ 0.01666667 10.07837430 0.61303298 1.01659780 -29.10828057 -6.95176330 12.82380037 12.22232385 -2.96171734 -5.65381238 -25.87606155
+ 0.03333333 9.78090558 0.61456262 1.01551839 -28.98988200 -8.88661482 12.52241192 12.77083247 -5.23610151 -6.55319866 -25.45129547
+ 0.05000000 9.47134096 0.61612871 1.01478810 -28.55138332 -11.40851839 12.08208254 13.37423991 -7.69512731 -7.14786344 -25.01635156
+ 0.06666667 9.55771980 0.61844579 1.01516096 -28.34079025 -14.27068674 11.07748074 13.49818948 -10.33838510 -7.10362855 -24.89436085
+ 0.08333333 9.47473463 0.62071925 1.01615418 -27.47430797 -17.89208038 9.77809067 13.42615397 -12.37257297 -6.91081600 -24.67909458
+ 0.10000000 9.63837718 0.62331989 1.01778759 -26.40662175 -22.24201951 7.97355002 13.08125460 -14.62302017 -6.04532255 -24.68013609
+ 0.11666667 9.78754006 0.62558693 1.02017897 -24.84259035 -27.15735000 5.44324025 12.37490319 -16.15459269 -5.16221752 -24.69896145
+ 0.13333333 9.58002046 0.62704771 1.02225863 -22.22199995 -32.89992812 2.50696607 11.82019094 -17.16583386 -4.20039524 -24.39238820
+ 0.15000000 9.28271220 0.62749723 1.02453142 -19.02080168 -38.96097466 -1.04561699 11.02117001 -17.39381306 -3.32387506 -24.03907915
+ 0.16666667 9.03614427 0.62820629 1.02699450 -15.80758310 -44.61994450 -4.52936097 9.93351291 -17.23168474 -2.31590657 -23.70940664
+ 0.18333333 8.56915870 0.62689554 1.02921058 -12.12924512 -50.07250438 -6.88760787 9.09789651 -16.82696406 -1.54636361 -23.31896373
+ 0.20000000 8.22811608 0.62584770 1.03152359 -8.73182185 -54.92373007 -7.57804640 8.09381316 -16.41766828 -0.70129940 -22.92240009
+ 0.21666667 7.82752111 0.62420254 1.03366789 -5.32356642 -59.27415163 -6.57440091 7.17726869 -15.97896869 0.03516065 -22.54013706
+ 0.23333333 7.66380363 0.62336835 1.03638462 -2.45566140 -62.71873112 -4.70976293 5.74426081 -15.11460988 0.62270913 -22.39156625
+ 0.25000000 7.51317957 0.62131079 1.03886993 0.47597988 -65.59097297 -2.76512339 4.32584928 -14.11678646 0.97498076 -22.27685942
+ 0.26666667 7.15582855 0.61925647 1.04053704 3.46523975 -67.65295899 -1.12643723 3.13530640 -13.11302915 1.37428983 -21.91965525
+ 0.28333333 7.07817757 0.61723530 1.04229956 6.06821203 -68.92705439 0.08857520 1.63882330 -12.09039683 1.76898876 -21.87198561
+ 0.30000000 6.91481984 0.61511477 1.04372461 8.56581038 -69.33645497 0.95217538 0.14701824 -10.84408512 1.99407251 -21.79843769
+ 0.31666667 6.66453984 0.61188818 1.04425214 11.15455992 -69.13176655 1.63916804 -1.08210670 -9.81648080 2.35060279 -21.66421066
+ 0.33333333 6.49222693 0.60967899 1.04502787 13.25758300 -67.93244176 2.19406859 -2.54155400 -8.59979988 2.55799099 -21.55841428
+ 0.35000000 6.29386377 0.60659312 1.04514197 15.25070827 -66.06975628 2.90777303 -3.83417232 -7.57403802 2.86738570 -21.56310673
+ 0.36666667 6.43745933 0.60366039 1.04552274 16.56088399 -63.37605424 3.38609294 -5.54993958 -6.45295202 3.08145367 -21.85022369
+ 0.38333333 6.49949829 0.60119138 1.04556015 17.58757471 -59.88042467 3.74238978 -7.16820482 -5.41143148 3.28610800 -22.08597790
+ 0.40000000 6.58095786 0.59819015 1.04501296 18.38312067 -55.79510487 3.96635165 -8.75215806 -4.42976520 3.56493733 -22.34315872
+ 0.41666667 6.46652973 0.59550731 1.04418727 19.01998820 -50.92524896 3.87904725 -10.12977187 -3.45609436 3.78569821 -22.42938557
+ 0.43333333 6.36371550 0.59307377 1.04295446 19.26927000 -45.33769427 3.63810437 -11.51351178 -2.51222729 4.07463572 -22.51253713
+ 0.45000000 6.60307252 0.59109424 1.04167310 18.79647133 -39.16005833 3.16397536 -13.29595341 -1.58375015 4.43465724 -22.87387260
+ 0.46666667 6.59862722 0.58883543 1.03963554 18.29288865 -32.40826419 2.40243342 -14.68765281 -0.90598004 4.96869569 -22.97300462
+ 0.48333333 6.64689829 0.58754269 1.03735273 17.39143591 -25.24095564 1.56306740 -16.39623382 0.16783980 5.24392892 -23.11679531
+ 0.50000000 6.69950590 0.58678518 1.03453752 16.31553311 -17.98091280 0.62232804 -18.06328625 1.04422475 5.67031070 -23.16104173
+ 0.51666667 6.81594107 0.58605753 1.03132771 15.20178490 -11.10001795 -0.26022754 -19.79107833 1.89839233 6.08343654 -23.33651574
+ 0.53333333 6.92207151 0.58576248 1.02760284 14.16265971 -4.97257343 -0.89166803 -21.45459446 2.59046581 6.62997902 -23.37482942
+ 0.55000000 7.23289204 0.58588300 1.02388802 12.99577274 0.19136737 -1.16537891 -23.33705492 3.24458688 7.11951343 -23.50361449
+ 0.56666667 7.38609489 0.58566147 1.02024959 12.52432071 3.42753821 -0.98341874 -24.79874589 3.42531241 7.69647906 -23.62737406
+ 0.58333333 7.38351950 0.58478270 1.01684775 12.62336278 4.91580746 -0.93010045 -25.75304183 3.02046419 8.31364836 -23.75327800
+ 0.60000000 7.56385645 0.58558439 1.01413900 12.74712189 4.66530736 -0.59922160 -26.91768732 2.47185132 8.64495169 -23.85996273
+ 0.61666667 7.60206288 0.58630729 1.01169234 13.49547118 2.55430991 -0.53203909 -27.62866004 1.36945346 8.99778339 -23.83039398
+ 0.63333333 7.91101467 0.58756407 1.01015121 14.05196077 -0.50938918 -0.79697992 -28.51834737 0.04002975 9.13841694 -24.08980473
+ 0.65000000 7.98192413 0.58924017 1.00874673 14.83310295 -3.96936571 -1.45247716 -28.98844263 -1.61724473 9.23443150 -24.02596268
+ 0.66666667 8.05035956 0.59131990 1.00828671 15.38393121 -7.17354166 -2.45478824 -29.17547732 -3.81846620 9.15752086 -23.94670611
+ 0.68333333 8.19415375 0.59286545 1.00860208 15.99935804 -10.84328281 -2.85840161 -28.97412745 -6.82145431 8.92073254 -24.05151878
+ 0.70000000 8.33052006 0.59592992 1.00979437 16.40898293 -14.41549250 -2.67867390 -28.44444898 -10.49838179 8.16873180 -24.08318113
+ 0.71666667 8.60942933 0.59891614 1.01163324 16.09478620 -16.99166475 -2.27464370 -27.60899881 -14.90234280 6.97970440 -24.17401187
+ 0.73333333 8.75063852 0.60112937 1.01341744 15.77468862 -19.20011023 -1.82033263 -25.71136454 -20.86384130 5.64950208 -24.22176396
+ 0.75000000 8.65344910 0.60345376 1.01526333 15.21442040 -20.55482738 -1.07114360 -23.12628124 -27.30158074 3.59325584 -23.90377129
+ 0.76666667 8.24256416 0.60495057 1.01709813 14.84451457 -21.57918509 0.03362696 -19.57662008 -34.37878518 0.85844068 -23.41818724
+ 0.78333333 7.66522653 0.60487675 1.01860491 14.45724327 -22.01913425 1.02350291 -15.57917750 -41.27511723 -2.09183930 -22.80313209
+ 0.80000000 7.09294606 0.60464524 1.02005897 14.07965920 -22.53201986 2.31830308 -11.44656361 -47.79277416 -4.86130462 -22.15354316
+ 0.81666667 6.69236642 0.60400157 1.02214718 13.15747144 -22.25903966 3.34000123 -7.83377739 -53.06901078 -6.47864888 -21.69589298
+ 0.83333333 6.41608403 0.60320263 1.02469740 12.05249845 -21.86329938 4.27044666 -4.49817127 -57.48798824 -6.73757849 -21.39523790
+ 0.85000000 6.17298548 0.60219647 1.02748488 10.68691487 -20.96534476 4.97963985 -1.30437678 -61.06777757 -6.00685812 -21.18417638
+ 0.86666667 6.22845089 0.60142293 1.03068303 8.99870464 -20.08510747 5.54905005 1.31691005 -63.68490857 -4.59148732 -21.15969275
+ 0.88333333 6.16284195 0.60016247 1.03375255 7.20349285 -18.60835610 5.92240919 3.98693960 -65.59910702 -3.07657178 -21.17538079
+ 0.90000000 6.24405340 0.59959414 1.03665036 5.24145715 -17.21661086 6.30026564 6.31911687 -66.80282613 -1.69460341 -21.18453677
+ 0.91666667 6.55308654 0.59833643 1.03924516 3.05360965 -15.72289880 6.54420714 8.23591609 -67.19610459 -0.41005660 -21.52957469
+ 0.93333333 6.71304846 0.59755738 1.04162197 0.90264765 -14.04430520 6.65726591 10.09193370 -66.69323496 0.48722102 -21.68196636
+ 0.95000000 6.78096454 0.59556114 1.04302016 -0.82151492 -12.86059496 6.95104508 11.98960803 -65.52156734 1.16658735 -21.87658165
+ 0.96666667 6.79366373 0.59386109 1.04399673 -2.51332895 -11.63125544 7.14424718 13.68153984 -63.52009138 1.64326559 -21.91472128
+ 0.98333333 7.15351854 0.59338908 1.04518497 -4.78350936 -10.19491807 7.23125495 14.58351614 -60.63575115 2.06536977 -22.23161472
+ 1.00000000 7.31457076 0.59133261 1.04578987 -6.43872862 -9.30354042 7.48027297 15.53752085 -57.03726248 2.23613978 -22.51656437
+ 1.01666667 7.42972655 0.58965185 1.04592261 -8.08600358 -8.36690503 7.73875807 16.18122363 -52.69972928 2.26158030 -22.72270418
+ 1.03333333 7.44353088 0.58774591 1.04558797 -9.65704218 -7.36815379 7.99414727 16.68040379 -47.75305289 1.87139507 -22.82994360
+ 1.05000000 7.55832665 0.58585411 1.04507044 -11.28454742 -6.49373422 8.27120537 16.74448416 -42.15063153 1.14739887 -23.03654587
+ 1.06666667 7.44345956 0.58381218 1.04375532 -12.61652542 -5.69915414 8.58991976 16.77078257 -36.01175885 0.10405029 -23.04534924
+ 1.08333333 7.44410686 0.58244381 1.04212241 -14.17912828 -4.78524089 8.89701377 16.34382442 -29.43098455 -1.12306917 -23.09935905
+ 1.10000000 7.27639740 0.58122202 1.03971760 -15.58589691 -3.89185053 9.25817791 16.06226930 -22.94711060 -2.48676285 -22.98663394
+ 1.11666667 7.21010113 0.58038788 1.03703134 -17.03141727 -3.23826406 9.75148378 15.46451182 -16.35558341 -3.76952025 -22.98021135
+ 1.13333333 7.31313472 0.57959278 1.03401625 -18.62832298 -2.67811839 10.29947495 14.77108775 -10.32015955 -4.79187087 -23.10236395
+ 1.15000000 7.65930087 0.57955189 1.03113728 -20.51386501 -2.05943343 10.75709630 13.67150269 -4.65684117 -5.55567441 -23.39396453
+ 1.16666667 7.85640187 0.57982969 1.02776335 -22.36700505 -1.24162422 11.01668618 12.99494870 -0.27121351 -5.81974647 -23.56443023
+ 1.18333333 8.35761649 0.57994538 1.02497223 -24.32202902 -0.87228546 11.35593508 12.19607562 2.83845575 -5.74870838 -24.04230595
+ 1.20000000 8.45711802 0.58063758 1.02184091 -25.84237338 -0.51867404 11.49545247 11.99825357 4.57565061 -5.45766344 -24.07894769
+ 1.21666667 8.87339209 0.58073433 1.01974656 -27.26712560 -0.97043198 11.73331620 11.89921908 4.45397349 -4.95118212 -24.51353115
+ 1.23333333 9.15237607 0.58122873 1.01774610 -28.35474326 -1.77580898 11.99976767 12.13084999 2.98129096 -4.52214496 -24.75739044
+ 1.25000000 9.43918718 0.58289361 1.01617989 -29.39009946 -2.86838489 11.92326676 12.36926467 0.59800259 -4.32599092 -24.88229729
+ 1.26666667 9.47258466 0.58495420 1.01474435 -29.76615962 -4.67805923 11.98281805 12.94020389 -2.39981107 -4.51540612 -24.72575599
+ 1.28333333 9.63361965 0.58641351 1.01403153 -29.91862422 -7.10309607 11.86348620 13.15373158 -5.08553708 -5.28977748 -24.77334930
+ 1.30000000 9.59171063 0.58871079 1.01365776 -29.81762695 -9.57957458 11.24813259 13.57128294 -7.94383988 -5.84750530 -24.54944179
+ 1.31666667 9.70369300 0.59156621 1.01432608 -29.28962923 -13.16420364 10.37352940 13.59389759 -10.51082088 -6.15811945 -24.42727784
+ 1.33333333 9.93008686 0.59454923 1.01570949 -28.41902496 -17.51408573 9.11528238 13.28679599 -12.81847472 -6.03292019 -24.37600258
+ 1.35000000 10.31323749 0.59742500 1.01774545 -27.13454175 -22.73452523 7.22134657 12.59592448 -14.81777705 -5.51067183 -24.41896974
+ 1.36666667 10.28465886 0.59991449 1.01977525 -24.72883230 -28.86367137 4.49012655 12.06441191 -16.29222238 -4.83321300 -24.26966463
+ 1.38333333 10.17106428 0.60181549 1.02175012 -21.71702066 -35.42761217 1.10056813 11.38138704 -17.30407032 -3.86680575 -23.92959054
+ 1.40000000 9.67493746 0.60278236 1.02342859 -17.92258061 -42.01413072 -2.71006396 11.00369016 -18.02371780 -2.84146996 -23.20485422
+ 1.41666667 9.30429929 0.60316661 1.02550159 -14.20248608 -48.02506259 -6.16059847 10.18350074 -18.08869523 -1.81454404 -22.69598211
+ 1.43333333 8.92781660 0.60232533 1.02749172 -10.42354332 -53.53929199 -8.16575854 9.33391966 -17.93740126 -0.82571612 -22.25199549
+ 1.45000000 8.71441403 0.60119440 1.02993777 -6.98379482 -58.27059174 -8.22970740 8.23931113 -17.61721889 0.07635075 -21.92790476
+ 1.46666667 8.47857277 0.60087221 1.03293562 -3.83966845 -62.02497081 -6.74893264 6.85418416 -16.74337668 0.71336596 -21.57641074
+ 1.48333333 8.47779100 0.59951735 1.03607586 -0.94475451 -65.12634811 -4.71464858 5.13704250 -15.55566547 1.11501154 -21.56788304
+ 1.50000000 8.14740374 0.59799048 1.03828185 2.18753249 -67.42557157 -2.64235389 3.92804540 -14.65788987 1.61314709 -21.19820336
+ 1.51666667 8.03653137 0.59655013 1.04050419 4.90182850 -68.81951222 -0.79394456 2.24558304 -13.26985927 1.94503306 -21.05133518
+ 1.53333333 7.92737746 0.59523103 1.04237740 7.45973868 -69.37091342 0.53330186 0.48796795 -11.72982639 2.19057372 -20.93067670
+ 1.55000000 7.59786051 0.59305069 1.04322123 10.18811371 -69.23649141 1.58727687 -0.79995358 -10.56265592 2.56668091 -20.57217615
+ 1.56666667 7.54743053 0.59154943 1.04418164 12.27208605 -68.14241147 2.36063452 -2.56066408 -9.12594517 2.84486173 -20.52436826
+ 1.58333333 7.47555349 0.58973444 1.04464651 14.17056136 -66.27371249 2.91907737 -4.12621017 -8.01721581 3.25210247 -20.43824141
+ 1.60000000 7.39093244 0.58853951 1.04473865 15.80335037 -63.63887691 3.21848905 -5.81112216 -6.69368933 3.56367262 -20.31358681
+ 1.61666667 7.20683977 0.58574106 1.04417086 17.36214569 -60.29535276 3.38687609 -7.13241214 -5.69310740 3.93778780 -20.23261825
+ 1.63333333 6.82386500 0.58376908 1.04274531 18.80316878 -56.26616890 3.54707726 -8.19549654 -4.89799250 4.48630276 -19.82228789
+ 1.65000000 6.59837393 0.58146662 1.04124594 19.69501401 -51.37853871 3.63290318 -9.43121695 -4.02901923 4.92382643 -19.62229081
+ 1.66666667 6.50701115 0.57992138 1.03966547 19.98252070 -45.70694061 3.47653854 -10.92814335 -2.99829344 5.23628947 -19.52616710
+ 1.68333333 6.28882382 0.57807748 1.03704967 20.21636155 -39.58845066 3.05989762 -12.07026093 -2.41090426 5.85954921 -19.31768305
+ 1.70000000 5.87519842 0.57717873 1.03399145 20.16622668 -32.72183448 2.56023120 -13.13915836 -1.68878747 6.46822823 -18.74507179
+ 1.71666667 6.13454625 0.57614462 1.03162506 19.12136435 -25.44090687 1.82088118 -14.91389305 -1.02943048 7.20035644 -18.98197159
+ 1.73333333 6.17803156 0.57574766 1.02834703 18.13813383 -18.12207096 1.07544386 -16.60756404 -0.17543356 8.05810737 -18.90226166
+ 1.75000000 6.41281071 0.57616445 1.02505437 16.82019401 -11.00660413 0.24661930 -18.56256476 0.69393201 8.85476121 -18.90635943
+ 1.76666667 6.64958118 0.57695590 1.02144330 15.60851220 -4.78550444 -0.43120038 -20.46912823 1.41847813 9.61091373 -18.89444903
+ 1.78333333 6.88623407 0.57816589 1.01773259 14.61316921 0.09784647 -0.58542443 -22.41063201 2.16103975 10.14578295 -18.89639316
+ 1.80000000 7.09130364 0.57908532 1.01427120 13.98680035 3.37305314 -0.54774553 -24.01114184 2.34085766 10.70503741 -18.88000215
+ 1.81666667 7.39405235 0.58004763 1.01146448 13.71796107 4.61315019 -0.34624833 -25.45857329 2.00755662 11.22928458 -18.99146453
+ 1.83333333 7.64252490 0.58099422 1.00908880 13.81342307 4.14650273 -0.27700540 -26.67115705 1.33753644 11.65022219 -19.05548490
+ 1.85000000 7.71968748 0.58276015 1.00719229 14.51368627 1.75624708 -0.13021415 -27.45768512 0.13364802 11.93749402 -18.89540586
+ 1.86666667 7.92377530 0.58438052 1.00596986 15.19141790 -1.50964438 -0.35513316 -28.12350973 -1.51545965 12.04501250 -18.93436889
+ 1.88333333 7.80846774 0.58745119 1.00482005 16.00204318 -4.85940434 -0.96733550 -28.47095521 -3.20438895 11.73785429 -18.45385194
+ 1.90000000 7.70310070 0.59078110 1.00418251 16.65208303 -8.08373832 -1.78327913 -28.50969372 -5.47637386 11.26084824 -17.99901650
+ 1.91666667 7.70992764 0.59399776 1.00459273 17.26429739 -11.64376066 -2.22844608 -28.23791130 -8.46372398 10.52285314 -17.74176723
+ 1.93333333 7.71125455 0.59813481 1.00560947 17.68865888 -15.10444450 -2.10214212 -27.52857926 -12.25962059 9.46156126 -17.33114776
+ 1.95000000 7.95556477 0.60205986 1.00741835 17.60177425 -18.08939270 -1.79233314 -26.47465000 -17.07734353 8.10855415 -17.30342733
+ 1.96666667 8.07825792 0.60503028 1.00909458 17.31470564 -20.40411044 -1.39782562 -24.47470316 -23.18871339 6.42377020 -17.17721368
+ 1.98333333 7.95706481 0.60758505 1.01065768 16.99329194 -22.14578170 -0.65952544 -21.58752935 -30.09195455 3.93776764 -16.85497549
+ 2.00000000 7.66724291 0.60910596 1.01202151 16.71387855 -23.60175467 0.48106009 -17.98303437 -37.37800791 0.63807720 -16.37682773
+ 2.01666667 7.04754610 0.60933682 1.01313242 16.51464402 -24.39330239 1.70548776 -13.67945142 -44.52342251 -3.07047770 -15.71149266
+ 2.03333333 6.51245237 0.60961516 1.01477138 15.97281191 -24.72046618 3.01318415 -9.63866214 -50.64944101 -6.34346239 -15.05124926
+ 2.05000000 6.08186991 0.60892699 1.01693571 15.10536152 -24.52486344 4.13689137 -5.77948100 -55.97767817 -8.15241493 -14.59865533
+ 2.06666667 6.07590984 0.60833101 1.01994763 13.73696890 -24.24727446 5.22952371 -2.46651550 -60.59162188 -8.24614756 -14.61298988
+ 2.08333333 5.91490149 0.60752557 1.02326245 12.23041676 -23.29317629 5.98569045 0.74046144 -64.15195652 -6.72927689 -14.40145377
+ 2.10000000 5.94978590 0.60692966 1.02694133 10.36387669 -22.05414324 6.55573276 3.53185246 -66.72556266 -4.60328580 -14.48161535
+ 2.11666667 6.28712371 0.60595421 1.03099950 7.88124410 -20.11084689 6.78460088 5.86547299 -68.32866260 -2.72304244 -14.82764389
+ 2.13333333 6.43091618 0.60505429 1.03433322 5.66835736 -18.31135984 7.05226718 8.22271900 -69.05362902 -1.20844613 -14.96941618
+ 2.15000000 6.57728115 0.60422652 1.03725026 3.43366148 -16.43759285 7.25749538 10.38280548 -68.91576001 -0.16646536 -15.05934649
+ 2.16666667 6.75691894 0.60274307 1.03960009 1.24444880 -14.62152741 7.35017384 12.35549531 -68.01974356 0.60178508 -15.25150958
+ 2.18333333 7.03909796 0.60173328 1.04168691 -0.97124509 -13.05007590 7.47449692 13.91533293 -66.27499958 1.19687275 -15.47602492
+ 2.20000000 6.96823204 0.59994569 1.04244291 -2.60244441 -11.77790819 7.79012553 15.75511683 -63.94728874 1.56650358 -15.36833866
+ 2.21666667 7.27893551 0.59901819 1.04340150 -4.83117669 -10.23868774 8.02331582 16.71730253 -60.65813563 1.85838594 -15.59736231
+ 2.23333333 7.36345797 0.59729198 1.04350488 -6.66441190 -8.91036547 8.29991726 17.66154827 -56.59267753 1.87831292 -15.69634013
+ 2.25000000 7.35836023 0.59595190 1.04294103 -8.33956763 -7.77036783 8.68817166 18.27983908 -51.68557047 1.72815143 -15.62423170
+ 2.26666667 7.48507978 0.59441128 1.04208497 -10.08068998 -6.78318613 9.15700410 18.45381516 -46.10101413 1.20501381 -15.73023114
+ 2.28333333 7.28502955 0.59266914 1.04028394 -11.30230516 -6.14957895 9.83869010 18.61198211 -39.80410891 0.36673551 -15.53935851
+ 2.30000000 7.31247690 0.59167657 1.03836990 -12.86283352 -5.40336326 10.40349746 18.17454022 -33.02408323 -0.70477394 -15.55019672
+ 2.31666667 7.24722286 0.59127961 1.03574713 -14.58396458 -4.17729449 10.84574742 17.54546793 -25.90188012 -1.89340776 -15.36026297
+ 2.33333333 7.12073618 0.59088476 1.03246258 -15.98662231 -3.55042665 11.57689551 16.90004395 -18.84198829 -3.12071833 -15.13668189
+ 2.35000000 7.24441168 0.59069395 1.02919137 -17.83871398 -2.53602735 12.05628409 15.81722517 -11.83831101 -4.30225074 -15.25023304
+ 2.36666667 7.53610600 0.59100877 1.02585839 -19.92991473 -1.47414545 12.45153921 14.62073161 -5.62913008 -5.17155750 -15.49342597
+ 2.38333333 7.80945002 0.59152347 1.02222820 -21.89822485 -0.67526166 12.90797155 13.57867247 -0.49234797 -5.65832481 -15.67020811
+ 2.40000000 8.16739361 0.59220560 1.01905288 -23.99892278 0.25041722 13.01617795 12.70279017 3.15402487 -5.72449386 -15.94585737
+ 2.41666667 8.62887749 0.59314311 1.01632930 -25.90010809 0.46489169 13.28920674 11.96586302 5.19336071 -5.41259579 -16.36885228
+ 2.43333333 8.80349658 0.59286913 1.01340907 -27.25450766 0.41641891 13.62379492 12.15646180 5.04338513 -4.85237740 -16.52503848
+ 2.45000000 8.98645784 0.59343009 1.01136691 -28.28116711 -0.40843825 13.98883886 12.53054961 3.42867534 -4.52191532 -16.67562999
+ 2.46666667 8.99753570 0.59378983 1.00963341 -28.78656362 -1.86401715 14.30901932 13.29204422 0.72706636 -4.77087160 -16.61597822
+ 2.48333333 8.80354277 0.59550463 1.00843329 -29.03454355 -3.41913628 14.25219865 14.10404630 -2.23233122 -5.52309128 -16.36638579
+ 2.50000000 8.55862145 0.59709697 1.00763662 -28.96474656 -5.45918822 14.03940171 14.92654906 -5.31333884 -6.40459563 -15.92098183
diff --git a/Bindings/Python/tutorials/resources/Tutorial 6/subject01_walk_grf.mot b/Bindings/Python/tutorials/resources/Tutorial 6/subject01_walk_grf.mot
new file mode 100644
index 0000000000..88884a1397
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 6/subject01_walk_grf.mot
@@ -0,0 +1,1508 @@
+subject01_walk1_grf.mot
+version=1
+nRows=1501
+nColumns=19
+inDegrees=yes
+endheader
+time ground_force_vx ground_force_vy ground_force_vz ground_force_px ground_force_py ground_force_pz 1_ground_force_vx 1_ground_force_vy 1_ground_force_vz 1_ground_force_px 1_ground_force_py 1_ground_force_pz ground_torque_x ground_torque_y ground_torque_z 1_ground_torque_x 1_ground_torque_y 1_ground_torque_z
+0 101.5119767 745.4661142 -47.44870554 0.37898285 -0.0075 0.12774652 17.26938127 20.49185173 -7.46930128 0.81009656 -0.0075 -0.05354309 0 13.53783445 0 1.5550397 -0.75741936 6.88030347
+0.0017 103.2043876 743.0973413 -46.86966548 0.37809513 -0.0075 0.12810137 18.91380164 28.77852948 -7.85752687 0.80990349 -0.0075 -0.05269428 0 12.55074067 0 1.31259011 -0.63901732 6.11982231
+0.0033 104.8844976 740.7135492 -46.28801443 0.37719739 -0.0075 0.12845514 20.50537239 37.07206456 -8.27207954 0.80968278 -0.0075 -0.05191409 0 11.57152058 0 1.08561207 -0.52055993 5.37458208
+0.005 106.5399203 738.2996154 -45.70129774 0.37628513 -0.0075 0.1288046 21.99210933 45.37815047 -8.73769237 0.80943495 -0.0075 -0.05120007 0 10.60988307 0 0.87630199 -0.40049053 4.6557842
+0.0067 108.1584244 735.8401938 -45.10743176 0.37535383 -0.0075 0.12914662 23.32367317 53.70013711 -9.27610776 0.80916055 -0.0075 -0.05054975 0 9.67494474 0 0.68661917 -0.2770961 3.97370615
+0.0083 109.7278112 733.3196148 -44.50479585 0.37439896 -0.0075 0.12947833 24.45219084 62.03819738 -9.90472197 0.8088601 -0.0075 -0.04996068 0 8.77488102 0 0.51813671 -0.14856526 3.33725661
+0.01 111.2361372 730.7218514 -43.8924258 0.37341601 -0.0075 0.12979706 25.33324305 70.38865867 -10.63559089 0.80853414 -0.0075 -0.04943038 0 7.91679523 0 0.37190981 -0.01302259 2.75372328
+0.0117 112.6717298 728.0304566 -43.27004355 0.37240058 -0.0075 0.1301005 25.92666846 78.74372232 -11.47467876 0.80818319 -0.0075 -0.04895641 0 7.10650506 0 0.2483853 0.13135323 2.22847799
+0.0133 114.0235159 725.2286088 -42.63818276 0.37134841 -0.0075 0.13038667 26.1974759 87.09152413 -12.42151994 0.80780779 -0.0075 -0.0485363 0 6.34849537 0 0.14736721 0.2863007 1.76485619
+0.015 115.2810839 722.2991605 -41.99815198 0.37025539 -0.0075 0.13065393 26.11679042 95.41657273 -13.46923254 0.80740847 -0.0075 -0.04816759 0 5.64587751 0 0.06801119 0.4533702 1.36415562
+0.0167 116.4349634 719.2247373 -41.35202696 0.36911768 -0.0075 0.13090103 25.66265629 103.7005563 -14.60484055 0.80698576 -0.0075 -0.04784782 0 5.00048053 0 0.00884879 0.63382029 1.02566849
+0.0183 117.4769986 715.9878959 -40.70265004 0.36793175 -0.0075 0.13112703 24.82074998 111.9233633 -15.8101088 0.80654019 -0.0075 -0.04757452 0 4.41301932 0 -0.03211197 0.82856257 0.74688025
+0.02 118.4004426 712.5713196 -40.05342369 0.36669441 -0.0075 0.13133136 23.58504053 120.0644971 -17.06244486 0.80607229 -0.0075 -0.04734524 0 3.88316758 0 -0.05729425 1.03805063 0.52370112
+0.0217 119.2004186 708.9580586 -39.40826979 0.36540298 -0.0075 0.13151371 21.95816977 128.1043901 -18.33625392 0.8055826 -0.0075 -0.04715751 0 3.40988562 0 -0.06940774 1.26222582 0.35079184
+0.0233 119.8740371 705.1317564 -38.77134816 0.36405532 -0.0075 0.13167405 19.95163194 136.0259714 -19.60428234 0.80507164 -0.0075 -0.04700888 0 2.99156146 0 -0.07130665 1.50043635 0.22186763
+0.025 120.4206584 701.0770011 -38.14691574 0.36264997 -0.0075 0.13181255 17.58575017 143.816028 -20.8391193 0.80453995 -0.0075 -0.04689688 0 2.62624675 0 -0.06583298 1.75147647 0.13012926
+0.0267 120.8419085 696.779595 -37.53908323 0.36118624 -0.0075 0.1319296 14.88930284 151.4664015 -22.01460166 0.80398806 -0.0075 -0.04681905 0 2.31183868 0 -0.05568962 2.01356166 0.06861071
+0.0283 121.1417972 692.2268569 -36.95159014 0.35966428 -0.0075 0.13202572 11.89884612 158.9750362 -23.10713848 0.8034165 -0.0075 -0.04677294 0 2.04625584 0 -0.04329947 2.28439645 0.03049003
+0.03 121.3265947 687.4079212 -36.38756277 0.3580852 -0.0075 0.13210156 8.6577713 166.3466222 -24.09684498 0.8028258 -0.0075 -0.04675607 0 1.82749455 0 -0.03068156 2.56126297 0.009462
+0.0317 121.4046371 682.3139953 -35.84928096 0.35645113 -0.0075 0.1321579 5.21502526 173.5929094 -24.96826285 0.80221649 -0.0075 -0.04676599 0 1.65363747 0 -0.01940243 2.84109148 -0.00006482
+0.0333 121.3861962 676.9385661 -35.33807031 0.35476531 -0.0075 0.13219558 1.62355771 180.7325823 -25.71102429 0.80158911 -0.0075 -0.04680024 0 1.52297431 0 -0.01048547 3.12061428 -0.00274938
+0.035 121.2828697 671.2775815 -34.85401463 0.35303203 -0.0075 0.13221556 -2.06129386 187.7908853 -26.31987177 0.80094418 -0.0075 -0.04685635 0 1.43377568 0 -0.0044114 3.39645382 -0.00217642
+0.0367 121.1073152 665.3295932 -34.39599385 0.35125675 -0.0075 0.13221889 -5.78372469 194.7986914 -26.7945546 0.80028224 -0.0075 -0.04693188 0 1.3843048 0 -0.00111147 3.66531756 -0.00080799
+0.0383 120.8725731 659.0957364 -33.96153443 0.34944594 -0.0075 0.13220671 -9.48933956 201.7914386 -27.13930718 0.79960382 -0.0075 -0.04702434 0 1.37263996 0 0 3.92407108 0
+0.04 120.5915154 652.5797867 -33.54687629 0.34760705 -0.0075 0.13218029 -13.12695862 208.8077061 -27.36209452 0.79890945 -0.0075 -0.04713129 0 1.39654329 0 0 4.16992248 0
+0.0417 120.2762058 645.7880222 -33.14702749 0.3457484 -0.0075 0.132141 -16.65039886 215.8876804 -27.47356177 0.7981993 -0.0075 -0.0472519 0 1.45329194 0 0 4.4004967 0
+0.0433 119.9374281 638.7290585 -32.75591822 0.34387904 -0.0075 0.13209035 -20.02007583 223.0715128 -27.48595994 0.79748087 -0.0075 -0.04739165 0 1.53960198 0 0 4.61355384 0
+0.045 119.5840646 631.4136329 -32.36661484 0.34200856 -0.0075 0.13202997 -23.20416664 230.397644 -27.41197655 0.79676384 -0.0075 -0.04755609 0 1.65156753 0 0 4.80724234 0
+0.0467 119.2225827 623.8543232 -31.97152665 0.34014682 -0.0075 0.13196166 -26.17953146 237.9013496 -27.2635033 0.79605866 -0.0075 -0.04775032 0 1.78456257 0 0 4.98019155 0
+0.0483 118.8569379 616.065207 -31.56279694 0.33830387 -0.0075 0.13188729 -28.93234304 245.613221 -27.05081337 0.79537562 -0.0075 -0.04797884 0 1.93338362 0 0 5.13158439 0
+0.05 118.4880858 608.0615151 -31.13254476 0.33648959 -0.0075 0.13180892 -31.45808972 253.5580576 -26.78158877 0.79472393 -0.0075 -0.04824501 0 2.0922217 0 0 5.2611859 0
+0.0517 118.1141093 599.8592618 -30.67328064 0.33471357 -0.0075 0.13172865 -33.76123717 261.7538934 -26.46046838 0.79411127 -0.0075 -0.04855107 0 2.2548993 0 0 5.36938361 0
+0.0533 117.7302728 591.4747805 -30.17818809 0.33298473 -0.0075 0.13164865 -35.85456617 270.2113788 -26.08876549 0.79354298 -0.0075 -0.04889788 0 2.41502139 0 0 5.45710946 0
+0.055 117.3293886 582.9243852 -29.64149829 0.33131132 -0.0075 0.13157109 -37.75805017 278.9334371 -25.66448005 0.79302188 -0.0075 -0.04928495 0 2.56624731 0 0 5.52583786 0
+0.0567 116.9021455 574.22394 -29.05872092 0.32970057 -0.0075 0.13149812 -39.49735284 287.9152229 -25.18263325 0.79254833 -0.0075 -0.04971046 0 2.70253717 0 0 5.57745762 0
+0.0583 116.4377616 565.3885097 -28.4268948 0.32815859 -0.0075 0.13143175 -41.10231285 297.1444347 -24.63586158 0.79211993 -0.0075 -0.05017146 0 2.81845234 0 0 5.61422878 0
+0.06 115.9246638 556.432046 -27.74476446 0.32669028 -0.0075 0.13137383 -42.60508828 306.6017423 -24.01520069 0.79173184 -0.0075 -0.05066393 0 2.90939629 0 0 5.63867694 0
+0.0617 115.3510882 547.3671056 -27.01282003 0.3252991 -0.0075 0.13132595 -44.03828766 316.2616261 -23.3109425 0.79137709 -0.0075 -0.05118305 0 2.971807 0 0 5.65348363 0
+0.0633 114.7059941 538.2046226 -26.23334123 0.32398711 -0.0075 0.13128937 -45.43323553 326.0932175 -22.51371795 0.7910469 -0.0075 -0.05172343 0 3.00344068 0 0 5.66140321 0
+0.065 113.9796497 528.9537294 -25.41027834 0.32275478 -0.0075 0.13126493 -46.81827725 336.0613801 -21.61533071 0.7907311 -0.0075 -0.05227921 0 3.00339213 0 0 5.66514844 0
+0.0667 113.1643827 519.6217053 -24.54910313 0.32160106 -0.0075 0.13125302 -48.21737526 346.1278807 -20.60966074 0.79041865 -0.0075 -0.05284444 0 2.97218668 0 0 5.66730827 0
+0.0683 112.2550525 510.2138929 -23.65655233 0.32052326 -0.0075 0.13125347 -49.6490579 356.2525675 -19.4933355 0.79009793 -0.0075 -0.05341321 0 2.91176213 0 0 5.67022206 0
+0.07 111.2495062 500.7338023 -22.74036925 0.3195171 -0.0075 0.13126556 -51.12564326 366.3945872 -18.2661789 0.78975725 -0.0075 -0.05397987 0 2.82536527 0 0 5.67592949 0
+0.0717 110.1487108 491.1832293 -21.80894742 0.31857669 -0.0075 0.13128796 -52.65289882 376.5135259 -16.93143326 0.78938532 -0.0075 -0.05453919 0 2.7173537 0 0 5.68612352 0
+0.0733 108.9567735 481.562448 -20.8709671 0.31769457 -0.0075 0.13131878 -54.2301359 386.5705187 -15.49569313 0.78897156 -0.0075 -0.05508654 0 2.59296597 0 0 5.70208986 0
+0.075 107.6808324 471.870472 -19.93506453 0.31686177 -0.0075 0.13135557 -55.85059646 396.5291796 -13.96860474 0.78850653 -0.0075 -0.05561798 0 2.45808173 0 0 5.72467445 0
+0.0767 106.3305108 462.105366 -19.00941748 0.31606787 -0.0075 0.13139537 -57.50229684 406.3565341 -12.36228854 0.78798227 -0.0075 -0.05613034 0 2.31882077 0 0 5.75427327 0
+0.0783 104.9175923 452.2646206 -18.10153206 0.31530119 -0.0075 0.13143475 -59.16910597 416.0236735 -10.69069818 0.78739252 -0.0075 -0.05662134 0 2.18131528 0 0 5.79083912 0
+0.08 103.4551307 442.345538 -17.21790013 0.31454891 -0.0075 0.13147003 -60.83208789 425.5063754 -8.9687203 0.78673295 -0.0075 -0.05708965 0 2.05131856 0 0 5.83387022 0
+0.0817 101.9567642 432.3456626 -16.3638485 0.31379727 -0.0075 0.1314973 -62.4708838 434.7854929 -7.21128278 0.7860013 -0.0075 -0.0575348 0 1.93395749 0 0 5.88250277 0
+0.0833 100.4358547 422.2631696 -15.54340078 0.31303189 -0.0075 0.13151265 -64.0652869 443.8471754 -5.43249851 0.78519746 -0.0075 -0.05795723 0 1.83345049 0 0 5.93556752 0
+0.085 98.90468803 412.0972873 -14.75921499 0.31223813 -0.0075 0.13151228 -65.59662293 452.6829615 -3.64482629 0.78432342 -0.0075 -0.05835819 0 1.75289997 0 0 5.99165964 0
+0.0867 97.37366873 401.8486136 -14.01266192 0.31140142 -0.0075 0.13149268 -67.04900042 461.2896375 -1.85845634 0.78338334 -0.0075 -0.05873967 0 1.69420772 0 0 6.04926429 0
+0.0883 95.8506451 391.5194254 -13.30381442 0.31050769 -0.0075 0.13145084 -68.41040456 469.6690788 -0.08078802 0.78238324 -0.0075 -0.05910426 0 1.65791849 0 0 6.10681021 0
+0.09 94.34058199 381.1139092 -12.63170796 0.30954396 -0.0075 0.1313843 -69.6735029 477.8277618 1.68375553 0.78133091 -0.0075 -0.05945503 0 1.64333892 0 0 6.16280319 0
+0.0917 92.84500908 370.6382811 -11.9944526 0.30849873 -0.0075 0.13129144 -70.83605966 485.77635 3.43385961 0.78023551 -0.0075 -0.05979538 0 1.64852594 0 0 6.21588495 0
+0.0933 91.36213591 360.1008732 -11.38952237 0.30736257 -0.0075 0.13117144 -71.90099871 493.5290391 5.17104119 0.7791073 -0.0075 -0.06012882 0 1.67048298 0 0 6.26495198 0
+0.095 89.88685667 349.5120626 -10.81391637 0.30612861 -0.0075 0.13102452 -72.87625974 501.1028746 6.89927345 0.77795718 -0.0075 -0.06045889 0 1.7052467 0 0 6.30920772 0
+0.0967 88.41115956 338.8841384 -10.26446034 0.30479301 -0.0075 0.13085185 -73.77411869 508.5170123 8.62447357 0.77679629 -0.0075 -0.06078889 0 1.74817595 0 0 6.34825298 0
+0.0983 86.92459718 328.231066 -9.73800924 0.30335527 -0.0075 0.13065562 -74.61036928 515.791889 10.35371181 0.77563563 -0.0075 -0.06112183 0 1.79420652 0 0 6.38210142 0
+0.1 85.41500006 317.5681901 -9.23160441 0.30181867 -0.0075 0.130439 -75.40328577 522.9485342 12.09455445 0.77448553 -0.0075 -0.06146023 0 1.83806222 0 0 6.41115585 0
+0.1017 83.86935836 306.9118594 -8.74273373 0.30019031 -0.0075 0.1302059 -76.17239736 530.0076644 13.85419569 0.77335541 -0.0075 -0.06180606 0 1.87462546 0 0 6.43622297 0
+0.1033 82.27446692 296.2790299 -8.2692967 0.29848108 -0.0075 0.12996107 -76.93719101 536.989104 15.63883618 0.77225325 -0.0075 -0.06216068 0 1.89906183 0 0 6.45842437 0
+0.105 80.61805178 285.6868541 -7.8097981 0.29670567 -0.0075 0.1297097 -77.71587682 543.911001 17.45288946 0.77118549 -0.0075 -0.06252479 0 1.90719171 0 0 6.47914724 0
+0.1067 78.88937189 275.1522329 -7.36329429 0.29488197 -0.0075 0.1294573 -78.52425639 550.7893227 19.29859061 0.7701567 -0.0075 -0.06289845 0 1.89559764 0 0 6.49994577 0
+0.1083 77.08001191 264.6914863 -6.92950884 0.2930306 -0.0075 0.12920938 -79.37470717 557.6373115 21.1755835 0.76916958 -0.0075 -0.06328111 0 1.86186797 0 0 6.52248101 0
+0.11 75.18438473 254.3199643 -6.50867271 0.29117408 -0.0075 0.12897117 -80.27545573 564.4651344 23.08069606 0.7682249 -0.0075 -0.06367168 0 1.80467433 0 0 6.54835048 0
+0.1117 73.20014262 244.051786 -6.10151627 0.28933592 -0.0075 0.12874742 -81.23011893 571.2796911 25.00801899 0.76732153 -0.0075 -0.06406863 0 1.7238372 0 0 6.57901305 0
+0.1133 71.12834481 233.8996638 -5.70925549 0.28753943 -0.0075 0.12854198 -82.23753654 578.0843668 26.94894816 0.76645664 -0.0075 -0.06447009 0 1.62038555 0 0 6.61571352 0
+0.115 68.97330351 223.8748221 -5.33340889 0.28580665 -0.0075 0.12835774 -83.2918597 584.8791309 28.89261814 0.76562587 -0.0075 -0.06487391 0 1.49644048 0 0 6.65932413 0
+0.1167 66.7424825 213.9869803 -4.97585644 0.28415711 -0.0075 0.12819622 -84.38300241 591.6604947 30.82617822 0.76482364 -0.0075 -0.06527788 0 1.35526567 0 0 6.71035671 0
+0.1183 64.44583893 204.2444531 -4.63864016 0.28260637 -0.0075 0.12805762 -85.49724047 598.421832 32.73549569 0.76404332 -0.0075 -0.0656797 0 1.2009273 0 0 6.76890649 0
+0.12 62.09544762 194.6543362 -4.32402579 0.28262136 -0.0075 0.12795143 -86.6180845 605.1535217 34.60557473 0.76327771 -0.0075 -0.06607713 0.00212546 1.03130008 -0.28344846 0 6.83467916 0
+0.1217 59.70464227 185.2227025 -4.03430981 0.28266621 -0.0075 0.12784521 -87.72727187 611.8433662 36.42118306 0.76251927 -0.0075 -0.06646807 0.00058736 0.86102721 -0.52379341 0 6.90697869 0
+0.1233 57.28734466 175.9549603 -3.77188805 0.28274072 -0.0075 0.12773896 -88.80578352 618.4769931 38.16746101 0.76176038 -0.0075 -0.06685057 -0.00330068 0.69510832 -0.72439062 0 6.98481916 0
+0.125 54.85730172 166.8561345 -3.53917235 0.28284472 -0.0075 0.12763269 -89.83495023 625.038255 39.83038725 0.76099371 -0.0075 -0.06722288 -0.0081769 0.5385307 -0.88968947 0 7.06696698 0
+0.1267 52.42733708 157.931232 -3.33847626 0.28297802 -0.0075 0.1275264 -90.79741868 631.5097943 41.39728076 0.76021232 -0.0075 -0.06758346 -0.0127208 0.39604116 -1.02492091 0 7.15198286 0
+0.1283 50.0088355 149.1855502 -3.17207663 0.28314043 -0.0075 0.12742009 -91.67802004 637.8734099 42.8570526 0.75940997 -0.0075 -0.06793099 -0.01570415 0.2720298 -1.13577935 0 7.23844495 0
+0.13 47.61112992 140.6249927 -3.04197536 0.28333177 -0.0075 0.12731376 -92.46449213 644.1106747 44.2006235 0.75858121 -0.0075 -0.06826435 -0.01610743 0.17018128 -1.22808253 0 7.3249793 0
+0.1317 45.24141603 132.2562759 -2.94996915 0.28355185 -0.0075 0.12720742 -93.14801908 650.2032135 45.42088431 0.75772153 -0.0075 -0.06858263 -0.01310934 0.09353782 -1.3073843 0 7.4103932 0
+0.1333 42.90433538 124.087082 -2.89738407 0.28380049 -0.0075 0.12710106 -93.72338498 656.1333029 46.51296977 0.75682742 -0.0075 -0.06888506 -0.00618774 0.04420326 -1.3787277 0 7.49373322 0
+0.135 40.60232083 116.1261725 -2.88507622 0.28407751 -0.0075 0.1269947 -94.1890993 661.8842062 47.47412631 0.75589645 -0.0075 -0.06917105 0.00491094 0.02335953 -1.44630807 0 7.57438685 0
+0.1367 38.33570327 108.3833209 -2.91319425 0.2843827 -0.0075 0.12688832 -94.54728201 667.4405479 48.30362754 0.75492718 -0.0075 -0.06944018 0.02011834 0.0311741 -1.51328615 0 7.6520445 0
+0.1383 36.10311654 100.8692695 -2.9811046 0.2847159 -0.0075 0.12678194 -94.80316345 672.7886595 49.00271436 0.7539192 -0.0075 -0.06969215 0.03909238 0.06681284 -1.58162366 0 7.72674046 0
+0.14 33.9020042 93.59552711 -3.08724584 0.28507692 -0.0075 0.12667556 -94.964632 677.9167343 49.5743159 0.75287309 -0.0075 -0.06992685 0.0612207 0.12846283 -1.65205616 0 7.79884091 0
+0.1417 31.72923726 86.57412231 -3.22892801 0.28546556 -0.0075 0.12656917 -95.04162218 682.815187 50.02296974 0.75179023 -0.0075 -0.07014431 0.08564977 0.21331044 -1.72403981 0 7.8689543 0
+0.1433 29.58182468 79.81726132 -3.40240289 0.28588165 -0.0075 0.12646278 -95.04530987 687.4765293 50.35452115 0.75067288 -0.0075 -0.07034472 0.11137223 0.31779019 -1.79587566 0 7.93792476 0
+0.145 27.45728888 73.33696882 -3.60263357 0.286325 -0.0075 0.1263564 -94.98733619 691.8956314 50.57603994 0.74952401 -0.0075 -0.07052845 0.13724555 0.43754716 -1.86490428 0 8.00666629 0
+0.1467 25.35455162 67.1447017 -3.8234347 0.28679542 -0.0075 0.12625002 -94.87915718 696.0695921 50.69545591 0.74834714 -0.0075 -0.07069607 0.16208007 0.5677481 -1.92762432 0 8.07609432 0
+0.1483 23.27414985 61.25089518 -4.05746636 0.28729273 -0.0075 0.12614365 -94.73131153 699.9977051 50.72155829 0.74714624 -0.0075 -0.07084831 0.18467639 0.70313808 -1.98006393 0 8.14698491 0
+0.15 21.21869988 55.66466762 -4.29642244 0.28781675 -0.0075 0.12603728 -94.55287459 703.6813063 50.66372296 0.74592553 -0.0075 -0.07098613 0.20388461 0.83832254 -2.01798212 0 8.21990636 0
+0.1517 19.19308779 50.39336193 -4.53118206 0.28836728 -0.0075 0.12593093 -94.35106783 707.1235186 50.53171221 0.74468941 -0.0075 -0.07111068 0.21865287 0.96795456 -2.03720474 0 8.29510765 0
+0.1533 17.20448419 45.44230567 -4.75211543 0.28894414 -0.0075 0.12582459 -94.13091152 710.3290362 50.33565093 0.74344223 -0.0075 -0.07122323 0.22808285 1.08689625 -2.03387819 0 8.37249201 0
+0.155 15.26221019 40.81453228 -4.94946544 0.28954715 -0.0075 0.12571827 -93.89511148 713.303705 50.08573317 0.74218825 -0.0075 -0.07132522 0.23147592 1.19049473 -2.00477344 0 8.4516077 0
+0.1567 13.37739285 36.51058185 -5.11357698 0.29017612 -0.0075 0.12561197 -93.64404088 716.0543651 49.79214968 0.7409314 -0.0075 -0.07141815 0.22833513 1.27466955 -1.94746552 0 8.53153892 0
+0.1583 11.56271535 32.52841599 -5.23547991 0.29083087 -0.0075 0.12550568 -93.37595765 718.5883087 49.46482266 0.73967519 -0.0075 -0.07150361 0.21842282 1.33621717 -1.86049587 0 8.61102475 0
+0.16 9.83158888 28.86339598 -5.30716986 0.29151121 -0.0075 0.12539942 -93.08728639 720.9131035 49.11335212 0.73842256 -0.0075 -0.07158317 0.20173753 1.37276939 -1.74355282 0 8.68846844 0
+0.1617 8.19781211 25.50836549 -5.32208978 0.29221695 -0.0075 0.12529319 -92.77298622 723.0361698 48.74673704 0.73717582 -0.0075 -0.07165838 0.17853366 1.38304018 -1.5974243 0 8.76202466 0
+0.1633 6.67470967 22.45373947 -5.27540626 0.29294791 -0.0075 0.12518698 -92.42709386 724.9645348 48.3732939 0.73593659 -0.0075 -0.07173068 0.14929698 1.36679201 -1.42407016 0 8.82969999 0
+0.165 5.27457741 19.68774747 -5.16435635 0.2937039 -0.0075 0.1250808 -92.04315215 726.7045812 48.00052868 0.73470573 -0.0075 -0.07180134 0.11475457 1.32482653 -1.22650781 0 8.88953221 0
+0.1667 4.00805885 17.19665682 -4.98843424 0.29448475 -0.0075 0.12497465 -91.61481898 728.2618443 47.63488247 0.73348348 -0.0075 -0.07187152 0.07583927 1.25898872 -1.00869461 0 8.93968256 0
+0.1683 2.88347788 14.96508691 -4.74946638 0.29529026 -0.0075 0.12486853 -91.13630233 729.6410077 47.28179778 0.73226942 -0.0075 -0.07194212 0.0336649 1.17204365 -0.77538175 0 8.97850296 0
+0.17 1.90650082 12.9763539 -4.45172267 0.29612024 -0.0075 0.12476245 -90.60286139 730.8457591 46.94554337 0.73106262 -0.0075 -0.07201387 -0.010479 1.06761105 -0.53192014 0 9.00475428 0
+0.1717 1.07968301 11.21285648 -4.10159326 0.29697452 -0.0075 0.12465641 -90.01121115 731.8790477 46.62933291 0.72986172 -0.0075 -0.07208733 -0.05525139 0.94984695 -0.28402616 0 9.01758401 0
+0.1733 0.40247214 9.65643223 -3.70758239 0.2978529 -0.0075 0.12455041 -89.35983317 732.7429917 46.33527484 0.72866515 -0.0075 -0.07216285 -0.0992078 0.82345842 -0.03751461 0 9.01666995 0
+0.175 -0.1291005 8.28871531 -3.27976959 0.2987552 -0.0075 0.12444445 -88.64911866 733.4392178 46.06456786 0.72747129 -0.0075 -0.07224067 -0.14092356 0.69328662 0.20183613 0 9.0022224 0
+0.1767 -0.52206489 7.0915362 -2.82947803 0.29968125 -0.0075 0.12433853 -87.88148115 733.9690537 45.8176001 0.72627867 -0.0075 -0.07232096 -0.1790018 0.56413779 0.42861299 0 8.97501408 0
+0.1783 -0.78638511 6.04715661 -2.36874413 0.30063084 -0.0075 0.12423267 -87.06136726 734.3337158 45.59415898 0.72508619 -0.0075 -0.07240383 -0.21212854 0.44059874 0.63789957 0 8.93629434 0
+0.18 -0.93461826 5.13862729 -1.90977036 0.30160379 -0.0075 0.12412685 -86.19498765 734.5346778 45.39372841 0.72389323 -0.0075 -0.0724894 -0.23911986 0.32675796 0.82545125 0 8.88774214 0
+0.1817 -0.9813154 4.35001887 -1.46438459 0.30259993 -0.0075 0.12402108 -85.29018978 734.5737906 45.21555196 0.72269989 -0.0075 -0.07257793 -0.25898133 0.22605165 0.98788223 0 8.83137705 0
+0.1833 -0.94257398 3.66659875 -1.04341165 0.30361906 -0.0075 0.12391537 -84.35608667 734.4536092 45.05908014 0.72150696 -0.0075 -0.07266975 -0.27094261 0.1410311 1.12272949 0 8.76934604 0
+0.185 -0.83531338 3.07502898 -0.65636792 0.304661 -0.0075 0.12380971 -83.40261658 734.1773215 44.92403186 0.72031605 -0.0075 -0.07276536 -0.27445983 0.07338542 1.22853633 0 8.70391586 0
+0.1867 -0.67681984 2.56342725 -0.31081948 0.30572556 -0.0075 0.12370411 -82.44009014 733.7490289 44.81065348 0.71912952 -0.0075 -0.07286541 -0.26931017 0.02368801 1.30485552 0 8.63724989 0
+0.1883 -0.48383851 2.12141012 -0.01227908 0.30681256 -0.0075 0.12359857 -81.47879391 733.1735033 44.71975426 0.71795045 -0.0075 -0.07297074 -0.25550845 -0.00842739 1.35229918 0 8.57131831 0
+0.19 0 0 0 0.30792181 -0.0075 0.12349309 -80.52846815 732.4561664 44.65285726 0.71678245 -0.0075 -0.07308226 0 0 0 0 8.50778482 0
+0.1917 0 0 0 0.30905313 -0.0075 0.12338767 -79.59781072 731.6029454 44.61211267 0.71562951 -0.0075 -0.073201 0 0 0 0 8.44790067 0
+0.1933 0 0 0 0.31020633 -0.0075 0.12328233 -78.69421645 730.6199299 44.60015822 0.71449572 -0.0075 -0.073328 0 0 0 0 8.39242246 0
+0.195 0 0 0 0.31138123 -0.0075 0.12317705 -77.8233846 729.5131902 44.62012719 0.71338495 -0.0075 -0.0734642 0 0 0 0 8.34160619 0
+0.1967 0 0 0 0.31257764 -0.0075 0.12307184 -76.98910935 728.2883123 44.67520052 0.71230069 -0.0075 -0.07361039 0 0 0 0 8.2952608 0
+0.1983 0 0 0 0.31379537 -0.0075 0.12296671 -76.19318842 726.9502595 44.76854369 0.71124566 -0.0075 -0.07376712 0 0 0 0 8.25268809 0
+0.2 0 0 0 0.31503424 -0.0075 0.12286165 -75.43541932 725.5029347 44.90288862 0.71022158 -0.0075 -0.07393458 0 0 0 0 8.21291334 0
+0.2017 0 0 0 0.31629407 -0.0075 0.12275667 -74.71363966 723.9491461 45.08032769 0.70922901 -0.0075 -0.07411254 0 0 0 0 8.17469718 0
+0.2033 0 0 0 0.31757467 -0.0075 0.12265177 -74.0240008 722.2903532 45.30193715 0.70826722 -0.0075 -0.07430029 0 0 0 0 8.13667369 0
+0.205 0 0 0 0.31887584 -0.0075 0.12254695 -73.36125165 720.5267213 45.5676278 0.70733409 -0.0075 -0.07449667 0 0 0 0 8.09746888 0
+0.2067 0 0 0 0.32019742 -0.0075 0.12244222 -72.71903582 718.6572475 45.87602713 0.70642613 -0.0075 -0.07469996 0 0 0 0 8.05582631 0
+0.2083 0 0 0 0.32153921 -0.0075 0.12233757 -72.09041859 716.6798313 46.22420604 0.70553866 -0.0075 -0.07490804 0 0 0 0 8.01072103 0
+0.21 0 0 0 0.32290103 -0.0075 0.12223301 -71.46821159 714.5917867 46.6078614 0.70466593 -0.0075 -0.07511839 0 0 0 0 7.96141607 0
+0.2117 0 0 0 0.32428269 -0.0075 0.12212855 -70.84548058 712.3899918 47.0212093 0.70380151 -0.0075 -0.0753282 0 0 0 0 7.90765428 0
+0.2133 0 0 0 0.325684 -0.0075 0.12202417 -70.21591031 710.0715862 47.4573382 0.70293852 -0.0075 -0.07553447 0 0 0 0 7.84948096 0
+0.215 0 0 0 0.32710479 -0.0075 0.12191989 -69.5741687 707.6343051 47.9082672 0.70207011 -0.0075 -0.07573419 0 0 0 0 7.78737978 0
+0.2167 0 0 0 0.32854486 -0.0075 0.12181571 -68.91614142 705.0771181 48.36536779 0.70118972 -0.0075 -0.07592449 0 0 0 0 7.72215501 0
+0.2183 0 0 0 0.33000403 -0.0075 0.12171163 -68.23924655 702.4006033 48.81959727 0.70029153 -0.0075 -0.07610278 0 0 0 0 7.65489764 0
+0.22 0 0 0 0.33148212 -0.0075 0.12160765 -67.54246223 699.6073142 49.26185854 0.69937075 -0.0075 -0.07626688 0 0 0 0 7.58687729 0
+0.2217 0 0 0 0.33297894 -0.0075 0.12150378 -66.82623674 696.7021675 49.6834505 0.69842387 -0.0075 -0.0764151 0 0 0 0 7.51947069 0
+0.2233 0 0 0 0.33449429 -0.0075 0.12140001 -66.09256697 693.6924603 50.07620759 0.69744894 -0.0075 -0.07654643 0 0 0 0 7.45409453 0
+0.225 0 0 0 0.33602801 -0.0075 0.12129635 -65.34464966 690.5880859 50.43298048 0.69644552 -0.0075 -0.07666047 0 0 0 0 7.39200436 0
+0.2267 0 0 0 0.3375799 -0.0075 0.1211928 -64.58666045 687.4011753 50.74762986 0.69541485 -0.0075 -0.07675752 0 0 0 0 7.33432275 0
+0.2283 0 0 0 0.33914978 -0.0075 0.12108937 -63.82344011 684.146148 51.01533257 0.69435955 -0.0075 -0.07683857 0 0 0 0 7.28181964 0
+0.23 0 0 0 0.34073746 -0.0075 0.12098605 -63.06021419 680.8390843 51.23252326 0.69328353 -0.0075 -0.07690519 0 0 0 0 7.23498699 0
+0.2317 0 0 0 0.34234275 -0.0075 0.12088285 -62.30213614 677.4973161 51.39699677 0.69219162 -0.0075 -0.07695946 0 0 0 0 7.19395536 0
+0.2333 0 0 0 0.34396548 -0.0075 0.12077977 -61.55404148 674.1388853 51.50772824 0.69108932 -0.0075 -0.0770038 0 0 0 0 7.15854677 0
+0.235 0 0 0 0.34560545 -0.0075 0.12067681 -60.82015268 670.7818637 51.56477583 0.68998239 -0.0075 -0.07704086 0 0 0 0 7.12827623 0
+0.2367 0 0 0 0.34726249 -0.0075 0.12057397 -60.10376221 667.4438866 51.56921318 0.68887644 -0.0075 -0.07707329 0 0 0 0 7.10239424 0
+0.2383 0 0 0 0.34893639 -0.0075 0.12047126 -59.40715054 664.1414646 51.52271159 0.68777659 -0.0075 -0.0771037 0 0 0 0 7.07997371 0
+0.24 0 0 0 0.35062699 -0.0075 0.12036868 -58.73149115 660.8896823 51.42757048 0.68668709 -0.0075 -0.0771344 0 0 0 0 7.05990689 0
+0.2417 0 0 0 0.35233409 -0.0075 0.12026623 -58.07690642 657.7015843 51.28637734 0.68561114 -0.0075 -0.07716733 0 0 0 0 7.04113263 0
+0.2433 0 0 0 0.35405751 -0.0075 0.12016391 -57.44248453 654.5881431 51.10198711 0.68455072 -0.0075 -0.07720394 0 0 0 0 7.02259542 0
+0.245 0 0 0 0.35579706 -0.0075 0.12006173 -56.82647454 651.5579669 50.87728807 0.68350655 -0.0075 -0.07724513 0 0 0 0 7.00338171 0
+0.2467 0 0 0 0.35755256 -0.0075 0.11995969 -56.22649561 648.617375 50.61518547 0.68247813 -0.0075 -0.07729125 0 0 0 0 6.98276686 0
+0.2483 0 0 0 0.35932383 -0.0075 0.11985778 -55.63975633 645.7705649 50.31855295 0.68146393 -0.0075 -0.0773421 0 0 0 0 6.96025549 0
+0.25 0 0 0 0.36111066 -0.0075 0.11975602 -55.06336785 643.0197657 49.99015887 0.68046164 -0.0075 -0.07739703 0 0 0 0 6.93555713 0
+0.2517 0 0 0 0.36291289 -0.0075 0.1196544 -54.49455983 640.3657152 49.63287983 0.67946834 -0.0075 -0.07745498 0 0 0 0 6.90856549 0
+0.2533 0 0 0 0.36473033 -0.0075 0.11955293 -53.93097159 637.8078653 49.24954996 0.67848095 -0.0075 -0.07751463 0 0 0 0 6.87943733 0
+0.255 0 0 0 0.36656279 -0.0075 0.11945161 -53.37079897 635.3449557 48.84319673 0.67749649 -0.0075 -0.07757453 0 0 0 0 6.84840442 0
+0.2567 0 0 0 0.36841008 -0.0075 0.11935043 -52.8129449 632.9752006 48.41694697 0.67651246 -0.0075 -0.07763318 0 0 0 0 6.8158603 0
+0.2583 0 0 0 0.37027202 -0.0075 0.11924942 -52.25709221 630.696844 47.97421351 0.67552699 -0.0075 -0.07768922 0 0 0 0 6.78220779 0
+0.26 0 0 0 0.37214842 -0.0075 0.11914855 -51.70372748 628.5083201 47.5186511 0.67453912 -0.0075 -0.07774142 0 0 0 0 6.74781428 0
+0.2617 0 0 0 0.37403911 -0.0075 0.11904784 -51.15405843 626.408471 47.05412809 0.67354881 -0.0075 -0.07778895 0 0 0 0 6.71295844 0
+0.2633 0 0 0 0.37594388 -0.0075 0.1189473 -50.60989276 624.3967556 46.58475392 0.6725569 -0.0075 -0.07783124 0 0 0 0 6.67779926 0
+0.265 0 0 0 0.37786257 -0.0075 0.11884691 -50.07354565 622.4730841 46.11470382 0.67156509 -0.0075 -0.07786815 0 0 0 0 6.64236168 0
+0.2667 0 0 0 0.37979497 -0.0075 0.11874669 -49.54754233 620.6379517 45.64827853 0.67057569 -0.0075 -0.07789988 0 0 0 0 6.60647247 0
+0.2683 0 0 0 0.38174092 -0.0075 0.11864663 -49.03441691 618.8920988 45.18957197 0.66959146 -0.0075 -0.07792697 0 0 0 0 6.56990263 0
+0.27 0 0 0 0.38370021 -0.0075 0.11854675 -48.5365373 617.2365348 44.74250808 0.66861525 -0.0075 -0.07795031 0 0 0 0 6.53222526 0
+0.2717 0 0 0 0.38567267 -0.0075 0.11844703 -48.05589827 615.6721276 44.31057527 0.66764978 -0.0075 -0.07797098 0 0 0 0 6.49295935 0
+0.2733 0 0 0 0.38765811 -0.0075 0.11834749 -47.59387848 614.19956 43.89680311 0.6666973 -0.0075 -0.07799031 0 0 0 0 6.45154777 0
+0.275 0 0 0 0.38965635 -0.0075 0.11824812 -47.15120246 612.819064 43.50361158 0.66575939 -0.0075 -0.07800972 0 0 0 0 6.40739801 0
+0.2767 0 0 0 0.3916672 -0.0075 0.11814893 -46.72787431 611.530232 43.13272687 0.66483674 -0.0075 -0.07803072 0 0 0 0 6.35996227 0
+0.2783 0 0 0 0.39369047 -0.0075 0.11804992 -46.32306917 610.332032 42.78527529 0.66392911 -0.0075 -0.0780548 0 0 0 0 6.30875667 0
+0.28 0 0 0 0.39572598 -0.0075 0.11795109 -45.93528313 609.2226196 42.46160151 0.66303531 -0.0075 -0.07808351 0 0 0 0 6.25342415 0
+0.2817 0 0 0 0.39777354 -0.0075 0.11785244 -45.5623852 608.1995897 42.16155896 0.66215322 -0.0075 -0.07811831 0 0 0 0 6.19367809 0
+0.2833 0 0 0 0.39983297 -0.0075 0.11775398 -45.20174663 607.2598536 41.88440642 0.66127998 -0.0075 -0.07816062 0 0 0 0 6.12942633 0
+0.285 0 0 0 0.40190408 -0.0075 0.11765571 -44.85043698 606.3999775 41.62907206 0.6604122 -0.0075 -0.07821181 0 0 0 0 6.06062597 0
+0.2867 0 0 0 0.40398669 -0.0075 0.11755763 -44.50544362 605.6162269 41.39421721 0.65954609 -0.0075 -0.0782732 0 0 0 0 5.98737583 0
+0.2883 0 0 0 0.40608062 -0.0075 0.11745974 -44.1638318 604.9048224 41.17843701 0.65867786 -0.0075 -0.07834605 0 0 0 0 5.90986874 0
+0.29 0 0 0 0.40818566 -0.0075 0.11736205 -43.82293166 604.2621027 40.98036933 0.65780386 -0.0075 -0.07843149 0 0 0 0 5.82838542 0
+0.2917 0 0 0 0.41030165 -0.0075 0.11726455 -43.48050225 603.6846152 40.79872463 0.65692092 -0.0075 -0.07853062 0 0 0 0 5.7433074 0
+0.2933 0 0 0 0.4124284 -0.0075 0.11716726 -43.13482172 603.1693844 40.63255187 0.65602641 -0.0075 -0.07864435 0 0 0 0 5.65504484 0
+0.295 0 0 0 0.41456571 -0.0075 0.11707016 -42.78484929 602.7137218 40.48106582 0.65511847 -0.0075 -0.07877346 0 0 0 0 5.56409751 0
+0.2967 0 0 0 0.41671341 -0.0075 0.11697327 -42.43011199 602.3155002 40.3438746 0.65419592 -0.0075 -0.07891848 0 0 0 0 5.47092053 0
+0.2983 0 0 0 0.41887131 -0.0075 0.11687659 -42.07079868 601.9728416 40.2206972 0.65325837 -0.0075 -0.07907966 0 0 0 0 5.37610217 0
+0.3 0 0 0 0.42103922 -0.0075 0.11678011 -41.70766282 601.6841219 40.11146964 0.65230601 -0.0075 -0.07925691 0 0 0 0 5.28023233 0
+0.3017 0 0 0 0.42321696 -0.0075 0.11668385 -41.34189964 601.447723 40.01617567 0.65133957 -0.0075 -0.07944973 0 0 0 0 5.18401392 0
+0.3033 0 0 0 0.42540434 -0.0075 0.11658779 -40.97497197 601.2618756 39.93473257 0.65036015 -0.0075 -0.07965717 0 0 0 0 5.08823314 0
+0.305 0 0 0 0.42760118 -0.0075 0.11649196 -40.60849595 601.1245208 39.86692125 0.64936894 -0.0075 -0.07987784 0 0 0 0 4.99375296 0
+0.3067 0 0 0 0.42980729 -0.0075 0.11639633 -40.24409032 601.0329926 39.8121913 0.64836716 -0.0075 -0.08010988 0 0 0 0 4.90153905 0
+0.3083 0 0 0 0.43202249 -0.0075 0.11630093 -39.8831432 600.9840809 39.76971631 0.64735577 -0.0075 -0.08035097 0 0 0 0 4.812583 0
+0.31 0 0 0 0.43424659 -0.0075 0.11620575 -39.52681448 600.9737317 39.73813961 0.64633538 -0.0075 -0.08059846 0 0 0 0 4.72797761 0
+0.3117 0 0 0 0.4364794 -0.0075 0.1161108 -39.17585205 600.9972268 39.71582845 0.64530614 -0.0075 -0.08084939 0 0 0 0 4.64878748 0
+0.3133 0 0 0 0.43872075 -0.0075 0.11601607 -38.83057662 601.0490114 39.70065231 0.64426773 -0.0075 -0.08110061 0 0 0 0 4.576134 0
+0.315 0 0 0 0.44097044 -0.0075 0.11592156 -38.49081391 601.1229675 39.69022302 0.64321937 -0.0075 -0.08134894 0 0 0 0 4.51102932 0
+0.3167 0 0 0 0.44322828 -0.0075 0.11582729 -38.15596882 601.2125446 39.68194932 0.64215986 -0.0075 -0.08159124 0 0 0 0 4.45437706 0
+0.3183 0 0 0 0.44549411 -0.0075 0.11573325 -37.82503763 601.3109953 39.67315727 0.64108769 -0.0075 -0.08182467 0 0 0 0 4.40687805 0
+0.32 0 0 0 0.44776772 -0.0075 0.11563945 -37.4966905 601.4116889 39.66131108 0.64000113 -0.0075 -0.08204667 0 0 0 0 4.36896123 0
+0.3217 0 0 0 0.45004893 -0.0075 0.11554588 -37.16944237 601.5082684 39.64405541 0.63889842 -0.0075 -0.08225523 0 0 0 0 4.34079936 0
+0.3233 0 0 0 0.45233756 -0.0075 0.11545255 -36.84174562 601.5951091 39.61951492 0.63777782 -0.0075 -0.08244885 0 0 0 0 4.322213 0
+0.325 0 0 0 0.45463342 -0.0075 0.11535946 -36.51209862 601.6673204 39.58627014 0.63663787 -0.0075 -0.08262669 0 0 0 0 4.31273856 0
+0.3267 0 0 0 0.45693633 -0.0075 0.11526662 -36.17911159 601.7211933 39.5436043 0.63547741 -0.0075 -0.08278852 0 0 0 0 4.31152548 0
+0.3283 0 0 0 0.4592461 -0.0075 0.11517402 -35.84164815 601.7541836 39.49136696 0.63429566 -0.0075 -0.08293478 0 0 0 0 4.31744619 0
+0.33 0 0 0 0.46156255 -0.0075 0.11508168 -35.49886718 601.7650671 39.43012506 0.63309228 -0.0075 -0.0830665 0 0 0 0 4.32906945 0
+0.3317 0 0 0 0.46388549 -0.0075 0.11498958 -35.15022773 601.7539561 39.3610576 0.63186731 -0.0075 -0.08318519 0 0 0 0 4.34475168 0
+0.3333 0 0 0 0.46621473 -0.0075 0.11489773 -34.79550738 601.7221914 39.28581609 0.63062117 -0.0075 -0.08329283 0 0 0 0 4.36271935 0
+0.335 0 0 0 0.46855009 -0.0075 0.11480614 -34.43476052 601.6723187 39.20653315 0.62935459 -0.0075 -0.08339165 0 0 0 0 4.38113647 0
+0.3367 0 0 0 0.47089138 -0.0075 0.1147148 -34.06822945 601.6077648 39.12551751 0.62806859 -0.0075 -0.08348402 0 0 0 0 4.3982443 0
+0.3383 0 0 0 0.47323843 -0.0075 0.11462373 -33.69626667 601.5328315 39.04521706 0.62676432 -0.0075 -0.08357234 0 0 0 0 4.41236582 0
+0.34 0 0 0 0.47559103 -0.0075 0.11453291 -33.31929182 601.4522997 38.96794077 0.62544306 -0.0075 -0.0836589 0 0 0 0 4.4220697 0
+0.3417 0 0 0 0.47794902 -0.0075 0.11444236 -32.93767186 601.3713602 38.89585823 0.62410601 -0.0075 -0.08374574 0 0 0 0 4.42612426 0
+0.3433 0 0 0 0.48031219 -0.0075 0.11435208 -32.55163825 601.2952942 38.83071412 0.62275437 -0.0075 -0.0838346 0 0 0 0 4.42363776 0
+0.345 0 0 0 0.48268038 -0.0075 0.11426206 -32.16128041 601.2293395 38.7738413 0.62138922 -0.0075 -0.08392684 0 0 0 0 4.41405465 0
+0.3467 0 0 0 0.48505338 -0.0075 0.11417231 -31.76649725 601.1785192 38.72614273 0.62001152 -0.0075 -0.08402334 0 0 0 0 4.39715072 0
+0.3483 0 0 0 0.48743102 -0.0075 0.11408284 -31.36699436 601.1474741 38.68797395 0.61862218 -0.0075 -0.08412455 0 0 0 0 4.37304437 0
+0.35 0 0 0 0.48981311 -0.0075 0.11399364 -30.96229254 601.1404857 38.65928232 0.61722204 -0.0075 -0.08423048 0 0 0 0 4.34211655 0
+0.3517 0 0 0 0.49219947 -0.0075 0.11390472 -30.55182815 601.1612692 38.63957489 0.61581195 -0.0075 -0.08434077 0 0 0 0 4.30500813 0
+0.3533 0 0 0 0.4945899 -0.0075 0.11381607 -30.1350442 601.2131141 38.62812937 0.61439275 -0.0075 -0.08445468 0 0 0 0 4.26247176 0
+0.355 0 0 0 0.49698423 -0.0075 0.11372771 -29.7114502 601.2986948 38.62397036 0.61296535 -0.0075 -0.08457123 0 0 0 0 4.21541779 0
+0.3567 0 0 0 0.49938227 -0.0075 0.11363963 -29.28070148 601.4201951 38.6261264 0.61153078 -0.0075 -0.08468922 0 0 0 0 4.16475906 0
+0.3583 0 0 0 0.50178383 -0.0075 0.11355184 -28.84272958 601.5792154 38.63361092 0.61009016 -0.0075 -0.08480736 0 0 0 0 4.11142893 0
+0.36 0 0 0 0.50418873 -0.0075 0.11346433 -28.39775374 601.7767947 38.64554888 0.60864476 -0.0075 -0.08492429 0 0 0 0 4.05631261 0
+0.3617 0 0 0 0.50659679 -0.0075 0.11337712 -27.94631502 602.0133932 38.66130014 0.60719588 -0.0075 -0.0850387 0 0 0 0 4.00019507 0
+0.3633 0 0 0 0.5090078 -0.0075 0.11329019 -27.48932396 602.2888312 38.68035133 0.60574488 -0.0075 -0.08514939 0 0 0 0 3.94376237 0
+0.365 0 0 0 0.51142161 -0.0075 0.11320357 -27.02798282 602.6023192 38.7024702 0.60429296 -0.0075 -0.08525529 0 0 0 0 3.88755435 0
+0.3667 0 0 0 0.513838 -0.0075 0.11311723 -26.56369119 602.9522537 38.72754518 0.60284124 -0.0075 -0.08535549 0 0 0 0 3.83203656 0
+0.3683 0 0 0 0.51625681 -0.0075 0.1130312 -26.09796874 603.336367 38.75566025 0.60139054 -0.0075 -0.08544931 0 0 0 0 3.77755528 0
+0.37 0 0 0 0.51867784 -0.0075 0.11294547 -25.63233761 603.7515295 38.78688354 0.59994135 -0.0075 -0.08553631 0 0 0 0 3.72444098 0
+0.3717 0 0 0 0.52110091 -0.0075 0.11286004 -25.16809526 604.1938293 38.82131611 0.59849378 -0.0075 -0.08561627 0 0 0 0 3.67295902 0
+0.3733 0 0 0 0.52352584 -0.0075 0.11277492 -24.70620614 604.658589 38.85892917 0.59704747 -0.0075 -0.08568921 0 0 0 0 3.62337936 0
+0.375 0 0 0 0.52595244 -0.0075 0.1126901 -24.2471746 605.1404322 38.89951332 0.59560162 -0.0075 -0.08575546 0 0 0 0 3.57596139 0
+0.3767 0 0 0 0.52838052 -0.0075 0.1126056 -23.7909282 605.6334229 38.94271693 0.59415496 -0.0075 -0.08581551 0 0 0 0 3.53095154 0
+0.3783 0 0 0 0.53080989 -0.0075 0.11252141 -23.33672544 606.1311405 38.98788848 0.59270586 -0.0075 -0.08587016 0 0 0 0 3.48862544 0
+0.38 0 0 0 0.53324038 -0.0075 0.11243753 -22.8831397 606.6270211 39.03422576 0.59125239 -0.0075 -0.08592041 0 0 0 0 3.44922503 0
+0.3817 0 0 0 0.5356718 -0.0075 0.11235397 -22.42813902 607.1144185 39.08064624 0.58979251 -0.0075 -0.08596753 0 0 0 0 3.41300988 0
+0.3833 0 0 0 0.53810396 -0.0075 0.11227072 -21.96908606 607.5870184 39.12604781 0.58832414 -0.0075 -0.08601295 0 0 0 0 3.38014027 0
+0.385 0 0 0 0.54053667 -0.0075 0.1121878 -21.50292126 608.0390336 39.16921345 0.58684542 -0.0075 -0.0860583 0 0 0 0 3.35072968 0
+0.3867 0 0 0 0.54296976 -0.0075 0.1121052 -21.02634689 608.465526 39.20899131 0.58535478 -0.0075 -0.08610541 0 0 0 0 3.32472179 0
+0.3883 0 0 0 0.54540303 -0.0075 0.11202293 -20.53605993 608.8626178 39.24436927 0.5838511 -0.0075 -0.08615616 0 0 0 0 3.30191127 0
+0.39 0 0 0 0.5478363 -0.0075 0.11194098 -20.02897788 609.2276926 39.27451912 0.5823339 -0.0075 -0.08621255 0 0 0 0 3.28194168 0
+0.3917 0 0 0 0.55026939 -0.0075 0.11185937 -19.50248755 609.5595938 39.29895004 0.58080334 -0.0075 -0.08627658 0 0 0 0 3.26427364 0
+0.3933 0 0 0 0.55270211 -0.0075 0.11177809 -18.95470401 609.8586063 39.31744393 0.57926032 -0.0075 -0.08635024 0 0 0 0 3.2482401 0
+0.395 0 0 0 0.55513426 -0.0075 0.11169714 -18.38459902 610.1265828 39.33023125 0.57770647 -0.0075 -0.08643531 0 0 0 0 3.23302188 0
+0.3967 0 0 0 0.55756568 -0.0075 0.11161652 -17.7921617 610.3667634 39.33780887 0.57614413 -0.0075 -0.08653346 0 0 0 0 3.21774215 0
+0.3983 0 0 0 0.55999617 -0.0075 0.11153625 -17.17847628 610.5837605 39.34110978 0.5745762 -0.0075 -0.08664605 0 0 0 0 3.20142293 0
+0.4 0 0 0 0.56242555 -0.0075 0.11145632 -16.54576903 610.7832429 39.34126416 0.57300599 -0.0075 -0.08677411 0 0 0 0 3.18314137 0
+0.4017 0 0 0 0.56485363 -0.0075 0.11137673 -15.89728918 610.9717097 39.33965558 0.5714371 -0.0075 -0.08691826 0 0 0 0 3.16204156 0
+0.4033 0 0 0 0.56728022 -0.0075 0.11129748 -15.23721614 611.1561402 39.33781152 0.56987313 -0.0075 -0.08707867 0 0 0 0 3.13740914 0
+0.405 0 0 0 0.56970515 -0.0075 0.11121859 -14.57045846 611.3436793 39.33721936 0.56831756 -0.0075 -0.08725503 0 0 0 0 3.10874292 0
+0.4067 0 0 0 0.57212822 -0.0075 0.11114004 -13.90233959 611.5413242 39.33940182 0.5667735 -0.0075 -0.0874465 0 0 0 0 3.07573982 0
+0.4083 0 0 0 0.57454926 -0.0075 0.11106185 -13.23832748 611.7555215 39.34570545 0.5652435 -0.0075 -0.08765174 0 0 0 0 3.03836402 0
+0.41 0 0 0 0.57696806 -0.0075 0.11098401 -12.58375754 611.9920824 39.35731989 0.56372936 -0.0075 -0.08786895 0 0 0 0 2.99677266 0
+0.4117 0 0 0 0.57938446 -0.0075 0.11090652 -11.94351362 612.2557334 39.37516877 0.56223205 -0.0075 -0.08809594 0 0 0 0 2.95137001 0
+0.4133 0 0 0 0.58179826 -0.0075 0.1108294 -11.32170874 612.5501314 39.40002421 0.56075159 -0.0075 -0.08833011 0 0 0 0 2.90272106 0
+0.415 0 0 0 0.58420928 -0.0075 0.11075263 -10.7214713 612.8777242 39.43234498 0.55928713 -0.0075 -0.08856872 0 0 0 0 2.85157032 0
+0.4167 0 0 0 0.58661733 -0.0075 0.11067623 -10.14474571 613.2397251 39.4724404 0.55783695 -0.0075 -0.08880882 0 0 0 0 2.79872044 0
+0.4183 0 0 0 0.58902223 -0.0075 0.1106002 -9.59214193 613.6362509 39.52049042 0.55639858 -0.0075 -0.08904745 0 0 0 0 2.74498857 0
+0.42 0 0 0 0.59142379 -0.0075 0.11052453 -9.06290526 614.0664181 39.57648247 0.554969 -0.0075 -0.0892818 0 0 0 0 2.69116553 0
+0.4217 0 0 0 0.59382183 -0.0075 0.11044923 -8.55495749 614.5286274 39.64040716 0.5535447 -0.0075 -0.08950925 0 0 0 0 2.63791204 0
+0.4233 0 0 0 0.59621616 -0.0075 0.1103743 -8.06499097 615.0206927 39.71217288 0.552122 -0.0075 -0.08972753 0 0 0 0 2.58577707 0
+0.425 0 0 0 0.5986066 -0.0075 0.11029975 -7.58862339 615.5402175 39.79173736 0.55069721 -0.0075 -0.0899348 0 0 0 0 2.53513273 0
+0.4267 0 0 0 0.60099295 -0.0075 0.11022557 -7.12062504 616.0847341 39.87901797 0.54926685 -0.0075 -0.09012966 0 0 0 0 2.48623034 0
+0.4283 0 0 0 0.60337504 -0.0075 0.11015178 -6.6552007 616.6520476 39.97398589 0.54782782 -0.0075 -0.09031126 0 0 0 0 2.43913522 0
+0.43 0 0 0 0.60575268 -0.0075 0.11007836 -6.18622131 617.240366 40.0765434 0.54637755 -0.0075 -0.09047927 0 0 0 0 2.39380227 0
+0.4317 0 0 0 0.60812569 -0.0075 0.11000533 -5.70755123 617.84848 40.18651277 0.54491402 -0.0075 -0.09063391 0 0 0 0 2.35011526 0
+0.4333 0 0 0 0.61049387 -0.0075 0.10993268 -5.21330384 618.475876 40.30363007 0.54343587 -0.0075 -0.09077581 0 0 0 0 2.30789786 0
+0.435 0 0 0 0.61285705 -0.0075 0.10986042 -4.69814027 619.1227076 40.42741913 0.5419423 -0.0075 -0.09090606 0 0 0 0 2.26700265 0
+0.4367 0 0 0 0.61521503 -0.0075 0.10978854 -4.15742493 619.7898324 40.55726477 0.54043306 -0.0075 -0.09102601 0 0 0 0 2.22734238 0
+0.4383 0 0 0 0.61756764 -0.0075 0.10971706 -3.58739037 620.478632 40.69226877 0.53890837 -0.0075 -0.09113723 0 0 0 0 2.1889704 0
+0.44 0 0 0 0.61991468 -0.0075 0.10964598 -2.98529984 621.1909891 40.83133705 0.53736874 -0.0075 -0.09124138 0 0 0 0 2.15204638 0
+0.4417 0 0 0 0.62225598 -0.0075 0.10957529 -2.34946035 621.9290066 40.97311938 0.53581484 -0.0075 -0.09134012 0 0 0 0 2.11690868 0
+0.4433 0 0 0 0.62459134 -0.0075 0.109505 -1.67923985 622.6949031 41.11613014 0.53424738 -0.0075 -0.09143499 0 0 0 0 2.08401364 0
+0.445 0 0 0 0.62692058 -0.0075 0.10943511 -0.97503459 623.4907871 41.25880368 0.53266694 -0.0075 -0.09152734 0 0 0 0 2.05392944 0
+0.4467 0 0 0 0.62924352 -0.0075 0.10936562 -0.23821745 624.3184654 41.39955784 0.53107389 -0.0075 -0.09161826 0 0 0 0 2.02729119 0
+0.4483 0 0 0 0.63155996 -0.0075 0.10929654 0.52904174 625.1793178 41.53700548 0.52946835 -0.0075 -0.0917085 0 0 0 0 2.00474238 0
+0.45 0 0 0 0.63386973 -0.0075 0.10922786 1.32389508 626.0741542 41.66995792 0.52785019 -0.0075 -0.09179851 0 0 0 0 1.98689895 0
+0.4517 0 0 0 0.63617264 -0.0075 0.1091596 2.14291729 627.0032417 41.79764216 0.526219 -0.0075 -0.09188845 0 0 0 0 1.97422466 0
+0.4533 0 0 0 0.6384685 -0.0075 0.10909174 2.98233095 627.9661736 41.91970409 0.5245742 -0.0075 -0.0919782 0 0 0 0 1.96702809 0
+0.455 0 0 0 0.64075713 -0.0075 0.1090243 3.83817364 628.962006 42.03640741 0.52291518 -0.0075 -0.09206742 0 0 0 0 1.96535564 0
+0.4567 0 0 0 0.64303835 -0.0075 0.10895728 4.70638549 629.9892578 42.14856107 0.52124132 -0.0075 -0.09215564 0 0 0 0 1.96899995 0
+0.4583 0 0 0 0.64531196 -0.0075 0.10889068 5.58299239 631.046035 42.2576157 0.51955223 -0.0075 -0.09224232 0 0 0 0 1.97744382 0
+0.46 0 0 0 0.64757778 -0.0075 0.10882449 6.46426831 632.1301412 42.36560516 0.5178478 -0.0075 -0.09232692 0 0 0 0 1.98991101 0
+0.4617 0 0 0 0.64983563 -0.0075 0.10875873 7.34681301 633.2392067 42.47499078 0.51612837 -0.0075 -0.09240901 0 0 0 0 2.00539039 0
+0.4633 0 0 0 0.65208532 -0.0075 0.10869339 8.22768488 634.3708458 42.58865606 0.51439474 -0.0075 -0.09248831 0 0 0 0 2.02263954 0
+0.465 0 0 0 0.65432666 -0.0075 0.10862848 9.1045072 635.5227169 42.70964519 0.51264827 -0.0075 -0.09256471 0 0 0 0 2.04029757 0
+0.4667 0 0 0 0.65655948 -0.0075 0.108564 9.97552221 636.6927051 42.84110454 0.51089077 -0.0075 -0.09263829 0 0 0 0 2.05691509 0
+0.4683 0 0 0 0.65878357 -0.0075 0.10849995 10.83966047 637.8788987 42.98595904 0.50912448 -0.0075 -0.09270938 0 0 0 0 2.07105754 0
+0.47 0 0 0 0.66099877 -0.0075 0.10843634 11.69654521 639.0796897 43.14683809 0.50735195 -0.0075 -0.09277844 0 0 0 0 2.08135522 0
+0.4717 0 0 0 0.66320488 -0.0075 0.10837316 12.54656177 640.2937639 43.32583883 0.50557592 -0.0075 -0.0928461 0 0 0 0 2.08663933 0
+0.4733 0 0 0 0.66540172 -0.0075 0.10831042 13.39085096 641.5201244 43.52442653 0.50379914 -0.0075 -0.09291302 0 0 0 0 2.08593821 0
+0.475 0 0 0 0.66758911 -0.0075 0.10824812 14.23123127 642.7580859 43.74334867 0.50202417 -0.0075 -0.0929799 0 0 0 0 2.07852775 0
+0.4767 0 0 0 0.66976685 -0.0075 0.10818626 15.07017681 644.0072533 43.98249582 0.50025329 -0.0075 -0.09304735 0 0 0 0 2.06398628 0
+0.4783 0 0 0 0.67193476 -0.0075 0.10812485 15.91076569 645.2675394 44.24103648 0.49848832 -0.0075 -0.09311585 0 0 0 0 2.0421471 0
+0.48 0 0 0 0.67409265 -0.0075 0.10806389 16.75649394 646.5391187 44.51731094 0.49673053 -0.0075 -0.09318575 0 0 0 0 2.01313331 0
+0.4817 0 0 0 0.67624035 -0.0075 0.10800337 17.61112768 647.8224981 44.80904624 0.49498054 -0.0075 -0.09325714 0 0 0 0 1.97728919 0
+0.4833 0 0 0 0.67837767 -0.0075 0.10794331 18.47859658 649.1184165 45.11339841 0.49323839 -0.0075 -0.0933299 0 0 0 0 1.93520696 0
+0.485 0 0 0 0.68050441 -0.0075 0.1078837 19.36276705 650.4279772 45.42720006 0.49150354 -0.0075 -0.09340364 0 0 0 0 1.88760809 0
+0.4867 0 0 0 0.6826204 -0.0075 0.10782454 20.26726002 651.7526488 45.7470186 0.48977494 -0.0075 -0.09347783 0 0 0 0 1.83532915 0
+0.4883 0 0 0 0.68472545 -0.0075 0.10776585 21.19527847 653.0942724 46.06941523 0.48805115 -0.0075 -0.09355172 0 0 0 0 1.77924968 0
+0.49 0 0 0 0.68681937 -0.0075 0.10770761 22.14940113 654.4550958 46.39114215 0.48633046 -0.0075 -0.09362447 0 0 0 0 1.7202407 0
+0.4917 0 0 0 0.68890198 -0.0075 0.10764984 23.13140512 655.8377638 46.70915625 0.484611 -0.0075 -0.0936952 0 0 0 0 1.65915231 0
+0.4933 0 0 0 0.69097309 -0.0075 0.10759253 24.14216642 657.2452825 47.02090355 0.48289088 -0.0075 -0.09376304 0 0 0 0 1.59673055 0
+0.495 0 0 0 0.69303253 -0.0075 0.10753569 25.1815868 658.6808699 47.32425929 0.48116831 -0.0075 -0.09382719 0 0 0 0 1.53369562 0
+0.4967 0 0 0 0.69508009 -0.0075 0.10747932 26.24855241 660.1480096 47.6176777 0.47944163 -0.0075 -0.09388701 0 0 0 0 1.47066376 0
+0.4983 0 0 0 0.6971156 -0.0075 0.10742342 27.34093696 661.6501424 47.90011434 0.47770943 -0.0075 -0.09394202 0 0 0 0 1.40817792 0
+0.5 0 0 0 0.69913887 -0.0075 0.10736799 28.45568457 663.1906203 48.17109596 0.47597045 -0.0075 -0.09399192 0 0 0 0 1.34667794 0
+0.5017 0 0 0 0.70114971 -0.0075 0.10731304 29.58897306 664.7724998 48.43057551 0.47422361 -0.0075 -0.09403667 0 0 0 0 1.28658391 0
+0.5033 0 0 0 0.70314795 -0.0075 0.10725857 30.7363266 666.3983212 48.67889729 0.47246795 -0.0075 -0.09407642 0 0 0 0 1.22826628 0
+0.505 0 0 0 0.70513339 -0.0075 0.10720457 31.89284361 668.0700015 48.91673842 0.47070255 -0.0075 -0.09411148 0 0 0 0 1.17208224 0
+0.5067 0 0 0 0.70710585 -0.0075 0.10715106 33.05345805 669.7885705 49.14493395 0.4689265 -0.0075 -0.09414232 0 0 0 0 1.11843836 0
+0.5083 0 0 0 0.70906515 -0.0075 0.10709804 34.21317703 671.5541799 49.36452056 0.46713881 -0.0075 -0.09416947 0 0 0 0 1.06771923 0
+0.51 0 0 0 0.71101109 -0.0075 0.1070455 35.36732242 673.3659607 49.57649404 0.46533843 -0.0075 -0.09419354 0 0 0 0 1.02035048 0
+0.5117 0 0 0 0.7129435 -0.0075 0.10699345 36.5117636 675.2220985 49.78189454 0.46352417 -0.0075 -0.0942151 0 0 0 0 0.97674017 0
+0.5133 0 0 0 0.71486218 -0.0075 0.10694189 37.64314823 677.1198208 49.98166095 0.46169481 -0.0075 -0.09423469 0 0 0 0 0.93733214 0
+0.515 0 0 0 0.71676696 -0.0075 0.10689083 38.75899934 679.055619 50.17666648 0.45984913 -0.0075 -0.09425274 0 0 0 0 0.90252691 0
+0.5167 0 0 0 0.71865764 -0.0075 0.10684026 39.85787115 681.0253764 50.36771042 0.45798601 -0.0075 -0.09426956 0 0 0 0 0.87267361 0
+0.5183 0 0 0 0.72053405 -0.0075 0.10679019 40.93939934 683.0245971 50.55550999 0.45610462 -0.0075 -0.09428531 0 0 0 0 0.8480723 0
+0.52 0 0 0 0.72239599 -0.0075 0.10674062 42.00433184 685.0487512 50.74075462 0.45420451 -0.0075 -0.09430002 0 0 0 0 0.828928 0
+0.5217 0 0 0 0.72424328 -0.0075 0.10669155 43.05444177 687.0934113 50.92405025 0.45228576 -0.0075 -0.09431357 0 0 0 0 0.81532771 0
+0.5233 0 0 0 0.72607573 -0.0075 0.10664299 44.09244085 689.1546442 51.1060692 0.45034913 -0.0075 -0.09432574 0 0 0 0 0.80718725 0
+0.525 0 0 0 0.72789317 -0.0075 0.10659493 45.12187575 691.2291386 51.28746989 0.44839615 -0.0075 -0.09433622 0 0 0 0 0.80430284 0
+0.5267 0 0 0 0.7296954 -0.0075 0.10654738 46.14688202 693.3144499 51.46899267 0.44642912 -0.0075 -0.09434459 0 0 0 0 0.80628653 0
+0.5283 0 0 0 0.73148224 -0.0075 0.10650035 47.1720508 695.4090586 51.65140109 0.4444512 -0.0075 -0.09435041 0 0 0 0 0.81261876 0
+0.53 0 0 0 0.7332535 -0.0075 0.10645383 48.20220978 697.5124518 51.83548067 0.44246635 -0.0075 -0.09435323 0 0 0 0 0.82265559 0
+0.5317 0 0 0 0.735009 -0.0075 0.10640782 49.24225158 699.6251009 52.0220487 0.4404792 -0.0075 -0.09435257 0 0 0 0 0.83565331 0
+0.5333 0 0 0 0.73674855 -0.0075 0.10636233 50.29689333 701.7483213 52.21184673 0.4384949 -0.0075 -0.094348 0 0 0 0 0.85079749 0
+0.535 0 0 0 0.73847197 -0.0075 0.10631736 51.37049814 703.8841632 52.40556982 0.4365189 -0.0075 -0.0943391 0 0 0 0 0.86723348 0
+0.5367 0 0 0 0.74017907 -0.0075 0.10627291 52.46697475 706.0350741 52.60372763 0.4345568 -0.0075 -0.09432547 0 0 0 0 0.88417766 0
+0.5383 0 0 0 0.74186967 -0.0075 0.10622899 53.58959833 708.2037589 52.80669929 0.43261397 -0.0075 -0.09430672 0 0 0 0 0.90087202 0
+0.54 0 0 0 0.74354358 -0.0075 0.1061856 54.74092378 710.392819 53.01454857 0.43069543 -0.0075 -0.0942825 0 0 0 0 0.91671665 0
+0.5417 0 0 0 0.74520061 -0.0075 0.10614273 55.92274723 712.6045303 53.22710251 0.42880553 -0.0075 -0.09425244 0 0 0 0 0.93125684 0
+0.5433 0 0 0 0.74684058 -0.0075 0.1061004 57.1360828 714.8405739 53.44384044 0.42694781 -0.0075 -0.0942162 0 0 0 0 0.94425159 0
+0.545 0 0 0 0.74846331 -0.0075 0.10605859 58.3811018 717.101838 53.66388076 0.4251248 -0.0075 -0.09417341 0 0 0 0 0.95565231 0
+0.5467 0 0 0 0.75006861 -0.0075 0.10601733 59.65718633 719.388245 53.88605191 0.42333786 -0.0075 -0.09412366 0 0 0 0 0.96559679 0
+0.5483 0 0 0 0.75165629 -0.0075 0.1059766 60.9629786 721.6986283 54.10882145 0.42158722 -0.0075 -0.09406656 0 0 0 0 0.97445218 0
+0.55 0 0 0 0.75322616 -0.0075 0.10593641 62.29640781 724.0307451 54.33041474 0.4198719 -0.0075 -0.09400169 0 0 0 0 0.98272824 0
+0.5517 0 0 0 0.75477805 -0.0075 0.10589677 63.65480983 726.3811893 54.5487449 0.41818977 -0.0075 -0.09392865 0 0 0 0 0.9910832 0
+0.5533 0 0 0 0.75631177 -0.0075 0.10585766 65.03501196 728.7455943 54.76161601 0.41653766 -0.0075 -0.09384701 0 0 0 0 1.00025151 0
+0.555 0 0 0 0.75782713 -0.0075 0.10581911 66.43349607 731.1186873 54.96668532 0.41491155 -0.0075 -0.09375641 0 0 0 0 1.01100916 0
+0.5567 0 0 0 0.75932394 -0.0075 0.1057811 67.84641571 733.4944533 55.16157726 0.41330656 -0.0075 -0.09365652 0 0 0 0 1.02405574 0
+0.5583 0 0 0 0.76080203 -0.0075 0.10574365 69.26979326 735.8663429 55.3439452 0.4117173 -0.0075 -0.09354708 0 0 0 0 1.04002183 0
+0.56 0 0 0 0.7622612 -0.0075 0.10570675 70.69970311 738.2274219 55.51150703 0.41013801 -0.0075 -0.09342796 0 0 0 0 1.05940655 0
+0.5617 0 0 0 0.76370127 -0.0075 0.1056704 72.1323258 740.5706178 55.66217016 0.40856268 -0.0075 -0.09329908 0 0 0 0 1.08250125 0
+0.5633 0 0 0 0.76512206 -0.0075 0.10563461 73.56412189 742.8888518 55.79396354 0.40698531 -0.0075 -0.09316053 0 0 0 0 1.10944104 0
+0.565 0 0 0 0.76652338 -0.0075 0.10559938 74.99198863 745.1752805 55.90520792 0.40540004 -0.0075 -0.09301251 0 0 0 0 1.14013551 0
+0.5667 0 0 0 0.76790503 -0.0075 0.10556472 76.41333744 747.4233498 55.99438636 0.40380133 -0.0075 -0.09285538 0 0 0 0 1.17434501 0
+0.5683 0 0 0 0.76926685 -0.0075 0.10553062 77.82615491 749.6270629 56.06026737 0.40218403 -0.0075 -0.09268964 0 0 0 0 1.21163098 0
+0.57 0 0 0 0.77060864 -0.0075 0.10549708 79.22912933 751.7809678 56.10183578 0.4005436 -0.0075 -0.09251591 0 0 0 0 1.25146229 0
+0.5717 0 0 0 0.77193022 -0.0075 0.10546411 80.62158858 753.8802725 56.11833255 0.39887613 -0.0075 -0.09233496 0 0 0 0 1.29323587 0
+0.5733 0 0 0 0.7732314 -0.0075 0.10543172 82.00355204 755.9209602 56.10922769 0.39717849 -0.0075 -0.09214768 0 0 0 0 1.33635607 0
+0.575 0 0 0 0.774512 -0.0075 0.1053999 83.37565931 757.8997626 56.0741918 0.39544842 -0.0075 -0.09195507 0 0 0 0 1.38029677 0
+0.5767 0 0 0 0.77577182 -0.0075 0.10536865 84.73904394 759.8142474 56.01317689 0.39368456 -0.0075 -0.0917582 0 0 0 0 1.42462046 0
+0.5783 0 0 0 0.7770107 -0.0075 0.10533798 86.09524214 761.6627954 55.92631301 0.39188657 -0.0075 -0.09155824 0 0 0 0 1.46908835 0
+0.58 0 0 0 0.77822843 -0.0075 0.10530789 87.44598727 763.4446691 55.81410112 0.39005513 -0.0075 -0.09135639 0 0 0 0 1.51356354 0
+0.5817 0 0 0 0.77942484 -0.0075 0.10527838 88.79300418 765.1598507 55.67725316 0.38819192 -0.0075 -0.09115391 0 0 0 0 1.55811224 0
+0.5833 0 0 0 0.78059973 -0.0075 0.10524946 90.13785972 766.8091357 55.51688364 0.38629968 -0.0075 -0.09095203 0 0 0 0 1.60293401 0
+0.585 0 0 0 0.78175293 -0.0075 0.10522112 91.48174899 768.3939136 55.33445087 0.3843821 -0.0075 -0.09075197 0 0 0 0 1.64837079 0
+0.5867 0 0 0 0.78288425 -0.0075 0.10519337 92.82524266 769.9160895 55.13181012 0.38244372 -0.0075 -0.09055489 0 0 0 0 1.69479964 0
+0.5883 0 0 0 0.78399351 -0.0075 0.10516622 94.16823445 771.3779107 54.9112601 0.38048983 -0.0075 -0.09036187 0 0 0 0 1.74261245 0
+0.59 0 0 0 0.78508051 -0.0075 0.10513965 95.50981312 772.7816827 54.67550162 0.37852625 -0.0075 -0.09017381 0 0 0 0 1.79211978 0
+0.5917 0 0 0 0.78614507 -0.0075 0.10511368 96.84816419 774.1296642 54.42767231 0.37655908 -0.0075 -0.08999147 0 0 0 0 1.84341699 0
+0.5933 0 0 0 0.78718701 -0.0075 0.10508831 98.18064355 775.4236048 54.17118833 0.37459445 -0.0075 -0.0898154 0 0 0 0 1.896431 0
+0.595 0 0 0 0.78820614 -0.0075 0.10506354 99.50385714 776.664579 53.90980813 0.37263823 -0.0075 -0.08964586 0 0 0 0 1.9507799 0
+0.5967 0 0 0 0.78920227 -0.0075 0.10503937 100.8138024 777.8525588 53.64733508 0.37069572 -0.0075 -0.08948285 0 0 0 0 2.00583857 0
+0.5983 -2.19936715 2.41526491 -0.48421601 0.79017523 -0.0075 0.10501581 102.106077 778.9862043 53.38763395 0.36877129 -0.0075 -0.08932604 0.31199689 -0.15469574 -0.59252531 0 2.06065554 0
+0.6 -2.46284812 2.8094625 -0.47299343 0.79112482 -0.0075 0.10499285 103.3762204 780.0625392 53.13432786 0.36686823 -0.0075 -0.08917476 0.34514822 -0.14940853 -0.61890848 0 2.11408463 0
+0.6017 -2.70764191 3.30518824 -0.46104358 0.79205086 -0.0075 0.1049705 104.6200012 781.0767772 52.89064502 0.36498845 -0.0075 -0.08902803 0.37746712 -0.14630601 -0.63566017 0 2.16478543 0
+0.6033 -2.92422488 3.9255338 -0.45378023 0.79295317 -0.0075 0.10494876 105.8337027 782.0222239 52.65923639 0.36313234 -0.0075 -0.08888455 0.40892799 -0.1453902 -0.64254414 0 2.21131547 0
+0.605 -3.10198329 4.69675514 -0.45663777 0.79383155 -0.0075 0.10492763 107.0144878 782.8901383 52.44193665 0.36129868 -0.0075 -0.08874276 0.43954131 -0.14647047 -0.63958868 0 2.25225787 0
+0.6067 -3.22948317 5.64813841 -0.47459695 0.79468583 -0.0075 0.10490712 108.1606754 783.6699944 52.23966934 0.35948479 -0.0075 -0.08860085 0.46936935 -0.14919159 -0.62703537 0 2.28632679 0
+0.6083 -3.29458702 6.81166799 -0.51176707 0.79551581 -0.0075 0.10488722 109.2719805 784.3494799 52.05217761 0.35768652 -0.0075 -0.08845691 0.49854472 -0.15292099 -0.60529366 0 2.31253747 0
+0.61 -3.28508293 8.22163077 -0.570847 0.79632132 -0.0075 0.10486795 110.3496887 784.9149431 51.87808626 0.35589863 -0.0075 -0.08830895 0.527244 -0.15686299 -0.5749651 0 2.33021365 0
+0.6117 -3.18899084 9.91403678 -0.65273027 0.79710216 -0.0075 0.1048493 111.3967692 785.3517417 51.71475984 0.3541151 -0.0075 -0.08815507 0.55568665 -0.15997839 -0.53673679 0 2.3391628 0
+0.6133 -2.99537133 11.92583371 -0.75604698 0.79785816 -0.0075 0.10483127 112.4177827 785.6448125 51.55843333 0.35232958 -0.0075 -0.08799352 0.58409623 -0.16108112 -0.49140827 0 2.33963779 0
+0.615 -2.69484314 14.29413063 -0.87688962 0.79858912 -0.0075 0.10481387 113.4187647 785.7791889 51.40428713 0.35053581 -0.0075 -0.08782284 0.61266095 -0.15888368 -0.43980903 0 2.33238039 0
+0.6167 -2.28041373 17.05515577 -1.00857505 0.79929486 -0.0075 0.10479709 114.4069569 785.7405826 51.24663856 0.34872827 -0.0075 -0.087642 0.64147727 -0.15208098 -0.38278031 0 2.31858835 0
+0.6183 -1.74824442 20.24313863 -1.14157671 0.7999752 -0.0075 0.10478095 115.390451 785.5160277 51.07921951 0.34690255 -0.0075 -0.08745045 0.67051708 -0.13943894 -0.32115296 0 2.29986121 0
+0.62 -1.09830372 23.88916617 -1.26364279 0.80062994 -0.0075 0.10476544 116.3777944 785.0943324 50.89545224 0.34505599 -0.0075 -0.08724826 0.69958274 -0.11988896 -0.25574161 0 2.27809411 0
+0.6217 -0.33512687 28.01995577 -1.35996764 0.80125891 -0.0075 0.10475056 117.3774157 784.4666778 50.68886425 0.34318803 -0.0075 -0.0870361 0.72825949 -0.09266887 -0.18731713 0 2.25528584 0
+0.6233 0.53184507 32.65663022 -1.41373444 0.80186192 -0.0075 0.10473633 118.3971289 783.6267803 50.45330214 0.3413005 -0.0075 -0.08681538 0.7559258 -0.05732267 -0.11659163 0 2.23350043 0
+0.625 1.48768085 37.81365348 -1.40666728 0.80243879 -0.0075 0.10472273 119.4435642 782.5711874 50.18344724 0.33939783 -0.0075 -0.08658813 0.78171764 -0.01389465 -0.04429856 0 2.21459086 0
+0.6267 2.51207252 43.49781088 -1.31978353 0.80298932 -0.0075 0.10470977 120.5216427 781.2992194 49.87495139 0.33748706 -0.0075 -0.08635703 0.80455355 0.03712019 0.02887947 0 2.20015773 0
+0.6283 3.57927966 49.70733538 -1.13424534 0.80351333 -0.0075 0.10469746 121.6340714 779.8127867 49.52475867 0.33557766 -0.0075 -0.0861253 0.82316798 0.09470072 0.10220716 0 2.19138896 0
+0.63 4.65859614 56.43136632 -0.83237722 0.80401064 -0.0075 0.10468579 122.781071 778.1160107 49.13129847 0.33368121 -0.0075 -0.08589659 0.83619193 0.15731617 0.17489008 0 2.18899616 0
+0.6317 5.71500768 63.64953989 -0.39860312 0.80448106 -0.0075 0.10467478 123.9601062 776.2146923 48.694479 0.33181093 -0.0075 -0.08567479 0.84223731 0.22299149 0.24604968 0 2.19317934 0
+0.6333 6.71007571 71.33197805 0.17963548 0.80492441 -0.0075 0.10466441 125.1657529 774.1156742 48.21571826 0.32998099 -0.0075 -0.08546388 0.83997177 0.28936096 0.31468225 0 2.20360999 0
+0.635 7.60322839 79.43959787 0.91093666 0.8053405 -0.0075 0.10465469 126.3898621 771.8259665 47.69775401 0.32820576 -0.0075 -0.08526771 0.82825729 0.35381348 0.3796243 0 2.21951887 0
+0.6367 8.35297592 87.92474692 1.79930402 0.80572915 -0.0075 0.10464564 127.6216978 769.3520484 47.14450742 0.32649901 -0.0075 -0.08508979 0.8062112 0.41357454 0.43952143 0 2.23974386 0
+0.6383 8.91871981 96.73218318 2.84355041 0.80609016 -0.0075 0.10463723 128.8483709 766.698895 46.56066465 0.32487295 -0.0075 -0.08493309 0.77333206 0.46595139 0.4928786 0 2.26290008 0
+0.64 9.2621201 105.8003544 4.03703256 0.80642336 -0.0075 0.10462949 130.0553371 763.8692864 45.95145377 0.32333743 -0.0075 -0.08479982 0.72957563 0.50840319 0.53800013 0 2.2874708 0
+0.6417 9.34888549 115.0629632 5.36763531 0.80672856 -0.0075 0.10462241 131.2271389 760.8631212 45.3221717 0.32189929 -0.0075 -0.08469127 0.67542411 0.5387567 0.57307263 0 2.31204755 0
+0.6433 9.1502422 124.4506726 6.81803899 0.80700557 -0.0075 0.10461599 132.3480524 757.6769038 44.67782795 0.32056162 -0.0075 -0.0846077 0.61190952 0.55532364 0.59617496 0 2.33541972 0
+0.645 8.64439258 133.8930534 8.36624577 0.80725421 -0.0075 0.10461024 133.402859 754.3034747 44.02281535 0.31932342 -0.0075 -0.08454822 0.54060997 0.55703447 0.60537449 0 2.35668843 0
+0.6467 7.81765021 143.320528 9.98637239 0.80747429 -0.0075 0.10460516 134.3776494 750.731868 43.36055311 0.31817945 -0.0075 -0.08451082 0.46362016 0.54352679 0.59877037 0 2.37538631 0
+0.6483 6.66521238 152.6663451 11.64970522 0.80766563 -0.0075 0.10460075 135.2604645 746.9475677 42.69334798 0.31712025 -0.0075 -0.08449237 0.38345108 0.51517417 0.57459364 0 2.39145677 0
+0.65 5.19183634 161.8684107 13.32580495 0.80782804 -0.0075 0.10459701 136.0419252 742.9327954 42.02215733 0.31613248 -0.0075 -0.08448874 0.30295725 0.47315202 0.53131092 0 2.40528332 0
+0.6517 3.4116314 170.8709915 14.98383172 0.80796134 -0.0075 0.10459394 136.7156574 738.6672491 41.34670846 0.31519952 -0.0075 -0.0844949 0.22516496 0.41929513 0.46767449 0 2.41754599 0
+0.6533 1.34795128 179.626099 16.59376774 0.80806534 -0.0075 0.10459156 137.278642 734.1288095 40.66544457 0.31430223 -0.0075 -0.08450518 0.15316576 0.35610477 0.38285236 0 2.42920697 0
+0.655 -0.96760811 188.094601 18.12771217 0.80813986 -0.0075 0.10458985 137.7311797 729.2945945 39.97578255 0.31341989 -0.0075 -0.08451345 0.08991864 0.28654845 0.27645089 0 2.44126975 0
+0.6567 -3.49623705 196.2469949 19.56093783 0.8081847 -0.0075 0.10458882 138.0768391 724.1419317 39.27434275 0.31253126 -0.0075 -0.08451344 0.03811012 0.2139103 0.14860906 0 2.45464354 0
+0.6583 -6.19352139 204.0637356 20.87283449 0.80819969 -0.0075 0.10458848 138.3220337 718.649445 38.55724165 0.31161566 -0.0075 -0.08449895 0 0.14162293 0 0 2.4699607 0
+0.66 -9.01119312 211.5352844 22.04756112 0.80738983 -0.0075 0.10469619 138.4754848 712.7981113 37.82049024 0.31065404 -0.0075 -0.08446412 0 0.05651056 0 0 2.48739524 0
+0.6617 -11.89908167 218.6617173 23.07438032 0.80652036 -0.0075 0.10472224 138.5475256 706.5721088 37.0602769 0.30962997 -0.0075 -0.08440371 0 -0.02440327 0 0 2.50657819 0
+0.6633 -14.80731855 225.4520513 23.94781003 0.80560015 -0.0075 0.10467299 138.5491994 699.9596939 36.27336022 0.30853048 -0.0075 -0.08431327 0 -0.09855274 0 0 2.52648233 0
+0.665 -17.68820714 231.9232855 24.66732554 0.80463881 -0.0075 0.10455648 138.4914253 692.9536412 35.45720847 0.30734671 -0.0075 -0.08418938 0 -0.16375928 0 0 2.5455111 0
+0.6667 -20.49838083 238.0992002 25.23691897 0.80364622 -0.0075 0.10438229 138.3840151 685.5517214 34.61035352 0.30607431 -0.0075 -0.08402973 0 -0.21843956 0 0 2.56144801 0
+0.6683 -23.2002402 244.0090365 25.6643447 0.80263258 -0.0075 0.1041612 138.2348183 677.7566602 33.73235051 0.30471367 -0.0075 -0.0838332 0 -0.26158209 0 0 2.57166765 0
+0.67 -25.76355748 249.6860733 25.96026664 0.80160767 -0.0075 0.10390499 138.0489568 669.5760727 32.8238877 0.30326978 -0.0075 -0.08359992 0 -0.29288762 0 0 2.57323659 0
+0.6717 -28.16634816 255.166266 26.13720692 0.80058073 -0.0075 0.10362586 137.8282583 661.0220404 31.88667414 0.30175191 -0.0075 -0.08333118 0 -0.31273454 0 0 2.56318736 0
+0.6733 -30.39545881 260.486877 26.20856553 0.79955996 -0.0075 0.1033361 137.5708496 652.1105309 30.9232522 0.30017301 -0.0075 -0.08302939 0 -0.32214608 0 0 2.53873222 0
+0.675 -32.44671215 265.685372 26.18758501 0.79855227 -0.0075 0.1030476 137.2710293 642.860696 29.93683286 0.29854892 -0.0075 -0.08269788 0 -0.32280119 0 0 2.4975342 0
+0.6767 -34.32447975 270.7983095 26.08646267 0.79756292 -0.0075 0.10277128 136.9194614 633.2939375 28.93091934 0.29689742 -0.0075 -0.08234076 0 -0.3168567 0 0 2.43801543 0
+0.6783 -36.04104981 275.8605769 25.91569479 0.79659529 -0.0075 0.10251686 136.5035423 623.4331627 27.90916543 0.29523716 -0.0075 -0.08196267 0 -0.30689415 0 0 2.35943035 0
+0.68 -37.61520595 280.9048172 25.68347593 0.79565097 -0.0075 0.10229235 136.0080733 613.3017705 26.87497306 0.29358659 -0.0075 -0.08156852 0 -0.29568161 0 0 2.2621143 0
+0.6817 -39.07101599 285.9610165 25.39551109 0.79472957 -0.0075 0.10210399 135.416112 602.9230437 25.83139926 0.29196285 -0.0075 -0.08116327 0 -0.28605633 0 0 2.14743392 0
+0.6833 -40.4359308 291.0564513 25.05487558 0.79382904 -0.0075 0.10195601 134.7100507 592.3192859 24.7808433 0.2903808 -0.0075 -0.08075165 0 -0.28065104 0 0 2.01784323 0
+0.685 -41.73915735 296.215729 24.66226097 0.79294572 -0.0075 0.10185083 133.8726527 581.5113883 23.72508588 0.2888521 -0.0075 -0.08033791 0 -0.28180318 0 0 1.87668579 0
+0.6867 -43.00975354 301.460988 24.21630912 0.79207479 -0.0075 0.10178904 132.8882021 570.5184869 22.66518503 0.28738466 -0.0075 -0.07992565 0 -0.29131793 0 0 1.72808465 0
+0.6883 -44.27502427 306.8122389 23.71418106 0.79121048 -0.0075 0.10176976 131.7436869 559.3576947 21.60158518 0.2859822 -0.0075 -0.07951762 0 -0.31036743 0 0 1.57662171 0
+0.69 -45.55903352 312.2877817 23.15220061 0.79034662 -0.0075 0.10179092 130.4296331 548.0442646 20.53427903 0.28464416 -0.0075 -0.07911563 0 -0.3394315 0 0 1.42704313 0
+0.6917 -46.88125498 317.9045617 22.52648663 0.78947708 -0.0075 0.10184958 128.9409312 536.5916147 19.46290658 0.28336579 -0.0075 -0.0787205 0 -0.37817028 0 0 1.28393883 0
+0.6933 -48.25600934 323.6786775 21.83364185 0.78859589 -0.0075 0.10194237 127.2773346 525.0117707 18.3872043 0.2821386 -0.0075 -0.07833201 0 -0.42556852 0 0 1.15131505 0
+0.695 -49.69167521 329.6256865 21.0712741 0.78769788 -0.0075 0.10206586 125.4436465 513.3156917 17.30702685 0.28095095 -0.0075 -0.07794908 0 -0.47987218 0 0 1.03246139 0
+0.6967 -51.1908648 335.7608743 20.23851764 0.78677874 -0.0075 0.10221689 123.4496018 501.5138244 16.2227536 0.27978883 -0.0075 -0.07756978 0 -0.53880359 0 0 0.92957575 0
+0.6983 -52.7506074 342.099489 19.33619569 0.78583523 -0.0075 0.10239282 121.3095357 489.616452 15.13544504 0.27863677 -0.0075 -0.07719149 0 -0.59967897 0 0 0.84371967 0
+0.7 -54.36315668 348.6566659 18.36703736 0.7848653 -0.0075 0.10259174 119.0416889 477.6342921 14.04699749 0.2774789 -0.0075 -0.07681119 0 -0.65960541 0 0 0.77474191 0
+0.7017 -56.016844 355.4473921 17.33555413 0.78386823 -0.0075 0.10281252 116.6672701 465.5788859 12.96022589 0.27629987 -0.0075 -0.07642561 0 -0.71565735 0 0 0.72131381 0
+0.7033 -57.69727618 362.4862953 16.24771957 0.78284446 -0.0075 0.10305482 114.2094247 453.4628301 11.87891483 0.27508578 -0.0075 -0.07603146 0 -0.76509555 0 0 0.68102814 0
+0.705 -59.38871638 369.7873039 15.1106057 0.78179566 -0.0075 0.10331907 111.6919416 441.300119 10.80771727 0.27382496 -0.0075 -0.07562571 0 -0.80554656 0 0 0.65065676 0
+0.7067 -61.07521878 377.3632936 13.93177385 0.78072452 -0.0075 0.10360628 109.1381303 429.1060719 9.75193436 0.27250861 -0.0075 -0.07520578 0 -0.83508937 0 0 0.62645861 0
+0.7083 -62.74217028 385.2256263 12.71872198 0.77963447 -0.0075 0.10391792 106.5695753 416.8974607 8.71748492 0.27113125 -0.0075 -0.07476972 0 -0.85251122 0 0 0.60440878 0
+0.71 -64.37704509 393.383636 11.47822479 0.77852973 -0.0075 0.10425565 104.0051821 404.6922571 7.71041458 0.26969107 -0.0075 -0.07431645 0 -0.85722739 0 0 0.58069056 0
+0.7117 -65.97057958 401.8441174 10.21576702 0.77741484 -0.0075 0.10462107 101.460304 392.5094774 6.73681252 0.26819002 -0.0075 -0.07384586 0 -0.84941169 0 0 0.55188326 0
+0.7133 -67.51716958 410.6108791 8.93497798 0.77629465 -0.0075 0.10501556 98.94624899 380.3688343 5.80245689 0.26663374 -0.0075 -0.07335887 0 -0.8299109 0 0 0.51528996 0
+0.715 -69.01517112 419.6842736 7.63736073 0.775174 -0.0075 0.10544 96.469933 368.2904165 4.91249136 0.26503136 -0.0075 -0.07285761 0 -0.80018485 0 0 0.46916247 0
+0.7167 -70.46686149 429.0609017 6.32204936 0.77405766 -0.0075 0.10589475 94.03389843 356.2943027 4.07128859 0.26339518 -0.0075 -0.07234536 0 -0.76219742 0 0 0.41283452 0
+0.7183 -71.87796133 438.7333072 4.98576301 0.7729501 -0.0075 0.1063794 91.63673773 344.40011 3.28222902 0.26174026 -0.0075 -0.07182661 0 -0.7182173 0 0 0.34677369 0
+0.72 -73.25712328 448.6898207 3.6230641 0.77185542 -0.0075 0.10689287 89.27351993 332.6267659 2.54766404 0.26008393 -0.0075 -0.07130699 0 -0.67070654 0 0 0.27251635 0
+0.7217 -74.61482508 458.9144859 2.2266493 0.77077728 -0.0075 0.10743328 86.93674678 320.9920331 1.86884107 0.25844534 -0.0075 -0.07079319 0 -0.62208183 0 0 0.19256323 0
+0.7233 -75.96264029 469.3870511 0.78798424 0.76971866 -0.0075 0.10799811 84.61724124 309.5123473 1.24603572 0.25684502 -0.0075 -0.07029285 0 -0.57462031 0 0 0.11011392 0
+0.725 -77.31182794 480.0831455 -0.70206934 0.76868202 -0.0075 0.10858422 82.30522233 298.2024979 0.67854282 0.25530438 -0.0075 -0.06981454 0 -0.53025722 0 0 0.02885482 0
+0.7267 -78.67241578 490.9744751 -2.25247341 0.76766915 -0.0075 0.10918802 79.99125886 287.0754803 0.16496781 0.25384514 -0.0075 -0.06936747 0 -0.49050886 0 0 -0.04747916 0
+0.7283 -80.05215995 502.0291743 -3.87125048 0.76668113 -0.0075 0.10980557 77.66730901 276.1423365 -0.29665013 0.25248896 -0.0075 -0.06896133 0 -0.45637302 0 0 -0.11535745 0
+0.73 -81.45572132 513.2121987 -5.56468562 0.76571835 -0.0075 0.11043274 75.32752957 265.412049 -0.70862185 0.25125685 -0.0075 -0.06860609 0 -0.42831358 0 0 -0.17177706 0
+0.7317 -82.88410168 524.4857651 -7.33660079 0.76478053 -0.0075 0.11106536 72.96878859 254.8915399 -1.07336271 0.25016853 -0.0075 -0.06831172 0 -0.40628302 0 0 -0.21455763 0
+0.7333 -84.33421766 535.809828 -9.1878273 0.76386669 -0.0075 0.11169932 70.59113357 244.5855627 -1.39328502 0.24924172 -0.0075 -0.06808785 0 -0.38974418 0 0 -0.24247882 0
+0.735 -85.79912899 547.1426436 -11.11574652 0.76297514 -0.0075 0.11233067 68.19780511 234.4968589 -1.67056004 0.24849148 -0.0075 -0.06794347 0 -0.37784088 0 0 -0.25542816 0
+0.7367 -87.26797672 558.4412694 -13.11408842 0.76210361 -0.0075 0.11295569 65.79513063 224.6260987 -1.90715749 0.24792925 -0.0075 -0.06788663 0 -0.36940725 0 0 -0.25436508 0
+0.7383 -88.72681402 569.6621687 -15.17289552 0.76124918 -0.0075 0.11357097 63.39194295 214.9720787 -2.10469401 0.24756176 -0.0075 -0.06792396 0 -0.36318246 0 0 -0.24129291 0
+0.74 -90.15914581 580.7617918 -17.27880278 0.76040842 -0.0075 0.11417339 60.99906957 205.5318034 -2.26449807 0.24739011 -0.0075 -0.0680603 0 -0.35788809 0 0 -0.21900087 0
+0.7417 -91.54698642 591.6971216 -19.41538583 0.75957735 -0.0075 0.11476017 58.62840088 196.3007285 -2.38766916 0.24740502 -0.0075 -0.06805942 0 -0.35234616 0 0.04689994 -0.20482928 0.00068259
+0.7433 -92.87185047 602.4262948 -21.56381659 0.7587516 -0.0075 0.11532884 56.29195948 187.2730018 -2.47514896 0.24744963 -0.0075 -0.06805679 0 -0.34560067 0 0.1088928 -0.19268987 0.02873509
+0.745 -94.11580723 612.9091211 -23.70359063 0.75792644 -0.0075 0.11587723 54.00105574 178.44178 -2.52787094 0.24752375 -0.0075 -0.06805241 0 -0.33699058 0 0.18291003 -0.18521465 0.07626595
+0.7467 -95.26261574 623.1076294 -25.8133548 0.75709685 -0.0075 0.11640345 51.76527172 169.7996702 -2.5468143 0.2476272 -0.0075 -0.06804631 0 -0.32620824 0 0.26555663 -0.18457679 0.13468652
+0.7483 -96.29840763 632.9865482 -27.87184249 0.75625774 -0.0075 0.1169058 49.59175175 161.339048 -2.53320058 0.2477598 -0.0075 -0.06803848 0 -0.31326717 0 0.35323507 -0.19220836 0.19498518
+0.75 -97.2126435 642.5138135 -29.85868585 0.75540398 -0.0075 0.11738281 47.48451746 153.0526701 -2.48846324 0.24792136 -0.0075 -0.06802895 0 -0.29856484 0 0.44220724 -0.20868229 0.24806274
+0.7517 -97.99839749 651.6610294 -31.75531305 0.75453058 -0.0075 0.11783319 45.44416498 144.9340513 -2.41441097 0.24811171 -0.0075 -0.06801772 0 -0.28275716 0 0.52876227 -0.23352751 0.28514662
+0.7533 -98.65283685 660.4038568 -33.54560935 0.75363278 -0.0075 0.11825586 43.46765549 136.9780659 -2.31315225 0.24833066 -0.0075 -0.06800479 0 -0.26674416 0 0.60932496 -0.26529051 0.29815199
+0.755 -99.17702727 668.7224005 -35.21653281 0.75270624 -0.0075 0.11864989 41.54851852 129.1813868 -2.18710837 0.24857803 -0.0075 -0.0679902 0 -0.25156281 0 0.68058488 -0.30156218 0.28014941
+0.7567 -99.57578178 676.6014441 -36.75845832 0.7517471 -0.0075 0.11901461 39.67722156 121.5429209 -2.03892649 0.24885363 -0.0075 -0.06797393 0 -0.23831302 0 0.73963494 -0.33917962 0.2257584
+0.7583 -99.85721801 684.0306681 -38.16539365 0.75075213 -0.0075 0.11934955 37.84181279 114.0641938 -1.87136167 0.24915728 -0.0075 -0.06795601 0 -0.22809473 0 0.78407482 -0.37446482 0.13150521
+0.76 -100.0319587 691.0047166 -39.43495175 0.74971883 -0.0075 0.11965454 36.02882038 106.7495448 -1.68722089 0.2494888 -0.0075 -0.06793645 0 -0.22186252 0 0.81214357 -0.40354661 -0.00385936
+0.7617 -100.1124936 697.5232504 -40.56813363 0.74864551 -0.0075 0.1199297 34.22407566 99.60629612 -1.48909283 0.24984801 -0.0075 -0.06791525 0 -0.2204511 0 0.82273462 -0.42274839 -0.17922626
+0.7633 -100.1120784 703.5908047 -41.56901694 0.74753142 -0.0075 0.12017551 32.41385268 92.64460153 -1.27939927 0.25023472 -0.0075 -0.06789243 0 -0.22440538 0 0.81550678 -0.42882514 -0.39106215
+0.765 -100.044164 709.2166042 -42.44418141 0.74637665 -0.0075 0.12039286 30.58586871 85.8773398 -1.06015111 0.25064875 -0.0075 -0.067868 0 -0.23403885 0 0.79085731 -0.41936448 -0.63347137
+0.7667 -99.92130008 714.4142658 -43.20218842 0.74518229 -0.0075 0.12058311 28.73026201 79.31955607 -0.83300812 0.25108992 -0.0075 -0.06784197 0 -0.24936772 0 0.74989073 -0.39292619 -0.89844937
+0.7683 -99.75459406 719.2012545 -43.85286226 0.74395029 -0.0075 0.12074802 26.84038766 72.98809847 -0.59917584 0.25155804 -0.0075 -0.06781434 0 -0.27017045 0 0.6943887 -0.34928852 -1.17622468
+0.77 -99.55306568 723.598411 -44.40669124 0.74268345 -0.0075 0.12088982 24.91352297 66.90083872 -0.3595017 0.25205294 -0.0075 -0.06778514 0 -0.29596567 0 0.62669202 -0.28946635 -1.45569975
+0.7717 -99.3232625 727.6292836 -44.87416889 0.74138531 -0.0075 0.12101117 22.95125917 61.07590175 -0.11455205 0.25257443 -0.0075 -0.06775436 0 -0.32607253 0 0.54959292 -0.21573572 -1.72504856
+0.7733 -99.06908287 731.3194404 -45.26531249 0.74006007 -0.0075 0.1211151 20.95950858 55.53090835 0.1352617 0.25312232 -0.0075 -0.06772203 0 -0.35967723 0 0.46620144 -0.13147359 -1.97235467
+0.775 -98.79173184 734.6957644 -45.58926573 0.7387124 -0.0075 0.12120497 18.94857786 50.28198839 0.38947066 0.25369644 -0.0075 -0.06768815 0 -0.395825 0 0.37977059 -0.04094401 -2.18622853
+0.7767 -98.49014375 737.7857075 -45.85396824 0.73734719 -0.0075 0.12128436 16.93262753 45.34312677 0.64747259 0.2542966 -0.0075 -0.06765273 0 -0.43355002 0 0.29353437 0.05099355 -2.3564584
+0.7783 -98.16101025 740.616514 -46.06607431 0.73596954 -0.0075 0.121357 14.92908824 40.72529422 0.90813146 0.25492263 -0.0075 -0.06761579 0 -0.47182453 0 0.21060142 0.13933399 -2.47455868
+0.78 -97.79968406 743.2145493 -46.23088808 0.7345844 -0.0075 0.12142661 12.95786187 36.43595503 1.16984341 0.25557432 -0.0075 -0.06757733 0 -0.50971661 0 0.13374965 0.21915902 -2.53423023
+0.7817 -97.40053222 745.6046397 -46.3525466 0.73319645 -0.0075 0.12149677 11.04036582 32.47854238 1.43022505 0.25625151 -0.0075 -0.06753737 0 -0.54632602 0 0.06535353 0.28615149 -2.53168863
+0.7833 -96.95766416 747.8094864 -46.43414611 0.73180995 -0.0075 0.12157082 9.19843286 28.8523301 1.68610527 0.25695401 -0.0075 -0.06749591 0 -0.58083128 0 0.00729685 0.33681532 -2.46584579
+0.785 -96.46554947 749.8493255 -46.47812185 0.73042857 -0.0075 0.12165169 7.45321791 25.55227794 1.93355996 0.25768164 -0.0075 -0.06745298 0 -0.61251913 0 -0.03911637 0.36876931 -2.33836591
+0.7867 -95.91958937 751.7415495 -46.48654288 0.72905526 -0.0075 0.12174185 5.82425793 22.56921152 2.16792791 0.25843421 -0.0075 -0.06740857 0 -0.64074087 0 -0.07316564 0.38095733 -2.15350084
+0.7883 -95.31673439 753.5005732 -46.46142346 0.72769216 -0.0075 0.12184323 4.32838983 19.8902123 2.38399384 0.25921155 -0.0075 -0.06736269 0 -0.66495221 0 -0.09470141 0.37374856 -1.91783851
+0.79 -94.65565506 755.1377891 -46.40504168 0.72634062 -0.0075 0.1219571 2.97916569 17.49899334 2.57619959 0.26001346 -0.0075 -0.06731537 0 -0.68466511 0 -0.10411985 0.34887472 -1.63988224
+0.7917 -93.93724343 756.6615835 -46.32012646 0.72500112 -0.0075 0.12208412 1.78611029 15.37671314 2.7390379 0.26083978 -0.0075 -0.06726661 0 -0.69951585 0 -0.10229291 0.30929071 -1.32955227
+0.7933 -93.16439296 758.0775308 -46.21004811 0.72367344 -0.0075 0.1222243 0.75450711 13.50249882 2.86721809 0.2616903 -0.0075 -0.06721642 0 -0.70914574 0 -0.09046846 0.25900712 -0.99763967
+0.795 -92.34221826 759.3886524 -46.07883395 0.72235663 -0.0075 0.12237703 -0.11478453 11.85433533 2.95624655 0.26256486 -0.0075 -0.06716481 0 -0.71332365 0 -0.07021535 0.20263294 -0.65525432
+0.7967 -91.47758653 760.5957865 -45.93115415 0.72104931 -0.0075 0.12254118 -0.82522898 10.40972009 3.00258479 0.26346327 -0.0075 -0.06711179 0 -0.71188381 0 -0.04327614 0.14514333 -0.31327038
+0.7983 -90.57887719 761.6979642 -45.7721704 0.71974969 -0.0075 0.12271519 -1.38423516 9.14639183 3.00407661 0.26438534 -0.0075 -0.06705738 0 -0.70475444 0 -0.01148634 0.09141262 0.01816735
+0.8 -89.65562377 762.692824 -45.60736613 0.7184558 -0.0075 0.12289718 -1.80266022 8.04292883 2.96023421 0.2653309 -0.0075 -0.06700158 0 -0.6919826 0 0.02329752 0.0458591 0.33003158
+0.8017 -88.71783178 763.5769631 -45.44225823 0.71716567 -0.0075 0.12308507 -2.09405291 7.07922022 2.8723252 0.26629975 -0.0075 -0.06694441 0 -0.67371888 0 0.05931351 0.0120893 0.61476741
+0.8033 -87.77566669 764.346311 -45.28212931 0.71587746 -0.0075 0.12327669 -2.27403954 6.23691042 2.74354147 0.26729173 -0.0075 -0.06688587 0 -0.65031111 0 0.09492723 -0.00739905 0.86644245
+0.805 -86.83872123 764.9964492 -45.1317561 0.71458968 -0.0075 0.12346989 -2.35926618 5.49949864 2.57884154 0.26830663 -0.0075 -0.06682598 0 -0.62223601 0 0.12868805 -0.01137989 1.08088859
+0.8067 -85.91574488 765.5228538 -44.9951093 0.71330119 -0.0075 0.12366269 -2.36678685 4.85256722 2.38486546 0.26934429 -0.0075 -0.06676474 0 -0.59016845 0 0.15935278 -0.00004405 1.25561985
+0.8083 -85.01396804 765.9211397 -44.87522045 0.71201145 -0.0075 0.12385333 -2.31322366 4.28361397 2.16954217 0.27040453 -0.0075 -0.06670217 0 -0.5549096 0 0.18590766 0.02508719 1.38972802
+0.81 -84.13903721 766.1871729 -44.77401379 0.71072045 -0.0075 0.12404035 -2.2140587 3.78203662 1.94181075 0.27148714 -0.0075 -0.06663829 0 -0.5174042 0 0.20753348 0.06123225 1.48370087
+0.8117 -83.29473852 766.3171337 -44.69228814 0.70942872 -0.0075 0.12422265 -2.08311555 3.3388638 1.71103389 0.27259196 -0.0075 -0.06657309 0 -0.47868507 0 0.22362639 0.10468581 1.53916622
+0.8133 -82.48281266 766.3075464 -44.62972895 0.70813737 -0.0075 0.12439947 -1.9321478 2.94652789 1.48654564 0.27371881 -0.0075 -0.06650659 0 -0.43982604 0 0.23375987 0.15104532 1.55862221
+0.815 -81.70317033 766.1552233 -44.58501777 0.70684791 -0.0075 0.12457045 0 0 0 0.27486749 -0.0075 -0.06643881 0 -0.40193122 0 0 0 0
+0.8167 -80.9538838 765.857223 -44.55603296 0.70556224 -0.0075 0.12473554 0 0 0 0.27603782 -0.0075 -0.06636974 0 -0.36602248 0 0 0 0
+0.8183 -80.23161406 765.4108041 -44.54007394 0.70428245 -0.0075 0.12489499 0 0 0 0.27722963 -0.0075 -0.06629941 0 -0.33303615 0 0 0 0
+0.82 -79.53166413 764.8133575 -44.53414416 0.70301074 -0.0075 0.12504931 0 0 0 0.27844273 -0.0075 -0.06622783 0 -0.3037033 0 0 0 0
+0.8217 -78.84866961 764.0623961 -44.53519113 0.70174918 -0.0075 0.12519919 0 0 0 0.27967694 -0.0075 -0.06615499 0 -0.27858501 0 0 0 0
+0.8233 -78.17677282 763.1555281 -44.54041405 0.7004997 -0.0075 0.12534548 0 0 0 0.28093207 -0.0075 -0.06608092 0 -0.25797099 0 0 0 0
+0.825 -77.51014162 762.0904474 -44.54739327 0.69926382 -0.0075 0.12548908 0 0 0 0.28220794 -0.0075 -0.06600563 0 -0.24191944 0 0 0 0
+0.8267 -76.84337211 760.8650021 -44.55430299 0.69804265 -0.0075 0.12563095 0 0 0 0.28350438 -0.0075 -0.06592913 0 -0.23027214 0 0 0 0
+0.8283 -76.17172332 759.4772077 -44.56001575 0.69683678 -0.0075 0.12577199 0 0 0 0.28482118 -0.0075 -0.06585142 0 -0.2226285 0 0 0 0
+0.83 -75.49151469 757.9253826 -44.56407362 0.69564626 -0.0075 0.12591307 0 0 0 0.28615819 -0.0075 -0.06577252 0 -0.21843899 0 0 0 0
+0.8317 -74.80005206 756.2082659 -44.56668122 0.69447061 -0.0075 0.126055 0 0 0 0.2875152 -0.0075 -0.06569244 0 -0.21701288 0 0 0 0
+0.8333 -74.0960299 754.3251453 -44.56860281 0.69330882 -0.0075 0.12619853 0 0 0 0.28889204 -0.0075 -0.06561119 0 -0.21764077 0 0 0 0
+0.835 -73.37925793 752.2759723 -44.5710903 0.69215942 -0.0075 0.12634429 0 0 0 0.29028853 -0.0075 -0.06552878 0 -0.21956382 0 0 0 0
+0.8367 -72.65075308 750.0614542 -44.57560737 0.69102059 -0.0075 0.12649287 0 0 0 0.29170448 -0.0075 -0.06544522 0 -0.22210854 0 0 0 0
+0.8383 -71.91242765 747.6831432 -44.5837421 0.68989026 -0.0075 0.12664478 0 0 0 0.29313971 -0.0075 -0.06536053 0 -0.22469012 0 0 0 0
+0.84 -71.16692694 745.1434669 -44.59697787 0.68876621 -0.0075 0.12680043 0 0 0 0.29459404 -0.0075 -0.06527471 0 -0.22685836 0 0 0 0
+0.8417 -70.41737616 742.4458289 -44.61656813 0.68764622 -0.0075 0.12696019 0 0 0 0.29606728 -0.0075 -0.06518777 0 -0.22831543 0 0 0 0
+0.8433 -69.66688803 739.594592 -44.6434335 0.68652822 -0.0075 0.1271243 0 0 0 0.29755925 -0.0075 -0.06509972 0 -0.22885183 0 0 0 0
+0.845 -68.91855583 736.5950995 -44.67808276 0.68541034 -0.0075 0.12729296 0 0 0 0.29906978 -0.0075 -0.06501058 0 -0.22840432 0 0 0 0
+0.8467 -68.17494385 733.4536765 -44.72060277 0.68429106 -0.0075 0.12746625 0 0 0 0.30059867 -0.0075 -0.06492036 0 -0.22692227 0 0 0 0
+0.8483 -67.4381165 730.1775689 -44.77062781 0.68316918 -0.0075 0.12764415 0 0 0 0.30214574 -0.0075 -0.06482907 0 -0.22442842 0 0 0 0
+0.85 -66.70916641 726.7749241 -44.82746755 0.68204402 -0.0075 0.12782648 0 0 0 0.30371081 -0.0075 -0.06473671 0 -0.22090003 0 0 0 0
+0.8517 -65.98841544 723.2547463 -44.89008449 0.6809153 -0.0075 0.12801292 0 0 0 0.3052937 -0.0075 -0.0646433 0 -0.21625989 0 0 0 0
+0.8533 -65.27523875 719.6269386 -44.95726578 0.67978326 -0.0075 0.12820298 0 0 0 0.30689423 -0.0075 -0.06454885 0 -0.2103027 0 0 0 0
+0.855 -64.56810697 715.9022487 -45.02769384 0.67864858 -0.0075 0.12839601 0 0 0 0.30851221 -0.0075 -0.06445337 0 -0.20269798 0 0 0 0
+0.8567 -63.86491204 712.0923291 -45.100033 0.67751233 -0.0075 0.1285912 0 0 0 0.31014745 -0.0075 -0.06435687 0 -0.19299852 0 0 0 0
+0.8583 -63.16296878 708.2096948 -45.17298245 0.67637596 -0.0075 0.12878762 0 0 0 0.31179979 -0.0075 -0.06425936 0 -0.18059135 0 0 0 0
+0.86 -62.4594464 704.2677256 -45.24533254 0.67524122 -0.0075 0.12898421 0 0 0 0.31346903 -0.0075 -0.06416086 0 -0.1648254 0 0 0 0
+0.8617 -61.75140614 700.2806728 -45.31597035 0.67411008 -0.0075 0.12917987 0 0 0 0.31515499 -0.0075 -0.06406137 0 -0.14498694 0 0 0 0
+0.8633 -61.03636266 696.2635683 -45.38381293 0.67298465 -0.0075 0.12937347 0 0 0 0.31685749 -0.0075 -0.0639609 0 -0.12042557 0 0 0 0
+0.865 -60.31222315 692.2322148 -45.44787706 0.67186717 -0.0075 0.12956391 0 0 0 0.31857635 -0.0075 -0.06385947 0 -0.09055822 0 0 0 0
+0.8667 -59.57769493 688.2030741 -45.50708946 0.67075983 -0.0075 0.12975026 0 0 0 0.32031137 -0.0075 -0.06375708 0 -0.05499423 0 0 0 0
+0.8683 -58.83238571 684.193132 -45.56033224 0.66966483 -0.0075 0.12993175 0 0 0 0.32206239 -0.0075 -0.06365375 0 -0.01358475 0 0 0 0
+0.87 -58.07687078 680.2196477 -45.60633833 0.66858416 -0.0075 0.13010786 0 0 0 0.32382922 -0.0075 -0.06354948 0 0.03354718 0 0 0 0
+0.8717 -57.31282068 676.2999478 -45.64362149 0.66751965 -0.0075 0.13027838 0 0 0 0.32561167 -0.0075 -0.0634443 0 0.08590835 0 0 0 0
+0.8733 -56.54267672 672.4510483 -45.67044775 0.66647297 -0.0075 0.13044339 0 0 0 0.32740957 -0.0075 -0.0633382 0 0.14271447 0 0 0 0
+0.875 -55.76983 668.6893486 -45.68487582 0.6654454 -0.0075 0.13060333 0 0 0 0.32922272 -0.0075 -0.0632312 0 0.20280743 0 0 0 0
+0.8767 -54.99810781 665.0303025 -45.68476967 0.66443803 -0.0075 0.13075896 0 0 0 0.33105095 -0.0075 -0.06312332 0 0.26478133 0 0 0 0
+0.8783 -54.23174895 661.4880464 -45.66787351 0.66345152 -0.0075 0.13091137 0 0 0 0.33289408 -0.0075 -0.06301455 0 0.32697764 0 0 0 0
+0.88 -53.47497668 658.0750613 -45.63196878 0.66248624 -0.0075 0.13106189 0 0 0 0.33475191 -0.0075 -0.06290491 0 0.38762973 0 0 0 0
+0.8817 -52.73182452 654.8018176 -45.57496088 0.66154208 -0.0075 0.13121207 0 0 0 0.33662428 -0.0075 -0.06279442 0 0.4449375 0 0 0 0
+0.8833 -52.0058202 651.6764703 -45.49504289 0.66061856 -0.0075 0.13136353 0 0 0 0.33851099 -0.0075 -0.06268308 0 0.4971635 0 0 0 0
+0.885 -51.29961861 648.7046571 -45.39086258 0.65971482 -0.0075 0.13151789 0 0 0 0.34041186 -0.0075 -0.06257091 0 0.54277083 0 0 0 0
+0.8867 -50.61503611 645.889377 -45.26168183 0.65882957 -0.0075 0.13167671 0 0 0 0.34232671 -0.0075 -0.06245791 0 0.58048383 0 0 0 0
+0.8883 -49.95263065 643.230939 -45.10749871 0.65796116 -0.0075 0.13184133 0 0 0 0.34425537 -0.0075 -0.0623441 0 0.6094712 0 0 0 0
+0.89 -49.31189663 640.7269939 -44.92918104 0.65710758 -0.0075 0.13201281 0 0 0 0.34619763 -0.0075 -0.06222948 0 0.62932131 0 0 0 0
+0.8917 -48.69108638 638.3726934 -44.7285195 0.65626652 -0.0075 0.13219188 0 0 0 0.34815333 -0.0075 -0.06211407 0 0.6401569 0 0 0 0
+0.8933 -48.08752379 636.1608409 -44.50824375 0.65543534 -0.0075 0.13237885 0 0 0 0.35012228 -0.0075 -0.06199788 0 0.64260175 0 0 0 0
+0.895 -47.4976058 634.0822047 -44.27201155 0.65461121 -0.0075 0.13257355 0 0 0 0.35210429 -0.0075 -0.06188092 0 0.63778587 0 0 0 0
+0.8967 -46.9170405 632.1258833 -44.02427604 0.65379117 -0.0075 0.13277538 0 0 0 0.35409919 -0.0075 -0.0617632 0 0.62728145 0 0 0 0
+0.8983 -46.34127997 630.2796641 -43.77016729 0.65297212 -0.0075 0.13298327 0 0 0 0.35610679 -0.0075 -0.06164472 0 0.61302248 0 0 0 0
+0.9 -45.76558773 628.530499 -43.51535322 0.65215103 -0.0075 0.13319575 0 0 0 0.3581269 -0.0075 -0.06152551 0 0.59725758 0 0 0 0
+0.9017 -45.18558292 626.8649544 -43.26576212 0.65132493 -0.0075 0.13341099 0 0 0 0.36015935 -0.0075 -0.06140557 0 0.58235562 0 0 0 0
+0.9033 -44.59732471 625.2696163 -43.02737956 0.65049111 -0.0075 0.1336269 0 0 0 0.36220396 -0.0075 -0.06128492 0 0.57075943 0 0 0 0
+0.905 -43.99787602 623.7315021 -42.80597515 0.64964701 -0.0075 0.1338412 0 0 0 0.36426053 -0.0075 -0.06116356 0 0.56477989 0 0 0 0
+0.9067 -43.3852527 622.2384405 -42.60685834 0.64879055 -0.0075 0.13405152 0 0 0 0.3663289 -0.0075 -0.0610415 0 0.56651923 0 0 0 0
+0.9083 -42.75875327 620.779358 -42.43459022 0.64792003 -0.0075 0.13425549 0 0 0 0.36840886 -0.0075 -0.06091875 0 0.57772048 0 0 0 0
+0.91 -42.11902855 619.3446141 -42.29284998 0.64703431 -0.0075 0.13445087 0 0 0 0.37050025 -0.0075 -0.06079534 0 0.59968908 0 0 0 0
+0.9117 -41.46801164 617.9261849 -42.18423877 0.64613284 -0.0075 0.13463561 0 0 0 0.37260288 -0.0075 -0.06067126 0 0.63322313 0 0 0 0
+0.9133 -40.80901421 616.5178448 -42.110107 0.64521571 -0.0075 0.13480805 0 0 0 0.37471656 -0.0075 -0.06054653 0 0.67852839 0 0 0 0
+0.915 -40.14641854 615.1152355 -42.07060127 0.64428368 -0.0075 0.13496683 0 0 0 0.37684112 -0.0075 -0.06042115 0 0.73526304 0 0 0 0
+0.9167 -39.48578859 613.7158701 -42.06456997 0.64333811 -0.0075 0.13511109 0 0 0 0.37897637 -0.0075 -0.06029515 0 0.80245476 0 0 0 0
+0.9183 -38.8332538 612.319114 -42.08965189 0.6423811 -0.0075 0.13524042 0 0 0 0.38112212 -0.0075 -0.06016852 0 0.87865291 0 0 0 0
+0.92 -38.19552037 610.9260627 -42.14233698 0.64141527 -0.0075 0.13535494 0 0 0 0.3832782 -0.0075 -0.06004129 0 0.96188088 0 0 0 0
+0.9217 -37.57936427 609.5394662 -42.2182066 0.6404438 -0.0075 0.13545524 0 0 0 0.38544443 -0.0075 -0.05991345 0 1.04979906 0 0 0 0
+0.9233 -36.99140911 608.1635227 -42.31206383 0.63947029 -0.0075 0.1355424 0 0 0 0.38762061 -0.0075 -0.05978503 0 1.13981337 0 0 0 0
+0.925 -36.43780798 606.8037231 -42.41824026 0.6384986 -0.0075 0.13561794 0 0 0 0.38980657 -0.0075 -0.05965604 0 1.2292027 0 0 0 0
+0.9267 -35.92386829 605.4665832 -42.53081913 0.63753272 -0.0075 0.1356837 0 0 0 0.39200213 -0.0075 -0.05952647 0 1.31525014 0 0 0 0
+0.9283 -35.45405155 604.1594132 -42.6438792 0.63657658 -0.0075 0.13574183 0 0 0 0.3942071 -0.0075 -0.05939635 0 1.39534678 0 0 0 0
+0.93 -35.0314094 602.890055 -42.75179777 0.63563392 -0.0075 0.13579462 0 0 0 0.39642129 -0.0075 -0.05926569 0 1.46720491 0 0 0 0
+0.9317 -34.65773799 601.666606 -42.84943931 0.63470807 -0.0075 0.13584443 0 0 0 0.39864453 -0.0075 -0.05913449 0 1.528867 0 0 0 0
+0.9333 -34.33324013 600.4972338 -42.93241333 0.63380188 -0.0075 0.13589353 0 0 0 0.40087664 -0.0075 -0.05900277 0 1.5789146 0 0 0 0
+0.935 -34.05676981 599.3898856 -42.99719292 0.63291745 -0.0075 0.13594407 0 0 0 0.40311742 -0.0075 -0.05887054 0 1.61649935 0 0 0 0
+0.9367 -33.82565328 598.3521474 -43.04129583 0.6320562 -0.0075 0.13599788 0 0 0 0.40536671 -0.0075 -0.0587378 0 1.64137489 0 0 0 0
+0.9383 -33.63591843 597.3909935 -43.06325361 0.63121864 -0.0075 0.1360565 0 0 0 0.4076243 -0.0075 -0.05860458 0 1.65391995 0 0 0 0
+0.94 -33.48251467 596.5126331 -43.06269766 0.63040443 -0.0075 0.136121 0 0 0 0.40989003 -0.0075 -0.05847087 0 1.65511833 0 0 0 0
+0.9417 -33.3593249 595.7223864 -43.04027571 0.6296124 -0.0075 0.13619201 0 0 0 0.41216371 -0.0075 -0.0583367 0 1.64650269 0 0 0 0
+0.9433 -33.25965704 595.0246264 -42.99752497 0.6288406 -0.0075 0.13626966 0 0 0 0.41444516 -0.0075 -0.05820207 0 1.63002694 0 0 0 0
+0.945 -33.17625517 594.4226813 -42.9367452 0.62808649 -0.0075 0.13635364 0 0 0 0.41673419 -0.0075 -0.05806699 0 1.60805116 0 0 0 0
+0.9467 -33.10186887 593.918893 -42.86080031 0.62734694 -0.0075 0.1364432 0 0 0 0.41903062 -0.0075 -0.05793147 0 1.58310911 0 0 0 0
+0.9483 -33.02928099 593.514668 -42.77292416 0.6266186 -0.0075 0.13653729 0 0 0 0.42133427 -0.0075 -0.05779553 0 1.5578552 0 0 0 0
+0.95 -32.95181305 593.2104438 -42.67641134 0.6258979 -0.0075 0.13663461 0 0 0 0.42364496 -0.0075 -0.05765917 0 1.53488565 0 0 0 0
+0.9517 -32.86350541 593.0058611 -42.57450108 0.62518138 -0.0075 0.13673367 0 0 0 0.4259625 -0.0075 -0.05752241 0 1.51657969 0 0 0 0
+0.9533 -32.75929943 592.8997907 -42.47003342 0.62446579 -0.0075 0.13683297 0 0 0 0.42828671 -0.0075 -0.05738525 0 1.50501686 0 0 0 0
+0.955 -32.63528958 592.8905007 -42.36532366 0.62374835 -0.0075 0.13693108 0 0 0 0.43061741 -0.0075 -0.05724771 0 1.5018531 0 0 0 0
+0.9567 -32.48874905 592.9757852 -42.26202865 0.6230268 -0.0075 0.13702673 0 0 0 0.43295441 -0.0075 -0.0571098 0 1.50826553 0 0 0 0
+0.9583 -32.31846086 593.1531002 -42.16098808 0.62229946 -0.0075 0.13711896 0 0 0 0.43529754 -0.0075 -0.05697153 0 1.52483421 0 0 0 0
+0.96 -32.12443248 593.4196364 -42.06221061 0.62156542 -0.0075 0.13720711 0 0 0 0.4376466 -0.0075 -0.05683291 0 1.55163861 0 0 0 0
+0.9617 -31.90820661 593.7723961 -41.9648647 0.6208243 -0.0075 0.13729094 0 0 0 0.44000142 -0.0075 -0.05669394 0 1.58813582 0 0 0 0
+0.9633 -31.67253557 594.2082213 -41.8673254 0.62007637 -0.0075 0.13737054 0 0 0 0.44236181 -0.0075 -0.05655465 0 1.63328237 0 0 0 0
+0.965 -31.42137814 594.7237679 -41.76728058 0.61932239 -0.0075 0.13744636 0 0 0 0.4447276 -0.0075 -0.05641504 0 1.68557201 0 0 0 0
+0.9667 -31.15966533 595.3155698 -41.66190983 0.61856344 -0.0075 0.13751916 0 0 0 0.44709859 -0.0075 -0.05627513 0 1.74309704 0 0 0 0
+0.9683 -30.89304078 595.9799535 -41.54804317 0.61780082 -0.0075 0.13758994 0 0 0 0.44947461 -0.0075 -0.05613491 0 1.80371121 0 0 0 0
+0.97 -30.62777093 596.7129685 -41.42241624 0.61703578 -0.0075 0.13765983 0 0 0 0.45185547 -0.0075 -0.05599441 0 1.8651094 0 0 0 0
+0.9717 -30.37025663 597.5103217 -41.28188701 0.6162694 -0.0075 0.13773 0 0 0 0.454241 -0.0075 -0.05585364 0 1.92497445 0 0 0 0
+0.9733 -30.12700711 598.367231 -41.12361826 0.61550232 -0.0075 0.13780158 0 0 0 0.45663099 -0.0075 -0.0557126 0 1.98102992 0 0 0 0
+0.975 -29.90410975 599.2783477 -40.94532803 0.61473475 -0.0075 0.13787552 0 0 0 0.45902529 -0.0075 -0.05557131 0 2.03125864 0 0 0 0
+0.9767 -29.70718307 600.2376695 -40.74545136 0.61396613 -0.0075 0.13795248 0 0 0 0.46142369 -0.0075 -0.05542977 0 2.07390411 0 0 0 0
+0.9783 -29.54089285 601.2385446 -40.52326034 0.6131953 -0.0075 0.13803287 0 0 0 0.46382603 -0.0075 -0.05528801 0 2.10761225 0 0 0 0
+0.98 -29.40889342 602.2736096 -40.27897162 0.61242031 -0.0075 0.13811671 0 0 0 0.46623211 -0.0075 -0.05514602 0 2.13149366 0 0 0 0
+0.9817 -29.31366252 603.3348763 -40.01381415 0.6116385 -0.0075 0.13820365 0 0 0 0.46864176 -0.0075 -0.05500382 0 2.14512363 0 0 0 0
+0.9833 -29.25622411 604.4137957 -39.72995486 0.61084658 -0.0075 0.13829302 0 0 0 0.47105478 -0.0075 -0.05486143 0 2.14858173 0 0 0 0
+0.985 -29.23629805 605.501344 -39.43044633 0.61004072 -0.0075 0.13838383 0 0 0 0.47347101 -0.0075 -0.05471884 0 2.14241574 0 0 0 0
+0.9867 -29.25207669 606.588251 -39.11916544 0.60921672 -0.0075 0.1384748 0 0 0 0.47589024 -0.0075 -0.05457608 0 2.12763033 0 0 0 0
+0.9883 -29.300464 607.6652129 -38.8005574 0.60837014 -0.0075 0.13856454 0 0 0 0.47831232 -0.0075 -0.05443315 0 2.10556311 0 0 0 0
+0.99 -29.37687383 608.7231569 -38.47951111 0.60749665 -0.0075 0.13865154 0 0 0 0.48073704 -0.0075 -0.05429006 0 2.07791328 0 0 0 0
+0.9917 -29.47567861 609.7535468 -38.16114899 0.60659206 -0.0075 0.13873436 0 0 0 0.48316423 -0.0075 -0.05414683 0 2.04656707 0 0 0 0
+0.9933 -29.59023024 610.7486829 -37.8506128 0.60565262 -0.0075 0.13881166 0 0 0 0.4855937 -0.0075 -0.05400346 0 2.01355011 0 0 0 0
+0.995 -29.71312239 611.7018997 -37.55282628 0.60467514 -0.0075 0.13888233 0 0 0 0.48802527 -0.0075 -0.05385997 0 1.98094865 0 0 0 0
+0.9967 -29.83654433 612.6078758 -37.27229883 0.60365716 -0.0075 0.13894552 0 0 0 0.49045877 -0.0075 -0.05371636 0 1.95075823 0 0 0 0
+0.9983 -29.95238446 613.462784 -37.01297156 0.60259705 -0.0075 0.13900069 0 0 0 0.492894 -0.0075 -0.05357265 0 1.92484282 0 0 0 0
+1 -30.05269994 614.2644397 -36.77801075 0.60149409 -0.0075 0.13904768 0 0 0 0.49533078 -0.0075 -0.05342885 0 1.90482298 0 0 0 0
+1.0017 -30.12973389 615.0124344 -36.56979909 0.60034854 -0.0075 0.13908665 0 0 0 0.49776893 -0.0075 -0.05328497 0 1.89206725 0 0 0 0
+1.0033 -30.17649266 615.7080822 -36.38979111 0.5991615 -0.0075 0.13911811 0 0 0 0.50020828 -0.0075 -0.05314102 0 1.88754482 0 0 0 0
+1.005 -30.18668597 616.354384 -36.2385499 0.59793497 -0.0075 0.13914285 0 0 0 0.50264862 -0.0075 -0.05299701 0 1.89190468 0 0 0 0
+1.0067 -30.15513586 616.9558317 -36.11571971 0.59667166 -0.0075 0.13916192 0 0 0 0.50508979 -0.0075 -0.05285296 0 1.90536478 0 0 0 0
+1.0083 -30.07781538 617.5182263 -36.02011528 0.59537492 -0.0075 0.13917649 0 0 0 0.5075316 -0.0075 -0.05270886 0 1.92771209 0 0 0 0
+1.01 -29.95194669 618.0483292 -35.94978463 0.59404852 -0.0075 0.13918782 0 0 0 0.50997387 -0.0075 -0.05256474 0 1.95835748 0 0 0 0
+1.0117 -29.77614791 618.5536022 -35.90215167 0.59269653 -0.0075 0.13919716 0 0 0 0.51241641 -0.0075 -0.0524206 0 1.99632358 0 0 0 0
+1.0133 -29.55018263 619.0418483 -35.87415014 0.59132318 -0.0075 0.13920564 0 0 0 0.51485904 -0.0075 -0.05227645 0 2.04033988 0 0 0 0
+1.015 -29.27522568 619.5208464 -35.86235701 0.58993257 -0.0075 0.13921427 0 0 0 0.51730158 -0.0075 -0.05213232 0 2.08882906 0 0 0 0
+1.0167 -28.95346912 619.9980389 -35.86322316 0.58852866 -0.0075 0.13922386 0 0 0 0.51974384 -0.0075 -0.05198819 0 2.1400623 0 0 0 0
+1.0183 -28.58821461 620.4801587 -35.87315548 0.58711496 -0.0075 0.13923495 0 0 0 0.52218565 -0.0075 -0.0518441 0 2.19213999 0 0 0 0
+1.02 -28.18345331 620.9729894 -35.88874915 0.58569462 -0.0075 0.1392478 0 0 0 0.52462682 -0.0075 -0.05170004 0 2.2431398 0 0 0 0
+1.0217 -27.74381089 621.4810789 -35.90688645 0.58427014 -0.0075 0.13926241 0 0 0 0.52706717 -0.0075 -0.05155603 0 2.29118339 0 0 0 0
+1.0233 -27.27425734 622.0076442 -35.92492303 0.58284352 -0.0075 0.13927851 0 0 0 0.52950651 -0.0075 -0.05141208 0 2.33450682 0 0 0 0
+1.025 -26.77977848 622.5544553 -35.94074424 0.58141612 -0.0075 0.13929559 0 0 0 0.53194466 -0.0075 -0.0512682 0 2.37157117 0 0 0 0
+1.0267 -26.2653277 623.1218193 -35.95288284 0.5799887 -0.0075 0.139313 0 0 0 0.53438144 -0.0075 -0.0511244 0 2.40109825 0 0 0 0
+1.0283 -25.73538705 623.7086167 -35.96059707 0.57856148 -0.0075 0.1393299 0 0 0 0.53681667 -0.0075 -0.05098069 0 2.42217973 0 0 0 0
+1.03 -25.19402644 624.3123988 -35.96385459 0.57713412 -0.0075 0.13934542 0 0 0 0.53925017 -0.0075 -0.05083709 0 2.43425571 0 0 0 0
+1.0317 -24.64446231 624.9295012 -35.96335934 0.57570593 -0.0075 0.13935861 0 0 0 0.54168174 -0.0075 -0.0506936 0 2.4372168 0 0 0 0
+1.0333 -24.08918765 625.5552386 -35.96046081 0.57427572 -0.0075 0.13936855 0 0 0 0.54411121 -0.0075 -0.05055023 0 2.4313294 0 0 0 0
+1.035 -23.52968457 626.1841703 -35.95713343 0.5728421 -0.0075 0.13937436 0 0 0 0.5465384 -0.0075 -0.050407 0 2.41728764 0 0 0 0
+1.0367 -22.96644639 626.8102956 -35.95583654 0.57140344 -0.0075 0.13937528 0 0 0 0.54896312 -0.0075 -0.05026391 0 2.39620049 0 0 0 0
+1.0383 -22.39911684 627.4273919 -35.95943356 0.56995798 -0.0075 0.13937067 0 0 0 0.5513852 -0.0075 -0.05012098 0 2.36949751 0 0 0 0
+1.04 -21.82642044 628.0291859 -35.97099772 0.56850384 -0.0075 0.13936002 0 0 0 0.55380444 -0.0075 -0.04997821 0 2.33890105 0 0 0 0
+1.0417 -21.24642779 628.6095973 -35.99365583 0.56703911 -0.0075 0.13934296 0 0 0 0.55622066 -0.0075 -0.04983563 0 2.30630506 0 0 0 0
+1.0433 -20.65648547 629.1629944 -36.03046161 0.56556197 -0.0075 0.13931923 0 0 0 0.55863369 -0.0075 -0.04969323 0 2.27375485 0 0 0 0
+1.045 -20.05367332 629.6843581 -36.08414641 0.5640706 -0.0075 0.13928874 0 0 0 0.56104333 -0.0075 -0.04955103 0 2.24325594 0 0 0 0
+1.0467 -19.43470612 630.1695176 -36.15706666 0.56256343 -0.0075 0.13925147 0 0 0 0.56344941 -0.0075 -0.04940905 0 2.21679471 0 0 0 0
+1.0483 -18.79639503 630.6153004 -36.25099226 0.56103897 -0.0075 0.13920755 0 0 0 0.56585175 -0.0075 -0.04926728 0 2.19616302 0 0 0 0
+1.05 -18.13570135 631.019705 -36.36704812 0.55949606 -0.0075 0.1391572 0 0 0 0.56825015 -0.0075 -0.04912574 0 2.18291504 0 0 0 0
+1.0517 -17.44998635 631.3819218 -36.50563276 0.55793377 -0.0075 0.13910074 0 0 0 0.57064445 -0.0075 -0.04898445 0 2.17831885 0 0 0 0
+1.0533 -16.73727635 631.702497 -36.66636683 0.55635149 -0.0075 0.13903859 0 0 0 0.57303445 -0.0075 -0.04884341 0 2.18323771 0 0 0 0
+1.055 -15.99616757 631.9833087 -36.84808544 0.55474907 -0.0075 0.13897125 0 0 0 0.57541997 -0.0075 -0.04870264 0 2.19816687 0 0 0 0
+1.0567 -15.22619104 632.2276012 -37.04890971 0.5531267 -0.0075 0.13889931 0 0 0 0.57780083 -0.0075 -0.04856214 0 2.22317385 0 0 0 0
+1.0583 -14.42759847 632.4400217 -37.26633371 0.55148512 -0.0075 0.13882345 0 0 0 0.58017685 -0.0075 -0.04842193 0 2.25797829 0 0 0 0
+1.06 -13.60159988 632.6265192 -37.49729685 0.54982549 -0.0075 0.13874449 0 0 0 0.58254784 -0.0075 -0.04828201 0 2.30189525 0 0 0 0
+1.0617 -12.75013853 632.7943019 -37.73838565 0.54814954 -0.0075 0.13866336 0 0 0 0.58491363 -0.0075 -0.0481424 0 2.35395459 0 0 0 0
+1.0633 -11.87601841 632.9516561 -37.98593273 0.54645935 -0.0075 0.13858109 0 0 0 0.58727402 -0.0075 -0.04800311 0 2.41289454 0 0 0 0
+1.065 -10.98263729 633.1078041 -38.23620225 0.54475748 -0.0075 0.1384988 0 0 0 0.58962884 -0.0075 -0.04786415 0 2.47723962 0 0 0 0
+1.0667 -10.07385305 633.2726763 -38.48553915 0.5430468 -0.0075 0.1384177 0 0 0 0.59197791 -0.0075 -0.04772553 0 2.545401 0 0 0 0
+1.0683 -9.15395945 633.4567133 -38.73055681 0.54133039 -0.0075 0.13833904 0 0 0 0.59432103 -0.0075 -0.04758725 0 2.61570103 0 0 0 0
+1.07 -8.22729293 633.6706104 -38.96823751 0.53961148 -0.0075 0.13826412 0 0 0 0.59665803 -0.0075 -0.04744934 0 2.68646869 0 0 0 0
+1.0717 -7.2982947 633.9250042 -39.19603171 0.53789321 -0.0075 0.13819421 0 0 0 0.59898873 -0.0075 -0.0473118 0 2.75606256 0 0 0 0
+1.0733 -6.37114246 634.2301939 -39.41197091 0.53617855 -0.0075 0.1381305 0 0 0 0.60131294 -0.0075 -0.04717465 0 2.82295851 0 0 0 0
+1.075 -5.44987845 634.5958017 -39.61468429 0.53447001 -0.0075 0.13807406 0 0 0 0.60363048 -0.0075 -0.04703789 0 2.8857163 0 0 0 0
+1.0767 -4.53805274 635.0304729 -39.80343346 0.53276963 -0.0075 0.13802572 0 0 0 0.60594117 -0.0075 -0.04690153 0 2.94307581 0 0 0 0
+1.0783 -3.63874125 635.5416148 -39.97807034 0.53107869 -0.0075 0.13798608 0 0 0 0.60824482 -0.0075 -0.04676558 0 2.9939145 0 0 0 0
+1.08 -2.75447756 636.1351926 -40.13903743 0.5293977 -0.0075 0.13795541 0 0 0 0.61054125 -0.0075 -0.04663007 0 3.03726552 0 0 0 0
+1.0817 -1.88713339 636.8155178 -40.28730462 0.52772633 -0.0075 0.13793364 0 0 0 0.61283028 -0.0075 -0.04649499 0 3.07237814 0 0 0 0
+1.0833 -1.03808311 637.5851699 -40.42428181 0.52606328 -0.0075 0.13792034 0 0 0 0.61511173 -0.0075 -0.04636036 0 3.09863652 0 0 0 0
+1.085 -0.20800732 638.4449066 -40.5517822 0.5244064 -0.0075 0.13791468 0 0 0 0.61738541 -0.0075 -0.04622618 0 3.11563648 0 0 0 0
+1.0867 0.60284567 639.3936503 -40.67188241 0.52275269 -0.0075 0.13791547 0 0 0 0.61965114 -0.0075 -0.04609248 0 3.1231356 0 0 0 0
+1.0883 1.39489594 640.4286481 -40.78686309 0.52109852 -0.0075 0.13792115 0 0 0 0.62190874 -0.0075 -0.04595925 0 3.1211 0 0 0 0
+1.09 2.16898052 641.5455801 -40.89910769 0.51943972 -0.0075 0.13792991 0 0 0 0.62415802 -0.0075 -0.04582652 0 3.10968687 0 0 0 0
+1.0917 2.92645747 642.7388453 -41.0110461 0.51777189 -0.0075 0.1379397 0 0 0 0.6263988 -0.0075 -0.04569428 0 3.0893042 0 0 0 0
+1.0933 3.66912352 644.001836 -41.12503088 0.51609055 -0.0075 0.13794837 0 0 0 0.62863091 -0.0075 -0.04556256 0 3.0605936 0 0 0 0
+1.095 4.39916759 645.3272716 -41.2432636 0.51439148 -0.0075 0.13795375 0 0 0 0.63085415 -0.0075 -0.04543137 0 3.02443609 0 0 0 0
+1.0967 5.11925035 646.7075317 -41.36773201 0.51267095 -0.0075 0.13795378 0 0 0 0.63306835 -0.0075 -0.0453007 0 2.98199601 0 0 0 0
+1.0983 5.83227387 648.1350219 -41.50010845 0.51092588 -0.0075 0.13794657 0 0 0 0.63527331 -0.0075 -0.04517058 0 2.93461065 0 0 0 0
+1.1 6.54166417 649.6024866 -41.64168248 0.50915421 -0.0075 0.13793054 0 0 0 0.63746887 -0.0075 -0.04504102 0 2.88388837 0 0 0 0
+1.1017 7.25108751 651.1032956 -41.79327619 0.5073549 -0.0075 0.13790448 0 0 0 0.63965483 -0.0075 -0.04491202 0 2.83158146 0 0 0 0
+1.1033 7.96462924 652.6317279 -41.9552115 0.50552815 -0.0075 0.13786763 0 0 0 0.64183101 -0.0075 -0.0447836 0 2.77957521 0 0 0 0
+1.105 8.68659831 654.1830918 -42.12719641 0.50367536 -0.0075 0.13781972 0 0 0 0.64399724 -0.0075 -0.04465577 0 2.72979173 0 0 0 0
+1.1067 9.42152644 655.7538688 -42.30839153 0.50179917 -0.0075 0.13776098 0 0 0 0.64615332 -0.0075 -0.04452853 0 2.68412969 0 0 0 0
+1.1083 10.17407997 657.3416905 -42.49734799 0.49990329 -0.0075 0.13769213 0 0 0 0.64829907 -0.0075 -0.04440191 0 2.64435728 0 0 0 0
+1.11 10.9488619 658.9452721 -42.69203458 0.49799238 -0.0075 0.13761434 0 0 0 0.65043432 -0.0075 -0.0442759 0 2.61202486 0 0 0 0
+1.1117 11.7504624 660.5642495 -42.88993934 0.49607183 -0.0075 0.13752913 0 0 0 0.65255888 -0.0075 -0.04415053 0 2.58843599 0 0 0 0
+1.1133 12.58308857 662.1989929 -43.08808954 0.49414745 -0.0075 0.13743836 0 0 0 0.65467256 -0.0075 -0.0440258 0 2.57447836 0 0 0 0
+1.115 13.45065453 663.8503678 -43.2832371 0.4922253 -0.0075 0.13734403 0 0 0 0.65677519 -0.0075 -0.04390172 0 2.57069183 0 0 0 0
+1.1167 14.3563757 665.5194411 -43.47199909 0.49031125 -0.0075 0.13724826 0 0 0 0.65886658 -0.0075 -0.0437783 0 2.57719349 0 0 0 0
+1.1183 15.30279799 667.2072543 -43.65108004 0.4884108 -0.0075 0.13715312 0 0 0 0.66094655 -0.0075 -0.04365556 0 2.59370912 0 0 0 0
+1.12 16.29150641 668.9145067 -43.81740386 0.48652875 -0.0075 0.13706057 0 0 0 0.66301491 -0.0075 -0.0435335 0 2.61958554 0 0 0 0
+1.1217 17.32305597 670.6413418 -43.96835966 0.48466898 -0.0075 0.13697229 0 0 0 0.66507148 -0.0075 -0.04341214 0 2.65385624 0 0 0 0
+1.1233 18.39697928 672.3871497 -44.10196805 0.48283428 -0.0075 0.13688966 0 0 0 0.66711609 -0.0075 -0.04329148 0 2.6953157 0 0 0 0
+1.125 19.51161564 674.1504957 -44.21702036 0.48102626 -0.0075 0.1368137 0 0 0 0.66914854 -0.0075 -0.04317154 0 2.74260179 0 0 0 0
+1.1267 20.66430316 675.9290812 -44.31325913 0.47924534 -0.0075 0.13674504 0 0 0 0.67116866 -0.0075 -0.04305233 0 2.79437114 0 0 0 0
+1.1283 21.85119688 677.7197877 -44.39137038 0.47749067 -0.0075 0.13668393 0 0 0 0.67317625 -0.0075 -0.04293386 0 2.84927293 0 0 0 0
+1.13 23.06764887 679.5188334 -44.45305387 0.47576038 -0.0075 0.13663023 0 0 0 0.67517115 -0.0075 -0.04281614 0 2.90615157 0 0 0 0
+1.1317 24.30815225 681.3218636 -44.50088276 0.47405157 -0.0075 0.13658354 0 0 0 0.67715316 -0.0075 -0.04269917 0 2.9640344 0 0 0 0
+1.1333 25.56670215 683.1242631 -44.53825407 0.47236067 -0.0075 0.13654315 0 0 0 0.67912211 -0.0075 -0.04258298 0 3.0221992 0 0 0 0
+1.135 26.83698607 684.9213425 -44.56908554 0.47068352 -0.0075 0.13650822 0 0 0 0.68107781 -0.0075 -0.04246757 0 3.08018232 0 0 0 0
+1.1367 28.112665 686.7086725 -44.59766636 0.46901579 -0.0075 0.13647782 0 0 0 0.68302008 -0.0075 -0.04235296 0 3.13777783 0 0 0 0
+1.1383 29.38771348 688.4823164 -44.62837493 0.46735311 -0.0075 0.13645099 0 0 0 0.68494873 -0.0075 -0.04223914 0 3.19502601 0 0 0 0
+1.14 30.65652071 690.2391118 -44.66531812 0.46569131 -0.0075 0.13642692 0 0 0 0.68686358 -0.0075 -0.04212614 0 3.25207947 0 0 0 0
+1.1417 31.91438593 691.9768225 -44.71211197 0.46402672 -0.0075 0.13640489 0 0 0 0.68876445 -0.0075 -0.04201397 0 3.30922962 0 0 0 0
+1.1433 33.15744294 693.6942798 -44.77159637 0.46235619 -0.0075 0.13638436 0 0 0 0.69065116 -0.0075 -0.04190263 0 3.36670624 0 0 0 0
+1.145 34.38309546 695.3914681 -44.84560498 0.46067739 -0.0075 0.13636503 0 0 0 0.69252353 -0.0075 -0.04179214 0 3.42468734 0 0 0 0
+1.1467 35.5899775 697.0694669 -44.93482139 0.45898872 -0.0075 0.13634677 0 0 0 0.69438136 -0.0075 -0.04168251 0 3.48321086 0 0 0 0
+1.1483 36.77810978 698.7304684 -45.03876895 0.45728946 -0.0075 0.13632967 0 0 0 0.69622449 -0.0075 -0.04157374 0 3.54212879 0 0 0 0
+1.15 37.94881807 700.3776097 -45.15572952 0.45557967 -0.0075 0.13631398 0 0 0 0.69805272 -0.0075 -0.04146585 0 3.60107839 0 0 0 0
+1.1517 39.10466117 702.0147719 -45.28290548 0.45386016 -0.0075 0.13630008 0 0 0 0.69986587 -0.0075 -0.04135885 0 3.65949622 0 0 0 0
+1.1533 40.24937376 703.6463747 -45.41657184 0.45213236 -0.0075 0.1362884 0 0 0 0.70166377 -0.0075 -0.04125276 0 3.71664559 0 0 0 0
+1.155 41.38749908 705.2771213 -45.55227831 0.45039821 -0.0075 0.1362794 0 0 0 0.70344622 -0.0075 -0.04114757 0 3.77162494 0 0 0 0
+1.1567 42.52438366 706.9117018 -45.68519945 0.44866005 -0.0075 0.13627344 0 0 0 0.70521305 -0.0075 -0.04104331 0 3.82355229 0 0 0 0
+1.1583 43.66567327 708.5546077 -45.81040895 0.44692037 -0.0075 0.1362708 0 0 0 0.70696407 -0.0075 -0.04093998 0 3.87154614 0 0 0 0
+1.16 44.81726459 710.2099349 -45.92316521 0.44518183 -0.0075 0.13627162 0 0 0 0.7086991 -0.0075 -0.04083759 0 3.91485285 0 0 0 0
+1.1617 45.98484125 711.881141 -46.01923493 0.44344699 -0.0075 0.13627591 0 0 0 0.71041795 -0.0075 -0.04073616 0 3.95294795 0 0 0 0
+1.1633 47.17361115 713.5709568 -46.09520062 0.44171824 -0.0075 0.13628345 0 0 0 0.71212045 -0.0075 -0.04063569 0 3.98559298 0 0 0 0
+1.165 48.38810255 715.2812579 -46.14853019 0.43999769 -0.0075 0.13629392 0 0 0 0.71380641 -0.0075 -0.0405362 0 4.01284608 0 0 0 0
+1.1667 49.6318685 717.0129846 -46.17776 0.4382871 -0.0075 0.13630678 0 0 0 0.71547565 -0.0075 -0.04043769 0 4.03508233 0 0 0 0
+1.1683 50.90741984 718.7661613 -46.18257358 0.4365878 -0.0075 0.13632137 0 0 0 0.71712799 -0.0075 -0.04034018 0 4.05302952 0 0 0 0
+1.17 52.21595587 720.5399571 -46.16367259 0.43490064 -0.0075 0.13633697 0 0 0 0.71876324 -0.0075 -0.04024369 0 4.06760751 0 0 0 0
+1.1717 53.55752752 722.3327201 -46.12273628 0.43322609 -0.0075 0.13635279 0 0 0 0.72038121 -0.0075 -0.04014821 0 4.07997685 0 0 0 0
+1.1733 54.93075969 724.1420666 -46.06225424 0.43156401 -0.0075 0.13636801 0 0 0 0.72198174 -0.0075 -0.04005376 0 4.09135783 0 0 0 0
+1.175 56.33311593 725.9650084 -45.98528265 0.42991385 -0.0075 0.13638188 0 0 0 0.72356463 -0.0075 -0.03996035 0 4.10291724 0 0 0 0
+1.1767 57.76095833 727.7979519 -45.89518972 0.42827455 -0.0075 0.13639367 0 0 0 0.7251297 -0.0075 -0.03986799 0 4.11570063 0 0 0 0
+1.1783 59.20966554 729.6368652 -45.7955056 0.42664459 -0.0075 0.13640273 0 0 0 0.72667678 -0.0075 -0.03977669 0 4.13051186 0 0 0 0
+1.18 60.67393371 731.4773775 -45.68963361 0.42502203 -0.0075 0.13640848 0 0 0 0.72820566 -0.0075 -0.03968647 0 4.14781196 0 0 0 0
+1.1817 62.14794787 733.3148139 -45.58064724 0.42340458 -0.0075 0.13641048 0 0 0 0.72971619 -0.0075 -0.03959733 0 4.16769297 0 0 0 0
+1.1833 63.62576009 735.1443109 -45.47125739 0.42178962 -0.0075 0.13640834 0 0 0 0.73120816 -0.0075 -0.03950929 0 4.18992506 0 0 0 0
+1.185 65.10132933 736.9608907 -45.36364428 0.42017425 -0.0075 0.13640179 0 0 0 0.7326814 -0.0075 -0.03942235 0 4.21383624 0 0 0 0
+1.1867 66.56902965 738.7594891 -45.25943611 0.41855544 -0.0075 0.13639061 0 0 0 0.73413573 -0.0075 -0.03933653 0 4.23850293 0 0 0 0
+1.1883 68.02367332 740.5350201 -45.15978264 0.41693004 -0.0075 0.13637468 0 0 0 0.73557096 -0.0075 -0.03925183 0 4.26277056 0 0 0 0
+1.19 69.46082358 742.2824904 -45.06544414 0.41529488 -0.0075 0.13635386 0 0 0 0.73698691 -0.0075 -0.03916827 0 4.28537182 0 0 0 0
+1.1917 70.87695345 743.9970027 -44.976796 0.41364698 -0.0075 0.13632812 0 0 0 0.7383834 -0.0075 -0.03908586 0 4.30508547 0 0 0 0
+1.1933 72.26952689 745.6738844 -44.89404277 0.41198356 -0.0075 0.13629742 0 0 0 0.73976024 -0.0075 -0.03900461 0 4.32084171 0 0 0 0
+1.195 73.63711211 747.308774 -44.81731953 0.41030221 -0.0075 0.13626177 0 0 0 0.74111725 -0.0075 -0.03892453 0 4.33182982 0 0 0 0
+1.1967 74.97924823 748.8976943 -44.74672768 0.40860099 -0.0075 0.13622126 0 0 0 0.74245426 -0.0075 -0.03884563 0 4.33756733 0 0 0 0
+1.1983 76.29660307 750.4371376 -44.68254182 0.40687858 -0.0075 0.13617598 0 0 0 0.74377107 -0.0075 -0.03876793 0 4.33806266 0 0 0 0
+1.2 77.59060723 751.9241437 -44.62512451 0.40513424 -0.0075 0.1361261 0 0 0 0.7450675 -0.0075 -0.03869142 0 4.33366528 0 0 0 0
+1.2017 78.86354575 753.3563602 -44.5749576 0.40336803 -0.0075 0.13607188 0 0 0 0.74634337 -0.0075 -0.03861613 0 4.32515328 0 0 0 0
+1.2033 80.11822771 754.732017 -44.53258533 0.40158069 -0.0075 0.13601363 0 0 0 0.7475985 -0.0075 -0.03854206 0 4.3136361 0 0 0 0
+1.205 81.35784155 756.0499938 -44.49856826 0.39977372 -0.0075 0.13595176 0 0 0 0.74883271 -0.0075 -0.03846923 0 4.30044598 0 0 0 0
+1.2067 82.58573709 757.3097463 -44.47328776 0.3979493 -0.0075 0.1358868 0 0 0 0.75004581 -0.0075 -0.03839764 0 4.28701667 0 0 0 0
+1.2083 83.80512993 758.5112256 -44.45688753 0.3961102 -0.0075 0.13581933 0 0 0 0.75123762 -0.0075 -0.03832731 0 4.27474317 0 0 0 0
+1.21 85.01898468 759.6547634 -44.44915162 0.39425964 -0.0075 0.13575004 0 0 0 0.75240796 -0.0075 -0.03825825 0 4.26483772 0 0 0 0
+1.2117 86.2296946 760.7408812 -44.44929705 0.39240112 -0.0075 0.13567965 0 0 0 0.75355664 -0.0075 -0.03819046 0 4.2581222 0 0 0 0
+1.2133 87.43915928 761.7700698 -44.45603836 0.39053835 -0.0075 0.13560893 0 0 0 0.75468348 -0.0075 -0.03812396 0 4.25506224 0 0 0 0
+1.215 88.64842545 762.742581 -44.46746801 0.38867487 -0.0075 0.13553864 0 0 0 0.7557883 -0.0075 -0.03805877 0 4.25555832 0 0 0 0
+1.2167 89.85784476 763.6582341 -44.4811162 0.38681404 -0.0075 0.13546951 0 0 0 0.75687092 -0.0075 -0.03799488 0 4.25901301 0 0 0 0
+1.2183 91.06699087 764.5161128 -44.49399225 0.38495874 -0.0075 0.13540223 0 0 0 0.75793115 -0.0075 -0.03793231 0 4.2643376 0 0 0 0
+1.22 92.27470253 765.31445 -44.50284867 0.38311125 -0.0075 0.1353374 0 0 0 0.75896881 -0.0075 -0.03787108 0 4.27003802 0 0 0 0
+1.2217 93.47923104 766.0503982 -44.50420052 0.38127314 -0.0075 0.13527553 0 0 0 0.75998372 -0.0075 -0.03781119 0 4.27431274 0 0 0 0
+1.2233 94.6783871 766.7199048 -44.4946112 0.3794452 -0.0075 0.13521699 0 0 0 0.76097569 -0.0075 -0.03775265 0 4.27522274 0 0 0 0
+1.225 95.86982589 767.3176775 -44.47099475 0.37762737 -0.0075 0.135162 -1.98114462 0.28592401 -0.85974471 0.76194455 -0.0075 -0.03769547 0 4.27093005 0 -0.03717157 -0.07514324 -0.0793649
+1.2267 97.05110936 767.8371892 -44.43070119 0.37581878 -0.0075 0.13511069 -2.08681953 0.70971528 -0.90293147 0.7628901 -0.0075 -0.03763968 0 4.25977944 0 -0.01136243 -0.06590709 -0.10196949
+1.2283 98.22020126 768.2707489 -44.37180714 0.37401793 -0.0075 0.13506305 -2.14502405 1.25797444 -0.92810943 0.76381217 -0.0075 -0.03758526 0 4.24063508 0 0.01546565 -0.05697331 -0.11008248
+1.23 99.37545718 768.6096822 -44.29326004 0.37222266 -0.0075 0.13501899 -2.14412895 1.95366344 -0.93446473 0.76471058 -0.0075 -0.03753225 0 4.21291148 0 0.04311063 -0.04720694 -0.10345852
+1.2317 100.5159855 768.8445526 -44.19494929 0.37043041 -0.0075 0.13497833 -2.07168978 2.82191786 -0.92240438 0.76558514 -0.0075 -0.03748064 0 4.17672409 0 0.07119005 -0.03531908 -0.08251024
+1.2333 101.6417855 768.9653592 -44.07768515 0.36863844 -0.0075 0.13494088 -1.91479951 3.88995463 -0.89373534 0.76643566 -0.0075 -0.03743045 0 4.13297777 0 0.09914707 -0.02008049 -0.04827616
+1.235 102.7538989 768.9619069 -43.94323358 0.36684402 -0.0075 0.1349064 -1.66061292 5.1869784 -0.85178011 0.76726198 -0.0075 -0.03738168 0 4.0833511 0 0.1262539 -0.00034455 -0.00238063
+1.2367 103.8544873 768.8241152 -43.79408534 0.36504469 -0.0075 0.1348747 -1.29682585 6.74392418 -0.80167472 0.76806389 -0.0075 -0.03733436 0 4.03021149 0 0.15171811 0.02482802 0.05314726
+1.2383 104.9467685 768.5423141 -43.63328019 0.36323844 -0.0075 0.13484563 -0.81247547 8.59308955 -0.75036035 0.76884123 -0.0075 -0.03728849 0 3.97652025 0 0.17468222 0.0561146 0.11589535
+1.24 106.0350671 768.1075882 -43.46417625 0.36142399 -0.0075 0.13481914 -0.198623 10.76745297 -0.70675023 0.7695938 -0.0075 -0.03724408 0 3.92568877 0 0.1943222 0.09387108 0.18325682
+1.2417 107.1244555 767.5120709 -43.29003309 0.35960089 -0.0075 0.13479532 0.55087739 13.30013402 -0.68158587 0.77032143 -0.0075 -0.03720114 0 3.88119909 0 0.20988601 0.13812428 0.25253244
+1.2433 108.2206882 766.7491055 -43.11380477 0.35776973 -0.0075 0.13477439 1.43858111 16.22333705 -0.68742781 0.77102393 -0.0075 -0.03715968 0 3.84651953 0 0.22075678 0.18860485 0.32111543
+1.245 109.329691 765.8133967 -42.93781159 0.35593212 -0.0075 0.13475669 2.46271189 19.56742758 -0.73826378 0.77170112 -0.0075 -0.03711972 0 3.82476756 0 0.226475 0.24471881 0.38655871
+1.2467 110.4573328 764.7011361 -42.76340971 0.35409082 -0.0075 0.13474272 3.61651708 23.35978349 -0.84923316 0.77235282 -0.0075 -0.03708126 0 3.81841026 0 0.22679322 0.30565005 0.44670357
+1.2483 111.6089518 763.4099135 -42.59072229 0.35224965 -0.0075 0.13473314 4.88770514 27.6236006 -1.03616458 0.77297884 -0.0075 -0.03704432 0 3.82905098 0 0.22172029 0.3704011 0.4997686
+1.25 112.788875 761.9386815 -42.41862836 0.35041338 -0.0075 0.13472873 6.25807536 32.3766972 -1.31483151 0.773579 -0.0075 -0.0370089 0 3.85726454 0 0.21148586 0.43791016 0.54436294
+1.2517 114.0000452 760.2875855 -42.24464094 0.34858762 -0.0075 0.13473042 7.70346416 37.63033673 -1.70031836 0.77415312 -0.0075 -0.03697502 0 3.90246037 0 0.1965534 0.50712556 0.57960545
+1.2533 115.2435203 758.4576836 -42.06489314 0.34677856 -0.0075 0.13473922 9.1936987 43.38832626 -2.20613749 0.77470101 -0.0075 -0.03694269 0 3.96276207 0 0.17759927 0.57712704 0.60502385
+1.255 116.5182702 756.4506276 -41.87439362 0.34499275 -0.0075 0.13475616 10.69308715 49.64600961 -2.84349706 0.7752225 -0.0075 -0.03691192 0 4.03513277 0 0.15546381 0.6472343 0.62062654
+1.2567 117.8207062 754.2683107 -41.66715822 0.34323672 -0.0075 0.13478232 12.16108447 56.38987665 -3.62032228 0.7757174 -0.0075 -0.03688271 0 4.11533106 0 0.13111239 0.71703542 0.62679755
+1.2583 119.1447899 751.9124578 -41.43656707 0.34151675 -0.0075 0.13481871 13.55310358 63.59715173 -4.54067975 0.77618552 -0.0075 -0.03685509 0 4.19822622 0 0.10560581 0.78645255 0.62427363
+1.26 120.4818091 749.38422 -41.1757317 0.33983848 -0.0075 0.13486622 14.82177976 71.23591908 -5.60402631 0.77662669 -0.0075 -0.03682905 0 4.27798209 0 0.08001993 0.85573793 0.61401674
+1.2617 121.820568 746.6838552 -40.87793801 0.33820656 -0.0075 0.13492558 15.91843341 79.26557714 -6.80469115 0.77704072 -0.0075 -0.03680462 0 4.34834789 0 0.05536467 0.92552623 0.59713946
+1.2633 123.1477057 743.8102851 -40.5369705 0.33662441 -0.0075 0.13499733 16.79462893 87.63761204 -8.13178645 0.77742744 -0.0075 -0.0367818 0 4.40303427 0 0.03258538 0.99672463 0.57483523
+1.265 124.4480165 740.7608047 -40.14758387 0.33509386 -0.0075 0.13508166 17.40388182 96.29680557 -9.56910456 0.77778664 -0.0075 -0.0367606 0 4.43606606 0 0.01247423 1.07051759 0.54820891
+1.2667 125.7050394 737.5308553 -39.70588593 0.33361495 -0.0075 0.13517842 17.70362343 105.1826757 -11.09544805 0.77811816 -0.0075 -0.03674104 0 4.44213631 0 -0.00437325 1.14828588 0.51829887
+1.2683 126.9016051 734.1138042 -39.20948565 0.33218578 -0.0075 0.13528705 17.65682472 114.2313646 -12.68524229 0.77842182 -0.0075 -0.03672312 0 4.41689217 0 -0.01754967 1.23146081 0.48589765
+1.27 128.0207554 730.5008902 -38.65780974 0.33080244 -0.0075 0.13540653 17.23370194 123.3774616 -14.30948391 0.77869742 -0.0075 -0.03670686 0 4.35733302 0 -0.0268506 1.32143551 0.45156626
+1.2717 129.0462709 726.6812735 -38.05216813 0.32945894 -0.0075 0.13553533 16.4132797 132.5562075 -15.93663263 0.77894478 -0.0075 -0.03669226 0 4.26190772 0 -0.03233525 1.41944865 0.41555815
+1.2733 129.9636221 722.642155 -37.3957361 0.32814747 -0.0075 0.13567146 15.18449867 141.7055259 -17.53411468 0.77916373 -0.0075 -0.03667934 0 4.13076719 0 -0.03424973 1.52651215 0.37780618
+1.275 130.760577 718.368993 -36.69339685 0.32685846 -0.0075 0.13581243 13.54710122 150.7680447 -19.06968157 0.77935408 -0.0075 -0.03666811 0 3.9657766 0 -0.03302051 1.64325777 0.33792268
+1.2767 131.4278583 713.8458777 -35.9515951 0.32558094 -0.0075 0.1359553 11.51215215 159.6929495 -20.512758 0.77951564 -0.0075 -0.03665857 0 3.77046648 0 -0.02926524 1.76993907 0.29521309
+1.2783 131.9596337 709.0559227 -35.17798333 0.32430291 -0.0075 0.13609673 9.10200595 168.4375352 -21.83597467 0.77964824 -0.0075 -0.03665075 0 3.54996249 0 -0.02369917 1.90636917 0.24874502
+1.28 132.3537903 703.98178 -34.38103681 0.32301177 -0.0075 0.13623309 6.34981128 176.968495 -23.0163082 0.77975169 -0.0075 -0.03664464 0 3.31074823 0 -0.01713791 2.05187479 0.19733867
+1.2817 132.612193 698.6062115 -33.56970992 0.32169482 -0.0075 0.13636048 3.29868029 185.2626738 -24.03619052 0.77982581 -0.0075 -0.03664027 0 3.06045517 0 -0.01043754 2.20530573 0.13969899
+1.2833 132.7403656 692.9126892 -32.75286845 0.32033976 -0.0075 0.13647498 0.00017059 193.3076411 -24.88415202 0.77987042 -0.0075 -0.03663764 0 2.80742024 0 -0.00445453 2.36508815 0.07439775
+1.285 132.7474173 686.8860327 -31.93899751 0.3189353 -0.0075 0.13657271 -3.4874191 201.1015283 -25.5553224 0.77988533 -0.0075 -0.03663676 0 2.56047386 0 0 2.52929376 0
+1.2867 132.6453052 680.5130002 -31.13572495 0.31747156 -0.0075 0.13664996 -7.10117166 208.6526796 -26.05132088 0.7794634 -0.0075 -0.03664805 0 2.32845126 0 0 2.70621696 0
+1.2883 132.4482135 673.7829163 -30.34947775 0.31594063 -0.0075 0.13670338 -10.7759432 215.978778 -26.37999044 0.77898425 -0.0075 -0.03664689 0 2.11982847 0 0 2.8840209 0
+1.29 132.1716306 666.6881407 -29.58519437 0.31433695 -0.0075 0.13673014 -14.44680442 223.1056679 -26.55467862 0.77844414 -0.0075 -0.03663244 0 1.94233629 0 0 3.06038369 0
+1.2917 131.8313219 659.2245141 -28.84613838 0.31265762 -0.0075 0.13672799 -18.05159061 230.0659502 -26.59310205 0.77784074 -0.0075 -0.03660446 0 1.80260192 0 0 3.23303366 0
+1.2933 131.4423921 651.3916893 -28.13375405 0.31090266 -0.0075 0.13669542 -21.53330727 236.8972984 -26.51627134 0.77717348 -0.0075 -0.03656358 0 1.70589163 0 0 3.39983624 0
+1.295 131.0181149 643.1933394 -27.44761639 0.3090751 -0.0075 0.1366318 -24.84233823 243.6408338 -26.34692842 0.7764433 -0.0075 -0.03651115 0 1.65578739 0 0 3.55892259 0
+1.2967 130.5691323 634.6372534 -26.78561613 0.30718101 -0.0075 0.1365373 -27.93828244 250.3392116 -26.10817676 0.77565292 -0.0075 -0.03644919 0 1.65414102 0 0 3.70881692 0
+1.2983 130.102449 625.7352845 -26.14393117 0.3052293 -0.0075 0.13641309 -30.79141126 257.0351131 -25.82197764 0.77480654 -0.0075 -0.03638051 0 1.70082591 0 0 3.84847441 0
+1.3 129.6210587 616.5031609 -25.51736249 0.30323164 -0.0075 0.13626124 -33.38359949 263.7695709 -25.50795648 0.77391004 -0.0075 -0.03630858 0 1.79381226 0 0 3.97741272 0
+1.3017 129.1233982 606.9601242 -24.89956998 0.30120197 -0.0075 0.13608469 -35.70866947 270.5806502 -25.18222076 0.77297066 -0.0075 -0.03623744 0 1.92916963 0 0 4.09573744 0
+1.3033 128.6033491 597.1285355 -24.28343315 0.29915612 -0.0075 0.13588714 -37.77219668 277.5023554 -24.85661892 0.77199687 -0.0075 -0.03617167 0 2.10124404 0 0 4.20415439 0
+1.305 128.050508 587.0332808 -23.66130917 0.29711133 -0.0075 0.135673 -39.59075876 284.5637323 -24.53833408 0.77099815 -0.0075 -0.03611627 0 2.30285306 0 0 4.30390004 0
+1.3067 127.4506383 576.7011642 -23.02548175 0.29508563 -0.0075 0.13544723 -41.19066782 291.78833 -24.22962527 0.76998433 -0.0075 -0.03607639 0 2.52557167 0 0 4.39673714 0
+1.3083 126.7865495 566.1602348 -22.36854499 0.29309723 -0.0075 0.13521513 -42.60616352 299.1937969 -23.92820957 0.7689656 -0.0075 -0.0360573 0 2.76014402 0 0 4.48487562 0
+1.31 126.0389844 555.4390642 -21.68360345 0.29116395 -0.0075 0.13498223 -43.87733533 306.7919204 -23.6276719 0.7679518 -0.0075 -0.03606405 0 2.99675509 0 0 4.57080259 0
+1.3117 125.1880514 544.5660277 -20.96476508 0.2893026 -0.0075 0.13475404 -45.04778519 314.5886164 -23.31837552 0.76695226 -0.0075 -0.03610138 0 3.22559961 0 0 4.657201 0
+1.3133 124.2142842 533.568598 -20.20729101 0.28752833 -0.0075 0.13453589 -46.1620874 322.5843874 -22.98825479 0.76597514 -0.0075 -0.03617333 0 3.4371645 0 0 4.74678812 0
+1.315 123.1001777 522.4727204 -19.40790333 0.28585424 -0.0075 0.13433268 -47.26337839 330.7746914 -22.62405344 0.76502732 -0.0075 -0.03628317 0 3.62279527 0 0 4.84214328 0
+1.3167 121.8313719 511.3022055 -18.5649153 0.28429083 -0.0075 0.13414876 -48.39109484 339.1505235 -22.21239113 0.76411387 -0.0075 -0.03643325 0 3.7750444 0 0 4.94548723 0
+1.3183 120.3977724 500.0783267 -17.67840747 0.28284573 -0.0075 0.1339877 -49.57892791 347.6990809 -21.74072439 0.76323785 -0.0075 -0.03662473 0 3.88799145 0 0 5.05863873 0
+1.32 118.7944674 488.8194241 -16.75024399 0.28152335 -0.0075 0.13385227 -50.85319015 356.4043476 -21.19837606 0.76240024 -0.0075 -0.03685765 0 3.95757247 0 0 5.18285492 0
+1.3217 117.0222801 477.5406813 -15.78404859 0.28032484 -0.0075 0.13374428 -52.23175078 365.2478548 -20.57710913 0.76159971 -0.0075 -0.03713077 0 3.98171259 0 0 5.31873572 0
+1.3233 115.0881828 466.2540605 -14.78522253 0.27924798 -0.0075 0.1336645 -53.72335961 374.2092095 -19.87171506 0.76083285 -0.0075 -0.03744168 0 3.96048879 0 0 5.466218 0
+1.325 113.0049616 454.9683011 -13.76070108 0.27828722 -0.0075 0.13361269 -55.32759658 383.2668956 -19.08009217 0.76009419 -0.0075 -0.0377868 0 3.89599341 0 0 5.62454497 0
+1.3267 110.7909951 443.6891168 -12.71890771 0.27743391 -0.0075 0.13358749 -57.03541262 392.3987203 -18.20334134 0.75937653 -0.0075 -0.0381616 0 3.79240162 0 0 5.79229913 0
+1.3283 108.4692664 432.4194791 -11.66936535 0.27667639 -0.0075 0.13358663 -58.83009495 401.5825599 -17.24533898 0.75867112 -0.0075 -0.03856077 0 3.65556827 0 0 5.96744309 0
+1.33 106.0663901 421.1600717 -10.62246688 0.27600043 -0.0075 0.13360695 -60.68870764 410.7968364 -16.21233141 0.75796818 -0.0075 -0.03897849 0 3.49276487 0 0 6.14749762 0
+1.3317 103.6111944 409.9097423 -9.58918287 0.27538952 -0.0075 0.13364453 -62.58387955 420.021025 -15.11223497 0.75725737 -0.0075 -0.03940863 0 3.31234598 0 0 6.32964057 0
+1.3333 101.1332147 398.6661308 -8.580698 0.2748253 -0.0075 0.13369476 -64.4857412 429.2362018 -13.95378999 0.75652821 -0.0075 -0.03984504 0 3.12324975 0 0 6.51086759 0
+1.335 98.66122656 387.4262338 -7.60800431 0.27428807 -0.0075 0.1337526 -66.363976 438.4254117 -12.74592408 0.75577079 -0.0075 -0.04028187 0 2.93455784 0 0 6.68817905 0
+1.3367 96.22160217 376.1870358 -6.68147282 0.27375723 -0.0075 0.13381269 -68.18986564 447.5741909 -11.49687413 0.75497609 -0.0075 -0.04071382 0 2.75493861 0 0 6.85871762 0
+1.3383 93.83708774 364.9461416 -5.81062327 0.27321192 -0.0075 0.13386947 -69.93804567 456.6707426 -10.21361163 0.75413667 -0.0075 -0.04113636 0 2.59233389 0 0 7.0199353 0
+1.34 91.52544344 353.7023387 -5.003623 0.27263153 -0.0075 0.13391748 -71.58812244 465.7063745 -8.90121954 0.75324693 -0.0075 -0.04154596 0 2.4534042 0 0 7.16966916 0
+1.3417 89.29879638 342.4561421 -4.26709492 0.27199652 -0.0075 0.13395146 -73.12584382 474.67554 -7.56262824 0.7523035 -0.0075 -0.04194023 0 2.34329925 0 0 7.30629026 0
+1.3433 87.16294728 331.2101918 -3.60584369 0.27128891 -0.0075 0.1339666 -74.54377654 483.5759602 -6.19834588 0.75130553 -0.0075 -0.04231792 0 2.26531763 0 0 7.42876952 0
+1.345 85.11734229 319.9695769 -3.02264945 0.27049318 -0.0075 0.13395864 -75.84158207 492.4085726 -4.80656468 0.7502548 -0.0075 -0.042679 0 2.22076906 0 0 7.53668319 0
+1.3467 83.15533298 308.7419841 -2.51818879 0.26959693 -0.0075 0.13392411 -77.02582953 501.1772572 -3.38347444 0.74915573 -0.0075 -0.04302469 0 2.20894197 0 0 7.63020135 0
+1.3483 81.26468486 297.5377738 -2.09103737 0.26859165 -0.0075 0.13386036 -78.10926059 509.8886233 -1.92350119 0.7480152 -0.0075 -0.04335716 0 2.2270983 0 0 7.71005577 0
+1.35 79.42863278 286.3698856 -1.73777316 0.26747346 -0.0075 0.13376573 -79.10972438 518.5514525 -0.42001295 0.74684242 -0.0075 -0.04367951 0 2.27070193 0 0 7.77745491 0
+1.3517 77.62697315 275.2536205 -1.45304198 0.26624385 -0.0075 0.13363979 -80.0489094 527.176215 1.13410843 0.74564833 -0.0075 -0.04399549 0 2.33357366 0 0 7.83392232 0
+1.3533 75.83759028 264.2063236 -1.22996492 0.26491035 -0.0075 0.1334832 -80.95069381 535.774259 2.74574685 0.74444526 -0.0075 -0.04430928 0 2.40833861 0 0 7.88126517 0
+1.355 74.03766807 253.2469393 -1.06035358 0.26348678 -0.0075 0.13329788 -81.83948815 544.3571283 4.42091358 0.74324626 -0.0075 -0.04462512 0 2.48672088 0 0 7.92141875 0
+1.3567 72.20532737 242.3954989 -0.93511547 0.26199375 -0.0075 0.13308695 -82.73858115 552.9356969 6.16399841 0.74206449 -0.0075 -0.04494717 0 2.56006244 0 0 7.95630599 0
+1.3583 70.32085524 231.6725334 -0.84468919 0.26045845 -0.0075 0.13285462 -83.66864611 561.519334 7.9772494 0.7409126 -0.0075 -0.0452792 0 2.61978028 0 0 7.98773968 0
+1.36 68.36782835 221.0985331 -0.77949919 0.25891446 -0.0075 0.13260601 -84.64635769 570.115139 9.86039275 0.739802 -0.0075 -0.04562428 0 2.65781554 0 0 8.01734743 0
+1.3617 66.33406346 210.6933595 -0.73041618 0.25740111 -0.0075 0.132347 -85.68345554 578.7271463 11.81020751 0.73874236 -0.0075 -0.0459847 0 2.66716156 0 0 8.0464825 0
+1.3633 64.21211914 200.4757079 -0.68909679 0.25596227 -0.0075 0.13208394 -86.786062 587.3558174 13.82050473 0.73774097 -0.0075 -0.04636178 0 2.64218874 0 0 8.07611517 0
+1.365 61.99966156 190.4626859 -0.64850121 0.25597832 -0.0075 0.1318999 -87.95438477 595.9974128 15.8820705 0.73680248 -0.0075 -0.04675579 0.01460901 2.5734592 -0.25392898 0 8.10690155 0
+1.3667 59.69920523 180.6694399 -0.60308126 0.25602635 -0.0075 0.131716 -89.18285835 604.6438122 17.98291862 0.73592851 -0.0075 -0.04716596 0.02622005 2.46576544 -0.45679922 0 8.13915935 0
+1.3683 57.31796954 171.1089022 -0.54912301 0.25610614 -0.0075 0.13153224 -90.4605381 613.2822693 20.10855473 0.7351177 -0.0075 -0.04759048 0.03425772 2.31975051 -0.60529277 0 8.17288631 0
+1.37 54.86702436 161.7916363 -0.48480426 0.2562175 -0.0075 0.13134864 -91.77194049 621.8955631 22.24244658 0.73436564 -0.0075 -0.04802663 0.03854357 2.1380511 -0.69828263 0 8.2078144 0
+1.3717 52.36053945 152.7258573 -0.4102755 0.25636022 -0.0075 0.13116518 -93.09797551 630.4622872 24.36661601 0.73366519 -0.0075 -0.04847091 0.03933439 1.92518201 -0.7368945 0 8.24349416 0
+1.3733 49.81482448 143.9174718 -0.327621 0.25653411 -0.0075 0.13098188 -94.41719125 638.9572651 26.46213448 0.73300675 -0.0075 -0.0489192 0.03731051 1.6873797 -0.72451526 0 8.27934019 0
+1.375 47.24721588 135.3703519 -0.24061087 0.25673897 -0.0075 0.13079874 -95.70703093 647.3522854 28.50985879 0.73237871 -0.0075 -0.04936702 0.03350463 1.43219112 -0.66662541 0 8.31467056 0
+1.3767 44.67519658 127.0866262 -0.15454928 0.25697459 -0.0075 0.13061576 -96.94507886 655.6167666 30.49091549 0.73176805 -0.0075 -0.04980969 0.0292745 1.16818525 -0.57052434 0 8.34886981 0
+1.3783 42.11529478 119.067037 -0.0758068 0.25724077 -0.0075 0.13043293 -98.11024006 663.7187745 32.38746882 0.73116087 -0.0075 -0.05024252 0.02617804 0.9044062 -0.44499857 0 8.38139747 0
+1.38 39.58253594 111.3113602 -0.0115601 0.25753731 -0.0075 0.13025027 -99.18377716 671.6258477 34.18310758 0.73054309 -0.0075 -0.05066103 0.02593734 0.65007344 -0.29981087 0 8.41190299 0
+1.3817 37.08966285 103.8187921 0.0308623 0.25786402 -0.0075 0.13006778 -100.1501236 679.3061195 35.8633726 0.729901 -0.0075 -0.05106113 0.03025489 0.41396485 -0.14523012 0 8.44021976 0
+1.3833 34.64699397 96.58838628 0.0442911 0.25822068 -0.0075 0.12988546 -100.9974208 686.7291825 37.41609873 0.72922185 -0.0075 -0.05143925 0.04077546 0.20412706 0.00858616 0 8.46644411 0
+1.385 32.26214485 89.61936077 0.02230758 0.2586071 -0.0075 0.12970332 -101.7178797 693.8670412 38.83163124 0.72849435 -0.0075 -0.05179245 0.05893042 0.02745479 0.15204581 0 8.49090816 0
+1.3867 29.94021712 82.91148495 -0.04030909 0.25902308 -0.0075 0.12952135 -102.3077462 700.6949705 40.10306446 0.72770909 -0.0075 -0.05211853 0.08584079 -0.11064739 0.27671389 0 8.51411436 0
+1.3883 27.68418704 76.46523984 -0.14722612 0.25946841 -0.0075 0.12933955 -102.7672295 707.192049 41.22617644 0.72685886 -0.0075 -0.05241608 0.12223631 -0.2064122 0.37572342 0 8.53679766 0
+1.39 25.49516173 70.2819898 -0.30012902 0.2599429 -0.0075 0.12915794 -103.0999716 713.3418382 42.19956132 0.72593883 -0.0075 -0.05268445 0.16837326 -0.25801249 0.44409737 0 8.5598148 0
+1.3917 23.37317874 64.3640298 -0.4986041 0.26044635 -0.0075 0.12897651 -103.3125258 719.1325273 43.02432154 0.7249468 -0.0075 -0.05292381 0.22403268 -0.26546077 0.47903359 0 8.58415013 0
+1.3933 21.31757793 58.71446902 -0.73978228 0.26097854 -0.0075 0.12879527 -103.4136649 724.5572654 43.70409276 0.723883 -0.0075 -0.05313504 0.28843007 -0.23077579 0.47993938 0 8.61071882 0
+1.395 19.3278613 53.33711754 -1.0186022 0.26153929 -0.0075 0.12861422 -103.4136291 729.6139514 44.24467506 0.72275012 -0.0075 -0.05331974 0.36031805 -0.15767751 0.44843862 0 8.64042739 0
+1.3967 17.40393285 48.23622301 -1.32767912 0.26212839 -0.0075 0.12843336 -103.3233454 734.3051351 44.65388336 0.72155304 -0.0075 -0.05348009 0.43794623 -0.05155377 0.38815112 0 8.67397728 0
+1.3983 15.54677376 43.4162131 -1.65767729 0.26274564 -0.0075 0.12825269 -103.1537906 738.6375275 44.94119475 0.7202985 -0.0075 -0.05361875 0.51917438 0.08091895 0.30449077 0 8.71181361 0
+1.4 13.75860551 38.88129249 -1.99759284 0.26339083 -0.0075 0.12807223 -102.915396 742.6214585 45.11746726 0.71899474 -0.0075 -0.05373884 0.60151664 0.23201248 0.20420101 0 8.75411385 0
+1.4017 12.04297151 34.63514296 -2.33519332 0.26406378 -0.0075 0.12789196 -102.6174522 746.2702686 45.19479128 0.71765113 -0.0075 -0.05384363 0.68226359 0.39325082 0.09496261 0 8.80072655 0
+1.4033 10.4048813 30.68046442 -2.65762034 0.26476427 -0.0075 0.12771189 -102.2679057 749.5993916 45.18598952 0.71627763 -0.0075 -0.0539366 0.75860681 0.55596975 -0.0151159 0 8.85117233 0
+1.405 8.85037525 27.01863059 -2.95187089 0.26549211 -0.0075 0.12753203 -101.8730419 752.625756 45.10457465 0.71488438 -0.0075 -0.05402114 0.82775495 0.71148107 -0.11801906 0 8.90457478 0
+1.4067 7.38642681 23.64938865 -3.20559318 0.26624709 -0.0075 0.12735238 -101.4374751 755.3667484 44.96426006 0.7134812 -0.0075 -0.05410055 0.88708702 0.85167453 -0.20627194 0 8.95981691 0
+1.4083 6.02023927 20.57053018 -3.40747786 0.26702901 -0.0075 0.12717294 -100.9642108 757.8396613 44.77886996 0.7120772 -0.0075 -0.05417782 0.9342089 0.96919754 -0.2734141 0 9.01541449 0
+1.41 4.75906003 17.77775059 -3.54807906 0.26783768 -0.0075 0.12699372 -100.4548655 760.0607413 44.56195274 0.71068034 -0.0075 -0.05425559 0.96713235 1.05796801 -0.31427861 0 9.06971324 0
+1.4117 3.60940086 15.26447114 -3.62011556 0.26867288 -0.0075 0.12681471 -99.90991304 762.0446942 44.32659453 0.70929717 -0.0075 -0.05433603 0.98429747 1.11326198 -0.3253322 0 9.12094279 0
+1.4133 2.57668533 13.02185211 -3.61904193 0.26953443 -0.0075 0.12663591 -99.32901866 763.804081 44.08515073 0.70793263 -0.0075 -0.05442074 0.98470778 1.13204549 -0.30472761 0 9.16733386 0
+1.415 1.66476076 11.03876115 -3.54328759 0.27042212 -0.0075 0.12645735 -98.71138845 765.3488822 43.84897606 0.70658992 -0.0075 -0.05451073 0.96796814 1.11311699 -0.25243813 0 9.20721966 0
+1.4167 0.87544987 9.30196063 -3.39429232 0.27133574 -0.0075 0.126279 -98.05603313 766.6864734 43.62823384 0.70527047 -0.0075 -0.05460641 0.93428432 1.05700486 -0.17013584 0 9.23911859 0
+1.4183 0.20851743 7.79627715 -3.17663411 0.2722751 -0.0075 0.12610088 -97.3621633 767.8213136 43.43153151 0.70397405 -0.0075 -0.05470765 0.88450297 0.96613843 -0.06102577 0 9.26188902 0
+1.42 -0.3387204 6.50492154 -2.89772024 0.27324 -0.0075 0.125923 -96.62939155 768.755274 43.26595641 0.70269889 -0.0075 -0.05481373 0.82004199 0.84453634 0.070362 0 9.27471058 0
+1.4217 -0.77111793 5.40984811 -2.5675748 0.27423023 -0.0075 0.12574534 -95.85796643 769.4876844 43.13671852 0.70144194 -0.0075 -0.0549235 0.74286056 0.69774302 0.21853789 0 9.27725409 0
+1.4233 -1.09574744 4.49211009 -2.19820045 0.2752456 -0.0075 0.12556792 -95.04891708 770.0159076 43.04719526 0.70019916 -0.0075 -0.05503546 0.65533495 0.5324073 0.37736606 0 9.26963038 0
+1.425 -1.32149338 3.73232905 -1.80315029 0.27628589 -0.0075 0.12539074 -94.20407394 770.3356418 42.99885391 0.69896588 -0.0075 -0.05514782 0.56021761 0.35603405 0.54046553 0 9.25247752 0
+1.4267 -1.45882916 3.11106594 -1.39674006 0.27735092 -0.0075 0.1252138 -93.32603751 770.4415741 42.99125258 0.6977372 -0.0075 -0.05525872 0.46047849 0.17652575 0.70152028 0 9.22691807 0
+1.4283 -1.51934996 2.60927071 -0.99332593 0.27844048 -0.0075 0.12503711 -92.41814648 770.3280259 43.0221829 0.69650833 -0.0075 -0.05536631 0.35919668 0.00177467 0.8546789 0 9.19443979 0
+1.43 0 0 0 0.27955437 -0.0075 0.12486066 -91.48435774 769.9894274 43.08785764 0.69527495 -0.0075 -0.05546889 0 0 0 0 9.15689396 0
+1.4317 0 0 0 0.28069239 -0.0075 0.12468446 -90.5290362 769.4211519 43.18324693 0.69403345 -0.0075 -0.05556504 0 0 0 0 9.11630837 0
+1.4333 0 0 0 0.28185433 -0.0075 0.12450851 -89.55689885 768.6197919 43.30221608 0.69278127 -0.0075 -0.05565377 0 0 0 0 9.07481352 0
+1.435 0 0 0 0.28304 -0.0075 0.12433281 -88.57278819 767.5837718 43.43814799 0.691517 -0.0075 -0.05573452 0 0 0 0 9.03445328 0
+1.4367 0 0 0 0.2842492 -0.0075 0.12415738 -87.58141691 766.3135267 43.58422248 0.69024058 -0.0075 -0.05580729 0 0 0 0 8.99715398 0
+1.4383 0 0 0 0.28548172 -0.0075 0.1239822 -86.58729699 764.8118251 43.73382714 0.68895327 -0.0075 -0.05587264 0 0 0 0 8.96448165 0
+1.44 0 0 0 0.28673736 -0.0075 0.12380729 -85.59454498 763.083722 43.8810214 0.68765765 -0.0075 -0.0559317 0 0 0 0 8.93754503 0
+1.4417 0 0 0 0.28801592 -0.0075 0.12363264 -84.60679875 761.1364724 44.02083154 0.68635746 -0.0075 -0.05598611 0 0 0 0 8.91697581 0
+1.4433 0 0 0 0.28931721 -0.0075 0.12345826 -83.62708269 758.9794061 44.14957621 0.68505738 -0.0075 -0.056038 0 0 0 0 8.90275114 0
+1.445 0 0 0 0.29064101 -0.0075 0.12328415 -82.65783647 756.6234205 44.26497788 0.68376284 -0.0075 -0.05608984 0 0 0 0 8.89425122 0
+1.4467 0 0 0 0.29198714 -0.0075 0.12311031 -81.70078986 754.0807391 44.36638442 0.68247966 -0.0075 -0.05614436 0 0 0 0 8.89023579 0
+1.4483 0 0 0 0.29335538 -0.0075 0.12293675 -80.75701404 751.3642422 44.45457278 0.68121378 -0.0075 -0.05620437 0 0 0 0 8.88900182 0
+1.45 0 0 0 0.29474554 -0.0075 0.12276347 -79.82694332 748.4870998 44.53170223 0.67997092 -0.0075 -0.05627266 0 0 0 0 8.88835798 0
+1.4517 0 0 0 0.29615741 -0.0075 0.12259047 -78.91034756 745.46221 44.60103372 0.67875622 -0.0075 -0.05635181 0 0 0 0 8.88584198 0
+1.4533 0 0 0 0.2975908 -0.0075 0.12241775 -78.00649018 742.3018253 44.66653288 0.67757398 -0.0075 -0.05644414 0 0 0 0 8.87885779 0
+1.455 0 0 0 0.2990455 -0.0075 0.12224533 -77.11413945 739.0171561 44.73257425 0.67642736 -0.0075 -0.05655145 0 0 0 0 8.86480308 0
+1.4567 0 0 0 0.30052131 -0.0075 0.12207319 -76.23170115 735.6180572 44.80336007 0.67531822 -0.0075 -0.05667504 0 0 0 0 8.84133161 0
+1.4583 0 0 0 0.30201804 -0.0075 0.12190134 -75.35728066 732.1130156 44.88264406 0.67424693 -0.0075 -0.05681555 0 0 0 0 8.80646595 0
+1.46 0 0 0 0.30353547 -0.0075 0.12172979 -74.48881546 728.5089449 44.97318827 0.67321243 -0.0075 -0.05697298 0 0 0 0 8.75882824 0
+1.4617 0 0 0 0.30507341 -0.0075 0.12155854 -73.62411703 724.8115031 45.07658003 0.6722122 -0.0075 -0.05714662 0 0 0 0 8.69764747 0
+1.4633 0 0 0 0.30663167 -0.0075 0.12138759 -72.76100616 721.025171 45.19286348 0.6712424 -0.0075 -0.05733514 0 0 0 0 8.62291305 0
+1.465 0 0 0 0.30821002 -0.0075 0.12121694 -71.89741637 717.1536759 45.32050111 0.67029802 -0.0075 -0.05753664 0 0 0 0 8.53529575 0
+1.4667 0 0 0 0.30980829 -0.0075 0.1210466 -71.03140348 713.2003363 45.45640726 0.66937318 -0.0075 -0.0577487 0 0 0 0 8.43616346 0
+1.4683 0 0 0 0.31142626 -0.0075 0.12087657 -70.16132561 709.1684855 45.59597175 0.66846138 -0.0075 -0.05796852 0 0 0 0 8.32749234 0
+1.47 0 0 0 0.31306373 -0.0075 0.12070684 -69.28581872 705.0619275 45.73348798 0.66755581 -0.0075 -0.05819303 0 0 0 0 8.21167677 0
+1.4717 0 0 0 0.3147205 -0.0075 0.12053744 -68.40388591 700.8852346 45.86230386 0.66664972 -0.0075 -0.05841899 0 0 0 0 8.09149207 0
+1.4733 0 0 0 0.31639638 -0.0075 0.12036835 -67.51481376 696.6442718 45.97541794 0.66573665 -0.0075 -0.05864314 0 0 0 0 7.96975481 0
+1.475 0 0 0 0.31809116 -0.0075 0.12019958 -66.61830304 692.3462204 46.06572908 0.66481078 -0.0075 -0.05886232 0 0 0 0 7.84923506 0
+1.4767 0 0 0 0.31980464 -0.0075 0.12003113 -65.71434405 687.9999458 46.12667145 0.66386704 -0.0075 -0.05907353 0 0 0 0 7.73234606 0
+1.4783 0 0 0 0.32153661 -0.0075 0.11986301 -64.80325656 683.61583 46.15243684 0.66290133 -0.0075 -0.05927403 0 0 0 0 7.62113479 0
+1.48 0 0 0 0.32328688 -0.0075 0.11969521 -63.88566803 679.2057891 46.13839151 0.6619106 -0.0075 -0.05946141 0 0 0 0 7.51701696 0
+1.4817 0 0 0 0.32505525 -0.0075 0.11952775 -62.96243106 674.7830086 46.08132633 0.66089282 -0.0075 -0.05963354 0 0 0 0 7.42078746 0
+1.4833 0 0 0 0.32684151 -0.0075 0.11936062 -62.0346153 670.3616625 45.97944461 0.65984703 -0.0075 -0.05978873 0 0 0 0 7.33263129 0
+1.485 0 0 0 0.32864547 -0.0075 0.11919382 -61.103392 665.9566174 45.83252943 0.65877314 -0.0075 -0.05992555 0 0 0 0 7.25203809 0
+1.4867 0 0 0 0.33046692 -0.0075 0.11902737 -60.1700805 661.5828734 45.64161511 0.65767189 -0.0075 -0.06004295 0 0 0 0 7.17798554 0
+1.4883 0 0 0 0.33230567 -0.0075 0.11886125 -59.23602909 657.2554266 45.40898847 0.65654456 -0.0075 -0.06014017 0 0 0 0 7.10895967 0
+1.49 0 0 0 0.3341615 -0.0075 0.11869548 -58.30271953 652.9885813 45.13767746 0.6553929 -0.0075 -0.06021675 0 0 0 0 7.0432264 0
+1.4917 0 0 0 0.33603422 -0.0075 0.11853006 -57.37164498 648.7958274 44.83134514 0.65421889 -0.0075 -0.06027247 0 0 0 0 6.97886278 0
+1.4933 0 0 0 0.33792364 -0.0075 0.11836499 -56.44440274 644.6893872 44.49372314 0.65302459 -0.0075 -0.06030733 0 0 0 0 6.91412626 0
+1.495 0 0 0 0.33982953 -0.0075 0.11820027 -55.52262162 640.680133 44.12841313 0.65181213 -0.0075 -0.06032159 0 0 0 0 6.84748865 0
+1.4967 0 0 0 0.34175172 -0.0075 0.1180359 -54.60797679 636.7774426 43.7386538 0.65058353 -0.0075 -0.06031572 0 0 0 0 6.77779657 0
+1.4983 0 0 0 0.34368999 -0.0075 0.11787189 -53.7022268 632.989153 43.32699136 0.64934078 -0.0075 -0.06029047 0 0 0 0 6.70440559 0
+1.5 0 0 0 0.34564415 -0.0075 0.11770825 -52.80719167 629.3217624 42.89534764 0.64808574 -0.0075 -0.06024684 0 0 0 0 6.6271505 0
+1.5017 0 0 0 0.34761399 -0.0075 0.11754496 -51.92480261 625.7802621 42.44492294 0.64682032 -0.0075 -0.06018613 0 0 0 0 6.5464256 0
+1.5033 0 0 0 0.34959931 -0.0075 0.11738204 -51.05702198 622.3686599 41.97642976 0.64554642 -0.0075 -0.06010994 0 0 0 0 6.46304166 0
+1.505 0 0 0 0.35159991 -0.0075 0.11721949 -50.205896 619.0898362 41.49010076 0.64426612 -0.0075 -0.06002021 0 0 0 0 6.37824709 0
+1.5067 0 0 0 0.3536156 -0.0075 0.11705732 -49.37339256 615.9459266 40.98617231 0.64298176 -0.0075 -0.05991918 0 0 0 0 6.29347453 0
+1.5083 0 0 0 0.35564616 -0.0075 0.11689551 -48.56142445 612.9383761 40.46495836 0.64169593 -0.0075 -0.05980934 0 0 0 0 6.21027617 0
+1.51 0 0 0 0.3576914 -0.0075 0.11673409 -47.77175927 610.0681015 39.92719412 0.64041149 -0.0075 -0.05969348 0 0 0 0 6.13008823 0
+1.5117 0 0 0 0.35975112 -0.0075 0.11657304 -47.00597064 607.3355706 39.37436726 0.63913144 -0.0075 -0.05957451 0 0 0 0 6.05406132 0
+1.5133 0 0 0 0.36182511 -0.0075 0.11641237 -46.26534666 604.7407254 38.80873747 0.63785891 -0.0075 -0.05945542 0 0 0 0 5.98302983 0
+1.515 0 0 0 0.36391318 -0.0075 0.11625209 -45.55084315 602.2830855 38.23352434 0.63659691 -0.0075 -0.05933916 0 0 0 0 5.91731235 0
+1.5167 0 0 0 0.36601512 -0.0075 0.1160922 -44.86302614 599.9613679 37.65282336 0.63534817 -0.0075 -0.05922845 0 0 0 0 5.85677254 0
+1.5183 0 0 0 0.36813074 -0.0075 0.1159327 -44.20193573 597.773682 37.0716241 0.63411496 -0.0075 -0.0591257 0 0 0 0 5.80077189 0
+1.52 0 0 0 0.37025982 -0.0075 0.11577359 -43.56714383 595.7171679 36.49536803 0.63289878 -0.0075 -0.05903287 0 0 0 0 5.74827695 0
+1.5217 0 0 0 0.37240218 -0.0075 0.11561488 -42.95774607 593.787992 35.92982439 0.63170017 -0.0075 -0.05895139 0 0 0 0 5.69788044 0
+1.5233 0 0 0 0.37455761 -0.0075 0.11545656 -42.37234087 591.9812148 35.38072876 0.63051857 -0.0075 -0.058882 0 0 0 0 5.64802272 0
+1.525 0 0 0 0.3767259 -0.0075 0.11529865 -41.80913211 590.2907752 34.853322 0.62935217 -0.0075 -0.05882483 0 0 0 0 5.59714456 0
+1.5267 0 0 0 0.37890686 -0.0075 0.11514114 -41.26594038 588.7095539 34.35216639 0.62819796 -0.0075 -0.05877923 0 0 0 0 5.54376582 0
+1.5283 0 0 0 0.38110029 -0.0075 0.11498404 -40.74030175 587.2293933 33.88074359 0.62705187 -0.0075 -0.05874397 0 0 0 0 5.48679239 0
+1.53 0 0 0 0.38330599 -0.0075 0.11482735 -40.22954833 585.8414842 33.44130258 0.62590886 -0.0075 -0.05871723 0 0 0 0 5.42552634 0
+1.5317 0 0 0 0.38552374 -0.0075 0.11467107 -39.7309245 584.5364384 33.03468435 0.62476338 -0.0075 -0.0586968 0 0 0 0 5.35977406 0
+1.5333 0 0 0 0.38775336 -0.0075 0.1145152 -39.24168072 583.3048299 32.66044501 0.62360955 -0.0075 -0.05868019 0 0 0 0 5.28982447 0
+1.535 0 0 0 0.38999465 -0.0075 0.11435976 -38.75919712 582.1374997 32.31689405 0.62244169 -0.0075 -0.05866486 0 0 0 0 5.21650993 0
+1.5367 0 0 0 0.39224739 -0.0075 0.11420473 -38.2811111 581.0259467 32.00136258 0.62125475 -0.0075 -0.0586484 0 0 0 0 5.1410487 0
+1.5383 0 0 0 0.39451139 -0.0075 0.11405012 -37.80532188 579.9627472 31.71057408 0.62004474 -0.0075 -0.05862864 0 0 0 0 5.06495181 0
+1.54 0 0 0 0.39678646 -0.0075 0.11389595 -37.33011642 578.9418814 31.44086667 0.61880916 -0.0075 -0.05860399 0 0 0 0 4.98994859 0
+1.5417 0 0 0 0.39907238 -0.0075 0.1137422 -36.85417667 577.959078 31.18874739 0.61754728 -0.0075 -0.05857341 0 0 0 0 4.91769054 0
+1.5433 0 0 0 0.40136895 -0.0075 0.11358888 -36.37660689 577.0118921 30.95111516 0.6162604 -0.0075 -0.05853663 0 0 0 0 4.84966837 0
+1.545 0 0 0 0.40367599 -0.0075 0.11343599 -35.89693836 576.0999358 30.7257037 0.61495184 -0.0075 -0.05849413 0 0 0 0 4.78697898 0
+1.5467 0 0 0 0.40599327 -0.0075 0.11328355 -35.41515759 575.2246685 30.51122647 0.61362692 -0.0075 -0.05844715 0 0 0 0 4.73026973 0
+1.5483 0 0 0 0.40832061 -0.0075 0.11313154 -34.93163802 574.389309 30.30756968 0.61229274 -0.0075 -0.05839763 0 0 0 0 4.67960315 0
+1.55 0 0 0 0.41065781 -0.0075 0.11297997 -34.44709777 573.5984929 30.11575377 0.61095777 -0.0075 -0.05834808 0 0 0 0 4.63450305 0
+1.5517 0 0 0 0.41300465 -0.0075 0.11282885 -33.96258636 572.8578453 29.93779628 0.60963142 -0.0075 -0.05830146 0 0 0 0 4.59395939 0
+1.5533 0 0 0 0.41536095 -0.0075 0.11267818 -33.47931844 572.1735832 29.77661925 0.60832348 -0.0075 -0.05826091 0 0 0 0 4.55646869 0
+1.555 0 0 0 0.41772649 -0.0075 0.11252795 -32.9986895 571.5519203 29.63553689 0.60704343 -0.0075 -0.05822962 0 0 0 0 4.52025287 0
+1.5567 0 0 0 0.42010108 -0.0075 0.11237818 -32.52215718 570.9986331 29.51808145 0.60579978 -0.0075 -0.05821055 0 0 0 0 4.48329578 0
+1.5583 0 0 0 0.42248452 -0.0075 0.11222887 -32.05121621 570.5184215 29.42743631 0.60459952 -0.0075 -0.05820623 0 0 0 0 4.44365104 0
+1.56 0 0 0 0.4248766 -0.0075 0.11208001 -31.58728088 570.1146288 29.36617181 0.60344749 -0.0075 -0.05821857 0 0 0 0 4.39955366 0
+1.5617 0 0 0 0.42727713 -0.0075 0.11193162 -31.13165075 569.7887437 29.33580074 0.60234607 -0.0075 -0.0582487 0 0 0 0 4.34966719 0
+1.5633 0 0 0 0.42968591 -0.0075 0.11178368 -30.68539365 569.540298 29.33660494 0.60129489 -0.0075 -0.05829691 0 0 0 0 4.2931397 0
+1.565 0 0 0 0.43210272 -0.0075 0.11163622 -30.2492916 569.3667453 29.3674297 0.60029072 -0.0075 -0.05836249 0 0 0 0 4.22977047 0
+1.5667 0 0 0 0.43452738 -0.0075 0.11148922 -29.82381458 569.2634933 29.42556689 0.59932764 -0.0075 -0.05844394 0 0 0 0 4.16000723 0
+1.5683 0 0 0 0.43695968 -0.0075 0.1113427 -29.40902974 569.2241588 29.5070376 0.59839722 -0.0075 -0.05853878 0 0 0 0 4.08485958 0
+1.57 0 0 0 0.43939942 -0.0075 0.11119665 -29.00463678 569.2408013 29.60656421 0.5974891 -0.0075 -0.05864392 0 0 0 0 4.00593774 0
+1.5717 0 0 0 0.44184639 -0.0075 0.11105108 -28.60989445 569.3044856 29.71806382 0.59659141 -0.0075 -0.05875566 0 0 0 0 3.9252165 0
+1.5733 0 0 0 0.44430041 -0.0075 0.11090599 -28.22364976 569.4055701 29.83487632 0.59569159 -0.0075 -0.05886993 0 0 0 0 3.84497469 0
+1.575 0 0 0 0.44676126 -0.0075 0.11076138 -27.84430216 569.5344633 29.95030731 0.59477696 -0.0075 -0.05898252 0 0 0 0 3.76753263 0
+1.5767 0 0 0 0.44922874 -0.0075 0.11061726 -27.46989538 569.6820474 30.05792767 0.59383552 -0.0075 -0.05908931 0 0 0 0 3.69513299 0
+1.5783 0 0 0 0.45170266 -0.0075 0.11047362 -27.09809899 569.8402306 30.15211954 0.59285655 -0.0075 -0.05918641 0 0 0 0 3.62965816 0
+1.58 0 0 0 0.45418282 -0.0075 0.11033048 -26.72638271 570.0024162 30.22834065 0.59183109 -0.0075 -0.05927043 0 0 0 0 3.57254977 0
+1.5817 0 0 0 0.456669 -0.0075 0.11018783 -26.35209523 570.1637743 30.28331816 0.59075243 -0.0075 -0.05933858 0 0 0 0 3.52471976 0
+1.5833 0 0 0 0.45916102 -0.0075 0.11004568 -25.97252445 570.3215619 30.31537205 0.58961635 -0.0075 -0.05938879 0 0 0 0 3.48641691 0
+1.585 0 0 0 0.46165866 -0.0075 0.10990403 -25.58508353 570.4751189 30.32424182 0.58842124 -0.0075 -0.0594198 0 0 0 0 3.4573281 0
+1.5867 0 0 0 0.46416174 -0.0075 0.10976287 -25.18739307 570.6260202 30.31118678 0.58716806 -0.0075 -0.05943118 0 0 0 0 3.43653754 0
+1.5883 0 0 0 0.46667004 -0.0075 0.10962223 -24.77745264 570.777682 30.27866741 0.58586012 -0.0075 -0.05942329 0 0 0 0 3.42268535 0
+1.59 0 0 0 0.46918337 -0.0075 0.10948209 -24.35372592 570.9353421 30.23019169 0.58450273 -0.0075 -0.05939727 0 0 0 0 3.41400388 0
+1.5917 0 0 0 0.47170152 -0.0075 0.10934246 -23.91533828 571.1055558 30.1698219 0.58310274 -0.0075 -0.05935492 0 0 0 0 3.4085718 0
+1.5933 0 0 0 0.4742243 -0.0075 0.10920334 -23.46207197 571.295814 30.10198814 0.58166809 -0.0075 -0.05929858 0 0 0 0 3.40441855 0
+1.595 0 0 0 0.47675151 -0.0075 0.10906474 -22.99447647 571.5141357 30.03104321 0.5802072 -0.0075 -0.05923097 0 0 0 0 3.39972898 0
+1.5967 0 0 0 0.47928293 -0.0075 0.10892666 -22.51387233 571.7684958 29.9608596 0.5787285 -0.0075 -0.05915509 0 0 0 0 3.39302613 0
+1.5983 0 0 0 0.48181838 -0.0075 0.10878909 -22.02228499 572.0665282 29.89472463 0.57723992 -0.0075 -0.05907395 0 0 0 0 3.38320433 0
+1.6 0 0 0 0.48435765 -0.0075 0.10865206 -21.52239253 572.4150016 29.83494851 0.57574851 -0.0075 -0.05899056 0 0 0 0 3.36970386 0
+1.6017 0 0 0 0.48690053 -0.0075 0.10851554 -21.01741732 572.8197101 29.78288892 0.57426003 -0.0075 -0.05890776 0 0 0 0 3.35244764 0
+1.6033 0 0 0 0.48944684 -0.0075 0.10837956 -20.51100943 573.2849839 29.73881749 0.57277881 -0.0075 -0.05882801 0 0 0 0 3.3318798 0
+1.605 0 0 0 0.49199636 -0.0075 0.10824411 -20.00700688 573.8137329 29.7021464 0.57130765 -0.0075 -0.05875341 0 0 0 0 3.3088452 0
+1.6067 0 0 0 0.4945489 -0.0075 0.1081092 -19.50924596 574.4072972 29.67142721 0.56984783 -0.0075 -0.05868554 0 0 0 0 3.28454784 0
+1.6083 0 0 0 0.49710425 -0.0075 0.10797482 -19.02130949 575.065445 29.6446249 0.56839931 -0.0075 -0.05862548 0 0 0 0 3.26036344 0
+1.61 0 0 0 0.49966222 -0.0075 0.10784098 -18.54628139 575.7865315 29.61941314 0.56696087 -0.0075 -0.05857374 0 0 0 0 3.23767829 0
+1.6117 0 0 0 0.5022226 -0.0075 0.10770768 -18.08659608 576.5675487 29.59328625 0.56553041 -0.0075 -0.05853035 0 0 0 0 3.21780314 0
+1.6133 0 0 0 0.50478519 -0.0075 0.10757493 -17.64379133 577.4044326 29.56399054 0.56410518 -0.0075 -0.05849481 0 0 0 0 3.20168177 0
+1.615 0 0 0 0.50734979 -0.0075 0.10744273 -17.21841311 578.2921067 29.52961098 0.56268212 -0.0075 -0.05846616 0 0 0 0 3.1898726 0
+1.6167 0 0 0 0.5099162 -0.0075 0.10731108 -16.80991623 579.2248589 29.48881872 0.56125807 -0.0075 -0.05844307 0 0 0 0 3.18245116 0
+1.6183 0 0 0 0.51248422 -0.0075 0.10717998 -16.41660055 580.1963913 29.44089267 0.55983013 -0.0075 -0.05842391 0 0 0 0 3.17899741 0
+1.62 0 0 0 0.51505365 -0.0075 0.10704944 -16.03566267 581.2000881 29.38581972 0.55839576 -0.0075 -0.0584068 0 0 0 0 3.17855072 0
+1.6217 0 0 0 0.51762428 -0.0075 0.10691945 -15.66327902 582.2292281 29.32420176 0.5569529 -0.0075 -0.05838975 0 0 0 0 3.1797335 0
+1.6233 0 0 0 0.52019592 -0.0075 0.10679003 -15.29480156 583.2770895 29.25714944 0.5555001 -0.0075 -0.05837078 0 0 0 0 3.18084248 0
+1.625 0 0 0 0.52276836 -0.0075 0.10666118 -14.92497401 584.3371795 29.18622852 0.55403646 -0.0075 -0.05834794 0 0 0 0 3.17991467 0
+1.6267 0 0 0 0.52534141 -0.0075 0.10653289 -14.54823628 585.4032512 29.11312377 0.55256166 -0.0075 -0.05831952 0 0 0 0 3.17500286 0
+1.6283 0 0 0 0.52791486 -0.0075 0.10640517 -14.15899578 586.4695634 29.03961529 0.5510759 -0.0075 -0.05828403 0 0 0 0 3.16427406 0
+1.63 0 0 0 0.53048851 -0.0075 0.10627802 -13.75197752 587.530881 28.96723821 0.54957987 -0.0075 -0.0582404 0 0 0 0 3.14623084 0
+1.6317 0 0 0 0.53306216 -0.0075 0.10615145 -13.32250131 588.5826892 28.89722727 0.54807468 -0.0075 -0.05818798 0 0 0 0 3.11979768 0
+1.6333 0 0 0 0.53563561 -0.0075 0.10602546 -12.86679594 589.6212872 28.83032404 0.54656182 -0.0075 -0.05812669 0 0 0 0 3.08449444 0
+1.635 0 0 0 0.53820866 -0.0075 0.10590004 -12.38225723 590.6439125 28.76677103 0.54504315 -0.0075 -0.058057 0 0 0 0 3.04042961 0
+1.6367 0 0 0 0.5407811 -0.0075 0.10577521 -11.86761547 591.6488859 28.70632167 0.54352081 -0.0075 -0.05797997 0 0 0 0 2.98831919 0
+1.6383 0 0 0 0.54335274 -0.0075 0.10565097 -11.32310326 592.6356503 28.64820223 0.54199724 -0.0075 -0.05789731 0 0 0 0 2.92950915 0
+1.64 0 0 0 0.54592337 -0.0075 0.10552732 -10.75042986 593.6048932 28.59137485 0.5404752 -0.0075 -0.05781124 0 0 0 0 2.86581234 0
+1.6417 0 0 0 0.5484928 -0.0075 0.10540426 -10.15275313 594.5584856 28.53452615 0.53895773 -0.0075 -0.05772455 0 0 0 0 2.79947429 0
+1.6433 0 0 0 0.55106082 -0.0075 0.10528179 -9.53448204 595.4995897 28.47640105 0.53744814 -0.0075 -0.05764041 0 0 0 0 2.73292386 0
+1.645 0 0 0 0.55362723 -0.0075 0.10515992 -8.90105957 596.4324535 28.41588356 0.53594997 -0.0075 -0.0575623 0 0 0 0 2.66863614 0
+1.6467 0 0 0 0.55619183 -0.0075 0.10503865 -8.25869375 597.3623749 28.35226951 0.53446688 -0.0075 -0.05749384 0 0 0 0 2.60891057 0
+1.6483 0 0 0 0.55875442 -0.0075 0.10491798 -7.61396959 598.2954227 28.28534808 0.5330025 -0.0075 -0.05743862 0 0 0 0 2.55572093 0
+1.65 0 0 0 0.5613148 -0.0075 0.10479791 -6.97349693 599.2381813 28.21552639 0.53156032 -0.0075 -0.05740004 0 0 0 0 2.51052898 0
+1.6517 0 0 0 0.56387277 -0.0075 0.10467846 -6.34349124 600.1974755 28.14396377 0.53014345 -0.0075 -0.05738106 0 0 0 0 2.47419809 0
+1.6533 0 0 0 0.56642812 -0.0075 0.10455961 -5.72939278 601.1799703 28.07239262 0.52875443 -0.0075 -0.05738411 0 0 0 0 2.44697227 0
+1.655 0 0 0 0.56898066 -0.0075 0.10444138 -5.13554543 602.1918718 28.00323118 0.52739501 -0.0075 -0.05741083 0 0 0 0 2.42836232 0
+1.6567 0 0 0 0.57153018 -0.0075 0.10432377 -4.56493548 603.2384977 27.93928372 0.52606593 -0.0075 -0.05746206 0 0 0 0 2.41728778 0
+1.6583 0 0 0 0.57407649 -0.0075 0.10420677 -4.01896941 604.32409 27.88368904 0.52476673 -0.0075 -0.05753765 0 0 0 0 2.41207035 0
+1.66 0 0 0 0.57661937 -0.0075 0.1040904 -3.49744153 605.451412 27.83960354 0.52349563 -0.0075 -0.0576365 0 0 0 0 2.41062896 0
+1.6617 0 0 0 0.57915864 -0.0075 0.10397465 -2.99854272 606.6216467 27.81006123 0.52224944 -0.0075 -0.05775652 0 0 0 0 2.41060627 0
+1.6633 0 0 0 0.58169409 -0.0075 0.10385953 -2.51895252 607.8342829 27.79769311 0.52102362 -0.0075 -0.05789475 0 0 0 0 2.40962094 0
+1.665 0 0 0 0.58422551 -0.0075 0.10374503 -2.05406362 609.0870921 27.80455098 0.51981243 -0.0075 -0.05804744 0 0 0 0 2.40542366 0
+1.6667 0 0 0 0.58675272 -0.0075 0.10363117 -1.59824739 610.3763403 27.83203068 0.5186091 -0.0075 -0.05821026 0 0 0 0 2.39603364 0
+1.6683 0 0 0 0.5892755 -0.0075 0.10351795 -1.14526004 611.6969278 27.88066754 0.51740616 -0.0075 -0.0583785 0 0 0 0 2.37996928 0
+1.67 0 0 0 0.59179365 -0.0075 0.10340536 -0.68862142 613.0427894 27.95030036 0.51619573 -0.0075 -0.0585473 0 0 0 0 2.35625763 0
+1.6717 0 0 0 0.59430698 -0.0075 0.10329341 -0.2220401 614.4071708 28.03993236 0.51497 -0.0075 -0.05871189 0 0 0 0 2.32456171 0
+1.6733 0 0 0 0.59681528 -0.0075 0.10318211 0.26021171 615.7831986 28.1480254 0.51372163 -0.0075 -0.05886782 0 0 0 0 2.28515144 0
+1.675 0 0 0 0.59931836 -0.0075 0.10307145 0.76292736 617.1641992 28.27255204 0.51244416 -0.0075 -0.05901119 0 0 0 0 2.23894927 0
+1.6767 0 0 0 0.601816 -0.0075 0.10296144 1.28972148 618.5442199 28.4113347 0.51113243 -0.0075 -0.05913879 0 0 0 0 2.18735439 0
+1.6783 0 0 0 0.60430802 -0.0075 0.10285208 1.84281388 619.9183946 28.56218117 0.50978283 -0.0075 -0.05924831 0 0 0 0 2.13216947 0
+1.68 0 0 0 0.6067942 -0.0075 0.10274338 2.42293539 621.2832627 28.72313049 0.50839363 -0.0075 -0.05933838 0 0 0 0 2.07544731 0
+1.6817 0 0 0 0.60927436 -0.0075 0.10263533 3.02936823 622.6370836 28.89277463 0.50696498 -0.0075 -0.05940858 0 0 0 0 2.01927533 0
+1.6833 0 0 0 0.61174828 -0.0075 0.10252795 3.65999481 623.979816 29.07022902 0.50549897 -0.0075 -0.05945951 0 0 0 0 1.96570025 0
+1.685 0 0 0 0.61421576 -0.0075 0.10242122 4.31154415 625.3132885 29.25542913 0.50399949 -0.0075 -0.05949261 0 0 0 0 1.9164955 0
+1.6867 0 0 0 0.61667661 -0.0075 0.10231516 4.97989579 626.6408873 29.44903139 0.50247202 -0.0075 -0.05951008 0 0 0 0 1.87313547 0
+1.6883 0 0 0 0.61913063 -0.0075 0.10220977 5.66042319 627.9675488 29.65245812 0.50092329 -0.0075 -0.0595147 0 0 0 0 1.83662978 0
+1.69 0 0 0 0.6215776 -0.0075 0.10210505 6.34836853 629.2993208 29.86764321 0.49936087 -0.0075 -0.05950971 0 0 0 0 1.80754637 0
+1.6917 0 0 0 0.62401734 -0.0075 0.102001 7.03921292 630.6430233 30.0970004 0.49779265 -0.0075 -0.05949853 0 0 0 0 1.78593046 0
+1.6933 0 0 0 0.62644964 -0.0075 0.10189763 7.72901385 632.0058794 30.34309468 0.49622637 -0.0075 -0.0594846 0 0 0 0 1.77138691 0
+1.695 0 0 0 0.6288743 -0.0075 0.10179494 8.41470291 633.3950034 30.60832891 0.49466913 -0.0075 -0.05947121 0 0 0 0 1.76316144 0
+1.6967 0 0 0 0.63129111 -0.0075 0.10169292 9.09434968 634.8170948 30.89484394 0.49312692 -0.0075 -0.05946125 0 0 0 0 1.76016302 0
+1.6983 0 0 0 0.63369989 -0.0075 0.1015916 9.76724335 636.2779344 31.2040304 0.49160427 -0.0075 -0.0594572 0 0 0 0 1.76123121 0
+1.7 0 0 0 0.63610042 -0.0075 0.10149096 10.43400898 637.7822803 31.53649087 0.490104 -0.0075 -0.05946094 0 0 0 0 1.76514056 0
+1.7017 0 0 0 0.6384925 -0.0075 0.101391 11.09650516 639.3334715 31.89175169 0.48862703 -0.0075 -0.05947376 0 0 0 0 1.7707678 0
+1.7033 0 0 0 0.64087594 -0.0075 0.10129175 11.75767446 640.9334931 32.26829924 0.4871723 -0.0075 -0.05949633 0 0 0 0 1.77713424 0
+1.705 0 0 0 0.64325053 -0.0075 0.10119318 12.42132134 642.5828974 32.66345956 0.48573691 -0.0075 -0.0595288 0 0 0 0 1.78356221 0
+1.7067 0 0 0 0.64561608 -0.0075 0.10109532 13.09179024 644.2808562 33.07357318 0.48431629 -0.0075 -0.0595708 0 0 0 0 1.78965176 0
+1.7083 0 0 0 0.64797237 -0.0075 0.10099815 13.77370317 646.0253945 33.4941555 0.48290454 -0.0075 -0.0596216 0 0 0 0 1.79531727 0
+1.71 0 0 0 0.65031921 -0.0075 0.10090169 14.47160472 647.8135566 33.92004026 0.4814948 -0.0075 -0.05968021 0 0 0 0 1.80083197 0
+1.7117 0 0 0 0.65265641 -0.0075 0.10080593 15.18967453 649.6418174 34.34582408 0.48007972 -0.0075 -0.05974555 0 0 0 0 1.8066693 0
+1.7133 0 0 0 0.65498375 -0.0075 0.10071088 15.93144558 651.5062302 34.76600915 0.47865187 -0.0075 -0.05981652 0 0 0 0 1.81350595 0
+1.715 0 0 0 0.65730103 -0.0075 0.10061654 16.69960128 653.4029178 35.17545683 0.47720418 -0.0075 -0.05989222 0 0 0 0 1.82207484 0
+1.7167 0 0 0 0.65960807 -0.0075 0.10052292 17.49581698 655.3281991 35.56956219 0.47573037 -0.0075 -0.05997194 0 0 0 0 1.83314498 0
+1.7183 0 0 0 0.66190464 -0.0075 0.10043002 18.3207684 657.2789143 35.94463781 0.4742252 -0.0075 -0.06005526 0 0 0 0 1.84735042 0
+1.72 0 0 0 0.66419056 -0.0075 0.10033783 19.17415545 659.2526135 36.29800355 0.47268482 -0.0075 -0.06014212 0 0 0 0 1.86519954 0
+1.7217 0 0 0 0.66646563 -0.0075 0.10024636 20.05481002 661.24764 36.62809614 0.47110686 -0.0075 -0.06023281 0 0 0 0 1.88700295 0
+1.7233 0 0 0 0.66872963 -0.0075 0.10015562 20.96096405 663.2632348 36.93460429 0.46949052 -0.0075 -0.06032789 0 0 0 0 1.91280668 0
+1.725 0 0 0 0.67098237 -0.0075 0.10006561 21.89044854 665.2994969 37.21825541 0.46783652 -0.0075 -0.06042824 0 0 0 0 1.94243962 0
+1.7267 0 0 0 0.67322366 -0.0075 0.09997633 22.8409499 667.3574018 37.4808542 0.46614695 -0.0075 -0.06053489 0 0 0 0 1.97545352 0
+1.7283 0 0 0 0.67545328 -0.0075 0.09988778 23.81031637 669.4385402 37.72500639 0.46442508 -0.0075 -0.06064898 0 0 0 0 2.01124785 0
+1.73 0 0 0 0.67767103 -0.0075 0.09979997 24.79678523 671.5451361 37.95397392 0.46267511 -0.0075 -0.06077168 0 0 0 0 2.04907452 0
+1.7317 0 0 0 0.67987673 -0.0075 0.09971289 25.79922855 673.6797506 38.17132398 0.4609019 -0.0075 -0.06090408 0 0 0 0 2.08815009 0
+1.7333 0 0 0 0.68207016 -0.0075 0.09962656 26.81730259 675.8451983 38.38081261 0.45911063 -0.0075 -0.0610471 0 0 0 0 2.12771081 0
+1.735 0 0 0 0.68425112 -0.0075 0.09954097 27.85155562 678.0443867 38.58610446 0.45730657 -0.0075 -0.06120147 0 0 0 0 2.16710034 0
+1.7367 0 0 0 0.68641941 -0.0075 0.09945613 28.90337836 680.2801249 38.79055134 0.45549477 -0.0075 -0.06136766 0 0 0 0 2.2057835 0
+1.7383 0 0 0 0.68857484 -0.0075 0.09937204 29.97497197 682.5550779 38.99719915 0.45367986 -0.0075 -0.06154585 0 0 0 0 2.24336268 0
+1.74 0 0 0 0.6907172 -0.0075 0.09928869 31.06918886 684.8716192 39.20852914 0.45186589 -0.0075 -0.061736 0 0 0 0 2.27968263 0
+1.7417 0 0 0 0.69284628 -0.0075 0.09920611 32.18927804 687.2318244 39.42661171 0.45005618 -0.0075 -0.06193779 0 0 0 0 2.31471912 0
+1.7433 0 0 0 0.6949619 -0.0075 0.09912428 33.33868599 689.6373388 39.65300735 0.44825335 -0.0075 -0.06215073 0 0 0 0 2.34865574 0
+1.745 0 0 0 0.69706384 -0.0075 0.09904321 34.52076409 692.0894846 39.88893596 0.44645923 -0.0075 -0.0623742 0 0 0 0 2.38177928 0
+1.7467 0 0 0 0.69915191 -0.0075 0.09896291 35.73850123 694.5891203 40.13531477 0.44467497 -0.0075 -0.06260748 0 0 0 0 2.41446472 0
+1.7483 0 0 0 0.7012259 -0.0075 0.09888337 36.99424756 697.136718 40.39292628 0.44290109 -0.0075 -0.06284986 0 0 0 0 2.44705548 0
+1.75 0 0 0 0.70328562 -0.0075 0.09880459 38.28950889 699.7323136 40.66250349 0.44113757 -0.0075 -0.06310064 0 0 0 0 2.4798407 0
+1.7517 0 0 0 0.70533086 -0.0075 0.09872659 39.62472496 702.3754166 40.94478451 0.43938396 -0.0075 -0.06335922 0 0 0 0 2.51303331 0
+1.7533 0 0 0 0.70736142 -0.0075 0.09864937 40.99924664 705.065037 41.24067029 0.43763946 -0.0075 -0.06362506 0 0 0 0 2.54667815 0
+1.755 0 0 0 0.70937711 -0.0075 0.09857292 42.41129508 707.7995225 41.55108316 0.43590308 -0.0075 -0.06389773 0 0 0 0 2.58072075 0
+1.7567 0 0 0 0.71137771 -0.0075 0.09849725 43.85796454 710.5766209 41.87711015 0.43417368 -0.0075 -0.06417688 0 0 0 0 2.61495305 0
+1.7583 0 0 0 0.71336303 -0.0075 0.09842236 45.33540088 713.3932561 42.21979428 0.43245004 -0.0075 -0.06446217 0 0 0 0 2.64909436 0
+1.76 0 0 0 0.71533287 -0.0075 0.09834825 46.83894605 716.2455862 42.58013355 0.43073091 -0.0075 -0.06475326 0 0 0 0 2.68274042 0
+1.7617 0 0 0 0.71728703 -0.0075 0.09827494 48.36331482 719.1288964 42.95885858 0.42901503 -0.0075 -0.06504974 0 0 0 0 2.71549094 0
+1.7633 0 0 0 0.7192253 -0.0075 0.09820241 49.90286401 722.037595 43.35637047 0.42730116 -0.0075 -0.06535105 0 0 0 0 2.74698275 0
+1.765 0 0 0 0.72114749 -0.0075 0.09813068 51.45184208 724.9652363 43.77262323 0.42558807 -0.0075 -0.06565645 0 0 0 0 2.77694375 0
+1.7667 0 0 0 0.72305339 -0.0075 0.09805974 53.00458085 727.9045484 44.2068625 0.42387458 -0.0075 -0.06596496 0 0 0 0 2.8052843 0
+1.7683 0 0 0 0.7249428 -0.0075 0.0979896 54.55578681 730.847637 44.65777438 0.42215956 -0.0075 -0.06627529 0 0 0 0 2.83205024 0
+1.77 0 0 0 0.72681552 -0.0075 0.09792026 56.10069024 733.78604 45.12328149 0.420442 -0.0075 -0.06658589 0 0 0 0 2.85751909 0
+1.7717 0 0 0 0.72867135 -0.0075 0.09785173 57.63511095 736.7111437 45.60063068 0.41872094 -0.0075 -0.06689493 0 0 0 0 2.88207697 0
+1.7733 0 0 0 0.7305101 -0.0075 0.097784 59.15559414 739.6142003 46.08641624 0.41699562 -0.0075 -0.06720036 0 0 0 0 2.90628294 0
+1.775 0 0 0 0.73233155 -0.0075 0.09771708 60.65942468 742.4867725 46.57681913 0.41526546 -0.0075 -0.06749992 0 0 0 0 2.93075155 0
+1.7767 0 0 0 0.73413551 -0.0075 0.09765097 62.14458284 745.3209923 47.06758391 0.41353016 -0.0075 -0.06779126 0 0 0 0 2.95615927 0
+1.7783 0 0 0 0.73592177 -0.0075 0.09758568 63.60973248 748.109762 47.55435589 0.41178972 -0.0075 -0.06807202 0 0 0 0 2.98310356 0
+1.78 0 0 0 0.73769014 -0.0075 0.0975212 65.05412753 750.8471372 48.03287794 0.41004452 -0.0075 -0.06833991 0 0 0 0 3.01206475 0
+1.7817 0 0 0 0.73944041 -0.0075 0.09745755 66.47748729 753.5284246 48.49900284 0.40829535 -0.0075 -0.06859286 0 0 0 0 3.043386 0
+1.7833 0 0 0 0.74117239 -0.0075 0.09739471 67.87993445 756.1504246 48.94913382 0.40654337 -0.0075 -0.06882908 0 0 0 0 3.07708866 0
+1.785 0 0 0 0.74288586 -0.0075 0.09733271 69.26185471 758.7113867 49.38015568 0.40479011 -0.0075 -0.06904716 0 0 0 0 3.11298562 0
+1.7867 0 0 0 0.74458064 -0.0075 0.09727153 70.62379762 761.2111565 49.78967808 0.40303747 -0.0075 -0.06924615 0 0 0 0 3.15058868 0
+1.7883 0 0 0 0.74625652 -0.0075 0.09721118 71.966454 763.6508871 50.17597162 0.40128758 -0.0075 -0.06942557 0 0 0 0 3.1892232 0
+1.79 0 0 0 0.74791329 -0.0075 0.09715167 73.29063575 766.0329872 50.53807773 0.39954277 -0.0075 -0.06958549 0 0 0 0 3.22798023 0
+1.7917 0 0 0 0.74955076 -0.0075 0.09709299 74.59722691 768.3608695 50.87563807 0.39780544 -0.0075 -0.06972648 0 0 0 0 3.26586414 0
+1.7933 0 0 0 0.75116873 -0.0075 0.09703515 75.88720628 770.6386007 51.18886558 0.39607787 -0.0075 -0.06984958 0 0 0 0 3.30183107 0
+1.795 0 0 0 0.752767 -0.0075 0.09697815 77.16168867 772.8706148 51.47843441 0.39436214 -0.0075 -0.06995628 0 0 0 0 3.33484716 0
+1.7967 0 0 0 0.75434536 -0.0075 0.096922 78.42188481 775.0612792 51.74519179 0.39265999 -0.0075 -0.07004842 0 0 0 0 3.36404875 0
+1.7983 0 0 0 0.75590361 -0.0075 0.0968667 79.66916507 777.214642 51.9901905 0.39097265 -0.0075 -0.07012809 0 0 0 0 3.3887556 0
+1.8 0 0 0 0.75744155 -0.0075 0.09681224 80.90510834 779.3339503 52.21439517 0.38930082 -0.0075 -0.07019752 0 0 0 0 3.40860737 0
+1.8017 0 0 0 0.75895898 -0.0075 0.09675864 82.13143766 781.4215699 52.41864153 0.38764457 -0.0075 -0.07025905 0 0 0 0 3.42352654 0
+1.8033 0 0 0 0.76045571 -0.0075 0.09670589 83.35001592 783.4785838 52.6034621 0.38600336 -0.0075 -0.07031494 0 0 0 0 3.43381583 0
+1.805 0 0 0 0.76193152 -0.0075 0.096654 84.56280407 785.5047424 52.76911753 0.38437599 -0.0075 -0.07036732 0 0 0 0 3.44008219 0
+1.8067 0 0 0 0.76338622 -0.0075 0.09660297 85.77174724 787.4983893 52.9155256 0.38276073 -0.0075 -0.07041815 0 0 0 0 3.44323686 0
+1.8083 0 0 0 0.76481961 -0.0075 0.09655281 86.97867108 789.4564162 53.04228552 0.38115539 -0.0075 -0.07046911 0 0 0 0 3.44442893 0
+1.81 0 0 0 0.76623148 -0.0075 0.09650351 88.1851523 791.3744153 53.14884574 0.37955738 -0.0075 -0.07052156 0 0 0 0 3.44497601 0
+1.8117 0 0 0 0.76762164 -0.0075 0.09645508 89.39244735 793.2467239 53.23444675 0.37796397 -0.0075 -0.07057655 0 0 0 0 3.44632106 0
+1.8133 0 0 0 0.76898988 -0.0075 0.09640752 90.60132073 795.0667647 53.29831801 0.37637236 -0.0075 -0.07063482 0 0 0 0 3.44988805 0
+1.815 0 0 0 0.77033601 -0.0075 0.09636084 91.8120021 796.8271083 53.33970946 0.37477985 -0.0075 -0.07069679 0 0 0 0 3.45707849 0
+1.8167 0 0 0 0.77165981 -0.0075 0.09631503 93.02410174 798.5198637 53.35809268 0.37318398 -0.0075 -0.07076258 0 0 0 0 3.46913069 0
+1.8183 0 0 0 0.7729611 -0.0075 0.09627011 94.23657625 800.1367919 53.35312118 0.37158265 -0.0075 -0.07083208 0 0 0 0 3.4871113 0
+1.82 0 0 0 0.77423966 -0.0075 0.09622607 95.44777846 801.6695698 53.32477735 0.36997416 -0.0075 -0.07090494 0 0 0 0 3.51183221 0
+1.8217 0 0 0 0.7754953 -0.0075 0.09618291 96.65554721 803.1100013 53.27336813 0.36835729 -0.0075 -0.07098063 0 0 0 0 3.54389213 0
+1.8233 0 0 0 0.77672782 -0.0075 0.09614064 97.85731429 804.4500653 53.19944197 0.36673126 -0.0075 -0.07105848 0 0 0 0 3.5836834 0
+1.825 0 0 0 0.77793702 -0.0075 0.09609926 99.05032071 805.6821227 53.10387989 0.36509572 -0.0075 -0.07113767 0 0 0 0 3.63134133 0
+1.8267 0 0 0 0.77912269 -0.0075 0.09605877 100.2318624 806.798842 52.98768921 0.36345068 -0.0075 -0.07121732 0 0 0 0 3.68684434 0
+1.8283 0 0 0 0.78028463 -0.0075 0.09601918 101.399443 807.793324 52.85203159 0.36179641 -0.0075 -0.07129641 0 0 0 0 3.74997698 0
+1.83 -1.39212267 2.00520835 0.49354844 0.78142265 -0.0075 0.09598049 102.5511097 808.6589476 52.69803345 0.3601333 -0.0075 -0.07137389 0.39067566 0.00374698 0.26346658 0 3.82040281 0
+1.8317 -1.57084362 2.36396876 0.49601082 0.78253654 -0.0075 0.0959427 103.6856128 809.3894275 52.52674724 0.3584618 -0.0075 -0.0714486 0.37369685 0.00952745 0.24272035 0 3.89765494 0
+1.8333 -1.72592482 2.79270591 0.47786802 0.7836261 -0.0075 0.09590582 104.8026137 809.9786761 52.33897633 0.35678226 -0.0075 -0.07151937 0.35363323 0.01173964 0.22390047 0 3.98123903 0
+1.835 -1.84569527 3.30859708 0.43864734 0.78469113 -0.0075 0.09586984 105.9028735 810.4207643 52.13525794 0.35509491 -0.0075 -0.07158498 0.33090284 0.01067211 0.20848772 0 4.07058785 0
+1.8367 -1.91703751 3.93177881 0.37861026 0.78573143 -0.0075 0.09583477 106.9883102 810.7099035 51.91583575 0.35339979 -0.0075 -0.07164417 0.30604982 0.00691202 0.19797186 0 4.16505032 0
+1.8383 -1.9256771 4.68530869 0.29883372 0.78674679 -0.0075 0.09580062 108.061946 810.8403781 51.68051297 0.35169674 -0.0075 -0.07169571 0.27974691 0.00137017 0.19381001 0 4.26395271 0
+1.84 -1.85682186 5.59509746 0.20135444 0.78773702 -0.0075 0.09576738 109.1278715 810.8066191 51.42880916 0.3499854 -0.0075 -0.07173838 0.25277431 -0.00480638 0.19735435 0 4.36650367 0
+1.8417 -1.69567819 6.68965279 0.08928584 0.78870192 -0.0075 0.09573505 110.1910914 810.6030998 51.15988025 0.34826535 -0.0075 -0.07177105 0.22598578 -0.0101897 0.20979803 0 4.47182168 0
+1.8433 -1.42832557 7.99966809 -0.03296563 0.78964128 -0.0075 0.09570365 111.2571927 810.2245714 50.87264302 0.34653613 -0.0075 -0.07179275 0.20024349 -0.01319158 0.2321058 0 4.57888982 0
+1.845 -1.04237373 9.55747275 -0.15969755 0.7905549 -0.0075 0.09567317 112.3321083 809.6660047 50.5658401 0.34479747 -0.0075 -0.07180265 0.17641484 -0.01210604 0.2649789 0 4.68659794 0
+1.8467 -0.52804554 11.3962827 -0.28375014 0.79144259 -0.0075 0.09564362 113.4217268 808.922715 50.23822091 0.34304936 -0.0075 -0.07180017 0.15531234 -0.00525325 0.30873593 0 4.79367826 0
+1.8483 0.1211604 13.54935118 -0.39648031 0.79230414 -0.0075 0.095615 114.5315004 807.9904876 49.88854559 0.34129228 -0.0075 -0.07178502 0.13764348 0.00900149 0.36334964 0 4.89874918 0
+1.85 0.907543 16.04895311 -0.48779778 0.79313934 -0.0075 0.09558731 115.6660431 806.8655925 49.51573444 0.33952731 -0.0075 -0.07175724 0.12398237 0.03209892 0.4283353 0 5.00032191 0
+1.8517 1.82847422 18.92540584 -0.54626887 0.79394801 -0.0075 0.09556055 116.828769 805.5448612 49.11908259 0.33775623 -0.0075 -0.0717172 0.1147235 0.06514572 0.50274509 0 5.09679649 0
+1.8533 2.87595371 22.20583963 -0.55929755 0.79472993 -0.0075 0.09553473 118.0214911 804.0256671 48.69814018 0.33598155 -0.0075 -0.07166568 0.11006528 0.10892878 0.58520751 0 5.18657843 0
+1.855 4.03608359 25.91315871 -0.51336527 0.79548492 -0.0075 0.09550985 119.2441813 802.3059187 48.25293019 0.33420659 -0.0075 -0.07160379 0.10997326 0.16372894 0.67391104 0 5.26805479 0
+1.8567 5.2890373 30.0649586 -0.3945056 0.79621275 -0.0075 0.09548591 120.4948325 800.3838487 47.78390353 0.33243535 -0.0075 -0.07153298 0.11421129 0.22928652 0.76666181 0 5.33977004 0
+1.8583 6.60902762 34.67249119 -0.1886164 0.79691324 -0.0075 0.09546292 121.7692946 798.2580782 47.291967 0.33067248 -0.0075 -0.07145499 0.12230979 0.30474389 0.86095796 0 5.40040868 0
+1.86 7.96489097 39.7399251 0.1178999 0.79758619 -0.0075 0.09544087 123.0613275 795.9272581 46.77835852 0.32892301 -0.0075 -0.07137177 0.13363168 0.38871003 0.95410997 0 5.44890983 0
+1.8617 9.32050497 45.26370367 0.53760186 0.79823138 -0.0075 0.09541978 124.3627007 793.3899444 46.24473118 0.32719215 -0.0075 -0.07128542 0.14736937 0.47915767 1.04328026 0 5.4844721 0
+1.8633 10.63592196 51.23225871 1.08135261 0.79884863 -0.0075 0.09539963 125.6634233 790.6443981 45.6929155 0.32548506 -0.0075 -0.07119805 0.16259424 0.57358078 1.12567992 0 5.50666613 0
+1.865 11.8683934 57.6259057 1.75770916 0.79943773 -0.0075 0.09538045 126.9520308 787.6882564 45.12485166 0.32380646 -0.0075 -0.07111173 0.17829955 0.66906875 1.19862155 0 5.51540257 0
+1.8667 12.97371978 64.41711208 2.57236107 0.79999848 -0.0075 0.09536222 128.2160161 784.518461 44.54259055 0.32216043 -0.0075 -0.0710283 0.19344898 0.76235623 1.25964142 0 5.51094577 0
+1.8683 13.90790981 71.57098496 3.52761332 0.80053068 -0.0075 0.09534496 129.4422478 781.1309803 43.94796522 0.32055011 -0.0075 -0.07094938 0.20702659 0.85004749 1.30664382 0 5.49398906 0
+1.87 14.62853988 79.04608709 4.62199259 0.80103412 -0.0075 0.09532866 130.617468 777.5207836 43.3426819 0.31897746 -0.0075 -0.07087618 0.21809498 0.9287048 1.33793831 0 5.46547178 0
+1.8717 15.09654822 86.79550699 5.84993472 0.80150861 -0.0075 0.09531332 131.7288762 773.6817119 42.72808578 0.31744317 -0.0075 -0.07080949 0.22587354 0.99508777 1.35232579 0 5.42661233 0
+1.8733 15.27762338 94.76812384 7.20178319 0.80195394 -0.0075 0.09529896 132.7645236 769.6066427 42.10516841 0.31594649 -0.0075 -0.07074961 0.22973803 1.04626213 1.34911317 0 5.37873799 0
+1.875 15.14381613 102.9100993 8.66382631 0.80236992 -0.0075 0.09528556 133.7138011 765.2874582 41.47443717 0.31448531 -0.0075 -0.07069636 0.2292717 1.07983063 1.32817269 0 5.32326845 0
+1.8767 14.67458213 111.1663911 10.21862248 0.80275634 -0.0075 0.09527315 134.5678881 760.7152612 40.835962 0.31305619 -0.0075 -0.07064901 0.22427556 1.09400368 1.28983208 0 5.26152913 0
+1.8783 13.8578932 119.4823737 11.84545678 0.803113 -0.0075 0.09526171 135.3200095 755.8806136 40.1892879 0.31165459 -0.0075 -0.07060635 0.21478503 1.08775916 1.23492473 0 5.1947076 0
+1.88 12.6908086 127.805354 13.52099506 0.80343971 -0.0075 0.09525125 135.9657024 750.7737814 39.5334859 0.31027508 -0.0075 -0.07056677 0.20108015 1.06091143 1.16466336 0 5.1237379 0
+1.8817 11.17971295 136.086065 15.22005651 0.80373625 -0.0075 0.09524177 136.5030165 745.3851044 38.86724773 0.30891168 -0.0075 -0.07052822 0.1836619 1.01407988 1.08055804 0 5.04919458 0
+1.8833 9.34035537 144.2799467 16.91654886 0.80400243 -0.0075 0.09523328 136.93246 739.705221 38.18877338 0.3075582 -0.0075 -0.07048842 0.16322055 0.94878303 0.98437932 0 4.97129486 0
+1.885 7.19723157 152.3482796 18.58438657 0.80423805 -0.0075 0.09522578 137.2568944 733.7254762 37.4959809 0.30620853 -0.0075 -0.07044487 0.14060067 0.86727571 0.87802148 0 4.88979475 0
+1.8867 4.78288853 160.2590723 20.19838043 0.80444291 -0.0075 0.09521927 137.4814053 727.4380674 36.78650063 0.30485702 -0.0075 -0.07039492 0.11674921 0.77250537 0.76342859 0 4.80406554 0
+1.8883 2.13655097 167.9876245 21.73523906 0.8046168 -0.0075 0.09521376 137.6128722 720.8364247 36.05778219 0.30349876 -0.0075 -0.07033589 0.09265395 0.66792667 0.64248762 0 4.71307651 0
+1.89 -0.69710405 175.5168438 23.17426608 0.80475953 -0.0075 0.09520924 137.6596253 713.9152639 35.30710761 0.30212985 -0.0075 -0.07026517 0.06929391 0.5574048 0.51703221 0 4.61552827 0
+1.8917 -3.66986738 182.8372507 24.49801978 0.80487088 -0.0075 0.09520572 137.6309429 706.670767 34.53175267 0.30074753 -0.0075 -0.07018019 0.04760515 0.44491452 0.38869854 0 4.50991759 0
+1.8933 -6.73174031 189.9467665 25.69277492 0.80495068 -0.0075 0.0952032 137.5364626 699.1006684 33.72895338 0.2993503 -0.0075 -0.07007858 0.02841097 0.33440581 0.25895494 0 4.39471602 0
+1.895 -9.83282011 196.8501997 26.74873015 0.8049987 -0.0075 0.09520169 137.3856542 691.2042011 32.89597231 0.29793794 -0.0075 -0.06995814 0.01238364 0.22963181 0.1290548 0 4.26847172 0
+1.8967 -12.92529183 203.5586379 27.66004286 0.80501475 -0.0075 0.09520118 137.1871261 682.9821697 32.03025752 0.29651143 -0.0075 -0.06981691 0 0.13388029 0 0 4.12996708 0
+1.8983 -15.96498084 210.088595 28.42458401 0.80439223 -0.0075 0.09524205 136.9481068 674.4367618 31.1293746 0.29507276 -0.0075 -0.06965313 0 0.03332622 0 0 3.9784046 0
+1.9 -18.91313421 216.461051 29.04357984 0.80378336 -0.0075 0.09526342 136.6738686 665.5716128 30.19119502 0.29362482 -0.0075 -0.06946529 0 -0.05294163 0 0 3.81346593 0
+1.9017 -21.73752905 222.7004961 29.5210229 0.80318478 -0.0075 0.09526798 136.3673333 656.3916174 29.21385639 0.29217112 -0.0075 -0.06925212 0 -0.12350964 0 0 3.6354923 0
+1.9033 -24.41357655 228.8338444 29.86303061 0.80259306 -0.0075 0.0952591 136.0286902 646.9029979 28.19592149 0.29071556 -0.0075 -0.06901258 0 -0.17781402 0 0 3.44548551 0
+1.905 -26.92478793 234.8895092 30.07709583 0.80200498 -0.0075 0.09524057 135.6552154 637.1131821 27.13640395 0.28926222 -0.0075 -0.06874588 0 -0.21605146 0 0 3.24518511 0
+1.9067 -29.26303489 240.8964508 30.1713467 0.80141732 -0.0075 0.0952165 135.2412402 627.0308378 26.03487733 0.28781515 -0.0075 -0.06845148 0 -0.23916941 0 0 3.03699429 0
+1.9083 -31.42831503 246.8834051 30.15389501 0.80082709 -0.0075 0.09519125 134.7782022 616.6659683 24.89158611 0.28637818 -0.0075 -0.06812909 0 -0.24878504 0 0 2.8239099 0
+1.91 -33.42811165 252.8781975 30.03219908 0.80023138 -0.0075 0.0951692 134.2549821 606.0298461 23.70747906 0.28495482 -0.0075 -0.06777869 0 -0.24702348 0 0 2.60943521 0
+1.9117 -35.27661891 258.9071927 29.81265513 0.79962737 -0.0075 0.09515468 133.6582918 595.1352538 22.48436864 0.28354816 -0.0075 -0.06740058 0 -0.23645136 0 0 2.39738875 0
+1.9133 -36.99332247 264.9948862 29.50028856 0.79901249 -0.0075 0.09515175 132.9733333 583.9964302 21.2248902 0.28216095 -0.0075 -0.06699541 0 -0.21984608 0 0 2.19176328 0
+1.915 -38.60184369 271.1636385 29.09869303 0.79838424 -0.0075 0.09516419 132.1844115 572.6292427 19.93264444 0.28079552 -0.0075 -0.06656417 0 -0.20013641 0 0 1.99649918 0
+1.9167 -40.12821328 277.4335282 28.61004986 0.79774034 -0.0075 0.09519534 131.2758447 561.0511526 18.61211106 0.27945401 -0.0075 -0.06610827 0 -0.18017331 0 0 1.81531785 0
+1.9183 -41.59944183 283.8223178 28.03543371 0.79707863 -0.0075 0.09524811 130.2327133 549.2812456 17.2687242 0.27813833 -0.0075 -0.06562952 0 -0.16263264 0 0 1.65144703 0
+1.92 -43.04188795 290.3455447 27.37515424 0.7963973 -0.0075 0.09532499 129.0417149 537.3401778 15.90874323 0.27685029 -0.0075 -0.06513016 0 -0.14985781 0 0 1.50752085 0
+1.9217 -44.47990425 297.016635 26.62920108 0.79569482 -0.0075 0.09542798 127.6919961 525.2500109 14.53912393 0.27559174 -0.0075 -0.06461292 0 -0.14377719 0 0 1.38544923 0
+1.9233 -45.93472362 303.847126 25.7977461 0.79496995 -0.0075 0.09555865 126.1758147 513.0340203 13.16748643 0.27436453 -0.0075 -0.06408093 0 -0.14585304 0 0 1.2862658 0
+1.925 -47.42339501 310.8468333 24.88161999 0.79422188 -0.0075 0.09571812 124.4891504 500.716391 11.80184099 0.27317056 -0.0075 -0.06353771 0 -0.15699391 0 0 1.2101631 0
+1.9267 -48.95831614 318.0240809 23.88279873 0.79345017 -0.0075 0.09590716 122.6320446 488.3219769 10.45046691 0.27201179 -0.0075 -0.06298717 0 -0.17762635 0 0 1.15646949 0
+1.9283 -50.54673782 325.3859067 22.80464865 0.79265488 -0.0075 0.09612608 120.6088616 475.8757647 9.12168202 0.27089008 -0.0075 -0.06243345 0 -0.20765788 0 0 1.1237154 0
+1.93 -52.19098013 332.9382451 21.65225094 0.79183647 -0.0075 0.09637492 118.4282001 463.4025864 7.82365926 0.26980707 -0.0075 -0.06188096 0 -0.24656839 0 0 1.109719 0
+1.9317 -53.88853423 340.6861361 20.43236988 0.79099594 -0.0075 0.09665341 116.1027096 450.92666 6.56415384 0.26876408 -0.0075 -0.06133424 0 -0.29343395 0 0 1.11178129 0
+1.9333 -55.63284958 348.6338316 19.15334774 0.79013461 -0.0075 0.09696096 113.6485779 438.4711504 5.35047353 0.26776184 -0.0075 -0.06079782 0 -0.34707244 0 0 1.12678193 0
+1.935 -57.41401819 356.7849221 17.82487445 0.78925423 -0.0075 0.09729673 111.0849637 426.0578678 4.18926202 0.26680033 -0.0075 -0.06027614 0 -0.40610374 0 0 1.15140564 0
+1.9367 -59.21977389 365.1423132 16.45758908 0.78835686 -0.0075 0.09765956 108.4332007 413.7069533 3.08633708 0.26587875 -0.0075 -0.05977357 0 -0.4690463 0 0 1.18235978 0
+1.9383 -61.03664746 373.7083254 15.06261288 0.78744475 -0.0075 0.09804808 105.7159189 401.4366611 2.04678561 0.26499544 -0.0075 -0.05929415 0 -0.53448552 0 0 1.21646437 0
+1.94 -62.85085301 382.4846075 13.65093691 0.78652037 -0.0075 0.09846063 102.9561417 389.2632119 1.07480928 0.26414784 -0.0075 -0.05884168 0 -0.60107085 0 0 1.25085922 0
+1.9417 -64.64950474 391.4721393 12.23293196 0.78558626 -0.0075 0.09889539 100.1762707 377.2008203 0.17383623 0.26333268 -0.0075 -0.0584196 0 -0.66764023 0 0 1.28303072 0
+1.9433 -66.42128849 400.6712149 10.81767736 0.78464503 -0.0075 0.0993503 97.3973297 365.2616024 -0.65346725 0.26254616 -0.0075 -0.05803098 0 -0.73322149 0 0 1.31092547 0
+1.945 -68.15744006 410.0812897 9.41256356 0.78369917 -0.0075 0.09982321 94.63809804 353.4558086 -1.40506409 0.26178423 -0.0075 -0.05767843 0 -0.79712331 0 0 1.33294205 0
+1.9467 -69.8520574 419.7009427 8.02287317 0.78275117 -0.0075 0.10031188 91.91457154 341.7919245 -2.07956939 0.261043 -0.0075 -0.05736425 0 -0.85886952 0 0 1.34797666 0
+1.9483 -71.50253919 429.5276691 6.65155225 0.78180332 -0.0075 0.10081402 89.23949495 330.276918 -2.67606304 0.26031912 -0.0075 -0.0570903 0 -0.91825452 0 0 1.35532785 0
+1.95 -73.1095562 439.5577653 5.29910155 0.78085782 -0.0075 0.10132732 86.62213051 318.9164848 -3.19404022 0.2596102 -0.0075 -0.05685806 0 -0.9753171 0 0 1.35465293 0
+1.9517 -74.67679603 449.7861381 3.96363478 0.77991676 -0.0075 0.1018495 84.06822641 307.7152177 -3.6334686 0.2589152 -0.0075 -0.0566687 0 -1.0302323 0 0 1.34589993 0
+1.9533 -76.21073899 460.2061345 2.64107127 0.77898204 -0.0075 0.10237835 81.58015816 296.6769144 -3.99458284 0.25823467 -0.0075 -0.05652288 0 -1.0833389 0 0 1.32912002 0
+1.955 -77.71983684 470.8093428 1.32548147 0.77805543 -0.0075 0.10291171 79.15731252 285.8046326 -4.27808623 0.25757086 -0.0075 -0.05642088 0 -1.13500282 0 0 1.30452458 0
+1.9567 -79.21402287 481.5854058 0.00957988 0.77713855 -0.0075 0.10344759 76.79644981 275.1009425 -4.4851182 0.25692763 -0.0075 -0.05636248 0 -1.18562708 0 0 1.27236905 0
+1.9583 -80.70374307 492.5218251 -1.3148295 0.77623289 -0.0075 0.10398403 74.49240503 264.5678433 -4.61735632 0.25631016 -0.0075 -0.05634679 0 -1.23554801 0 0 1.23294847 0
+1.96 -82.19933713 503.6037547 -2.65620041 0.77533966 -0.0075 0.1045192 72.23866767 254.206944 -4.67708199 0.25572447 -0.0075 -0.05637216 0 -1.28502155 0 0 1.18655924 0
+1.9617 -83.71012895 514.8138403 -4.02270685 0.77446 -0.0075 0.10505129 70.02799619 244.0194572 -4.66735405 0.2551767 -0.0075 -0.05643612 0 -1.33417537 0 0 1.13359437 0
+1.9633 -85.24379382 526.1320901 -5.42167722 0.77359473 -0.0075 0.10557849 67.85310356 234.0061134 -4.59200609 0.25467217 -0.0075 -0.05653511 0 -1.38297174 0 0 1.07446123 0
+1.965 -86.80583143 537.5358299 -6.85908824 0.77274446 -0.0075 0.10609899 65.70709653 224.1672318 -4.45576402 0.25421424 -0.0075 -0.05666429 0 -1.4312179 0 0 1.00969881 0
+1.9667 -88.3990308 548.9997107 -8.33914117 0.77190954 -0.0075 0.10661095 63.58395508 214.5026217 -4.26433201 0.25380318 -0.0075 -0.05681756 0 -1.47850493 0 0 0.94004995 0
+1.9683 -90.02342147 560.495811 -9.8639841 0.77108992 -0.0075 0.10711246 61.47878013 205.0117169 -4.0241985 0.25343495 -0.0075 -0.05698717 0 -1.52431254 0 0 0.86640922 0
+1.97 -91.67605515 571.9938027 -11.43347662 0.77028522 -0.0075 0.10760152 59.38799523 195.6935405 -3.7427255 0.2534503 -0.0075 -0.05698685 0 -1.5679399 0 0.0346472 0.77813105 -0.06852323
+1.9717 -93.35128237 583.4612118 -13.04503635 0.76949466 -0.0075 0.10807608 57.30934904 186.54695 -3.42788862 0.25349624 -0.0075 -0.05698588 0 -1.60862945 0 0.065473 0.68950083 -0.13302675
+1.9733 -95.04086217 594.8637915 -14.69375161 0.76871708 -0.0075 0.10853398 55.2418325 177.5707171 -3.08812891 0.25357256 -0.0075 -0.05698426 0 -1.64554692 0 0.09043986 0.60272436 -0.19732371
+1.975 -96.73455852 606.1659967 -16.37238148 0.76795084 -0.0075 0.108973 53.18543261 168.763858 -2.7320523 0.25367909 -0.0075 -0.05698201 0 -1.67790002 0 0.10770132 0.52006945 -0.26567104
+1.9767 -98.42048222 617.3315534 -18.07159517 0.76719397 -0.0075 0.10939099 51.14085851 160.1258853 -2.3682056 0.25381564 -0.0075 -0.05697912 0 -1.70492 0 0.11568611 0.44380222 -0.34248664
+1.9783 -100.0857032 628.3240602 -19.78024096 0.7664441 -0.0075 0.10978579 49.10920539 151.6570733 -2.00467118 0.25398201 -0.0075 -0.05697559 0 -1.72593442 0 0.11314361 0.37601327 -0.4320321
+1.98 -101.7169091 639.1076773 -21.48562734 0.76569848 -0.0075 0.11015542 47.09155783 143.3588221 -1.64877067 0.25417801 -0.0075 -0.05697144 0 -1.74045359 0 0.09920654 0.31852095 -0.5380912
+1.9817 -103.3008074 649.6477359 -23.17388381 0.76495414 -0.0075 0.11049804 45.08880333 135.2338647 -1.30686519 0.25440346 -0.0075 -0.05696665 0 -1.74813445 0 0.07346564 0.27274571 -0.6635935
+1.9833 -104.8248804 659.9114296 -24.83031499 0.76420783 -0.0075 0.11081209 43.10124749 127.2865995 -0.98395493 0.25465817 -0.0075 -0.05696124 0 -1.74890061 0 0.03597303 0.23953583 -0.81033435
+1.985 -106.2775715 669.8684046 -26.43978936 0.76345616 -0.0075 0.11109627 41.12853428 119.5231308 -0.68366827 0.25494194 -0.0075 -0.05695521 0 -1.74289458 0 -0.01272932 0.21914486 -0.97875314
+1.9867 -107.6488137 679.4913074 -27.98710504 0.76269564 -0.0075 0.11134968 39.16949157 111.9514528 -0.40800795 0.25525459 -0.0075 -0.05694855 0 -1.73053774 0 -0.0716243 0.21107716 -1.16776456
+1.9883 -108.9301165 688.75628 -29.45740416 0.76192282 -0.0075 0.11157177 37.22218535 104.581262 -0.15745337 0.25559593 -0.0075 -0.05694128 0 -1.71244669 0 -0.1392617 0.21415568 -1.374742
+1.99 -110.1147948 697.6432814 -30.83649395 0.76113422 -0.0075 0.11176246 35.28406794 97.4238929 0.06900214 0.25596577 -0.0075 -0.05693339 0 -1.68948441 0 -0.21378795 0.22652399 -1.59554708
+1.9917 -111.1979485 706.1363517 -32.1112239 0.76032654 -0.0075 0.11192211 33.35214054 90.49198759 0.27369823 0.25636392 -0.0075 -0.05692489 0 -1.66270696 0 -0.29304572 0.24576243 -1.82469574
+1.9933 -112.1763397 714.2236551 -33.26983459 0.75949666 -0.0075 0.11205146 31.42338516 83.79905536 0.45999528 0.25679019 -0.0075 -0.05691578 0 -1.63327125 0 -0.37464923 0.26901391 -2.05561548
+1.995 -113.0484 721.897465 -34.30220766 0.75864166 -0.0075 0.11215172 29.4950257 77.35909496 0.63202787 0.25724438 -0.0075 -0.05690607 0 -1.60246602 0 -0.45607953 0.29315391 -2.28095954
+1.9967 -113.8137979 729.1540043 -35.20017729 0.75775898 -0.0075 0.11222442 27.56502775 71.18592361 0.79422865 0.25772632 -0.0075 -0.05689575 0 -1.57158553 0 -0.53478503 0.31502705 -2.49298787
+1.9983 -114.4734342 735.9931928 -35.95774935 0.75684634 -0.0075 0.11227142 25.63235323 65.29269003 0.9510616 0.25823582 -0.0075 -0.05688483 0 -1.54192414 0 -0.608304 0.33158919 -2.68402432
+2 -115.0289517 742.4183438 -36.57134492 0.75590188 -0.0075 0.11229483 23.69745837 59.69119052 1.10653957 0.25877267 -0.0075 -0.05687331 0 -1.51465199 0 -0.67433042 0.34017516 -2.84685758
+2.0017 -115.4826826 748.4357712 -37.03986784 0.75492415 -0.0075 0.11229703 21.76249902 54.39143382 1.26396991 0.2593367 -0.0075 -0.0568612 0 -1.49082348 0 -0.73081262 0.33865162 -2.97514499
+2.0033 -115.8372966 754.0543793 -37.36487953 0.75391217 -0.0075 0.11228048 19.83158029 49.4010449 1.42556402 0.25992771 -0.0075 -0.0568485 0 -1.47126845 0 -0.77601686 0.32562642 -3.06376722
+2.005 -116.0957022 759.285206 -37.55057891 0.75286539 -0.0075 0.11224776 17.9109252 44.72492141 1.5923065 0.26054552 -0.0075 -0.05683521 0 -1.45659321 0 -0.80857838 0.30049676 -3.10907449
+2.0067 -116.260936 764.1410109 -37.60372388 0.75178376 -0.0075 0.11220149 16.00880504 40.36500195 1.76380224 0.26118993 -0.0075 -0.05682133 0 -1.44715826 0 -0.8275403 0.26353123 -3.10908155
+2.0083 -116.3359088 768.6358538 -37.53351739 0.75066777 -0.0075 0.11214426 14.13550035 36.32007051 1.93821132 0.26186076 -0.0075 -0.05680686 0 -1.44301913 0 -0.8323419 0.21584494 -3.06350862
+2.01 -116.3235679 772.7847524 -37.35136068 0.74951836 -0.0075 0.11207863 12.30294683 32.5858087 2.11241838 0.26255781 -0.0075 -0.05679182 0 -1.44400951 0 -0.82284729 0.15928971 -2.97382083
+2.0117 -116.2266483 776.6033863 -37.07060021 0.74833705 -0.0075 0.11200708 10.52451528 29.15486762 2.28208418 0.2632809 -0.0075 -0.0567762 0 -1.44965805 0 -0.79927527 0.09638467 -2.84303629
+2.0133 -116.0479672 780.1078119 -36.70610442 0.74712583 -0.0075 0.11193202 8.81444725 26.01721475 2.4420208 0.26402984 -0.0075 -0.05676 0 -1.4592845 0 -0.76221529 0.03008777 -2.67557017
+2.015 -115.7902294 783.3142508 -36.27394717 0.74588717 -0.0075 0.11185574 7.18741658 23.16039108 2.58642694 0.26480444 -0.0075 -0.05674323 0 -1.47199856 0 -0.71255679 -0.0363348 -2.47696525
+2.0167 -115.4562991 786.2388525 -35.79081482 0.74462397 -0.0075 0.11178048 5.65796915 20.57005886 2.70931774 0.2656045 -0.0075 -0.05672589 0 -1.48680167 0 -0.65143943 -0.09958735 -2.25351934
+2.0183 -115.0491731 788.8975028 -35.27356532 0.74333951 -0.0075 0.11170832 4.23991835 18.23042117 2.8048241 0.26642985 -0.0075 -0.05670799 0 -1.50261816 0 -0.58019982 -0.15650813 -2.01197915
+2.02 -114.5720407 791.3056179 -34.73874243 0.7420374 -0.0075 0.11164125 2.94578865 16.12477258 2.86764043 0.26728028 -0.0075 -0.05668952 0 -1.51836558 0 -0.5003087 -0.20432846 -1.7591706
+2.0217 -114.0284282 793.4780205 -34.20205823 0.74072144 -0.0075 0.11158118 1.78620728 14.23599252 2.8933887 0.26815562 -0.0075 -0.05667049 0 -1.53305834 0 -0.413353 -0.24085014 -1.5017238
+2.0233 -113.4220462 795.4287175 -33.67801986 0.73939561 -0.0075 0.11152985 0.76952114 12.54695816 2.87881786 0.26905567 -0.0075 -0.0566509 0 -1.54576874 0 -0.32095699 -0.26454562 -1.2457516
+2.025 -112.7570902 797.1707245 -33.17951801 0.73806385 -0.0075 0.11148888 -0.09870479 11.04101187 2.82216005 0.26998024 -0.0075 -0.05663075 0 -1.5557944 0 -0.22477599 -0.27466334 -0.99667677
+2.0267 -112.0379701 798.7158769 -32.71756091 0.73673004 -0.0075 0.11145975 -0.81584381 9.70219568 2.72315432 0.27092915 -0.0075 -0.05661006 0 -1.56263398 0 -0.12643169 -0.27120285 -0.75902049
+2.0283 -111.2695532 800.0745272 -32.30103554 0.7353978 -0.0075 0.11144374 -1.38252269 8.51559018 2.58320413 0.27190219 -0.0075 -0.05658881 0 -1.56607146 0 -0.0275112 -0.25493955 -0.53636745
+2.03 -110.4569246 801.2553824 -31.93666273 0.73407046 -0.0075 0.1114419 -1.80255261 7.46738366 2.40527007 0.2728992 -0.0075 -0.05656702 0 -1.56615768 0 0.07049286 -0.22729351 -0.3312902
+2.0317 -109.6054369 802.2652917 -31.62894494 0.73275087 -0.0075 0.11145504 -2.08287262 6.545001 2.19382547 0.27391996 -0.0075 -0.05654468 0 -1.56325312 0 0.16617001 -0.19029104 -0.14539053
+2.0333 -108.7206055 803.1091012 -31.38029102 0.73144146 -0.0075 0.11148367 -2.23346213 5.73702103 1.95459945 0.2749643 -0.0075 -0.0565218 0 -1.55798506 0 0.25821824 -0.1463536 0.02057277
+2.035 -107.8079561 803.7895537 -31.19119714 0.73014408 -0.0075 0.11152801 -2.2668479 5.03313119 1.69431918 0.27603203 -0.0075 -0.05649839 0 -1.55117301 0 0.34548912 -0.0981508 0.16662408
+2.0367 -106.8731602 804.3072843 -31.06052664 0.72885996 -0.0075 0.11158798 -2.19782282 4.4240074 1.42049825 0.27712296 -0.0075 -0.05647443 0 -1.54387466 0 0.42693516 -0.04841926 0.29336347
+2.0383 -105.9216406 804.6608246 -30.98577797 0.72758982 -0.0075 0.11166316 -2.04284893 3.90110956 1.14091143 0.27823689 -0.0075 -0.05644995 0 -1.53720857 0 0.50171919 0.00028291 0.40185821
+2.04 -104.9587803 804.846731 -30.96345769 0.72633378 -0.0075 0.11175287 -1.81957582 3.45662095 0.86342747 0.27937364 -0.0075 -0.05642493 0 -1.53238528 0 0.56914572 0.04565298 0.4934581
+2.0417 -103.9896188 804.859797 -30.98943773 0.72509149 -0.0075 0.11185611 0 0 0 0.28053302 -0.0075 -0.05639939 0 -1.53057076 0 0 0 0
+2.0433 -103.0188495 804.6932863 -31.05917763 0.72386219 -0.0075 0.11197168 0 0 0 0.28171484 -0.0075 -0.05637333 0 -1.53283183 0 0 0 0
+2.045 -102.0506481 804.3393256 -31.16817893 0.72264487 -0.0075 0.11209817 0 0 0 0.2829189 -0.0075 -0.05634674 0 -1.54006272 0 0 0 0
+2.0467 -101.0886317 803.7893391 -31.31216396 0.72143825 -0.0075 0.11223404 0 0 0 0.28414503 -0.0075 -0.05631963 0 -1.55288548 0 0 0 0
+2.0483 -100.135856 803.0344561 -31.48725099 0.72024101 -0.0075 0.11237772 0 0 0 0.28539303 -0.0075 -0.05629201 0 -1.57164408 0 0 0 0
+2.05 -99.19454473 802.0659727 -31.69013939 0.71905184 -0.0075 0.11252762 0 0 0 0.28666271 -0.0075 -0.05626388 0 -1.59631662 0 0 0 0
+2.0517 -98.26634068 800.8757603 -31.91812463 0.71786944 -0.0075 0.11268222 0 0 0 0.28795389 -0.0075 -0.05623523 0 -1.62658329 0 0 0 0
+2.0533 -97.35193906 799.4566351 -32.1690774 0.71669274 -0.0075 0.11284012 0 0 0 0.28926637 -0.0075 -0.05620608 0 -1.6617237 0 0 0 0
+2.055 -96.45131311 797.8027053 -32.44141399 0.71552082 -0.0075 0.11300004 0 0 0 0.29059996 -0.0075 -0.05617642 0 -1.70073451 0 0 0 0
+2.0567 -95.5635825 795.9096784 -32.73400315 0.71435301 -0.0075 0.11316093 0 0 0 0.29195447 -0.0075 -0.05614627 0 -1.74229197 0 0 0 0
+2.0583 -94.68710869 793.7750443 -33.04595454 0.7131888 -0.0075 0.11332192 0 0 0 0.29332972 -0.0075 -0.05611561 0 -1.78484433 0 0 0 0
+2.06 -93.81955887 791.3981923 -33.37656034 0.71202791 -0.0075 0.11348236 0 0 0 0.29472552 -0.0075 -0.05608446 0 -1.82664186 0 0 0 0
+2.0617 -92.95798491 788.7804482 -33.72510132 0.71087017 -0.0075 0.1136418 0 0 0 0.29614167 -0.0075 -0.05605281 0 -1.86582171 0 0 0 0
+2.0633 -92.09904979 785.9250396 -34.09067576 0.70971551 -0.0075 0.11379998 0 0 0 0.29757799 -0.0075 -0.05602067 0 -1.90051825 0 0 0 0
+2.065 -91.23899667 782.8369856 -34.47211669 0.70856392 -0.0075 0.11395678 0 0 0 0.29903429 -0.0075 -0.05598805 0 -1.92887152 0 0 0 0
+2.0667 -90.37404706 779.5230208 -34.86789325 0.70741535 -0.0075 0.11411223 0 0 0 0.30051037 -0.0075 -0.05595494 0 -1.94918384 0 0 0 0
+2.0683 -89.50031201 775.99144 -35.27606818 0.70626978 -0.0075 0.11426647 0 0 0 0.30200606 -0.0075 -0.05592135 0 -1.95990479 0 0 0 0
+2.07 -88.61422492 772.2519729 -35.69430422 0.70512708 -0.0075 0.11441972 0 0 0 0.30352115 -0.0075 -0.05588728 0 -1.95973286 0 0 0 0
+2.0717 -87.7125963 768.315637 -36.11988265 0.70398706 -0.0075 0.11457227 0 0 0 0.30505546 -0.0075 -0.05585274 0 -1.94763271 0 0 0 0
+2.0733 -86.79282972 764.1945799 -36.54970653 0.70284945 -0.0075 0.11472449 0 0 0 0.30660881 -0.0075 -0.05581772 0 -1.9229281 0 0 0 0
+2.075 -85.85306378 759.9019502 -36.98044087 0.70171393 -0.0075 0.11487679 0 0 0 0.308181 -0.0075 -0.05578223 0 -1.88526555 0 0 0 0
+2.0767 -84.89223162 755.451787 -37.40852511 0.70058016 -0.0075 0.11502964 0 0 0 0.30977183 -0.0075 -0.05574628 0 -1.8346324 0 0 0 0
+2.0783 -83.91023665 750.8589676 -37.83027276 0.6994478 -0.0075 0.11518355 0 0 0 0.31138113 -0.0075 -0.05570985 0 -1.77142353 0 0 0 0
+2.08 -82.90773784 746.139104 -38.24196949 0.69831656 -0.0075 0.11533912 0 0 0 0.31300871 -0.0075 -0.05567297 0 -1.6963293 0 0 0 0
+2.0817 -81.88639561 741.3084954 -38.63990982 0.69718622 -0.0075 0.11549702 0 0 0 0.31465437 -0.0075 -0.05563563 0 -1.61038744 0 0 0 0
+2.0833 -80.8485782 736.3840327 -39.02046589 0.69605662 -0.0075 0.11565801 0 0 0 0.31631792 -0.0075 -0.05559783 0 -1.51491807 0 0 0 0
+2.085 -79.79740759 731.3830336 -39.3800771 0.69492767 -0.0075 0.11582295 0 0 0 0.31799918 -0.0075 -0.05555958 0 -1.41151552 0 0 0 0
+2.0867 -78.73649033 726.3231233 -39.71533359 0.69379931 -0.0075 0.11599274 0 0 0 0.31969795 -0.0075 -0.05552087 0 -1.30198291 0 0 0 0
+2.0883 -77.66976792 721.2220354 -40.02291721 0.69267146 -0.0075 0.11616832 0 0 0 0.32141405 -0.0075 -0.05548172 0 -1.18832054 0 0 0 0
+2.09 -76.60130235 716.0974182 -40.29963499 0.69154401 -0.0075 0.11635065 0 0 0 0.32314729 -0.0075 -0.05544213 0 -1.07264285 0 0 0 0
+2.0917 -75.53496895 710.9666139 -40.54245733 0.69041676 -0.0075 0.11654063 0 0 0 0.32489747 -0.0075 -0.05540209 0 -0.95710648 0 0 0 0
+2.0933 -74.47447573 705.8464186 -40.74851727 0.68928927 -0.0075 0.11673912 0 0 0 0.32666442 -0.0075 -0.05536161 0 -0.8438948 0 0 0 0
+2.095 -73.42293519 700.7528204 -40.9151789 0.68816093 -0.0075 0.11694682 0 0 0 0.32844793 -0.0075 -0.0553207 0 -0.73504681 0 0 0 0
+2.0967 -72.38296191 695.7007591 -41.04008033 0.68703079 -0.0075 0.11716423 0 0 0 0.33024782 -0.0075 -0.05527935 0 -0.6325209 0 0 0 0
+2.0983 -71.35632072 690.7039086 -41.12125088 0.68589766 -0.0075 0.11739162 0 0 0 0.33206391 -0.0075 -0.05523757 0 -0.53801795 0 0 0 0
+2.1 -70.34406648 685.7744774 -41.15714 0.68476005 -0.0075 0.11762897 0 0 0 0.33389599 -0.0075 -0.05519537 0 -0.45295783 0 0 0 0
+2.1017 -69.34639443 680.9231358 -41.14685605 0.68361624 -0.0075 0.11787594 0 0 0 0.33574389 -0.0075 -0.05515273 0 -0.37839841 0 0 0 0
+2.1033 -68.36266812 676.1589598 -41.09020979 0.68246439 -0.0075 0.11813189 0 0 0 0.3376074 -0.0075 -0.05510968 0 -0.31496311 0 0 0 0
+2.105 -67.39163335 671.4894628 -40.98786474 0.68130261 -0.0075 0.11839591 0 0 0 0.33948635 -0.0075 -0.05506621 0 -0.26281493 0 0 0 0
+2.1067 -66.43136601 666.9206589 -40.8414647 0.68012912 -0.0075 0.11866679 0 0 0 0.34138055 -0.0075 -0.05502232 0 -0.22160197 0 0 0 0
+2.1083 -65.4796677 662.4571945 -40.65365276 0.67894236 -0.0075 0.11894316 0 0 0 0.3432898 -0.0075 -0.05497801 0 -0.1905355 0 0 0 0
+2.11 -64.53393104 658.1025268 -40.42812016 0.67774124 -0.0075 0.1192235 0 0 0 0.34521391 -0.0075 -0.0549333 0 -0.16829367 0 0 0 0
+2.1117 -63.59159528 653.8590984 -40.16956365 0.67652518 -0.0075 0.11950621 0 0 0 0.3471527 -0.0075 -0.05488817 0 -0.15316072 0 0 0 0
+2.1133 -62.65010797 649.7286614 -39.88360551 0.67529433 -0.0075 0.11978975 0 0 0 0.34910598 -0.0075 -0.05484264 0 -0.14303291 0 0 0 0
+2.115 -61.70719056 645.7124459 -39.57661356 0.67404957 -0.0075 0.12007271 0 0 0 0.35107355 -0.0075 -0.05479671 0 -0.13553729 0 0 0 0
+2.1167 -60.76099622 641.8113916 -39.25554563 0.6727926 -0.0075 0.12035385 0 0 0 0.35305523 -0.0075 -0.05475038 0 -0.12813166 0 0 0 0
+2.1183 -59.81018334 638.0263048 -38.92764639 0.67152586 -0.0075 0.12063224 0 0 0 0.35505082 -0.0075 -0.05470365 0 -0.11821418 0 0 0 0
+2.12 -58.85409324 634.3579458 -38.60020565 0.67025251 -0.0075 0.12090722 0 0 0 0.35706015 -0.0075 -0.05465653 0 -0.10331816 0 0 0 0
+2.1217 -57.89258646 630.8070733 -38.28021743 0.66897634 -0.0075 0.12117846 0 0 0 0.35908302 -0.0075 -0.05460902 0 -0.08117834 0 0 0 0
+2.1233 -56.926363 627.3744521 -37.97409934 0.66770144 -0.0075 0.12144593 0 0 0 0.36111923 -0.0075 -0.05456111 0 -0.04994 0 0 0 0
+2.125 -55.95657829 624.0607841 -37.68742714 0.66643223 -0.0075 0.12170989 0 0 0 0.36316861 -0.0075 -0.05451283 0 -0.00819157 0 0 0 0
+2.1267 -54.98506456 620.8665983 -37.4247055 0.66517307 -0.0075 0.12197085 0 0 0 0.36523095 -0.0075 -0.05446416 0 0.04488261 0 0 0 0
+2.1283 -54.01418768 617.7921773 -37.1893192 0.6639281 -0.0075 0.12222944 0 0 0 0.36730608 -0.0075 -0.05441511 0 0.10949243 0 0 0 0
+2.13 -53.04676092 614.8373149 -36.98334582 0.66270092 -0.0075 0.12248638 0 0 0 0.3693938 -0.0075 -0.05436568 0 0.1852014 0 0 0 0
+2.1317 -52.08599081 612.001202 -36.80761528 0.66149454 -0.0075 0.12274239 0 0 0 0.37149393 -0.0075 -0.05431588 0 0.27089866 0 0 0 0
+2.1333 -51.1352616 609.2822775 -36.66181654 0.6603111 -0.0075 0.12299804 0 0 0 0.37360627 -0.0075 -0.0542657 0 0.36491987 0 0 0 0
+2.135 -50.19823446 606.6781145 -36.54465703 0.65915187 -0.0075 0.12325373 0 0 0 0.37573063 -0.0075 -0.05421516 0 0.46509172 0 0 0 0
+2.1367 -49.27846907 604.1854235 -36.45414406 0.65801722 -0.0075 0.12350959 0 0 0 0.37786683 -0.0075 -0.05416425 0 0.56892492 0 0 0 0
+2.1383 -48.37968794 601.800054 -36.38782156 0.65690651 -0.0075 0.12376547 0 0 0 0.38001467 -0.0075 -0.05411298 0 0.67368518 0 0 0 0
+2.14 -47.50538591 599.5170713 -36.34310097 0.65581834 -0.0075 0.12402093 0 0 0 0.38217397 -0.0075 -0.05406135 0 0.77664601 0 0 0 0
+2.1417 -46.65896957 597.3308427 -36.31750926 0.65475055 -0.0075 0.1242752 0 0 0 0.38434454 -0.0075 -0.05400936 0 0.87518808 0 0 0 0
+2.1433 -45.84362547 595.2352724 -36.30898182 0.65370043 -0.0075 0.12452727 0 0 0 0.38652618 -0.0075 -0.05395702 0 0.96697557 0 0 0 0
+2.145 -45.06218311 593.2239541 -36.31602631 0.65266494 -0.0075 0.12477589 0 0 0 0.38871872 -0.0075 -0.05390433 0 1.05010431 0 0 0 0
+2.1467 -44.3171722 591.2904861 -36.33782521 0.65164083 -0.0075 0.1250197 0 0 0 0.39092195 -0.0075 -0.05385128 0 1.12317368 0 0 0 0
+2.1483 -43.61056049 589.4287141 -36.37429138 0.65062493 -0.0075 0.12525729 0 0 0 0.39313569 -0.0075 -0.05379789 0 1.18541575 0 0 0 0
+2.15 -42.94390153 587.6329897 -36.42598386 0.64961421 -0.0075 0.12548735 0 0 0 0.39535975 -0.0075 -0.05374416 0 1.23664924 0 0 0 0
+2.1517 -42.31806501 585.8984074 -36.49395494 0.64860602 -0.0075 0.12570868 0 0 0 0.39759394 -0.0075 -0.05369009 0 1.27733791 0 0 0 0
+2.1533 -41.73341904 584.2209565 -36.57948559 0.64759801 -0.0075 0.1259204 0 0 0 0.39983808 -0.0075 -0.05363568 0 1.30845677 0 0 0 0
+2.155 -41.18953143 582.5976727 -36.68382326 0.64658842 -0.0075 0.12612188 0 0 0 0.40209196 -0.0075 -0.05358093 0 1.33143464 0 0 0 0
+2.1567 -40.68526159 581.0267077 -36.80782748 0.64557588 -0.0075 0.12631294 0 0 0 0.40435541 -0.0075 -0.05352586 0 1.34801646 0 0 0 0
+2.1583 -40.21871742 579.5073774 -36.95167977 0.64455954 -0.0075 0.12649378 0 0 0 0.40662823 -0.0075 -0.05347045 0 1.36013995 0 0 0 0
+2.16 -39.78720315 578.0401129 -37.11458029 0.64353889 -0.0075 0.12666504 0 0 0 0.40891024 -0.0075 -0.05341472 0 1.36978574 0 0 0 0
+2.1617 -39.38738321 576.6264018 -37.29456053 0.64251374 -0.0075 0.12682779 0 0 0 0.41120124 -0.0075 -0.05335866 0 1.37879613 0 0 0 0
+2.1633 -39.01519267 575.2686191 -37.48832411 0.64148413 -0.0075 0.12698351 0 0 0 0.41350104 -0.0075 -0.05330229 0 1.38881941 0 0 0 0
+2.165 -38.66619072 573.9698348 -37.69123585 0.6404501 -0.0075 0.12713398 0 0 0 0.41580947 -0.0075 -0.05324559 0 1.40112573 0 0 0 0
+2.1667 -38.33544836 572.7336276 -37.8974399 0.63941178 -0.0075 0.12728119 0 0 0 0.41812631 -0.0075 -0.05318859 0 1.41659421 0 0 0 0
+2.1683 -38.01792442 571.5638504 -38.10003075 0.63836915 -0.0075 0.12742733 0 0 0 0.4204514 -0.0075 -0.05313127 0 1.43564388 0 0 0 0
+2.17 -37.70851622 570.4644486 -38.29143226 0.6373221 -0.0075 0.12757457 0 0 0 0.42278453 -0.0075 -0.05307364 0 1.45826824 0 0 0 0
+2.1717 -37.40235613 569.4392668 -38.46376792 0.63627033 -0.0075 0.12772504 0 0 0 0.42512553 -0.0075 -0.0530157 0 1.48405724 0 0 0 0
+2.1733 -37.0950496 568.4918696 -38.60934958 0.63521338 -0.0075 0.12788071 0 0 0 0.42747419 -0.0075 -0.05295746 0 1.51228212 0 0 0 0
+2.175 -36.78282941 567.6253648 -38.72118358 0.63415055 -0.0075 0.12804327 0 0 0 0.42983033 -0.0075 -0.05289892 0 1.54201432 0 0 0 0
+2.1767 -36.46288348 566.8422923 -38.79341778 0.63308097 -0.0075 0.12821405 0 0 0 0.43219376 -0.0075 -0.05284008 0 1.57217069 0 0 0 0
+2.1783 -36.13324666 566.1445119 -38.8217546 0.63200367 -0.0075 0.12839393 0 0 0 0.43456429 -0.0075 -0.05278095 0 1.60169434 0 0 0 0
+2.18 -35.79315148 565.5331501 -38.80377657 0.6309175 -0.0075 0.12858331 0 0 0 0.43694173 -0.0075 -0.05272152 0 1.62958764 0 0 0 0
+2.1817 -35.44283647 565.008588 -38.73920237 0.62982133 -0.0075 0.12878206 0 0 0 0.4393259 -0.0075 -0.05266181 0 1.65511097 0 0 0 0
+2.1833 -35.08370935 564.5704515 -38.62989369 0.62871389 -0.0075 0.1289895 0 0 0 0.4417166 -0.0075 -0.0526018 0 1.67775325 0 0 0 0
+2.185 -34.71809373 564.2176531 -38.47984411 0.62759396 -0.0075 0.12920447 0 0 0 0.44411364 -0.0075 -0.05254152 0 1.69733177 0 0 0 0
+2.1867 -34.34914264 563.9483862 -38.29489268 0.62646024 -0.0075 0.12942527 0 0 0 0.44651684 -0.0075 -0.05248095 0 1.71398956 0 0 0 0
+2.1883 -33.98069757 563.7601831 -38.08238505 0.6253114 -0.0075 0.12964978 0 0 0 0.448926 -0.0075 -0.05242011 0 1.728135 0 0 0 0
+2.19 -33.61679005 563.6499676 -37.85072694 0.62414611 -0.0075 0.12987546 0 0 0 0.45134094 -0.0075 -0.05235899 0 1.74045355 0 0 0 0
+2.1917 -33.26158955 563.6141286 -37.60881036 0.62296297 -0.0075 0.13009949 0 0 0 0.45376146 -0.0075 -0.0522976 0 1.75178324 0 0 0 0
+2.1933 -32.9188248 563.6486183 -37.36546615 0.62176057 -0.0075 0.13031881 0 0 0 0.45618738 -0.0075 -0.05223593 0 1.76309866 0 0 0 0
+2.195 -32.59176406 563.7490116 -37.12888055 0.6205374 -0.0075 0.13053027 0 0 0 0.45861851 -0.0075 -0.052174 0 1.77533263 0 0 0 0
+2.1967 -32.28269717 563.9106564 -36.90612991 0.61929203 -0.0075 0.13073071 0 0 0 0.46105466 -0.0075 -0.05211181 0 1.78937756 0 0 0 0
+2.1983 -31.99290777 564.1286801 -36.70270063 0.61802295 -0.0075 0.13091706 0 0 0 0.46349563 -0.0075 -0.05204936 0 1.80594319 0 0 0 0
+2.2 -31.72242463 564.3981681 -36.52224139 0.61672882 -0.0075 0.13108641 0 0 0 0.46594124 -0.0075 -0.05198665 0 1.82554541 0 0 0 0
+2.2017 -31.4698859 564.7142171 -36.36636925 0.61540845 -0.0075 0.13123616 0 0 0 0.46839131 -0.0075 -0.05192368 0 1.84845212 0 0 0 0
+2.2033 -31.23266286 565.072088 -36.23466322 0.61406092 -0.0075 0.13136407 0 0 0 0.47084563 -0.0075 -0.05186046 0 1.8746471 0 0 0 0
+2.205 -31.00679771 565.4673332 -36.12480687 0.61268576 -0.0075 0.13146833 0 0 0 0.47330403 -0.0075 -0.05179699 0 1.90393515 0 0 0 0
+2.2067 -30.78739765 565.8959135 -36.03288071 0.61128294 -0.0075 0.13154766 0 0 0 0.47576631 -0.0075 -0.05173327 0 1.93589928 0 0 0 0
+2.2083 -30.56861483 566.354346 -35.95376508 0.60985311 -0.0075 0.13160131 0 0 0 0.47823228 -0.0075 -0.05166931 0 1.97001855 0 0 0 0
+2.21 -30.34432923 566.8397635 -35.88155826 0.60839752 -0.0075 0.13162908 0 0 0 0.48070175 -0.0075 -0.05160511 0 2.00568871 0 0 0 0
+2.2117 -30.10818793 567.3500361 -35.81015412 0.60691816 -0.0075 0.13163136 0 0 0 0.48317454 -0.0075 -0.05154066 0 2.04234003 0 0 0 0
+2.2133 -29.85414006 567.8837788 -35.73363145 0.60541777 -0.0075 0.13160908 0 0 0 0.48565045 -0.0075 -0.05147599 0 2.07942803 0 0 0 0
+2.215 -29.57678104 568.4404679 -35.64679422 0.60389984 -0.0075 0.13156371 0 0 0 0.4881293 -0.0075 -0.05141108 0 2.11655144 0 0 0 0
+2.2167 -29.27163214 569.0203799 -35.54556191 0.60236847 -0.0075 0.13149715 0 0 0 0.49061089 -0.0075 -0.05134594 0 2.15349517 0 0 0 0
+2.2183 -28.93558517 569.6246156 -35.42722301 0.60082827 -0.0075 0.13141174 0 0 0 0.49309504 -0.0075 -0.05128057 0 2.19017634 0 0 0 0
+2.22 -28.56694288 570.255009 -35.29059782 0.59928425 -0.0075 0.13131014 0 0 0 0.49558155 -0.0075 -0.05121498 0 2.22669888 0 0 0 0
+2.2217 -28.16578782 570.9139714 -35.13608221 0.59774145 -0.0075 0.13119523 0 0 0 0.49807025 -0.0075 -0.05114917 0 2.26325002 0 0 0 0
+2.2233 -27.73369792 571.6043971 -34.96555989 0.59620494 -0.0075 0.13107002 0 0 0 0.50056093 -0.0075 -0.05108314 0 2.30009683 0 0 0 0
+2.225 -27.2739812 572.3294324 -34.7821416 0.59467941 -0.0075 0.13093752 0 0 0 0.50305341 -0.0075 -0.05101689 0 2.33746232 0 0 0 0
+2.2267 -26.79124852 573.0923495 -34.59000004 0.59316908 -0.0075 0.13080068 0 0 0 0.5055475 -0.0075 -0.05095043 0 2.37551862 0 0 0 0
+2.2283 -26.29128298 573.8962853 -34.39391778 0.59167736 -0.0075 0.13066224 0 0 0 0.50804301 -0.0075 -0.05088376 0 2.41430269 0 0 0 0
+2.23 -25.78071154 574.7441249 -34.19896764 0.59020682 -0.0075 0.13052471 0 0 0 0.51053975 -0.0075 -0.05081688 0 2.45365409 0 0 0 0
+2.2317 -25.26648665 575.6382218 -34.01017915 0.58875899 -0.0075 0.13039025 0 0 0 0.51303753 -0.0075 -0.0507498 0 2.49322681 0 0 0 0
+2.2333 -24.75570837 576.5802644 -33.83214019 0.58733425 -0.0075 0.13026059 0 0 0 0.51553617 -0.0075 -0.05068251 0 2.53241848 0 0 0 0
+2.235 -24.25491266 577.5711472 -33.6687724 0.58593198 -0.0075 0.13013703 0 0 0 0.51803547 -0.0075 -0.05061503 0 2.57049249 0 0 0 0
+2.2367 -23.76991295 578.6108471 -33.52317076 0.58455041 -0.0075 0.13002038 0 0 0 0.52053524 -0.0075 -0.05054735 0 2.60654201 0 0 0 0
+2.2383 -23.30523044 579.6984666 -33.39750316 0.58318698 -0.0075 0.12991098 0 0 0 0.52303529 -0.0075 -0.05047948 0 2.63965341 0 0 0 0
+2.24 -22.86403432 580.8321798 -33.29297293 0.58183828 -0.0075 0.12980878 0 0 0 0.52553544 -0.0075 -0.05041141 0 2.66897327 0 0 0 0
+2.2417 -22.44784294 582.0093549 -33.20997317 0.58050044 -0.0075 0.1297133 0 0 0 0.5280355 -0.0075 -0.05034316 0 2.69381472 0 0 0 0
+2.2433 -22.05647861 583.2266483 -33.14817765 0.57916917 -0.0075 0.1296238 0 0 0 0.53053527 -0.0075 -0.05027473 0 2.71375961 0 0 0 0
+2.245 -21.68815597 584.4801565 -33.10674722 0.57784016 -0.0075 0.12953927 0 0 0 0.53303457 -0.0075 -0.05020611 0 2.72873489 0 0 0 0
+2.2467 -21.33949011 585.7656043 -33.08455094 0.57650925 -0.0075 0.12945856 0 0 0 0.5355332 -0.0075 -0.05013731 0 2.73911588 0 0 0 0
+2.2483 -21.00591925 587.0785716 -33.08034945 0.57517262 -0.0075 0.12938049 0 0 0 0.53803098 -0.0075 -0.05006834 0 2.74566892 0 0 0 0
+2.25 -20.6817591 588.4147505 -33.09299154 0.5738271 -0.0075 0.12930392 0 0 0 0.54052773 -0.0075 -0.0499992 0 2.74963895 0 0 0 0
+2.2517 -20.36087222 589.7701402 -33.12154675 0.57247008 -0.0075 0.12922788 0 0 0 0.54302324 -0.0075 -0.04992988 0 2.75261149 0 0 0 0
+2.2533 -20.03684246 591.1412849 -33.1653943 0.57109982 -0.0075 0.12915161 0 0 0 0.54551733 -0.0075 -0.04986039 0 2.7564725 0 0 0 0
+2.255 -19.70352156 592.5254198 -33.22419466 0.56971531 -0.0075 0.12907468 0 0 0 0.54800981 -0.0075 -0.04979075 0 2.76324766 0 0 0 0
+2.2567 -19.35541005 593.9205736 -33.29787727 0.56831631 -0.0075 0.12899694 0 0 0 0.55050049 -0.0075 -0.04972093 0 2.77496582 0 0 0 0
+2.2583 -18.98790264 595.3256695 -33.38648658 0.56690332 -0.0075 0.1289186 0 0 0 0.55298918 -0.0075 -0.04965096 0 2.79348559 0 0 0 0
+2.26 -18.59766148 596.7405455 -33.49004013 0.56547748 -0.0075 0.12884021 0 0 0 0.5554757 -0.0075 -0.04958084 0 2.82030604 0 0 0 0
+2.2617 -18.18265186 598.1659188 -33.60839099 0.56404043 -0.0075 0.12876259 0 0 0 0.55795985 -0.0075 -0.04951055 0 2.85650275 0 0 0 0
+2.2633 -17.7424538 599.6033368 -33.74104609 0.56259414 -0.0075 0.12868685 0 0 0 0.56044144 -0.0075 -0.04944012 0 2.9025254 0 0 0 0
+2.265 -17.27796859 601.0550103 -33.88705793 0.56114084 -0.0075 0.12861423 0 0 0 0.56292029 -0.0075 -0.04936954 0 2.95821722 0 0 0 0
+2.2667 -16.79155104 602.5236178 -34.04486655 0.55968277 -0.0075 0.12854607 0 0 0 0.5653962 -0.0075 -0.04929882 0 3.02268749 0 0 0 0
+2.2683 -16.28659885 604.0121459 -34.21229934 0.55822215 -0.0075 0.12848367 0 0 0 0.56786899 -0.0075 -0.04922795 0 3.09440591 0 0 0 0
+2.27 -15.7673796 605.5236007 -34.38655846 0.55676095 -0.0075 0.12842821 0 0 0 0.57033846 -0.0075 -0.04915694 0 3.17125764 0 0 0 0
+2.2717 -15.23866836 607.0608614 -34.56435024 0.55530089 -0.0075 0.12838066 0 0 0 0.57280443 -0.0075 -0.0490858 0 3.25067107 0 0 0 0
+2.2733 -14.70525155 608.6264802 -34.74204251 0.5538434 -0.0075 0.12834168 0 0 0 0.57526671 -0.0075 -0.04901452 0 3.32981751 0 0 0 0
+2.275 -14.17182418 610.2224711 -34.91581512 0.55238947 -0.0075 0.1283116 0 0 0 0.5777251 -0.0075 -0.04894312 0 3.40575666 0 0 0 0
+2.2767 -13.64236119 611.8501881 -35.08196813 0.55093979 -0.0075 0.12829032 0 0 0 0.58017943 -0.0075 -0.04887158 0 3.47570839 0 0 0 0
+2.2783 -13.12011203 613.5102075 -35.23710961 0.54949459 -0.0075 0.12827737 0 0 0 0.58262949 -0.0075 -0.04879992 0 3.53714026 0 0 0 0
+2.28 -12.60712099 615.2022793 -35.37843573 0.54805385 -0.0075 0.12827183 0 0 0 0.5850751 -0.0075 -0.04872813 0 3.58807018 0 0 0 0
+2.2817 -12.10429515 616.9252896 -35.5039178 0.54661716 -0.0075 0.12827244 0 0 0 0.58751608 -0.0075 -0.04865623 0 3.62711117 0 0 0 0
+2.2833 -11.61118922 618.677389 -35.61249737 0.54518397 -0.0075 0.12827764 0 0 0 0.58995223 -0.0075 -0.04858421 0 3.65359125 0 0 0 0
+2.285 -11.12613208 620.4559912 -35.7041332 0.54375348 -0.0075 0.12828564 0 0 0 0.59238335 -0.0075 -0.04851207 0 3.66760263 0 0 0 0
+2.2867 -10.64643126 622.2579728 -35.77990885 0.54232475 -0.0075 0.12829455 0 0 0 0.59480927 -0.0075 -0.04843983 0 3.66998861 0 0 0 0
+2.2883 -10.16841706 624.079791 -35.84194558 0.54089675 -0.0075 0.12830243 0 0 0 0.5972298 -0.0075 -0.04836747 0 3.66226967 0 0 0 0
+2.29 -9.68793186 625.9176227 -35.89325864 0.5394683 -0.0075 0.12830744 0 0 0 0.59964473 -0.0075 -0.04829501 0 3.64647166 0 0 0 0
+2.2917 -9.20038724 627.7675389 -35.9376318 0.53803824 -0.0075 0.12830788 0 0 0 0.6020539 -0.0075 -0.04822245 0 3.62507263 0 0 0 0
+2.2933 -8.70137251 629.6256457 -35.97929131 0.53660523 -0.0075 0.1283023 0 0 0 0.60445709 -0.0075 -0.04814979 0 3.60069879 0 0 0 0
+2.295 -8.18660211 631.4882908 -36.02273384 0.53516806 -0.0075 0.12828953 0 0 0 0.60685414 -0.0075 -0.04807703 0 3.57605458 0 0 0 0
+2.2967 -7.6524972 633.352132 -36.07238166 0.53372538 -0.0075 0.12826876 0 0 0 0.60924483 -0.0075 -0.04800417 0 3.55368101 0 0 0 0
+2.2983 -7.09626541 635.2143301 -36.1323886 0.53227586 -0.0075 0.12823953 0 0 0 0.611629 -0.0075 -0.04793123 0 3.53583914 0 0 0 0
+2.3 -6.5160761 637.0725385 -36.2063142 0.53081812 -0.0075 0.12820172 0 0 0 0.61400644 -0.0075 -0.04785819 0 3.52433533 0 0 0 0
+2.3017 -5.91121067 638.9249801 -36.29698162 0.52935079 -0.0075 0.12815556 0 0 0 0.61637698 -0.0075 -0.04778507 0 3.5204359 0 0 0 0
+2.3033 -5.28191477 640.7704548 -36.40632953 0.52787254 -0.0075 0.1281015 0 0 0 0.61874041 -0.0075 -0.04771187 0 3.52484627 0 0 0 0
+2.305 -4.62949262 642.6083331 -36.53531335 0.52638209 -0.0075 0.12804026 0 0 0 0.62109655 -0.0075 -0.04763859 0 3.53765771 0 0 0 0
+2.3067 -3.95589506 644.4385617 -36.68392046 0.52487837 -0.0075 0.12797269 0 0 0 0.62344521 -0.0075 -0.04756523 0 3.55846766 0 0 0 0
+2.3083 -3.26384937 646.261616 -36.85122239 0.52336044 -0.0075 0.12789974 0 0 0 0.6257862 -0.0075 -0.0474918 0 3.58636587 0 0 0 0
+2.31 -2.55632962 648.078492 -37.03550678 0.52182769 -0.0075 0.12782243 0 0 0 0.62811934 -0.0075 -0.04741829 0 3.62012038 0 0 0 0
+2.3117 -1.83649391 649.890557 -37.23435273 0.52027981 -0.0075 0.12774173 0 0 0 0.63044442 -0.0075 -0.04734471 0 3.65822571 0 0 0 0
+2.3133 -1.10733448 651.6995918 -37.44492665 0.5187169 -0.0075 0.12765857 0 0 0 0.63276127 -0.0075 -0.04727107 0 3.69901934 0 0 0 0
+2.315 -0.37142086 653.5076267 -37.66407234 0.51713948 -0.0075 0.12757379 0 0 0 0.63506969 -0.0075 -0.04719737 0 3.74083745 0 0 0 0
+2.3167 0.36920563 655.3169353 -37.88857986 0.51554859 -0.0075 0.12748812 0 0 0 0.6373695 -0.0075 -0.04712361 0 3.78208835 0 0 0 0
+2.3183 1.11338278 657.1300158 -38.11543587 0.51394574 -0.0075 0.12740219 0 0 0 0.6396605 -0.0075 -0.04704978 0 3.82138523 0 0 0 0
+2.32 1.86060443 658.9494623 -38.34191246 0.51233288 -0.0075 0.12731657 0 0 0 0.6419425 -0.0075 -0.04697591 0 3.85752964 0 0 0 0
+2.3217 2.61135302 660.7779299 -38.56576558 0.51071244 -0.0075 0.12723173 0 0 0 0.64421533 -0.0075 -0.04690198 0 3.88966593 0 0 0 0
+2.3233 3.36676998 662.6180236 -38.78533736 0.50908707 -0.0075 0.12714814 0 0 0 0.64647877 -0.0075 -0.046828 0 3.91716145 0 0 0 0
+2.325 4.12877892 664.4722635 -38.99963702 0.50745976 -0.0075 0.12706623 0 0 0 0.64873266 -0.0075 -0.04675398 0 3.93967141 0 0 0 0
+2.3267 4.89983035 666.3429214 -39.2083833 0.50583353 -0.0075 0.12698639 0 0 0 0.65097679 -0.0075 -0.04667991 0 3.95715 0 0 0 0
+2.3283 5.68268776 668.2320211 -39.41202812 0.50421136 -0.0075 0.12690906 0 0 0 0.65321099 -0.0075 -0.04660581 0 3.9697532 0 0 0 0
+2.33 6.48035574 670.1412345 -39.6116591 0.50259607 -0.0075 0.1268347 0 0 0 0.65543505 -0.0075 -0.04653166 0 3.9778416 0 0 0 0
+2.3317 7.29570079 672.0717754 -39.80897949 0.50099009 -0.0075 0.12676381 0 0 0 0.65764879 -0.0075 -0.04645748 0 3.98193051 0 0 0 0
+2.3333 8.13140657 674.0244115 -40.00624359 0.49939539 -0.0075 0.12669689 0 0 0 0.65985202 -0.0075 -0.04638327 0 3.98269772 0 0 0 0
+2.335 8.98960279 675.9993498 -40.20605321 0.49781327 -0.0075 0.12663448 0 0 0 0.66204455 -0.0075 -0.04630903 0 3.98085915 0 0 0 0
+2.3367 9.87200938 677.9962251 -40.41127343 0.49624446 -0.0075 0.12657706 0 0 0 0.6642262 -0.0075 -0.04623476 0 3.97726531 0 0 0 0
+2.3383 10.77956736 680.0141374 -40.62485973 0.49468888 -0.0075 0.12652506 0 0 0 0.66639676 -0.0075 -0.04616047 0 3.97278421 0 0 0 0
+2.34 11.71256772 682.0516796 -40.84967299 0.49314579 -0.0075 0.12647886 0 0 0 0.66855606 -0.0075 -0.04608616 0 3.96832244 0 0 0 0
+2.3417 12.67068297 684.1070117 -41.08830349 0.49161381 -0.0075 0.12643876 0 0 0 0.67070391 -0.0075 -0.04601183 0 3.96482089 0 0 0 0
+2.3433 13.65283772 686.178007 -41.34296801 0.49009097 -0.0075 0.12640491 0 0 0 0.67284011 -0.0075 -0.04593749 0 3.96318739 0 0 0 0
+2.345 14.65748658 688.2623548 -41.61526871 0.48857483 -0.0075 0.12637736 0 0 0 0.67496447 -0.0075 -0.04586313 0 3.96430598 0 0 0 0
+2.3467 15.68258058 690.3576942 -41.90606724 0.48706271 -0.0075 0.12635607 0 0 0 0.67707681 -0.0075 -0.04578877 0 3.96895179 0 0 0 0
+2.3483 16.72586877 692.4617705 -42.2154158 0.48555178 -0.0075 0.12634081 0 0 0 0.67917693 -0.0075 -0.0457144 0 3.97778947 0 0 0 0
+2.35 17.78481735 694.5726249 -42.54234295 0.48403925 -0.0075 0.1263313 0 0 0 0.68126465 -0.0075 -0.04564002 0 3.99122245 0 0 0 0
+2.3517 18.857006 696.6887032 -42.88490021 0.48252267 -0.0075 0.12632717 0 0 0 0.68333978 -0.0075 -0.04556564 0 4.00946612 0 0 0 0
+2.3533 19.94005135 698.8089773 -43.24015311 0.48099991 -0.0075 0.12632799 0 0 0 0.68540213 -0.0075 -0.04549127 0 4.03241657 0 0 0 0
+2.355 21.03179336 700.9330912 -43.60419692 0.47946939 -0.0075 0.1263333 0 0 0 0.6874515 -0.0075 -0.0454169 0 4.05961016 0 0 0 0
+2.3567 22.1303995 703.0612667 -43.97226408 0.47793016 -0.0075 0.12634266 0 0 0 0.68948772 -0.0075 -0.04534254 0 4.09025879 0 0 0 0
+2.3583 23.2342657 705.1943387 -44.33888702 0.47638188 -0.0075 0.12635561 0 0 0 0.69151059 -0.0075 -0.04526819 0 4.12316452 0 0 0 0
+2.36 24.34226235 707.3336826 -44.69810509 0.47482485 -0.0075 0.12637172 0 0 0 0.69351991 -0.0075 -0.04519385 0 4.15677798 0 0 0 0
+2.3617 25.45350703 709.4810302 -45.04367572 0.47325995 -0.0075 0.12639062 0 0 0 0.69551551 -0.0075 -0.04511952 0 4.18923998 0 0 0 0
+2.3633 26.56755285 711.6383627 -45.36946451 0.47168857 -0.0075 0.1264119 0 0 0 0.69749719 -0.0075 -0.04504522 0 4.21854747 0 0 0 0
+2.365 27.68414888 713.8076896 -45.6696618 0.47011235 -0.0075 0.12643519 0 0 0 0.69946476 -0.0075 -0.04497094 0 4.24252649 0 0 0 0
+2.3667 28.80337263 715.9907891 -45.93910664 0.46853323 -0.0075 0.1264601 0 0 0 0.70141803 -0.0075 -0.04489668 0 4.25909414 0 0 0 0
+2.3683 29.92544164 718.1889593 -46.17358953 0.46695303 -0.0075 0.12648618 0 0 0 0.70335682 -0.0075 -0.04482245 0 4.26637206 0 0 0 0
+2.37 31.0507176 720.4028427 -46.37012301 0.46537339 -0.0075 0.1265129 0 0 0 0.70528094 -0.0075 -0.04474825 0 4.2627821 0 0 0 0
+2.3717 32.17978449 722.6321372 -46.52706163 0.46379564 -0.0075 0.12653959 0 0 0 0.70719019 -0.0075 -0.04467409 0 4.2472721 0 0 0 0
+2.3733 33.31324863 724.875523 -46.644317 0.46222055 -0.0075 0.12656543 0 0 0 0.70908438 -0.0075 -0.04459996 0 4.21940954 0 0 0 0
+2.375 34.45195082 727.1305702 -46.72338084 0.46064835 -0.0075 0.12658943 0 0 0 0.71096333 -0.0075 -0.04452586 0 4.17949261 0 0 0 0
+2.3767 35.59678943 729.3936837 -46.76720435 0.45907854 -0.0075 0.12661047 0 0 0 0.71282685 -0.0075 -0.04445181 0 4.12855734 0 0 0 0
+2.3783 36.7489655 731.6602014 -46.78021365 0.45751001 -0.0075 0.12662724 0 0 0 0.71467475 -0.0075 -0.04437781 0 4.06849945 0 0 0 0
+2.38 37.90971225 733.9244551 -46.76795769 0.4559409 -0.0075 0.12663831 0 0 0 0.71650683 -0.0075 -0.04430385 0 4.00188668 0 0 0 0
+2.3817 39.08059491 736.1799927 -46.73684881 0.45436886 -0.0075 0.12664216 0 0 0 0.71832291 -0.0075 -0.04422994 0 3.93195172 0 0 0 0
+2.3833 40.26345557 738.41977 -46.69380366 0.45279111 -0.0075 0.12663722 0 0 0 0.7201228 -0.0075 -0.04415608 0 3.86242436 0 0 0 0
+2.385 41.46034561 740.636507 -46.64587995 0.4512046 -0.0075 0.12662194 0 0 0 0.72190632 -0.0075 -0.04408228 0 3.79733131 0 0 0 0
+2.3867 42.67363681 742.8229686 -46.59980712 0.4496062 -0.0075 0.12659489 0 0 0 0.72367326 -0.0075 -0.04400854 0 3.74083934 0 0 0 0
+2.3883 43.90584448 744.9722932 -46.56161343 0.44799295 -0.0075 0.12655484 0 0 0 0.72542345 -0.0075 -0.04393486 0 3.69696132 0 0 0 0
+2.39 45.15967893 747.0783115 -46.53628162 0.44636216 -0.0075 0.12650078 0 0 0 0.72715668 -0.0075 -0.04386125 0 3.66936571 0 0 0 0
+2.3917 46.43773083 749.1357861 -46.52738436 0.44471163 -0.0075 0.12643207 0 0 0 0.72887278 -0.0075 -0.0437877 0 3.66109986 0 0 0 0
+2.3933 47.74263179 751.1406445 -46.53694047 0.44303987 -0.0075 0.12634841 0 0 0 0.73057156 -0.0075 -0.04371422 0 3.67448694 0 0 0 0
+2.395 49.07663328 753.0901414 -46.5652117 0.44134611 -0.0075 0.12624997 0 0 0 0.73225282 -0.0075 -0.04364081 0 3.7108534 0 0 0 0
+2.3967 50.441604 754.9830031 -46.61072878 0.43963045 -0.0075 0.12613734 0 0 0 0.73391637 -0.0075 -0.04356748 0 3.77051938 0 0 0 0
+2.3983 51.83880079 756.8193575 -46.67034965 0.43789388 -0.0075 0.1260116 0 0 0 0.73556203 -0.0075 -0.04349423 0 3.85275964 0 0 0 0
+2.4 53.26860908 758.6007833 -46.73951159 0.43613824 -0.0075 0.12587424 0 0 0 0.7371896 -0.0075 -0.04342106 0 3.95574181 0 0 0 0
+2.4017 54.73050815 760.330114 -46.81243809 0.43436615 -0.0075 0.12572716 0 0 0 0.7387989 -0.0075 -0.04334797 0 4.07666375 0 0 0 0
+2.4033 56.22278033 762.0111845 -46.88249936 0.4325809 -0.0075 0.12557262 0 0 0 0.74038974 -0.0075 -0.04327497 0 4.2118219 0 0 0 0
+2.405 57.74264682 763.6486729 -46.94271074 0.43078631 -0.0075 0.12541309 0 0 0 0.74196193 -0.0075 -0.04320206 0 4.35685116 0 0 0 0
+2.4067 59.28598388 765.2477399 -46.98605115 0.42898652 -0.0075 0.12525122 0 0 0 0.74351527 -0.0075 -0.04312924 0 4.5068488 0 0 0 0
+2.4083 60.84758945 766.8137409 -47.00601314 0.42718584 -0.0075 0.12508971 0 0 0 0.74504958 -0.0075 -0.04305652 0 4.65675142 0 0 0 0
+2.41 62.42102321 768.3518983 -46.9969505 0.42538845 -0.0075 0.12493121 0 0 0 0.74656468 -0.0075 -0.04298389 0 4.80146778 0 0 0 0
+2.4117 63.99890161 769.8670145 -46.95439502 0.4235983 -0.0075 0.12477822 0 0 0 0.74806036 -0.0075 -0.04291137 0 4.93611982 0 0 0 0
+2.4133 65.57312089 771.3631129 -46.87538564 0.42181889 -0.0075 0.12463299 0 0 0 0.74953645 -0.0075 -0.04283895 0 5.05635802 0 0 0 0
+2.415 67.13491995 772.8432466 -46.75867557 0.42005306 -0.0075 0.12449741 0 0 0 0.75099274 -0.0075 -0.04276663 0 5.15846588 0 0 0 0
+2.4167 68.67542473 774.3092867 -46.60474055 0.41830297 -0.0075 0.12437294 0 0 0 0.75242906 -0.0075 -0.04269443 0 5.23957433 0 0 0 0
+2.4183 70.1857989 775.7617137 -46.4157642 0.41656995 -0.0075 0.12426061 0 0 0 0.75384522 -0.0075 -0.04262234 0 5.29771418 0 0 0 0
+2.42 71.65772302 777.1996336 -46.1955758 0.41485452 -0.0075 0.12416089 0 0 0 0.75524101 -0.0075 -0.04255036 0 5.3319529 0 0 0 0
+2.4217 73.0835619 778.6207075 -45.94931659 0.41315634 -0.0075 0.12407382 0 0 0 0.75661626 -0.0075 -0.0424785 0 5.34227824 0 0 0 0
+2.4233 74.45690844 780.0211748 -45.68321556 0.41147438 -0.0075 0.12399893 0 0 0 0.75797078 -0.0075 -0.04240676 0 5.32964199 0 0 0 0
+2.425 75.77268991 781.3959846 -45.40420284 0.4098069 -0.0075 0.1239353 0 0 0 0.75930437 -0.0075 -0.04233515 0 5.29581355 0 0 0 0
+2.4267 77.02743646 782.7389309 -45.11953024 0.40815165 -0.0075 0.12388165 0 0 0 0.76061685 -0.0075 -0.04226366 0 5.24324919 0 0 0 0
+2.4283 78.21960607 784.0427803 -44.8363193 0.40650605 -0.0075 0.12383636 0 0 0 0.76190802 -0.0075 -0.0421923 0 5.17498183 0 0 0 0
+2.43 79.34949953 785.29954 -44.56123857 0.4048673 -0.0075 0.1237976 0 0 0 0.7631777 -0.0075 -0.04212107 0 5.09438701 0 0 0 0
+2.4317 80.41945308 786.5006691 -44.30012466 0.40323259 -0.0075 0.1237634 0 0 0 0.7644257 -0.0075 -0.04204998 0 5.00505696 0 0 0 0
+2.4333 81.43364234 787.6372911 -44.05766225 0.40159925 -0.0075 0.12373177 0 0 0 0.76565183 -0.0075 -0.04197903 0 4.9105853 0 0 0 0
+2.435 82.39815189 788.7004058 -43.8372944 0.39996488 -0.0075 0.12370072 0 0 0 0.7668559 -0.0075 -0.04190821 0 4.81450261 0 0 0 0
+2.4367 83.32056514 789.6811189 -43.64097455 0.39832741 -0.0075 0.12366839 -2.27926332 1.54956762 0.05303168 0.76803772 -0.0075 -0.04183754 0 4.72003328 0 -0.21412122 -0.23278474 0.29829541
+2.4383 84.20987621 790.570799 -43.46919533 0.39668528 -0.0075 0.1236331 -2.62124606 1.90632266 -0.03827619 0.7691971 -0.0075 -0.04176702 0 4.63009698 0 -0.22448541 -0.16637818 0.26925366
+2.44 85.07611783 791.3612222 -43.32102605 0.39503738 -0.0075 0.12359339 -2.89651656 2.33516587 -0.14205045 0.77033385 -0.0075 -0.04169664 0 4.54720369 0 -0.23898052 -0.09636309 0.24022625
+2.4417 85.92998341 792.044793 -43.19421342 0.39338309 -0.0075 0.1235481 -3.0793958 2.85466189 -0.25381991 0.77144778 -0.0075 -0.04162642 0 4.47335973 0 -0.25827561 -0.02501034 0.21264557
+2.4433 86.7825634 792.6145589 -43.08537496 0.39172231 -0.0075 0.12349636 -3.14425786 3.48653852 -0.36937548 0.7725387 -0.0075 -0.04155635 0 4.41015789 0 -0.28300597 0.04535803 0.18807308
+2.445 87.64478487 793.0643515 -42.99024944 0.39005536 -0.0075 0.12343761 -3.06661269 4.2556607 -0.48517561 0.77360643 -0.0075 -0.04148644 0 4.35872791 0 -0.31378143 0.11253197 0.16802218
+2.4467 88.52719719 793.3888475 -42.90394946 0.38838292 -0.0075 0.1233716 -2.8240532 5.18963593 -0.59902658 0.77465077 -0.0075 -0.04141669 0 4.31976979 0 -0.35110441 0.174559 0.15395893
+2.4483 89.43944397 793.5835327 -42.82113633 0.38670597 -0.0075 0.12329843 -2.39741841 6.31855898 -0.7105086 0.77567154 -0.0075 -0.0413471 0 4.29352661 0 -0.39529953 0.22984748 0.14717231
+2.45 90.39007591 793.6447746 -42.7363684 0.38502574 -0.0075 0.12321841 -1.77177304 7.67427484 -0.82151479 0.77666854 -0.0075 -0.04127768 0 4.27993006 0 -0.44644027 0.2772739 0.14878837
+2.4517 91.38609279 793.5698246 -42.64424668 0.38334355 -0.0075 0.12313217 -0.93727375 9.28978514 -0.93642344 0.77764159 -0.0075 -0.04120843 0 4.27850238 0 -0.50429495 0.31623306 0.15972286
+2.4533 92.43282797 793.3568004 -42.53964417 0.38166089 -0.0075 0.12304057 0.1098711 11.19832779 -1.06232524 0.77859049 -0.0075 -0.04113935 0 4.28846208 0 -0.56826373 0.34670443 0.18066101
+2.455 93.53370114 793.0046387 -42.41779483 0.37997923 -0.0075 0.12294466 1.36685137 13.43234562 -1.20898781 0.77951507 -0.0075 -0.04107044 0 4.30873961 0 -0.6373369 0.36921748 0.21207499
+2.4567 94.6899998 792.5130926 -42.27441543 0.37830009 -0.0075 0.1228457 2.82382963 16.02247737 -1.38852669 0.78041511 -0.0075 -0.04100171 0 4.33790602 0 -0.71010444 0.38489444 0.25419295
+2.4583 95.90098456 791.8825713 -42.1057023 0.37662495 -0.0075 0.12274508 4.46372004 18.99624769 -1.61517429 0.78129045 -0.0075 -0.04093316 0 4.37424515 0 -0.78471484 0.39535654 0.30706674
+2.46 97.16370744 791.1140876 -41.9083561 0.37495529 -0.0075 0.12264432 6.26215968 22.3769658 -1.90452192 0.78214089 -0.0075 -0.0408648 0 4.41570594 0 -0.85896223 0.40264608 0.37049723
+2.4617 98.47323463 790.2091347 -41.67961829 0.37329254 -0.0075 0.12254499 8.18799152 26.18240337 -2.27283899 0.78296623 -0.0075 -0.04079662 0 4.45996457 0 -0.93035289 0.40913483 0.44412294
+2.4633 99.82262984 789.1694597 -41.41710738 0.3716381 -0.0075 0.12244869 10.20367975 30.42380227 -2.73613063 0.7837663 -0.0075 -0.04072863 0 4.50437138 0 -0.99621925 0.41737509 0.52730251
+2.465 101.2033749 787.9969372 -41.11891817 0.36999335 -0.0075 0.12235702 12.2661592 35.10478932 -3.30926258 0.7845409 -0.0075 -0.04066083 0 4.54608257 0 -1.05382932 0.43000426 0.619161
+2.4667 102.6054109 786.6932947 -40.78352119 0.36835954 -0.0075 0.12227154 14.32803031 40.22064933 -4.00488042 0.78528984 -0.0075 -0.04059322 0 4.58203685 0 -1.10056335 0.44958587 0.71856828
+2.4683 104.0175209 785.2598711 -40.4097833 0.36673781 -0.0075 0.12219368 16.33869562 45.75782167 -4.83253126 0.78601293 -0.0075 -0.04052581 0 4.60908711 0 -1.13405517 0.47854827 0.82407475
+2.47 105.4277572 783.6973285 -39.99699417 0.3651291 -0.0075 0.12212472 18.24582771 51.69362655 -5.79784668 0.78670998 -0.0075 -0.04045861 0 4.62413579 0 -1.15233291 0.51902797 0.93393719
+2.4717 106.8236717 782.0053906 -39.54492032 0.36353401 -0.0075 0.12206574 19.99694366 57.9965266 -6.90167861 0.78738081 -0.0075 -0.0403916 0 4.62420381 0 -1.15400298 0.57279159 1.0460546
+2.4733 108.192873 780.182552 -39.05389521 0.3619528 -0.0075 0.12201748 21.54098816 64.6265176 -8.13985566 0.78802522 -0.0075 -0.0403248 0 4.60670663 0 -1.13829657 0.64116136 1.15805244
+2.475 109.523301 778.2258676 -38.52483615 0.36038523 -0.0075 0.12198045 22.82988033 71.53616659 -9.50275454 0.78864303 -0.0075 -0.04025821 0 4.56950291 0 -1.1051868 0.72494948 1.26723249
+2.4767 110.8037915 776.1307595 -37.95941574 0.3588305 -0.0075 0.12195473 23.82012368 78.6717035 -10.97544776 0.78923404 -0.0075 -0.04019183 0 4.51115715 0 -1.05541906 0.82448058 1.37070382
+2.4783 112.0242154 773.8908744 -37.36002629 0.35728711 -0.0075 0.12194007 24.47420933 85.9747383 -12.53797873 0.78979806 -0.0075 -0.04012566 0 4.4309987 0 -0.99047164 0.93953945 1.46540411
+2.48 113.1760404 771.4980709 -36.72994336 0.35575288 -0.0075 0.1219358 24.76186632 93.38399056 -14.16605262 0.79033492 -0.0075 -0.04005971 0 4.32933604 0 -0.91250036 1.06945996 1.54825419
+2.4817 114.252462 768.9424268 -36.07325001 0.35422491 -0.0075 0.12194087 24.66115618 100.837307 -15.83183079 0.79084441 -0.0075 -0.03999398 0 4.20743696 0 -0.82424407 1.21311799 1.61627928
+2.4833 115.2486895 766.2124098 -35.39479843 0.35269962 -0.0075 0.12195386 24.15917118 108.2737911 -17.50505951 0.79132635 -0.0075 -0.03992848 0 4.06756296 0 -0.72885917 1.36904385 1.66672064
+2.485 116.1621614 763.295071 -34.70008379 0.35117286 -0.0075 0.12197306 23.25258143 115.6358174 -19.15441928 0.79178055 -0.0075 -0.0398632 0 3.91297794 0 -0.62971889 1.53545135 1.69723984
+2.4867 116.9924715 760.1764079 -33.9950966 0.34964004 -0.0075 0.12199649 21.94779404 122.8710619 -20.74864276 0.79220682 -0.0075 -0.03979814 0 3.74776557 0 -0.53029649 1.71033093 1.70596268
+2.4883 117.7415454 756.8417699 -33.28611095 0.34809639 -0.0075 0.12202203 20.26077148 129.9341438 -22.25811217 0.79260496 -0.0075 -0.03973332 0 3.57676534 0 -0.4338797 1.89152835 1.69167298
+2.49 118.413321 753.2762715 -32.57930611 0.3465371 -0.0075 0.1220475 18.21658751 136.7881879 -23.6559839 0.7929748 -0.0075 -0.03966873 0 3.40524459 0 -0.34343505 2.0768042 1.65383023
+2.4917 119.0137223 749.4653321 -31.88059104 0.34495772 -0.0075 0.12207075 15.84869975 143.4056999 -24.91940482 0.79331614 -0.0075 -0.03960438 0 3.23874471 0 -0.26145573 2.26397202 1.59268879
+2.4933 119.5502187 745.3950966 -31.19514798 0.34335432 -0.0075 0.12208981 13.19783705 149.7693914 -26.03035703 0.79362879 -0.0075 -0.03954027 0 3.08267572 0 -0.18981175 2.45088474 1.50922108
+2.495 120.0316591 741.052913 -30.5272178 0.34172391 -0.0075 0.12210291 10.31068231 155.8722272 -26.976396 0.79391257 -0.0075 -0.0394764 0 2.94213916 0 -0.12969153 2.63551192 1.40511613
+2.4967 120.4676937 736.4277232 -29.8798016 0.34006455 -0.0075 0.12210865 7.23848267 161.7171515 -27.75090299 0.79416727 -0.0075 -0.03941278 0 2.82161252 0 -0.0815712 2.81594016 1.28271003
+2.4983 120.8683196 731.5103765 -29.25444838 0.33837564 -0.0075 0.12210599 4.03529784 167.3165018 -28.35307886 0.79439272 -0.0075 -0.0393494 0 2.72467962 0 -0.04523274 2.99044627 1.14477683
+2.5 121.2435375 726.293838 -28.6511314 0.33665805 -0.0075 0.12209437 0.75633082 172.6907879 -28.78771139 0.79458873 -0.0075 -0.03928628 0 2.6539061 0 -0.01980145 3.1574675 0.99444594
diff --git a/Bindings/Python/tutorials/resources/Tutorial 6/subject01_walk_grf.xml b/Bindings/Python/tutorials/resources/Tutorial 6/subject01_walk_grf.xml
new file mode 100644
index 0000000000..b862ecd3a1
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 6/subject01_walk_grf.xml
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+ false
+
+ calcn_r
+
+ ground
+
+ ground
+
+ ground_force_v
+
+ ground_force_p
+
+ ground_torque_
+
+ Unassigned
+
+
+
+ false
+
+ calcn_l
+
+ ground
+
+ ground
+
+ 1_ground_force_v
+
+ 1_ground_force_p
+
+ 1_ground_torque_
+
+ Unassigned
+
+
+
+
+ subject01_walk_grf.mot
+
+
diff --git a/Bindings/Python/tutorials/resources/Tutorial 6/subject_adjusted_Kinematics_q.sto b/Bindings/Python/tutorials/resources/Tutorial 6/subject_adjusted_Kinematics_q.sto
new file mode 100644
index 0000000000..07e17b038f
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 6/subject_adjusted_Kinematics_q.sto
@@ -0,0 +1,2548 @@
+Coordinates
+version=1
+nRows=2537
+nColumns=11
+inDegrees=yes
+
+Units are S.I. units (second, meters, Newtons, ...)
+Angles are in degrees.
+
+endheader
+time pelvis_tilt pelvis_tx pelvis_ty hip_flexion_r knee_angle_r ankle_angle_r hip_flexion_l knee_angle_l ankle_angle_l lumbar_extension
+ 0.0000000000 10.3299598800 0.6121349400 1.0179025000 -29.1081598900 -5.1286073300 12.8153005900 11.5358763800 -0.6225158300 -4.6141790400 -26.1394506500
+ 0.0010000000 10.3133889149 0.6122082334 1.0178227500 -29.1136739091 -5.2268553616 12.8373590832 11.5783897243 -0.7713230927 -4.6754687138 -26.1176298333
+ 0.0020000000 10.2968264998 0.6122829789 1.0177435739 -29.1191605958 -5.3251582575 12.8593654311 11.6208996270 -0.9201236883 -4.7367123699 -26.0958285720
+ 0.0030000000 10.2802842517 0.6123592049 1.0176650459 -29.1245989347 -5.4235732677 12.8812554789 11.6633866195 -1.0689149817 -4.7978763227 -26.0740531479
+ 0.0040000000 10.2637740395 0.6124369393 1.0175872420 -29.1299681252 -5.5221570729 12.9029554924 11.7058307730 -1.2176927250 -4.8589403346 -26.0523101485
+ 0.0050000000 10.2473073312 0.6125162094 1.0175102358 -29.1352471860 -5.6209667908 12.9244007819 11.7482125419 -1.3664543205 -4.9198704185 -26.0306058578
+ 0.0060000000 10.2308951455 0.6125970412 1.0174340983 -29.1404149644 -5.7200599703 12.9455363043 11.7905127447 -1.5151987780 -4.9806189772 -26.0089462501
+ 0.0070000000 10.2145483656 0.6126794597 1.0173588999 -29.1454503286 -5.8194940293 12.9663076891 11.8327121598 -1.6639249382 -5.0411392989 -25.9873372855
+ 0.0080000000 10.1982780498 0.6127634895 1.0172847133 -29.1503323685 -5.9193257157 12.9866508934 11.8747911502 -1.8126300179 -5.1013982698 -25.9657852150
+ 0.0090000000 10.1820953821 0.6128491539 1.0172116129 -29.1550404060 -6.0196110990 13.0064921500 11.9167296729 -1.9613097388 -5.1613755703 -25.9442965771
+ 0.0100000000 10.1660110446 0.6129364746 1.0171396703 -29.1595535950 -6.1204065463 13.0257674756 11.9585080632 -2.1099612827 -5.2210379258 -25.9228775810
+ 0.0110000000 10.1500351738 0.6130254716 1.0170689541 -29.1638509239 -6.2217687146 13.0444235877 12.0001070204 -2.2585832006 -5.2803393892 -25.9015340950
+ 0.0120000000 10.1341776639 0.6131161632 1.0169995321 -29.1679114074 -6.3237540010 13.0624085918 12.0415072200 -2.4071737514 -5.3392352521 -25.8802719446
+ 0.0130000000 10.1184484760 0.6132085657 1.0169314739 -29.1717143078 -6.4264180218 13.0796598534 12.0826889443 -2.5557297442 -5.3976934920 -25.8590972398
+ 0.0140000000 10.1028575959 0.6133026938 1.0168648502 -29.1752391469 -6.5298156031 13.0961036606 12.1236320941 -2.7042467020 -5.4556938737 -25.8380163736
+ 0.0150000000 10.0874144193 0.6133985597 1.0167997285 -29.1784652752 -6.6340017252 13.1116775200 12.1643169579 -2.8527213225 -5.5132044039 -25.8170353722
+ 0.0160000000 10.0721277154 0.6134961737 1.0167361730 -29.1813718663 -6.7390315151 13.1263314136 12.2047242073 -3.0011513502 -5.5701816177 -25.7961598763
+ 0.0170000000 10.0570059214 0.6135955437 1.0166742463 -29.1839381210 -6.8449597146 13.1400173940 12.2448345189 -3.1495341435 -5.6265833609 -25.7753954537
+ 0.0180000000 10.0420574510 0.6136966750 1.0166140124 -29.1861435196 -6.9518401773 13.1526750612 12.2846281972 -3.2978658490 -5.6823792294 -25.7547479576
+ 0.0190000000 10.0272906655 0.6137995701 1.0165555356 -29.1879678314 -7.0597258548 13.1642309918 12.3240851930 -3.4461415795 -5.7375497438 -25.7342235267
+ 0.0200000000 10.0127132708 0.6139042295 1.0164988769 -29.1893906349 -7.1686697076 13.1746250703 12.3631858783 -3.5943572689 -5.7920648852 -25.7138278810
+ 0.0210000000 9.9983322931 0.6140106512 1.0164440929 -29.1903913009 -7.2787246996 13.1838120390 12.4019110567 -3.7425095302 -5.8458842347 -25.6935662974
+ 0.0220000000 9.9841543675 0.6141188309 1.0163912386 -29.1909492203 -7.3899432891 13.1917492966 12.4402415868 -3.8905945305 -5.8989685158 -25.6734439448
+ 0.0230000000 9.9701860500 0.6142287612 1.0163403695 -29.1910440928 -7.5023769346 13.1983795178 12.4781579871 -4.0386074778 -5.9512895331 -25.6534662827
+ 0.0240000000 9.9564338048 0.6143404314 1.0162915407 -29.1906559326 -7.6160760724 13.2036299349 12.5156404632 -4.1865427838 -6.0028295433 -25.6336390569
+ 0.0250000000 9.9429034109 0.6144538292 1.0162448036 -29.1897645225 -7.7310910028 13.2074437325 12.5526697112 -4.3343953063 -6.0535611433 -25.6139675294
+ 0.0260000000 9.9295999512 0.6145689402 1.0162002052 -29.1883493881 -7.8474718938 13.2097817759 12.5892269463 -4.4821602153 -6.1034472051 -25.5944564462
+ 0.0270000000 9.9165281009 0.6146857479 1.0161577902 -29.1863900555 -7.9652682920 13.2106079612 12.6252935182 -4.6298322106 -6.1524514884 -25.5751104064
+ 0.0280000000 9.9036924479 0.6148042326 1.0161176032 -29.1838663776 -8.0845286185 13.2098688352 12.6608504915 -4.7774052422 -6.2005485473 -25.5559342985
+ 0.0290000000 9.8910974970 0.6149243716 1.0160796883 -29.1807585323 -8.2053001320 13.2074928737 12.6958786838 -4.9248726361 -6.2477233107 -25.5369332918
+ 0.0300000000 9.8787470760 0.6150461409 1.0160440854 -29.1770464080 -8.3276298219 13.2034274728 12.7303595126 -5.0722278200 -6.2939514422 -25.5181119931
+ 0.0310000000 9.8666443390 0.6151695157 1.0160108302 -29.1727095719 -8.4515644264 13.1976406816 12.7642750371 -5.2194642226 -6.3391991188 -25.4994744133
+ 0.0320000000 9.8547920610 0.6152944694 1.0159799562 -29.1677275609 -8.5771499519 13.1901036508 12.7976075590 -5.3665748044 -6.3834332262 -25.4810243732
+ 0.0330000000 9.8431929698 0.6154209726 1.0159514963 -29.1620802386 -8.7044311321 13.1807675233 12.8303391792 -5.5135519010 -6.4266314502 -25.4627659710
+ 0.0340000000 9.8318497613 0.6155489935 1.0159254828 -29.1557477853 -8.8334513730 13.1695628887 12.8624518465 -5.6603872972 -6.4687819880 -25.4447035663
+ 0.0350000000 9.8207644950 0.6156785000 1.0159019442 -29.1487100272 -8.9642537027 13.1564421999 12.8939282442 -5.8070726195 -6.5098637948 -25.4268408763
+ 0.0360000000 9.8099386061 0.6158094600 1.0158809050 -29.1409464039 -9.0968808075 13.1413813129 12.9247518360 -5.9535992832 -6.5498463126 -25.4091809458
+ 0.0370000000 9.7993732131 0.6159418406 1.0158623879 -29.1324362919 -9.2313745392 13.1243589273 12.9549064474 -6.0999582536 -6.5886996787 -25.3917265887
+ 0.0380000000 9.7890694595 0.6160756068 1.0158464151 -29.1231593772 -9.3677753062 13.1053314247 12.9843758118 -6.2461398978 -6.6264049217 -25.3744808706
+ 0.0390000000 9.7790285315 0.6162107218 1.0158330083 -29.1130956393 -9.5061220051 13.0842326730 13.0131436250 -6.3921340069 -6.6629536937 -25.3574470866
+ 0.0400000000 9.7692510323 0.6163471496 1.0158221861 -29.1022246510 -9.6464530819 13.0610209305 13.0411944475 -6.5379300752 -6.6983283130 -25.3406278229
+ 0.0410000000 9.7597369977 0.6164848550 1.0158139639 -29.0905255543 -9.7888065895 13.0356800077 13.0685137395 -6.6835172937 -6.7325015513 -25.3240249369
+ 0.0420000000 9.7504862197 0.6166238029 1.0158083554 -29.0779774077 -9.9332196506 13.0081960052 13.0950874270 -6.8288844264 -6.7654470299 -25.3076400257
+ 0.0430000000 9.7414985901 0.6167639566 1.0158053744 -29.0645595762 -10.0797277903 12.9785311066 13.1209014640 -6.9740195881 -6.7971492305 -25.2914748979
+ 0.0440000000 9.7327741271 0.6169052791 1.0158050348 -29.0502516542 -10.2283647961 12.9466238360 13.1459418858 -7.1189102274 -6.8276031593 -25.2755315506
+ 0.0450000000 9.7243123274 0.6170477344 1.0158073478 -29.0350327704 -10.3791639417 12.9124388345 13.1701956813 -7.2635434782 -6.8567945475 -25.2598112365
+ 0.0460000000 9.7161121643 0.6171912885 1.0158123219 -29.0188816386 -10.5321581243 12.8759675704 13.1936508088 -7.4079061913 -6.8846997415 -25.2443144517
+ 0.0470000000 9.7081724272 0.6173359074 1.0158199651 -29.0017768930 -10.6873792254 12.8372031089 13.2162957557 -7.5519848091 -6.9112961712 -25.2290414204
+ 0.0480000000 9.7004920562 0.6174815567 1.0158302855 -28.9836974315 -10.8448573271 12.7961138764 13.2381191349 -7.6957650412 -6.9365718858 -25.2139925454
+ 0.0490000000 9.6930701377 0.6176282015 1.0158432918 -28.9646224016 -11.0046206342 12.7526444219 13.2591097361 -7.8392318442 -6.9605250871 -25.1991683787
+ 0.0500000000 9.6859052459 0.6177758082 1.0158589909 -28.9445305581 -11.1666968815 12.7067661702 13.2792573152 -7.9823699444 -6.9831450308 -25.1845687329
+ 0.0510000000 9.6789954509 0.6179243450 1.0158773874 -28.9234002710 -11.3311134204 12.6584776873 13.2985525791 -8.1251638777 -7.0044120256 -25.1701926894
+ 0.0520000000 9.6723386614 0.6180737803 1.0158984859 -28.9012098721 -11.4978965140 12.6077785237 13.3169867708 -8.2675977871 -7.0243076442 -25.1560390673
+ 0.0530000000 9.6659329406 0.6182240823 1.0159222915 -28.8779379577 -11.6670704819 12.5546437415 13.3345513304 -8.4096550272 -7.0428236479 -25.1421068336
+ 0.0540000000 9.6597764838 0.6183752186 1.0159488103 -28.8535633820 -11.8386576310 12.4990250470 13.3512379383 -8.5513181617 -7.0599614130 -25.1283950756
+ 0.0550000000 9.6538669744 0.6185271579 1.0159780467 -28.8280646936 -12.0126798339 12.4409008803 13.3670391770 -8.6925696520 -7.0757139210 -25.1149021863
+ 0.0560000000 9.6482015852 0.6186798702 1.0160100035 -28.8014201584 -12.1891586187 12.3802763833 13.3819484919 -8.8333918835 -7.0900658172 -25.1016258849
+ 0.0570000000 9.6427773160 0.6188333256 1.0160446831 -28.7736080781 -12.3681143703 12.3171572687 13.3959598214 -8.9737668669 -7.1030030630 -25.0885636572
+ 0.0580000000 9.6375912801 0.6189874936 1.0160820891 -28.7446070446 -12.5495654295 12.2515255433 13.4090673403 -9.1136758401 -7.1145213057 -25.0757131175
+ 0.0590000000 9.6326406700 0.6191423425 1.0161222258 -28.7143959406 -12.7335280393 12.1833408394 13.4212654940 -9.2530992998 -7.1246252634 -25.0630719850
+ 0.0600000000 9.6279221551 0.6192978418 1.0161650962 -28.6829534698 -12.9200180505 12.1125887449 13.4325495070 -9.3920177568 -7.1333118728 -25.0506373593
+ 0.0610000000 9.6234318807 0.6194539611 1.0162107012 -28.6502581867 -13.1090510096 12.0392806649 13.4429153297 -9.5304117359 -7.1405703431 -25.0384057470
+ 0.0620000000 9.6191657876 0.6196106700 1.0162590416 -28.6162887738 -13.3006412839 11.9634284567 13.4523593368 -9.6682614184 -7.1463910981 -25.0263734595
+ 0.0630000000 9.6151198648 0.6197679366 1.0163101191 -28.5810242474 -13.4948011434 11.8850213379 13.4608781555 -9.8055463130 -7.1507738238 -25.0145369300
+ 0.0640000000 9.6112901133 0.6199257279 1.0163639358 -28.5444439652 -13.6915407218 11.8040272166 13.4684686928 -9.9422453223 -7.1537269053 -25.0028926939
+ 0.0650000000 9.6076720159 0.6200840110 1.0164204923 -28.5065272522 -13.8908697906 11.7204389205 13.4751284663 -10.0783374509 -7.1552514164 -24.9914367562
+ 0.0660000000 9.6042605369 0.6202427532 1.0164797872 -28.4672534084 -14.0927978525 11.6342741449 13.4808556135 -10.2138017416 -7.1553411250 -24.9801646059
+ 0.0670000000 9.6010504109 0.6204019214 1.0165418183 -28.4266019414 -14.2973332202 11.5455511983 13.4856486668 -10.3486169232 -7.1539907984 -24.9690715699
+ 0.0680000000 9.5980363696 0.6205614806 1.0166065843 -28.3845527522 -14.5044820862 11.4542667381 13.4895063904 -10.4827612310 -7.1512042382 -24.9581531027
+ 0.0690000000 9.5952131047 0.6207213940 1.0166740837 -28.3410861403 -14.7142484981 11.3603969403 13.4924278296 -10.6162124789 -7.1469938793 -24.9474047694
+ 0.0700000000 9.5925748103 0.6208816250 1.0167443131 -28.2961824950 -14.9266361700 11.2639419826 13.4944125281 -10.7489485772 -7.1413650659 -24.9368216842
+ 0.0710000000 9.5901151864 0.6210421370 1.0168172666 -28.2498223123 -15.1416485730 11.1649261944 13.4954604878 -10.8809474972 -7.1343158821 -24.9263985282
+ 0.0720000000 9.5878276962 0.6212028925 1.0168929372 -28.2019863801 -15.3592879959 11.0633748425 13.4955720284 -11.0121870053 -7.1258450988 -24.9161298584
+ 0.0730000000 9.5857057695 0.6213638522 1.0169713180 -28.1526559224 -15.5795546092 10.9592922070 13.4947477373 -11.1426445485 -7.1159606073 -24.9060103653
+ 0.0740000000 9.5837427868 0.6215249748 1.0170524016 -28.1018126157 -15.8024464343 10.8526625064 13.4929884868 -11.2722973370 -7.1046791998 -24.8960348648
+ 0.0750000000 9.5819316903 0.6216862195 1.0171361781 -28.0494383263 -16.0279611866 10.7434933885 13.4902955531 -11.4011226651 -7.0920104102 -24.8861977869
+ 0.0760000000 9.5802649899 0.6218475455 1.0172226351 -27.9955151135 -16.2560963776 10.6318163429 13.4866705954 -11.5290978849 -7.0779561814 -24.8764931838
+ 0.0770000000 9.5787349887 0.6220089118 1.0173117586 -27.9400253806 -16.4868483677 10.5176641926 13.4821155811 -11.6562002515 -7.0625188791 -24.8669150067
+ 0.0780000000 9.5773339790 0.6221702754 1.0174035340 -27.8829520135 -16.7202113901 10.4010489511 13.4766327556 -11.7824068653 -7.0457103368 -24.8574573550
+ 0.0790000000 9.5760542419 0.6223315921 1.0174979460 -27.8242784017 -16.9561775095 10.2819624968 13.4702246514 -11.9076947323 -7.0275518149 -24.8481144749
+ 0.0800000000 9.5748877008 0.6224928182 1.0175949764 -27.7639881940 -17.1947385337 10.1604200158 13.4628941544 -12.0320409451 -7.0080568134 -24.8388802718
+ 0.0810000000 9.5738259256 0.6226539111 1.0176946045 -27.7020652896 -17.4358861328 10.0364606745 13.4546445015 -12.1554226777 -6.9872306077 -24.8297483097
+ 0.0820000000 9.5728603350 0.6228148278 1.0177968079 -27.6384939700 -17.6796108721 9.9101253444 13.4454792479 -12.2778171266 -6.9650787430 -24.8207120675
+ 0.0830000000 9.5719823987 0.6229755244 1.0179015628 -27.5732590477 -17.9259011640 9.7814337395 13.4354022276 -12.3992014492 -6.9416167477 -24.8117651961
+ 0.0840000000 9.5711836492 0.6231359560 1.0180088448 -27.5063458931 -18.1747432149 9.6503848928 13.4244175514 -12.5195527958 -6.9168701873 -24.8029015226
+ 0.0850000000 9.5704553410 0.6232960788 1.0181186264 -27.4377401849 -18.4261230598 9.5170014851 13.4125296653 -12.6388484514 -6.8908561736 -24.7941145628
+ 0.0860000000 9.5697884495 0.6234558506 1.0182308780 -27.3674278941 -18.6800267000 9.3813307090 13.3997433602 -12.7570658547 -6.8635828486 -24.7853975133
+ 0.0870000000 9.5691738631 0.6236152296 1.0183455680 -27.2953954139 -18.9364390854 9.2434217192 13.3860637525 -12.8741825813 -6.8350586198 -24.7767435034
+ 0.0880000000 9.5686026029 0.6237741731 1.0184626636 -27.2216297263 -19.1953429780 9.1033017203 13.3714962154 -12.9901762390 -6.8053023876 -24.7681458692
+ 0.0890000000 9.5680658373 0.6239326381 1.0185821310 -27.1461184361 -19.4567188909 8.9609763573 13.3560463658 -13.1050244784 -6.7743435780 -24.7595981629
+ 0.0900000000 9.5675545171 0.6240905833 1.0187039338 -27.0688494996 -19.7205472907 8.8164756429 13.3397201494 -13.2187051862 -6.7422024693 -24.7510936456
+ 0.0910000000 9.5670593667 0.6242479689 1.0188280339 -26.9898112086 -19.9868087474 8.6698548816 13.3225238522 -13.3311965174 -6.7088897328 -24.7426252780
+ 0.0920000000 9.5665710572 0.6244047553 1.0189543915 -26.9089923375 -20.2554828442 8.5211714332 13.3044640530 -13.4424768654 -6.6744164566 -24.7341859938
+ 0.0930000000 9.5660803574 0.6245609009 1.0190829662 -26.8263824716 -20.5265470088 8.3704596657 13.2855474850 -13.5525247318 -6.6388045199 -24.7257690164
+ 0.0940000000 9.5655782154 0.6247163630 1.0192137167 -26.7419719644 -20.7999764162 8.2177314020 13.2657810525 -13.6613187214 -6.6020864808 -24.7173678436
+ 0.0950000000 9.5650553889 0.6248711004 1.0193466000 -26.6557515612 -21.0757463404 8.0630237716 13.2451719655 -13.7688378083 -6.5642852662 -24.7089757084
+ 0.0960000000 9.5645024313 0.6250250734 1.0194815716 -26.5677124018 -21.3538323149 7.9064000121 13.2237277494 -13.8750613648 -6.5254138432 -24.7005855694
+ 0.0970000000 9.5639099042 0.6251782428 1.0196185859 -26.4778461764 -21.6342089397 7.7479252401 13.2014561885 -13.9799690795 -6.4854857808 -24.6921903843
+ 0.0980000000 9.5632686262 0.6253305686 1.0197575967 -26.3861453187 -21.9168486079 7.5876406271 13.1783652007 -14.0835408041 -6.4445253918 -24.6837834172
+ 0.0990000000 9.5625696768 0.6254820105 1.0198985572 -26.2926030417 -22.2017214576 7.4255640700 13.1544628193 -14.1857565755 -6.4025674357 -24.6753582462
+ 0.1000000000 9.5618039597 0.6256325294 1.0200414194 -26.1972130224 -22.4887978898 7.2617396083 13.1297573540 -14.2865969248 -6.3596369071 -24.6669082075
+ 0.1010000000 9.5609621934 0.6257820872 1.0201861348 -26.0999693912 -22.7780487131 7.0962379328 13.1042573858 -14.3860428859 -6.3157488716 -24.6584263948
+ 0.1020000000 9.5600351392 0.6259306460 1.0203326540 -26.0008669009 -23.0694438648 6.9291311932 13.0779716827 -14.4840758728 -6.2709191613 -24.6499059498
+ 0.1030000000 9.5590138455 0.6260781672 1.0204809276 -25.8999011129 -23.3629511243 6.7604670222 13.0509090780 -14.5806775793 -6.2251739588 -24.6413403656
+ 0.1040000000 9.5578896443 0.6262246112 1.0206309061 -25.7970684274 -23.6585360817 6.5902695381 13.0230784599 -14.6758300220 -6.1785493208 -24.6327234888
+ 0.1050000000 9.5566537111 0.6263699395 1.0207825395 -25.6923657637 -23.9561647266 6.4185894388 12.9944889395 -14.7695157905 -6.1310717512 -24.6240489599
+ 0.1060000000 9.5552970647 0.6265141141 1.0209357778 -25.5857905517 -24.2558035814 6.2455040760 12.9651498349 -14.8617180323 -6.0827581782 -24.6153102198
+ 0.1070000000 9.5538108023 0.6266570972 1.0210905707 -25.4773409023 -24.5574183690 6.0710916404 12.9350705736 -14.9524203328 -6.0336263606 -24.6065008069
+ 0.1080000000 9.5521863222 0.6267988498 1.0212468685 -25.3670157758 -24.8609727446 5.8954059105 12.9042606014 -15.0416067131 -5.9837037460 -24.5976146409
+ 0.1090000000 9.5504153154 0.6269393317 1.0214046216 -25.2548150027 -25.1664282818 5.7184776167 12.8727293830 -15.1292616880 -5.9330268711 -24.5886460167
+ 0.1100000000 9.5484893585 0.6270785036 1.0215637808 -25.1407389782 -25.4737470608 5.5403638061 12.8404865386 -15.2153703640 -5.8816231911 -24.5795890672
+ 0.1110000000 9.5463999244 0.6272163268 1.0217242968 -25.0247886503 -25.7828917910 5.3611474485 12.8075418211 -15.2999184055 -5.8295111259 -24.5704377755
+ 0.1120000000 9.5441386096 0.6273527625 1.0218861210 -24.9069656813 -26.0938244640 5.1809116454 12.7739050295 -15.3828919770 -5.7767098305 -24.5611862638
+ 0.1130000000 9.5416973198 0.6274877706 1.0220492053 -24.7872725915 -26.4065051203 4.9997160266 12.7395859659 -15.4642778445 -5.7232473836 -24.5518290429
+ 0.1140000000 9.5390682651 0.6276213101 1.0222135025 -24.6657127721 -26.7208918486 4.8175982904 12.7045944444 -15.5440634351 -5.6691601686 -24.5423610016
+ 0.1150000000 9.5362436153 0.6277533407 1.0223789656 -24.5422902073 -27.0369433281 4.6346210669 12.6689403556 -15.6222367339 -5.6144760456 -24.5327769205
+ 0.1160000000 9.5332155082 0.6278838231 1.0225455482 -24.4170094527 -27.3546189360 4.4508718786 12.6326336604 -15.6987862545 -5.5592143805 -24.5230714732
+ 0.1170000000 9.5299762505 0.6280127182 1.0227132047 -24.2898757798 -27.6738774199 4.2664382451 12.5956843355 -15.7737010816 -5.5033950354 -24.5132394922
+ 0.1180000000 9.5265184975 0.6281399856 1.0228818902 -24.1608953046 -27.9946757160 4.0813841036 12.5581023365 -15.8469710252 -5.4470461304 -24.5032762169
+ 0.1190000000 9.5228352186 0.6282655844 1.0230515607 -24.0300749876 -28.3169689340 3.8957537628 12.5198976580 -15.9185866854 -5.3902034777 -24.4931772401
+ 0.1200000000 9.5189194049 0.6283894747 1.0232221728 -23.8974223828 -28.6407128328 3.7096162896 12.4810803380 -15.9885391884 -5.3328948183 -24.4829380664
+ 0.1210000000 9.5147641353 0.6285116183 1.0233936837 -23.7629456217 -28.9658639515 3.5230614224 12.4416603719 -16.0568201326 -5.2751398103 -24.4725541793
+ 0.1220000000 9.5103627129 0.6286319775 1.0235660513 -23.6266535321 -29.2923782940 3.3361782988 12.4016477471 -16.1234217505 -5.2169583062 -24.4620212385
+ 0.1230000000 9.5057087739 0.6287505136 1.0237392344 -23.4885557433 -29.6202101601 3.1490368270 12.3610525030 -16.1883371059 -5.1583779355 -24.4513352475
+ 0.1240000000 9.5007963194 0.6288671881 1.0239131927 -23.3486626965 -29.9493121710 2.9616872435 12.3198846941 -16.2515600918 -5.0994337139 -24.4404925774
+ 0.1250000000 9.4956194774 0.6289819639 1.0240878865 -23.2069854210 -30.2796376832 2.7742009131 12.2781543205 -16.3130850818 -5.0401528585 -24.4294895839
+ 0.1260000000 9.4901724998 0.6290948060 1.0242632765 -23.0635354999 -30.6111408686 2.5866702504 12.2358713424 -16.3729069379 -4.9805546188 -24.4183225927
+ 0.1270000000 9.4844499059 0.6292056804 1.0244393240 -22.9183251798 -30.9437754595 2.3991864727 12.1930456962 -16.4310212092 -4.9206581253 -24.4069881148
+ 0.1280000000 9.4784465913 0.6293145528 1.0246159912 -22.7713674725 -31.2774936290 2.2118219122 12.1496873434 -16.4874242781 -4.8604901365 -24.3954830161
+ 0.1290000000 9.4721578298 0.6294213892 1.0247932413 -22.6226761611 -31.6122460004 2.0246313370 12.1058062691 -16.5421133497 -4.8000847932 -24.3838045096
+ 0.1300000000 9.4655790722 0.6295261576 1.0249710375 -22.4722655937 -31.9479839994 1.8376886313 12.0614123567 -16.5950861219 -4.7394684309 -24.3719498221
+ 0.1310000000 9.4587059436 0.6296288284 1.0251493441 -22.3201506539 -32.2846599434 1.6510865522 12.0165153935 -16.6463408050 -4.6786592774 -24.3599161879
+ 0.1320000000 9.4515343570 0.6297293734 1.0253281256 -22.1663468584 -32.6222258129 1.4649167673 11.9711251216 -16.6958763306 -4.6176751550 -24.3477010321
+ 0.1330000000 9.4440606107 0.6298277642 1.0255073473 -22.0108704491 -32.9606321607 1.2792532137 11.9252512904 -16.7436924248 -4.5565416603 -24.3353021278
+ 0.1340000000 9.4362813938 0.6299239734 1.0256869754 -21.8537383995 -33.2998281399 1.0941531462 11.8789036397 -16.7897895753 -4.4952920734 -24.3227175985
+ 0.1350000000 9.4281935916 0.6300179753 1.0258669765 -21.6949682230 -33.6397637785 0.9096912495 11.8320917620 -16.8341688070 -4.4339515828 -24.3099456040
+ 0.1360000000 9.4197942765 0.6301097471 1.0260473177 -21.5345779462 -33.9803900533 0.7259595010 11.7848251097 -16.8768317121 -4.3725368611 -24.2969843326
+ 0.1370000000 9.4110808081 0.6301992668 1.0262279665 -21.3725861984 -34.3216576941 0.5430486962 11.7371130563 -16.9177806100 -4.3110639699 -24.2838321691
+ 0.1380000000 9.4020509271 0.6302865131 1.0264088912 -21.2090122925 -34.6635161644 0.3610327432 11.6889649387 -16.9570185414 -4.2495571303 -24.2704878507
+ 0.1390000000 9.3927027573 0.6303714652 1.0265900612 -21.0438762280 -35.0059137028 0.1799695732 11.6403900353 -16.9945492268 -4.1880487314 -24.2569504696
+ 0.1400000000 9.3830346132 0.6304541043 1.0267714458 -20.8771985164 -35.3487994774 -0.0000668120 11.5913974362 -17.0303769803 -4.1265625604 -24.2432191686
+ 0.1410000000 9.3730449893 0.6305344138 1.0269530152 -20.7090001548 -35.6921236403 -0.1789864954 11.5419960496 -17.0645067383 -4.0651133063 -24.2292931324
+ 0.1420000000 9.3627326551 0.6306123784 1.0271347402 -20.5393027068 -36.0358361799 -0.3567010313 11.4921946598 -17.0969441408 -4.0037149421 -24.2151717501
+ 0.1430000000 9.3520967407 0.6306879830 1.0273165922 -20.3681283678 -36.3798860052 -0.5331380432 11.4420019644 -17.1276954656 -3.9423901025 -24.2008547641
+ 0.1440000000 9.3411367363 0.6307612130 1.0274985437 -20.1954999619 -36.7242210016 -0.7082403147 11.3914265536 -17.1567675877 -3.8811701168 -24.1863422714
+ 0.1450000000 9.3298523099 0.6308320557 1.0276805674 -20.0214407862 -37.0687900081 -0.8819358312 11.3404767943 -17.1841680169 -3.8200770849 -24.1716344266
+ 0.1460000000 9.3182433002 0.6309005003 1.0278626371 -19.8459745839 -37.4135428486 -1.0541381145 11.2891608350 -17.2099049148 -3.7591233786 -24.1567314338
+ 0.1470000000 9.3063098083 0.6309665369 1.0280447268 -19.6691256118 -37.7584292627 -1.2247626823 11.2374866563 -17.2339870988 -3.6983206528 -24.1416337065
+ 0.1480000000 9.2940522677 0.6310301561 1.0282268119 -19.4909186877 -38.1033981181 -1.3937399931 11.1854621137 -17.2564239417 -3.6376896878 -24.1263420016
+ 0.1490000000 9.2814714421 0.6310913485 1.0284088686 -19.3113791805 -38.4483974805 -1.5610143844 11.1330949235 -17.2772253388 -3.5772603690 -24.1108574151
+ 0.1500000000 9.2685682693 0.6311501066 1.0285908736 -19.1305328746 -38.7933763558 -1.7265169361 11.0803925522 -17.2964018240 -3.5170527517 -24.0951811027
+ 0.1510000000 9.2553438602 0.6312064245 1.0287728046 -18.9484059402 -39.1382847028 -1.8901661192 11.0273622213 -17.3139645750 -3.4570766339 -24.0793142746
+ 0.1520000000 9.2417995827 0.6312602975 1.0289546401 -18.7650249825 -39.4830724719 -2.0518830945 10.9740109557 -17.3299253594 -3.3973411915 -24.0632583462
+ 0.1530000000 9.2279371093 0.6313117206 1.0291363598 -18.5804170764 -39.8276889609 -2.2116022587 10.9203456393 -17.3442964200 -3.3378650267 -24.0470150504
+ 0.1540000000 9.2137584315 0.6313606898 1.0293179441 -18.3946098856 -40.1720828682 -2.3692700195 10.8663729990 -17.3570904416 -3.2786760196 -24.0305864290
+ 0.1550000000 9.1992657534 0.6314072030 1.0294993744 -18.2076312228 -40.5162037904 -2.5248215745 10.8120995288 -17.3683207094 -3.2197918101 -24.0139745662
+ 0.1560000000 9.1844614930 0.6314512605 1.0296806329 -18.0195090110 -40.8600022251 -2.6781818824 10.7575314996 -17.3780011079 -3.1612194988 -23.9971815825
+ 0.1570000000 9.1693483396 0.6314928634 1.0298617026 -17.8302716465 -41.2034287210 -2.8292793190 10.7026749674 -17.3861460290 -3.1029657212 -23.9802097923
+ 0.1580000000 9.1539292648 0.6315320135 1.0300425677 -17.6399478901 -41.5464333916 -2.9780531924 10.6475358541 -17.3927702531 -3.0450466015 -23.9630617874
+ 0.1590000000 9.1382075201 0.6315687130 1.0302232138 -17.4485668470 -41.8889659962 -3.1244522314 10.5921199486 -17.3978889235 -2.9874874805 -23.9457404213
+ 0.1600000000 9.1221865595 0.6316029656 1.0304036270 -17.2561578568 -42.2309771331 -3.2684167871 10.5364327723 -17.4015177220 -2.9303033209 -23.9282486068
+ 0.1610000000 9.1058700456 0.6316347768 1.0305837946 -17.0627504579 -42.5724182262 -3.4098800290 10.4804795870 -17.4036728646 -2.8734985319 -23.9105893128
+ 0.1620000000 9.0892618952 0.6316641533 1.0307637049 -16.8683744105 -42.9132408486 -3.5487788774 10.4242654607 -17.4043710006 -2.8170772268 -23.8927656763
+ 0.1630000000 9.0723662899 0.6316911024 1.0309433472 -16.6730597248 -43.2533963399 -3.6850585165 10.3677953485 -17.4036290656 -2.7610528376 -23.8747810625
+ 0.1640000000 9.0551876740 0.6317156319 1.0311227121 -16.4768366416 -43.5928358855 -3.8186708380 10.3110740936 -17.4014642527 -2.7054477393 -23.8566390485
+ 0.1650000000 9.0377307072 0.6317377516 1.0313017910 -16.2797355241 -43.9315114476 -3.9495624922 10.2541062780 -17.3978942205 -2.6502740893 -23.8383432673
+ 0.1660000000 9.0200002665 0.6317574730 1.0314805759 -16.0817868239 -44.2693757481 -4.0776761131 10.1968962313 -17.3929370941 -2.5955337310 -23.8198974047
+ 0.1670000000 9.0020014722 0.6317748087 1.0316590601 -15.8830211026 -44.6063817363 -4.2029581608 10.1394481089 -17.3866113492 -2.5412282994 -23.8013052851
+ 0.1680000000 8.9837396906 0.6317897723 1.0318372378 -15.6834690637 -44.9424823071 -4.3253607227 10.0817659711 -17.3789356258 -2.4873684734 -23.7825709129
+ 0.1690000000 8.9652205297 0.6318023785 1.0320151040 -15.4831615341 -45.2776303728 -4.4448401123 10.0238537830 -17.3699286934 -2.4339735638 -23.7636984591
+ 0.1700000000 8.9464498054 0.6318126436 1.0321926545 -15.2821293550 -45.6117795692 -4.5613505010 9.9657152582 -17.3596097222 -2.3810530014 -23.7446921441
+ 0.1710000000 8.9274335356 0.6318205854 1.0323698858 -15.0804033535 -45.9448842398 -4.6748449600 9.9073538680 -17.3479982907 -2.3286062544 -23.7255562352
+ 0.1720000000 8.9081779529 0.6318262232 1.0325467951 -14.8780143692 -46.2768990307 -4.7852801154 9.8487729255 -17.3351142427 -2.2766325955 -23.7062951077
+ 0.1730000000 8.8886895071 0.6318295773 1.0327233802 -14.6749932864 -46.6077786849 -4.8926160475 9.7899756553 -17.3209774473 -2.2251400957 -23.6869132774
+ 0.1740000000 8.8689748585 0.6318306690 1.0328996400 -14.4713710197 -46.9374781031 -4.9968152339 9.7309651872 -17.3056077603 -2.1741452402 -23.6674153904
+ 0.1750000000 8.8490408396 0.6318295213 1.0330755735 -14.2671784030 -47.2659528731 -5.0978405981 9.6717444108 -17.2890253892 -2.1236549968 -23.6478061335
+ 0.1760000000 8.8288944428 0.6318261584 1.0332511803 -14.0624461713 -47.5931592554 -5.1956562082 9.6123159823 -17.2712509044 -2.0736666933 -23.6280902301
+ 0.1770000000 8.8085428277 0.6318206055 1.0334264604 -13.8572049926 -47.9190538827 -5.2902291765 9.5526824056 -17.2523050515 -2.0241774212 -23.6082724851
+ 0.1780000000 8.7879933286 0.6318128891 1.0336014144 -13.6514854966 -48.2435936105 -5.3815286209 9.4928460875 -17.2322084581 -1.9751929423 -23.5883578149
+ 0.1790000000 8.7672534450 0.6318030366 1.0337760432 -13.4453182598 -48.5667355662 -5.4695251060 9.4328093271 -17.2109815961 -1.9267273664 -23.5683512419
+ 0.1800000000 8.7463307918 0.6317910764 1.0339503479 -13.2387337004 -48.8884375385 -5.5541916158 9.3725741905 -17.1886452507 -1.8787855327 -23.5482578179
+ 0.1810000000 8.7252330799 0.6317770377 1.0341243299 -13.0317620742 -49.2086579775 -5.6355032821 9.3121425217 -17.1652205328 -1.8313628401 -23.5280826158
+ 0.1820000000 8.7039681219 0.6317609507 1.0342979909 -12.8244335176 -49.5273557869 -5.7134367227 9.2515160166 -17.1407286372 -1.7844544189 -23.5078307616
+ 0.1830000000 8.6825438653 0.6317428462 1.0344713327 -12.6167780192 -49.8444901428 -5.7879727735 9.1906962364 -17.1151904980 -1.7380640581 -23.4875074917
+ 0.1840000000 8.6609683715 0.6317227558 1.0346443573 -12.4088254270 -50.1600205642 -5.8590944710 9.1296846082 -17.0886267645 -1.6922039083 -23.4671181370
+ 0.1850000000 8.6392496841 0.6317007116 1.0348170667 -12.2006055458 -50.4739074918 -5.9267741886 9.0684824252 -17.0610584039 -1.6468768611 -23.4466679537
+ 0.1860000000 8.6173959408 0.6316767461 1.0349894627 -11.9921477662 -50.7861117351 -5.9910024363 9.0070906744 -17.0325066212 -1.6020765776 -23.4261623000
+ 0.1870000000 8.5954155473 0.6316508917 1.0351615485 -11.7834806336 -51.0965935997 -6.0518212411 8.9455098974 -17.0029924650 -1.5577968277 -23.4056068680
+ 0.1876463858 8.5811441098 0.6316331903 1.0352726181 -11.6485037255 -51.2963506749 -6.0892909163 8.9056048496 -16.9834127184 -1.5294521590 -23.3922960529
+ 0.1880000000 8.5733164029 0.6316231818 1.0353333254 -11.5746342997 -51.4053163936 -6.1091391514 8.8837412659 -16.9725369967 -1.5140389108 -23.3850066282
+ 0.1886463858 8.5589720954 0.6316042995 1.0354441943 -11.4395585788 -51.6039186716 -6.1442209208 8.8437157619 -16.9523600070 -1.4860363965 -23.3716691054
+ 0.1890000000 8.5511058368 0.6315936512 1.0355047907 -11.3656406546 -51.7122466483 -6.1627296308 8.8217865236 -16.9411612343 -1.4708122787 -23.3643658893
+ 0.1895886704 8.5379824921 0.6315754297 1.0356055803 -11.2425543962 -51.8920732713 -6.1925794122 8.7852284400 -16.9222691334 -1.4456155564 -23.3521989017
+ 0.1900000000 8.5287926460 0.6315623336 1.0356759419 -11.1565261377 -52.0173436300 -6.2127654408 8.7596450116 -16.9088854228 -1.4281189463 -23.3436912838
+ 0.1905886704 8.5156132757 0.6315430755 1.0357765459 -11.0333798557 -52.1960705021 -6.2406892672 8.7229761515 -16.8894728520 -1.4032336633 -23.3315079311
+ 0.1910000000 8.5063860017 0.6315292617 1.0358467776 -10.9473151947 -52.3205645325 -6.2595521302 8.6973152073 -16.8757297217 -1.3859527654 -23.3229901551
+ 0.1915886704 8.4931552457 0.6315089862 1.0359471955 -10.8241257675 -52.4981707985 -6.2855373662 8.6605356198 -16.8558089952 -1.3613740324 -23.3107936754
+ 0.1920000000 8.4838934055 0.6314944685 1.0360172967 -10.7380378548 -52.6218762518 -6.3029662336 8.6347976731 -16.8417152685 -1.3443049581 -23.3022674530
+ 0.1925886704 8.4706154532 0.6314731949 1.0361175292 -10.6148237712 -52.7983442204 -6.3268711290 8.5979079622 -16.8212988427 -1.3200295220 -23.2900603955
+ 0.1930000000 8.4613223031 0.6314579862 1.0361875018 -10.5287243457 -52.9212470866 -6.3428471375 8.5720930113 -16.8068628391 -1.3031746161 -23.2815279551
+ 0.1938717422 8.4415884957 0.6314248294 1.0363356242 -10.3462485999 -53.1806099408 -6.3747635970 8.5172776380 -16.7758123220 -1.2677487261 -23.2634393586
+ 0.1940000000 8.4386809216 0.6314198460 1.0363573975 -10.3194017774 -53.2186413156 -6.3792380054 8.5092006947 -16.7711922396 -1.2625706402 -23.2607775578
+ 0.1950000000 8.4159773678 0.6313800791 1.0365269874 -10.1100971996 -53.5140241255 -6.4121661231 8.4461201112 -16.7347235070 -1.2224921410 -23.2400220222
+ 0.1960000000 8.3932195742 0.6313387164 1.0366962744 -9.9008378364 -53.8073621153 -6.4416244245 8.3828506571 -16.6974768906 -1.1829295658 -23.2192668827
+ 0.1970000000 8.3704154866 0.6312957884 1.0368652616 -9.6916503678 -54.0986221607 -6.4676210426 8.3193915372 -16.6594724145 -1.1438735008 -23.1985177319
+ 0.1980000000 8.3475730416 0.6312513257 1.0370339515 -9.4825610631 -54.3877715891 -6.4901704951 8.2557418064 -16.6207295806 -1.1053224086 -23.1777802087
+ 0.1990000000 8.3247001339 0.6312053583 1.0372023460 -9.2735958852 -54.6747783656 -6.5092857509 8.1919004028 -16.5812673844 -1.0672820898 -23.1570599514
+ 0.2000000000 8.3018045861 0.6311579161 1.0373704469 -9.0647803927 -54.9596110413 -6.5249819836 8.1278661325 -16.5411048977 -1.0297499573 -23.1363625385
+ 0.2010000000 8.2788941456 0.6311090283 1.0375382559 -8.8561397206 -55.2422387415 -6.5372770861 8.0636376794 -16.5002612557 -0.9927151662 -23.1156934873
+ 0.2020000000 8.2559764963 0.6310587241 1.0377057742 -8.6476985987 -55.5226311728 -6.5461907168 7.9992136192 -16.4587553268 -0.9561670938 -23.0950582868
+ 0.2030000000 8.2330592679 0.6310070321 1.0378730025 -8.4394813528 -55.8007586075 -6.5517444860 7.9345924103 -16.4166054136 -0.9201023799 -23.0744624259
+ 0.2040000000 8.2101500306 0.6309539807 1.0380399410 -8.2315118922 -56.0765918826 -6.5539620795 7.8697723953 -16.3738292545 -0.8845244174 -23.0539113854
+ 0.2050000000 8.1872562571 0.6308995979 1.0382065897 -8.0238136699 -56.3501024316 -6.5528690820 7.8047518258 -16.3304445885 -0.8494288907 -23.0334105682
+ 0.2060000000 8.1643853202 0.6308439112 1.0383729482 -7.8164096733 -56.6212622849 -6.5484929437 7.7395288749 -16.2864691498 -0.8148038653 -23.0129652970
+ 0.2070000000 8.1415445056 0.6307869478 1.0385390161 -7.6093224324 -56.8900440530 -6.5408630160 7.6741016347 -16.2419203571 -0.7806375687 -22.9925808477
+ 0.2080000000 8.1187410196 0.6307287344 1.0387047920 -7.4025740275 -57.1564209144 -6.5300105452 7.6084680972 -16.1968150132 -0.7469250068 -22.9722624744
+ 0.2090000000 8.0959819846 0.6306692977 1.0388702738 -7.1961860808 -57.4203666174 -6.5159686333 7.5426261576 -16.1511693038 -0.7136675569 -22.9520154020
+ 0.2100000000 8.0732744056 0.6306086637 1.0390354593 -6.9901797159 -57.6818555063 -6.4987721464 7.4765736601 -16.1049993600 -0.6808595299 -22.9318447650
+ 0.2110000000 8.0506251677 0.6305468581 1.0392003460 -6.7845755506 -57.9408625207 -6.4784576821 7.4103084094 -16.0583212642 -0.6484880983 -22.9117556044
+ 0.2120000000 8.0280410468 0.6304839062 1.0393649312 -6.5793937087 -58.1973631800 -6.4550635683 7.3438281571 -16.0111507531 -0.6165403719 -22.8917528984
+ 0.2130000000 8.0055287184 0.6304198330 1.0395292109 -6.3746538329 -58.4513335696 -6.4286298485 7.2771305725 -15.9635028951 -0.5850101100 -22.8718415865
+ 0.2140000000 7.9830947533 0.6303546632 1.0396931805 -6.1703750782 -58.7027503415 -6.3991982399 7.2102132468 -15.9153920828 -0.5538975128 -22.8520265639
+ 0.2150000000 7.9607455854 0.6302884212 1.0398568349 -5.9665760712 -58.9515907390 -6.3668120438 7.1430737576 -15.8668326324 -0.5231960208 -22.8323126249
+ 0.2160000000 7.9384875086 0.6302211308 1.0400201691 -5.7632749056 -59.1978325957 -6.3315161049 7.0757096787 -15.8178388002 -0.4928920309 -22.8127044597
+ 0.2170000000 7.9163266869 0.6301528154 1.0401831775 -5.5604891571 -59.4414543196 -6.2933567953 7.0081185566 -15.7684244807 -0.4629716154 -22.7932066820
+ 0.2180000000 7.8942691647 0.6300834982 1.0403458534 -5.3582359016 -59.6824348778 -6.2523819930 6.9402978731 -15.7186028463 -0.4334278143 -22.7738238558
+ 0.2190000000 7.8723208638 0.6300132023 1.0405081889 -5.1565317117 -59.9207537958 -6.2086410348 6.8722450503 -15.6683863379 -0.4042606251 -22.7545604915
+ 0.2200000000 7.8504875448 0.6299419499 1.0406701759 -4.9553925966 -60.1563911940 -6.1621846085 6.8039575348 -15.6177873344 -0.3754631209 -22.7354209864
+ 0.2210000000 7.8287748052 0.6298697629 1.0408318066 -4.7548340421 -60.3893277664 -6.1130647374 6.7354327957 -15.5668181722 -0.3470210002 -22.7164096279
+ 0.2220000000 7.8071880935 0.6297966627 1.0409930722 -4.5548710269 -60.6195447631 -6.0613347544 6.6666682926 -15.5154908167 -0.3189194732 -22.6975306201
+ 0.2230000000 7.7857327193 0.6297226702 1.0411539628 -4.3555180043 -60.8470239929 -6.0070492435 6.5976614436 -15.4638164692 -0.2911513703 -22.6787881080
+ 0.2240000000 7.7644138549 0.6296478063 1.0413144676 -4.1567889205 -61.0717478097 -5.9502640050 6.5284096272 -15.4118055586 -0.2637172376 -22.6601861775
+ 0.2250000000 7.7432364971 0.6295720910 1.0414745754 -3.9586971674 -61.2936991411 -5.8910359580 6.4589102761 -15.3594684852 -0.2366101362 -22.6417287925
+ 0.2260000000 7.7222054651 0.6294955441 1.0416342753 -3.7612555823 -61.5128614862 -5.8294230857 6.3891608861 -15.3068156434 -0.2098151553 -22.6234197910
+ 0.2270000000 7.7013254137 0.6294181845 1.0417935558 -3.5644764737 -61.7292188971 -5.7654844050 6.3191589744 -15.2538570534 -0.1833169335 -22.6052629157
+ 0.2280000000 7.6806008510 0.6293400311 1.0419524042 -3.3683716509 -61.9427559574 -5.6992799401 6.2489020321 -15.2006019466 -0.1571084387 -22.5872618495
+ 0.2290000000 7.6600361367 0.6292611022 1.0421108069 -3.1729524257 -62.1534577798 -5.6308706669 6.1783875328 -15.1470587675 -0.1311910270 -22.5694202132
+ 0.2300000000 7.6396354407 0.6291814155 1.0422687501 -2.9782295605 -62.3613100376 -5.5603184071 6.1076130362 -15.0932359744 -0.1055578869 -22.5517414956
+ 0.2310000000 7.6194027427 0.6291009880 1.0424262206 -2.7842132708 -62.5662989617 -5.4876857716 6.0365761957 -15.0391420556 -0.0801936681 -22.5342290506
+ 0.2320000000 7.5993418501 0.6290198362 1.0425832045 -2.5909132575 -62.7684113189 -5.4130361282 5.9652747105 -14.9847851262 -0.0550828256 -22.5168861317
+ 0.2330000000 7.5794564169 0.6289379761 1.0427396872 -2.3983387413 -62.9676343882 -5.3364335730 5.8937062764 -14.9301725184 -0.0302186090 -22.4997159312
+ 0.2340000000 7.5597499443 0.6288554232 1.0428956531 -2.2064984664 -63.1639559579 -5.2579428722 5.8218685955 -14.8753107947 -0.0056029553 -22.4827215774
+ 0.2350000000 7.5402257376 0.6287721923 1.0430510868 -2.0154006453 -63.3573643596 -5.1776293514 5.7497594853 -14.8202065662 0.0187708114 -22.4659060597
+ 0.2360000000 7.5208869077 0.6286882975 1.0432059735 -1.8250529642 -63.5478484634 -5.0955588368 5.6773768853 -14.7648665010 0.0429181621 -22.4492722261
+ 0.2370000000 7.5017363927 0.6286037522 1.0433602980 -1.6354626215 -63.7353976540 -5.0117976237 5.6047188045 -14.7092969042 0.0668544280 -22.4328228235
+ 0.2380000000 7.4827769787 0.6285185693 1.0435140445 -1.4466363660 -63.9200018051 -4.9264124452 5.5317832722 -14.6535033330 0.0905860767 -22.4165605365
+ 0.2390000000 7.4640113012 0.6284327612 1.0436671965 -1.2585805015 -64.1016512767 -4.8394704122 5.4585683483 -14.5974906208 0.1141110106 -22.4004879855
+ 0.2400000000 7.4454418021 0.6283463396 1.0438197380 -1.0713008316 -64.2803369487 -4.7510389022 5.3850722332 -14.5412636716 0.1374357648 -22.3846076491
+ 0.2410000000 7.4270707335 0.6282593153 1.0439716534 -0.8848026675 -64.4560502163 -4.6611855003 5.3112932729 -14.4848274641 0.1605755313 -22.3689218640
+ 0.2420000000 7.4089001807 0.6281716985 1.0441229273 -0.6990908705 -64.6287829629 -4.5699779677 5.2372299041 -14.4281866385 0.1835450917 -22.3534328667
+ 0.2430000000 7.3909320848 0.6280834991 1.0442735435 -0.5141698929 -64.7985275352 -4.4774842093 5.1628806067 -14.3713451445 0.2063506186 -22.3381428332
+ 0.2440000000 7.3731682440 0.6279947263 1.0444234855 -0.3300437841 -64.9652767388 -4.3837722142 5.0882439143 -14.3143062711 0.2289900964 -22.3230538767
+ 0.2450000000 7.3556102718 0.6279053886 1.0445727372 -0.1467161360 -65.1290238728 -4.2889099471 5.0133185201 -14.2570733947 0.2514697837 -22.3081679718
+ 0.2460000000 7.3382596014 0.6278154937 1.0447212833 0.0358099075 -65.2897627232 -4.1929652899 4.9381032805 -14.1996499817 0.2738041780 -22.2934869538
+ 0.2470000000 7.3211175093 0.6277250490 1.0448691085 0.2175316051 -65.4474875363 -4.0960060113 4.8625971615 -14.1420392016 0.2960072565 -22.2790125618
+ 0.2480000000 7.3041851392 0.6276340611 1.0450161970 0.3984465759 -65.6021929926 -3.9980997362 4.7867991921 -14.0842436023 0.3180847569 -22.2647464790
+ 0.2490000000 7.2874635045 0.6275425364 1.0451625327 0.5785527905 -65.7538742012 -3.8993138883 4.7107084741 -14.0262651417 0.3400346130 -22.2506903316
+ 0.2500000000 7.2709534455 0.6274504804 1.0453081000 0.7578486263 -65.9025267351 -3.7997155849 4.6343242825 -13.9681058858 0.3618625280 -22.2368456129
+ 0.2510000000 7.2546556326 0.6273578982 1.0454528840 0.9363328560 -66.0481466246 -3.6993715812 4.5576460687 -13.9097680154 0.3835819786 -22.2232136830
+ 0.2520000000 7.2385705918 0.6272647942 1.0455968699 1.1140046022 -66.1907303302 -3.5983482422 4.4806734080 -13.8512534696 0.4052059566 -22.2097958119
+ 0.2530000000 7.2226987304 0.6271711726 1.0457400425 1.2908632908 -66.3302747145 -3.4967115161 4.4034059548 -13.7925636389 0.4267395064 -22.1965932222
+ 0.2540000000 7.2070403405 0.6270770370 1.0458823862 1.4669086405 -66.4667770364 -3.3945268823 4.3258434502 -13.7336993954 0.4481800932 -22.1836070894
+ 0.2550000000 7.1915955527 0.6269823905 1.0460238861 1.6421407206 -66.6002349873 -3.2918592481 4.2479858186 -13.6746617539 0.4695325393 -22.1708384637
+ 0.2560000000 7.1763643382 0.6268872356 1.0461645278 1.8165599391 -66.7306466860 -3.1887728968 4.1698331696 -13.6154518827 0.4908091082 -22.1582882692
+ 0.2570000000 7.1613465361 0.6267915744 1.0463042969 1.9901669959 -66.8580106499 -3.0853314638 4.0913857478 -13.5560707712 0.5120216702 -22.1459573477
+ 0.2580000000 7.1465418833 0.6266954087 1.0464431788 2.1629628307 -66.9823257642 -2.9815979183 4.0126438879 -13.4965189346 0.5331742891 -22.1338465059
+ 0.2590000000 7.1319500184 0.6265987398 1.0465811585 2.3349486120 -67.1035912749 -2.8776345156 3.9336080209 -13.4367964418 0.5542635113 -22.1219565172
+ 0.2600000000 7.1175704291 0.6265015685 1.0467182218 2.5061257997 -67.2218068303 -2.7735026953 3.8542787676 -13.3769035515 0.5752930468 -22.1102880364
+ 0.2610000000 7.1034024541 0.6264038953 1.0468543545 2.6764961343 -67.3369724745 -2.6692630349 3.7746569408 -13.3168407249 0.5962738896 -22.0988415990
+ 0.2620000000 7.0894453137 0.6263057199 1.0469895429 2.8460615857 -67.4490886179 -2.5649752327 3.6947434955 -13.2566083072 0.6172166675 -22.0876176678
+ 0.2630000000 7.0756981436 0.6262070421 1.0471237727 3.0148242971 -67.5581560019 -2.4606980976 3.6145394832 -13.1962062445 0.6381242837 -22.0766166848
+ 0.2640000000 7.0621599993 0.6261078610 1.0472570298 3.1827865733 -67.6641756930 -2.3564895076 3.5340460569 -13.1356341117 0.6589921879 -22.0658390726
+ 0.2650000000 7.0488297960 0.6260081756 1.0473893002 3.3499509510 -67.7671491279 -2.2524063099 3.4532645641 -13.0748917248 0.6798229245 -22.0552851416
+ 0.2660000000 7.0357063118 0.6259079840 1.0475205705 3.5163201884 -67.8670781080 -2.1485042802 3.3721965484 -13.0139791506 0.7006262185 -22.0449550890
+ 0.2670000000 7.0227882214 0.6258072843 1.0476508273 3.6818972085 -67.9639647657 -2.0448381157 3.2908436988 -12.9528963981 0.7214113615 -22.0348490497
+ 0.2680000000 7.0100741332 0.6257060740 1.0477800571 3.8466850415 -68.0578115281 -1.9414614321 3.2092078039 -12.8916431552 0.7421800861 -22.0249671511
+ 0.2690000000 6.9975625939 0.6256043505 1.0479082464 4.0106868118 -68.1486211100 -1.8384267288 3.1272907561 -12.8302188178 0.7629268822 -22.0153095137
+ 0.2700000000 6.9852520226 0.6255021107 1.0480353819 4.1739058168 -68.2363965643 -1.7357852928 3.0450946440 -12.7686230663 0.7836532143 -22.0058761515
+ 0.2710000000 6.9731407145 0.6253993509 1.0481614508 4.3363455158 -68.3211412747 -1.6335871663 2.9626217531 -12.7068558714 0.8043675355 -21.9966669711
+ 0.2720000000 6.9612268786 0.6252960674 1.0482864405 4.4980094702 -68.4028589201 -1.5318811485 2.8798745142 -12.6449171982 0.8250777652 -21.9876818270
+ 0.2730000000 6.9495086763 0.6251922558 1.0484103382 4.6589012832 -68.4815534367 -1.4307148001 2.7968554577 -12.5828067698 0.8457845858 -21.9789205768
+ 0.2740000000 6.9379842253 0.6250879118 1.0485331313 4.8190245887 -68.5572290116 -1.3301344157 2.7135672176 -12.5205240979 0.8664818187 -21.9703830811
+ 0.2750000000 6.9266515312 0.6249830305 1.0486548074 4.9783831349 -68.6298901348 -1.2301849346 2.6300126216 -12.4580690086 0.8871699789 -21.9620691001
+ 0.2760000000 6.9155084913 0.6248776067 1.0487753546 5.1369807734 -68.6995415915 -1.1309099168 2.5461946911 -12.3954416448 0.9078562345 -21.9539782928
+ 0.2770000000 6.9045529350 0.6247716349 1.0488947610 5.2948213973 -68.7661884247 -1.0323515531 2.4621165895 -12.3326421921 0.9285471666 -21.9461102743
+ 0.2780000000 6.8937826630 0.6246651094 1.0490130149 5.4519088795 -68.8298358963 -0.9345506777 2.3777815765 -12.2696706704 0.9492425422 -21.9384646719
+ 0.2790000000 6.8831954511 0.6245580242 1.0491301047 5.6082470625 -68.8904894809 -0.8375467477 2.2931930108 -12.2065269621 0.9699357121 -21.9310411248
+ 0.2800000000 6.8727889807 0.6244503733 1.0492460191 5.7638398459 -68.9481549176 -0.7413777636 2.2083544380 -12.1432112820 0.9906263007 -21.9238391778
+ 0.2810000000 6.8625608422 0.6243421501 1.0493607471 5.9186911761 -69.0028382031 -0.6460802533 2.1232695898 -12.0797241790 1.0113201813 -21.9168582812
+ 0.2820000000 6.8525085762 0.6242333479 1.0494742779 6.0728049836 -69.0545455522 -0.5516892908 2.0379423329 -12.0160662905 1.0320227024 -21.9100978483
+ 0.2830000000 6.8426297150 0.6241239600 1.0495866007 6.2261851190 -69.1032833582 -0.4582385165 1.9523766212 -11.9522381529 1.0527327777 -21.9035573133
+ 0.2840000000 6.8329217871 0.6240139795 1.0496977052 6.3788353430 -69.1490581850 -0.3657601266 1.8665764981 -11.8882402247 1.0734432341 -21.8972361320
+ 0.2850000000 6.8233822442 0.6239033993 1.0498075811 6.5307594185 -69.1918768206 -0.2742848021 1.7805461816 -11.8240733093 1.0941527804 -21.8911336722
+ 0.2860000000 6.8140084645 0.6237922122 1.0499162183 6.6819611025 -69.2317462702 -0.1838417012 1.6942900645 -11.7597385579 1.1148660593 -21.8852492120
+ 0.2870000000 6.8047977946 0.6236804110 1.0500236072 6.8324440820 -69.2686737156 -0.0944584867 1.6078126625 -11.6952372522 1.1355873358 -21.8795819992
+ 0.2880000000 6.7957475954 0.6235679884 1.0501297381 6.9822119052 -69.3026664719 -0.0061613564 1.5211185631 -11.6305706191 1.1563146556 -21.8741313131
+ 0.2890000000 6.7868552465 0.6234549370 1.0502346017 7.1312679715 -69.3337319790 0.0810249583 1.4342124252 -11.5657398484 1.1770400968 -21.8688964663
+ 0.2900000000 6.7781180679 0.6233412496 1.0503381888 7.2796156324 -69.3618778587 0.1670772560 1.3470990668 -11.5007464868 1.1977614013 -21.8638766879
+ 0.2910000000 6.7695333218 0.6232269188 1.0504404905 7.4272581857 -69.3871119073 0.2519738647 1.2597834656 -11.4355924448 1.2184821275 -21.8590711214
+ 0.2920000000 6.7610982564 0.6231119373 1.0505414979 7.5741988087 -69.4094420538 0.3356946057 1.1722707050 -11.3702797951 1.2392056313 -21.8544788850
+ 0.2930000000 6.7528101579 0.6229962979 1.0506412026 7.7204404831 -69.4288763118 0.4182207522 1.0845659175 -11.3048105838 1.2599290655 -21.8500991420
+ 0.2940000000 6.7446663555 0.6228799935 1.0507395963 7.8659859845 -69.4454227702 0.4995350212 0.9966742813 -11.2391868407 1.2806435374 -21.8459311019
+ 0.2950000000 6.7366641322 0.6227630171 1.0508366711 8.0108379980 -69.4590896564 0.5796216336 0.9086011167 -11.1734109668 1.3013458494 -21.8419738928
+ 0.2960000000 6.7288007257 0.6226453618 1.0509324188 8.1549991142 -69.4698853301 0.6584663050 0.8203518857 -11.1074857420 1.3220387113 -21.8382265573
+ 0.2970000000 6.7210733769 0.6225270206 1.0510268319 8.2984717584 -69.4778182370 0.7360562001 0.7319321345 -11.0414141272 1.3427247373 -21.8346881189
+ 0.2980000000 6.7134793868 0.6224079871 1.0511199028 8.4412581075 -69.4828968571 0.8123798803 0.6433474295 -10.9751990683 1.3634002432 -21.8313576589
+ 0.2990000000 6.7060161225 0.6222882547 1.0512116247 8.5833600807 -69.4851296941 0.8874272888 0.5546033528 -10.9088435016 1.3840553634 -21.8282343181
+ 0.3000000000 6.6986809147 0.6221678171 1.0513019905 8.7247794731 -69.4845253478 0.9611898060 0.4657056088 -10.8423507455 1.4046861074 -21.8253171545
+ 0.3010000000 6.6914710577 0.6220466683 1.0513909935 8.8655179536 -69.4810925071 1.0336602335 0.3766600251 -10.7757245061 1.4252945834 -21.8226051387
+ 0.3020000000 6.6843838632 0.6219248022 1.0514786271 9.0055769872 -69.4748399000 1.1048327382 0.2874724876 -10.7089686740 1.4458828462 -21.8200972266
+ 0.3030000000 6.6774167234 0.6218022131 1.0515648851 9.1449577464 -69.4657762377 1.1747027907 0.1981488699 -10.6420871246 1.4664465447 -21.8177924436
+ 0.3040000000 6.6705671151 0.6216788957 1.0516497618 9.2836611032 -69.4539102043 1.2432671430 0.1086950281 -10.5750837212 1.4869750447 -21.8156898858
+ 0.3050000000 6.6638324852 0.6215548446 1.0517332516 9.4216877813 -69.4392505377 1.3105238810 0.0191169201 -10.5079627088 1.5074637917 -21.8137885625
+ 0.3060000000 6.6572102498 0.6214300549 1.0518153487 9.5590383561 -69.4218060217 1.3764724013 -0.0705793937 -10.4407287165 1.5279145219 -21.8120873911
+ 0.3070000000 6.6506978536 0.6213045216 1.0518960479 9.6957131705 -69.4015854329 1.4411133460 -0.1603878225 -10.3733865485 1.5483289317 -21.8105852777
+ 0.3080000000 6.6442928378 0.6211782403 1.0519753443 9.8317122401 -69.3785974808 1.5044485337 -0.2503023219 -10.3059409841 1.5687022427 -21.8092812069
+ 0.3090000000 6.6379928432 0.6210512069 1.0520532335 9.9670352477 -69.3528507983 1.5664809311 -0.3403169000 -10.2383967787 1.5890233453 -21.8081742417
+ 0.3100000000 6.6317954841 0.6209234172 1.0521297111 10.1016817132 -69.3243540295 1.6272147022 -0.4304254847 -10.1707590555 1.6092873624 -21.8072633532
+ 0.3110000000 6.6256983472 0.6207948676 1.0522047727 10.2356509954 -69.2931158219 1.6866551789 -0.5206219232 -10.1030333046 1.6294958597 -21.8065474150
+ 0.3120000000 6.6196990565 0.6206655547 1.0522784142 10.3689422009 -69.2591447697 1.7448087890 -0.6109000607 -10.0352251723 1.6496504029 -21.8060252904
+ 0.3130000000 6.6137953456 0.6205354753 1.0523506318 10.5015540833 -69.2224493503 1.8016829813 -0.7012538284 -9.9673402614 1.6697460176 -21.8056959283
+ 0.3140000000 6.6079850605 0.6204046267 1.0524214225 10.6334850420 -69.1830379163 1.8572861911 -0.7916772413 -9.8993841252 1.6897713260 -21.8055583616
+ 0.3150000000 6.6022660231 0.6202730066 1.0524907831 10.7647333078 -69.1409187880 1.9116278874 -0.8821642511 -9.8313626552 1.7097213024 -21.8056115242
+ 0.3160000000 6.5966360299 0.6201406128 1.0525587101 10.8952969461 -69.0961002475 1.9647185387 -0.9727087534 -9.7632820863 1.7295975264 -21.8058542456
+ 0.3170000000 6.5910929207 0.6200074435 1.0526252006 11.0251737599 -69.0485904778 2.0165695354 -1.0633046704 -9.6951487841 1.7494016749 -21.8062853445
+ 0.3180000000 6.5856346544 0.6198734974 1.0526902518 11.1543611833 -68.9983974969 2.0671931098 -1.1539460438 -9.6269690353 1.7691287406 -21.8069037303
+ 0.3190000000 6.5802593119 0.6197387735 1.0527538616 11.2828562796 -68.9455291493 2.1166022985 -1.2446270408 -9.5587490432 1.7887671299 -21.8077084024
+ 0.3200000000 6.5749649502 0.6196032711 1.0528160276 11.4106559450 -68.8899932056 2.1648109872 -1.3353417924 -9.4904953188 1.8083117868 -21.8086982546
+ 0.3210000000 6.5697495993 0.6194669901 1.0528767474 11.5377569144 -68.8317973568 2.2118338726 -1.4260843913 -9.4222146821 1.8277645132 -21.8098720683
+ 0.3220000000 6.5646113367 0.6193299304 1.0529360186 11.6641556588 -68.7709491503 2.2576863815 -1.5168489840 -9.3539140516 1.8471273444 -21.8112286112
+ 0.3230000000 6.5595483693 0.6191920928 1.0529938392 11.7898482701 -68.7074559204 2.3023845861 -1.6076298756 -9.2856002173 1.8663953529 -21.8127667479
+ 0.3240000000 6.5545590358 0.6190534783 1.0530502078 11.9148304606 -68.6413247799 2.3459451645 -1.6984215356 -9.2172798314 1.8855566858 -21.8144854386
+ 0.3250000000 6.5496416489 0.6189140884 1.0531051226 12.0390977861 -68.5725627280 2.3883854445 -1.7892184168 -9.1489598210 1.9046063565 -21.8163835287
+ 0.3260000000 6.5447944921 0.6187739248 1.0531585816 12.1626456539 -68.5011766447 2.4297233643 -1.8800149512 -9.0806473916 1.9235466285 -21.8184597411
+ 0.3270000000 6.5400158988 0.6186329899 1.0532105830 12.2854692129 -68.4271732245 2.4699773882 -1.9708056521 -9.0123498074 1.9423801110 -21.8207127827
+ 0.3280000000 6.5353043413 0.6184912865 1.0532611254 12.4075632288 -68.3505589027 2.5091664202 -2.0615852312 -8.9440741416 1.9611020544 -21.8231414629
+ 0.3290000000 6.5306584337 0.6183488180 1.0533102076 12.5289220845 -68.2713398477 2.5473097625 -2.1523486041 -8.8758272631 1.9797003530 -21.8257446933
+ 0.3300000000 6.5260767598 0.6182055881 1.0533578284 12.6495400252 -68.1895220784 2.5844271616 -2.2430906862 -8.8076162858 1.9981702337 -21.8285212599
+ 0.3310000000 6.5215578691 0.6180616009 1.0534039863 12.7694111684 -68.1051114596 2.6205387683 -2.3338063873 -8.7394485735 2.0165146672 -21.8314698153
+ 0.3320000000 6.5171003632 0.6179168613 1.0534486797 12.8885293847 -68.0181136325 2.6556650522 -2.4244907254 -8.6713315024 2.0347370203 -21.8345889935
+ 0.3330000000 6.5127029912 0.6177713743 1.0534919076 13.0068881629 -67.9285339376 2.6898267140 -2.5151389562 -8.6032721877 2.0528328662 -21.8378775379
+ 0.3340000000 6.5083646530 0.6176251458 1.0535336693 13.1244806122 -67.8363774078 2.7230446448 -2.6057465787 -8.5352774696 2.0707899943 -21.8413343004
+ 0.3350000000 6.5040842118 0.6174781819 1.0535739642 13.2412997294 -67.7416488967 2.7553399752 -2.6963091052 -8.4673544052 2.0886040411 -21.8449579967
+ 0.3360000000 6.4998604905 0.6173304894 1.0536127909 13.3573384112 -67.6443530746 2.7867340360 -2.7868220565 -8.3995102736 2.1062788876 -21.8487471980
+ 0.3370000000 6.4956923649 0.6171820752 1.0536501486 13.4725893240 -67.5444943563 2.8172482726 -2.8772810871 -8.3317523148 2.1238187976 -21.8527004555
+ 0.3380000000 6.4915788663 0.6170329472 1.0536860367 13.5870447598 -67.4420768205 2.8469041583 -2.9676821273 -8.2640874379 2.1412198485 -21.8568164365
+ 0.3390000000 6.4875191843 0.6168831136 1.0537204552 13.7006966405 -67.3371042056 2.8757231554 -3.0580213877 -8.1965222082 2.1584699851 -21.8610939242
+ 0.3400000000 6.4835124646 0.6167325830 1.0537534040 13.8135368069 -67.2295800470 2.9037267676 -3.1482951047 -8.1290633790 2.1755654711 -21.8655315549
+ 0.3410000000 6.4795578057 0.6165813645 1.0537848825 13.9255570319 -67.1195076756 2.9309365036 -3.2384995341 -8.0617178952 2.1925112402 -21.8701278105
+ 0.3420000000 6.4756543587 0.6164294677 1.0538148905 14.0367488805 -67.0068901413 2.9573737925 -3.3286310905 -7.9944926095 2.2093125493 -21.8748811522
+ 0.3430000000 6.4718014374 0.6162769028 1.0538434283 14.1471035570 -66.8917301318 2.9830598988 -3.4186864990 -7.9273939780 2.2259661725 -21.8797901647
+ 0.3440000000 6.4679985199 0.6161236804 1.0538704968 14.2566119104 -66.7740299686 3.0080158874 -3.5086627982 -7.8604280494 2.2424605194 -21.8848535545
+ 0.3450000000 6.4642450329 0.6159698117 1.0538960966 14.3652647449 -66.6537917550 3.0322626799 -3.5985570632 -7.7936010280 2.2587926666 -21.8900698724
+ 0.3460000000 6.4605403475 0.6158153081 1.0539202282 14.4730528340 -66.5310173756 3.0558210219 -3.6883663980 -7.7269192761 2.2749686616 -21.8954375060
+ 0.3470000000 6.4568838871 0.6156601817 1.0539428925 14.5799667705 -66.4057084176 3.0787114012 -3.7780880862 -7.6603890122 2.2909948125 -21.9009548211
+ 0.3480000000 6.4532752432 0.6155044449 1.0539640906 14.6859968058 -66.2778660872 3.1009539664 -3.8677197532 -7.5940159972 2.3068687467 -21.9066203140
+ 0.3490000000 6.4497141762 0.6153481107 1.0539838246 14.7911328566 -66.1474912085 3.1225684954 -3.9572593668 -7.5278055266 2.3225795826 -21.9124326089
+ 0.3500000000 6.4462003867 0.6151911928 1.0540020964 14.8953648350 -66.0145843796 3.1435744583 -4.0467049386 -7.4617630163 2.3381253332 -21.9183901658
+ 0.3510000000 6.4427335111 0.6150337049 1.0540189075 14.9986826642 -65.8791459745 3.1639909880 -4.1360545160 -7.3958940048 2.3535131682 -21.9244912725
+ 0.3520000000 6.4393132359 0.6148756613 1.0540342600 15.1010761189 -65.7411760621 3.1838368033 -4.2253063428 -7.3302038389 2.3687504605 -21.9307341948
+ 0.3530000000 6.4359394195 0.6147170768 1.0540481562 15.2025346567 -65.6006743212 3.2031301319 -4.3144590302 -7.2646973516 2.3838357905 -21.9371173344
+ 0.3540000000 6.4326120926 0.6145579667 1.0540605996 15.3030474259 -65.4576400414 3.2218886839 -4.4035115563 -7.1993788567 2.3987591626 -21.9436392265
+ 0.3550000000 6.4293312163 0.6143983470 1.0540715933 15.4026036150 -65.3120722877 3.2401297207 -4.4924629470 -7.1342527538 2.4135196026 -21.9502982336
+ 0.3560000000 6.4260966771 0.6142382335 1.0540811400 15.5011924685 -65.1639699052 3.2578700315 -4.5813122666 -7.0693235313 2.4281253826 -21.9570925380
+ 0.3570000000 6.4229084079 0.6140776428 1.0540892430 15.5988031190 -65.0133314356 3.2751258609 -4.6700587884 -7.0045954422 2.4425849207 -21.9640202985
+ 0.3580000000 6.4197665151 0.6139165919 1.0540959061 15.6954244105 -64.8601550315 3.2919128372 -4.7587021738 -6.9400721760 2.4568978063 -21.9710798155
+ 0.3590000000 6.4166712791 0.6137550984 1.0541011338 15.7910449079 -64.7044384600 3.3082459526 -4.8472424704 -6.8757568557 2.4710550554 -21.9782695274
+ 0.3600000000 6.4136228984 0.6135931801 1.0541049305 15.8856532641 -64.5461792757 3.3241396378 -4.9356797726 -6.8116526609 2.4850567523 -21.9855876923
+ 0.3610000000 6.4106214854 0.6134308552 1.0541073003 15.9792382355 -64.3853748274 3.3396077446 -5.0240142131 -6.7477628310 2.4989122352 -21.9930323804
+ 0.3620000000 6.4076671937 0.6132681422 1.0541082474 16.0717885057 -64.2220221737 3.3546634791 -5.1122461413 -6.6840903332 2.5126309249 -22.0006016389
+ 0.3630000000 6.4047603494 0.6131050602 1.0541077769 16.1632925027 -64.0561179975 3.3693193373 -5.2003763090 -6.6206375333 2.5262134620 -22.0082936607
+ 0.3640000000 6.4019014506 0.6129416286 1.0541058945 16.2537384101 -63.8876586120 3.3835870904 -5.2884058666 -6.5574061961 2.5396519985 -22.0161067813
+ 0.3650000000 6.3990909011 0.6127778672 1.0541026057 16.3431145481 -63.7166401420 3.3974778668 -5.3763360076 -6.4943981212 2.5529477081 -22.0240391500
+ 0.3660000000 6.3963290057 0.6126137960 1.0540979154 16.4314093895 -63.5430585327 3.4110021409 -5.4641679581 -6.4316151478 2.5661109482 -22.0320887231
+ 0.3670000000 6.3936161035 0.6124494352 1.0540918289 16.5186113756 -63.3669094648 3.4241696728 -5.5519031636 -6.3690588180 2.5791521246 -22.0402534351
+ 0.3680000000 6.3909527025 0.6122848056 1.0540843522 16.6047087290 -63.1881882707 3.4369894508 -5.6395434792 -6.3067300502 2.5920729641 -22.0485313709
+ 0.3690000000 6.3883394780 0.6121199284 1.0540754918 16.6896894652 -63.0068899431 3.4494696842 -5.7270911641 -6.2446291441 2.6048668195 -22.0569207626
+ 0.3700000000 6.3857769985 0.6119548248 1.0540652540 16.7735417856 -62.8230093231 3.4616178911 -5.8145485111 -6.1827564229 2.6175359534 -22.0654196531
+ 0.3710000000 6.3832657208 0.6117895163 1.0540536444 16.8562540943 -62.6365411117 3.4734408939 -5.9019178347 -6.1211122402 2.6300917025 -22.0740258899
+ 0.3720000000 6.3808061274 0.6116240245 1.0540406689 16.9378148071 -62.4474797856 3.4849447665 -5.9892016644 -6.0596966439 2.6425454576 -22.0827373006
+ 0.3730000000 6.3783988651 0.6114583716 1.0540263340 17.0182121600 -62.2558195148 3.4961347837 -6.0764029382 -5.9985090530 2.6549000241 -22.0915518694
+ 0.3740000000 6.3760447425 0.6112925799 1.0540106465 17.0974342217 -62.0615541741 3.5070154206 -6.1635249964 -5.9375482661 2.6671499099 -22.1004677332
+ 0.3750000000 6.3737444496 0.6111266719 1.0539936132 17.1754692966 -61.8646775377 3.5175904473 -6.2505711964 -5.8768131053 2.6792984054 -22.1094828391
+ 0.3760000000 6.3714985531 0.6109606700 1.0539752397 17.2523059419 -61.6651832925 3.5278629307 -6.3375449000 -5.8163024278 2.6913577882 -22.1185949382
+ 0.3770000000 6.3693076375 0.6107945971 1.0539555321 17.3279327726 -61.4630649565 3.5378351889 -6.4244496697 -5.7560147935 2.7033404521 -22.1278017646
+ 0.3780000000 6.3671724474 0.6106284762 1.0539344967 17.4023382630 -61.2583157962 3.5475087475 -6.5112894698 -5.6959481396 2.7152502045 -22.1371012165
+ 0.3790000000 6.3650938860 0.6104623304 1.0539121403 17.4755107598 -61.0509288419 3.5568843465 -6.5980686581 -5.6360997890 2.7270824991 -22.1464913526
+ 0.3800000000 6.3630727282 0.6102961831 1.0538884693 17.5474388963 -60.8408970875 3.5659620397 -6.6847915859 -5.5764671027 2.7388415122 -22.1559700423
+ 0.3810000000 6.3611096157 0.6101300576 1.0538634890 17.6181116103 -60.6282135078 3.5747412047 -6.7714625819 -5.5170474967 2.7505404245 -22.1655349589
+ 0.3820000000 6.3592052015 0.6099639774 1.0538372048 17.6875179440 -60.4128709777 3.5832205035 -6.8580861538 -5.4578381139 2.7621926323 -22.1751837618
+ 0.3830000000 6.3573602989 0.6097979660 1.0538096223 17.7556468379 -60.1948621900 3.5913978456 -6.9446671988 -5.3988354837 2.7738027779 -22.1849142846
+ 0.3840000000 6.3555758792 0.6096320475 1.0537807477 17.8224871477 -59.9741796756 3.5992704052 -7.0312109926 -5.3400355288 2.7853669048 -22.1947245308
+ 0.3850000000 6.3538527766 0.6094662456 1.0537505863 17.8880280609 -59.7508160067 3.6068347191 -7.1177227743 -5.2814342421 2.7968898778 -22.2046123164
+ 0.3860000000 6.3521916792 0.6093005841 1.0537191423 17.9522591099 -59.5247638185 3.6140867025 -7.2042077296 -5.2230277113 2.8083857366 -22.2145752639
+ 0.3870000000 6.3505932806 0.6091350868 1.0536864198 18.0151699811 -59.2960157334 3.6210216257 -7.2906711947 -5.1648117869 2.8198688067 -22.2246109868
+ 0.3880000000 6.3490584382 0.6089697776 1.0536524232 18.0767502945 -59.0645642738 3.6276340773 -7.3771188786 -5.1067817138 2.8313443382 -22.2347172842
+ 0.3890000000 6.3475881739 0.6088046807 1.0536171572 18.1369896150 -58.8304018827 3.6339179830 -7.4635568542 -5.0489321353 2.8428086058 -22.2448921392
+ 0.3900000000 6.3461833658 0.6086398203 1.0535806253 18.1958778991 -58.5935211401 3.6398667193 -7.5499911145 -4.9912578175 2.8542669664 -22.2551333452
+ 0.3910000000 6.3448447432 0.6084752203 1.0535428305 18.2534055129 -58.3539147866 3.6454731350 -7.6364275523 -4.9337536800 2.8657342359 -22.2654384987
+ 0.3920000000 6.3435730431 0.6083109049 1.0535037750 18.3095630161 -58.1115756420 3.6507295237 -7.7228721796 -4.8764144454 2.8772254965 -22.2758051935
+ 0.3930000000 6.3423691729 0.6081468984 1.0534634617 18.3643409365 -57.8664965212 3.6556275962 -7.8093313611 -4.8192342395 2.8887463772 -22.2862312224
+ 0.3940000000 6.3412342112 0.6079832252 1.0534218933 18.4177297817 -57.6186702568 3.6601585044 -7.8958118042 -4.7622065951 2.9002931609 -22.2967145747
+ 0.3950000000 6.3401690850 0.6078199096 1.0533790717 18.4697205021 -57.3680899245 3.6643129610 -7.9823200903 -4.7053252395 2.9118715368 -22.3072530497
+ 0.3960000000 6.3391745656 0.6076569759 1.0533349979 18.5203045084 -57.1147488687 3.6680812651 -8.0688626552 -4.6485841266 2.9234969323 -22.3178442504
+ 0.3970000000 6.3382514321 0.6074944481 1.0532896725 18.5694734450 -56.8586406190 3.6714532783 -8.1554460205 -4.5919770568 2.9351849070 -22.3284857856
+ 0.3980000000 6.3374006387 0.6073323508 1.0532430964 18.6172189588 -56.5997588063 3.6744184015 -8.2420770352 -4.5354972525 2.9469412872 -22.3391754742
+ 0.3990000000 6.3366233129 0.6071707082 1.0531952705 18.6635327118 -56.3380971875 3.6769656026 -8.3287628639 -4.4791373665 2.9587623478 -22.3499113421
+ 0.4000000000 6.3359204228 0.6070095447 1.0531461949 18.7084068569 -56.0736498780 3.6790835397 -8.4155104982 -4.4228903276 2.9706540063 -22.3606912267
+ 0.4010000000 6.3352927716 0.6068488842 1.0530958689 18.7518340525 -55.8064113780 3.6807605911 -8.5023267387 -4.3667493700 2.9826320508 -22.3715127722
+ 0.4020000000 6.3347411683 0.6066887507 1.0530442914 18.7938072279 -55.5363764873 3.6819848325 -8.5892184386 -4.3107076198 2.9947121896 -22.3823736373
+ 0.4030000000 6.3342665955 0.6065291680 1.0529914613 18.8343193503 -55.2635402231 3.6827440189 -8.6761927467 -4.2547576644 3.0069003325 -22.3932716994
+ 0.4040000000 6.3338702049 0.6063701601 1.0529373782 18.8733634394 -54.9878978466 3.6830256137 -8.7632570929 -4.1988915694 3.0191928868 -22.4042050493
+ 0.4050000000 6.3335529787 0.6062117508 1.0528820406 18.9109330471 -54.7094450987 3.6828169151 -8.8504186900 -4.1431017567 3.0315959132 -22.4151715937
+ 0.4060000000 6.3333157247 0.6060539632 1.0528254460 18.9470222709 -54.4281782264 3.6821050864 -8.9376845172 -4.0873810276 3.0441252350 -22.4261690517
+ 0.4070000000 6.3331592502 0.6058968204 1.0527675920 18.9816255129 -54.1440938972 3.6808771368 -9.0250615711 -4.0317221258 3.0567963780 -22.4371951653
+ 0.4080000000 6.3330845275 0.6057403454 1.0527084761 19.0147372508 -53.8571891196 3.6791199050 -9.1125571057 -3.9761173209 3.0696152449 -22.4482478996
+ 0.4090000000 6.3330926873 0.6055845610 1.0526480966 19.0463520526 -53.5674612719 3.6768200909 -9.2001786154 -3.9205584352 3.0825785160 -22.4593254363
+ 0.4100000000 6.3331846808 0.6054294897 1.0525864505 19.0764650542 -53.2749083361 3.6739643806 -9.2879333364 -3.8650377163 3.0956922678 -22.4704257798
+ 0.4110000000 6.3333612758 0.6052751533 1.0525235344 19.1050719710 -52.9795289250 3.6705394790 -9.3758282314 -3.8095478540 3.1089720111 -22.4815467544
+ 0.4120000000 6.3336232303 0.6051215735 1.0524593444 19.1321688568 -52.6813221984 3.6665320918 -9.4638702414 -3.7540815392 3.1224328299 -22.4926862129
+ 0.4130000000 6.3339714543 0.6049687716 1.0523938772 19.1577518781 -52.3802877855 3.6619289100 -9.5520665221 -3.6986310740 3.1360805020 -22.5038422336
+ 0.4140000000 6.3344070034 0.6048167687 1.0523271296 19.1818173281 -52.0764258143 3.6567166424 -9.6404244256 -3.6431884058 3.1499119366 -22.5150131134
+ 0.4150000000 6.3349307460 0.6046655855 1.0522590978 19.2043620992 -51.7697371432 3.6508821390 -9.7289510054 -3.5877459625 3.1639330108 -22.5261969788
+ 0.4160000000 6.3355433596 0.6045152420 1.0521897773 19.2253836947 -51.4602233882 3.6444124244 -9.8176530004 -3.5322966663 3.1781586156 -22.5373917831
+ 0.4170000000 6.3362455012 0.6043657576 1.0521191632 19.2448799911 -51.1478868418 3.6372946794 -9.9065370838 -3.4768335094 3.1926032084 -22.5485955105
+ 0.4180000000 6.3370379689 0.6042171518 1.0520472511 19.2628490107 -50.8327303958 3.6295162260 -9.9956100984 -3.4213491891 3.2072722351 -22.5598063728
+ 0.4190000000 6.3379216964 0.6040694434 1.0519740370 19.2792889355 -50.5147575701 3.6210645578 -10.0848790384 -3.3658361427 3.2221625256 -22.5710228024
+ 0.4200000000 6.3388974251 0.6039226508 1.0518995160 19.2941985771 -50.1939727429 3.6119274633 -10.1743505557 -3.3102873358 3.2372794609 -22.5822430666
+ 0.4210000000 6.3399656994 0.6037767919 1.0518236826 19.3075773905 -49.8703811788 3.6020930576 -10.2640309407 -3.2546962778 3.2526370925 -22.5934652612
+ 0.4220000000 6.3411270350 0.6036318838 1.0517465309 19.3194252388 -49.5439889487 3.5915497642 -10.3539263675 -3.1990566243 3.2682491288 -22.6046875128
+ 0.4230000000 6.3423820836 0.6034879436 1.0516680555 19.3297421592 -49.2148028509 3.5802862959 -10.4440431358 -3.1433618239 3.2841204036 -22.6159081782
+ 0.4240000000 6.3437316298 0.6033449878 1.0515882514 19.3385283745 -48.8828304380 3.5682916840 -10.5343876533 -3.0876051476 3.3002471755 -22.6271258396
+ 0.4250000000 6.3451762617 0.6032030326 1.0515071127 19.3457847705 -48.5480802488 3.5555554005 -10.6249659345 -3.0317804440 3.3166340042 -22.6383389133
+ 0.4260000000 6.3467163661 0.6030620934 1.0514246327 19.3515129110 -48.2105618367 3.5420673891 -10.7157835777 -2.9758821605 3.3332939710 -22.6495456410
+ 0.4270000000 6.3483522963 0.6029221851 1.0513408046 19.3557148014 -47.8702856889 3.5278180431 -10.8068460112 -2.9199049691 3.3502399301 -22.6607442919
+ 0.4280000000 6.3500845436 0.6027833224 1.0512556217 19.3583926429 -47.5272631411 3.5127981816 -10.8981587478 -2.8638434038 3.3674757934 -22.6719333711
+ 0.4290000000 6.3519137380 0.6026455199 1.0511690781 19.3595488416 -47.1815064035 3.4969990754 -10.9897273692 -2.8076918807 3.3849967318 -22.6831116151
+ 0.4300000000 6.3538403082 0.6025087914 1.0510811669 19.3591865017 -46.8330287971 3.4804125698 -11.0815570060 -2.7514454518 3.4028062073 -22.6942775879
+ 0.4310000000 6.3558644767 0.6023731501 1.0509918801 19.3573094426 -46.4818447818 3.4630311130 -11.1736523133 -2.6950998325 3.4209162636 -22.7054296711
+ 0.4320000000 6.3579864312 0.6022386089 1.0509012098 19.3539219539 -46.1279698709 3.4448477282 -11.2660177242 -2.6386510335 3.4393387745 -22.7165662704
+ 0.4330000000 6.3602065063 0.6021051806 1.0508091485 19.3490285366 -45.7714205390 3.4258559841 -11.3586577201 -2.5820949733 3.4580764701 -22.7276860338
+ 0.4340000000 6.3625251846 0.6019728776 1.0507156890 19.3426339094 -45.4122142455 3.4060500148 -11.4515768183 -2.5254274892 3.4771230889 -22.7387878482
+ 0.4350000000 6.3649427420 0.6018417118 1.0506208235 19.3347435243 -45.0503696778 3.3854246458 -11.5447790266 -2.4686451212 3.4964808143 -22.7498704181
+ 0.4360000000 6.3674592411 0.6017116947 1.0505245430 19.3253635833 -44.6859067788 3.3639754170 -11.6382678186 -2.4117451425 3.5161605847 -22.7609322550
+ 0.4370000000 6.3700747108 0.6015828372 1.0504268387 19.3145007813 -44.3188466534 3.3416985484 -11.7320464015 -2.3547251802 3.5361731493 -22.7719718930
+ 0.4380000000 6.3727893377 0.6014551504 1.0503277021 19.3021620335 -43.9492114695 3.3185909024 -11.8261180029 -2.2975827930 3.5565198868 -22.7829881155
+ 0.4390000000 6.3756034666 0.6013286448 1.0502271253 19.2883544810 -43.5770244776 3.2946500000 -11.9204858605 -2.2403154774 3.5771929599 -22.7939799523
+ 0.4400000000 6.3785172275 0.6012033308 1.0501250997 19.2730860286 -43.2023102635 3.2698741464 -12.0151526502 -2.1829215010 3.5981931730 -22.8049462408
+ 0.4410000000 6.3815305282 0.6010792180 1.0500216157 19.2563653603 -42.8250947715 3.2442624504 -12.1101204636 -2.1253999342 3.6195302621 -22.8158856155
+ 0.4420000000 6.3846432429 0.6009563158 1.0499166638 19.2382016680 -42.4454052034 3.2178147815 -12.2053910925 -2.0677502429 3.6412137027 -22.8267967332
+ 0.4430000000 6.3878554127 0.6008346334 1.0498102350 19.2186043673 -42.0632699102 3.1905317237 -12.3009663304 -2.0099718349 3.6632434313 -22.8376785076
+ 0.4440000000 6.3911672449 0.6007141799 1.0497023211 19.1975831018 -41.6787184099 3.1624145858 -12.3968479641 -1.9520640638 3.6856100328 -22.8485301057
+ 0.4450000000 6.3945787210 0.6005949639 1.0495929130 19.1751483010 -41.2917816451 3.1334655283 -12.4930371783 -1.8940271168 3.7083128661 -22.8593504939
+ 0.4460000000 6.3980895887 0.6004769934 1.0494820009 19.1513111944 -40.9024920033 3.1036875766 -12.5895345351 -1.8358620443 3.7313603357 -22.8701384273
+ 0.4470000000 6.4016995598 0.6003602761 1.0493695752 19.1260835272 -40.5108832061 3.0730845693 -12.6863402747 -1.7775703199 3.7547605318 -22.8808926834
+ 0.4480000000 6.4054085185 0.6002448195 1.0492556267 19.0994772635 -40.1169901927 3.0416611026 -12.7834546312 -1.7191533605 3.7785118885 -22.8916123043
+ 0.4490000000 6.4092165674 0.6001306312 1.0491401476 19.0715044461 -39.7208491120 3.0094224752 -12.8808778698 -1.6606125032 3.8026033756 -22.9022966172
+ 0.4500000000 6.4131236036 0.6000177196 1.0490231295 19.0421781571 -39.3224975956 2.9763749420 -12.9786095413 -1.6019499796 3.8270328160 -22.9129446859
+ 0.4510000000 6.4171292855 0.5999060925 1.0489045639 19.0115125033 -38.9219747760 2.9425257068 -13.0766484764 -1.5431689458 3.8518071687 -22.9235553087
+ 0.4520000000 6.4212332732 0.5997957581 1.0487844424 18.9795219557 -38.5193211492 2.9078827381 -13.1749932176 -1.4842729702 3.8769330563 -22.9341273332
+ 0.4530000000 6.4254354058 0.5996867242 1.0486627573 18.9462211924 -38.1145784710 2.8724547736 -13.2736423048 -1.4252655569 3.9024073010 -22.9446598790
+ 0.4540000000 6.4297356993 0.5995789986 1.0485395024 18.9116251009 -37.7077897644 2.8362513174 -13.3725942715 -1.3661501492 3.9282171151 -22.9551523344
+ 0.4550000000 6.4341339186 0.5994725886 1.0484146704 18.8757493760 -37.2989995883 2.7992827682 -13.4718469998 -1.3069311061 3.9543586202 -22.9656038699
+ 0.4560000000 6.4386295672 0.5993675007 1.0482882535 18.8386105325 -36.8882540487 2.7615604211 -13.5713977036 -1.2476137237 3.9808371792 -22.9760134263
+ 0.4570000000 6.4432221022 0.5992637411 1.0481602442 18.8002255961 -36.4756006676 2.7230963964 -13.6712432583 -1.1882037390 4.0076578812 -22.9863799631
+ 0.4580000000 6.4479111618 0.5991613160 1.0480306359 18.7606117757 -36.0610882440 2.6839035620 -13.7713805515 -1.1287068098 4.0348158189 -22.9967027204
+ 0.4590000000 6.4526965642 0.5990602314 1.0478994233 18.7197864619 -35.6447668557 2.6439955253 -13.8718064824 -1.0691285182 4.0622962456 -23.0069812164
+ 0.4600000000 6.4575778600 0.5989604925 1.0477666002 18.6777678521 -35.2266881345 2.6033867628 -13.9725172857 -1.0094753783 4.0900935004 -23.0172147395
+ 0.4610000000 6.4625543221 0.5988621042 1.0476321599 18.6345749619 -34.8069052725 2.5620926174 -14.0735085148 -0.9497548538 4.1182113858 -23.0274023353
+ 0.4620000000 6.4676251704 0.5987650705 1.0474960961 18.5902273009 -34.3854728793 2.5201292156 -14.1747753896 -0.8899748385 4.1466534863 -23.0375430653
+ 0.4630000000 6.4727898106 0.5986693956 1.0473584035 18.5447445278 -33.9624468308 2.4775133788 -14.2763131665 -0.8301431228 4.1754131354 -23.0476362804
+ 0.4640000000 6.4780478327 0.5985750835 1.0472190779 18.4981464471 -33.5378842657 2.4342626081 -14.3781171386 -0.7702673962 4.2044735514 -23.0576816179
+ 0.4650000000 6.4833985452 0.5984821374 1.0470781148 18.4504536634 -33.1118438677 2.3903952196 -14.4801819258 -0.7103562786 4.2338273311 -23.0676784706
+ 0.4660000000 6.4888409655 0.5983905599 1.0469355088 18.4016875918 -32.6843858660 2.3459303346 -14.5825014590 -0.6504193327 4.2634768295 -23.0776259737
+ 0.4670000000 6.4943740563 0.5983003531 1.0467912550 18.3518701149 -32.2555718803 2.3008877865 -14.6850693486 -0.5904665252 4.2934241789 -23.0875232758
+ 0.4680000000 6.4999969728 0.5982115189 1.0466453496 18.3010232242 -31.8254647587 2.2552880207 -14.7878792710 -0.5305076850 4.3236610393 -23.0973698218
+ 0.4690000000 6.5057090611 0.5981240592 1.0464977902 18.2491690165 -31.3941285685 2.2091520740 -14.8909249674 -0.4705525053 4.3541687657 -23.1071653480
+ 0.4700000000 6.5115093765 0.5980379751 1.0463485739 18.1963303749 -30.9616288849 2.1625017148 -14.9941995046 -0.4106115875 4.3849383969 -23.1169093316
+ 0.4710000000 6.5173966759 0.5979532669 1.0461976971 18.1425309750 -30.5280327848 2.1153594285 -15.0976952613 -0.3506964487 4.4159709867 -23.1266009785
+ 0.4720000000 6.5233696657 0.5978699345 1.0460451566 18.0877949253 -30.0934086794 2.0677483134 -15.2014043170 -0.2908189680 4.4472673061 -23.1362395066
+ 0.4730000000 6.5294272509 0.5977879778 1.0458909504 18.0321464103 -29.6578261752 2.0196920511 -15.3053188433 -0.2309908464 4.4788175610 -23.1458244320
+ 0.4740000000 6.5355685405 0.5977073966 1.0457350780 17.9756096701 -29.2213559941 1.9712147228 -15.4094311106 -0.1712236001 4.5106016328 -23.1553555640
+ 0.4750000000 6.5417923534 0.5976281900 1.0455775381 17.9182096966 -28.7840702649 1.9223409514 -15.5137327287 -0.1115296071 4.5426092868 -23.1648324419
+ 0.4760000000 6.5480972073 0.5975503563 1.0454183288 17.8599722565 -28.3460425782 1.8730960446 -15.6182146267 -0.0519221179 4.5748404286 -23.1742543224
+ 0.4770000000 6.5544815770 0.5974738936 1.0452574488 17.8009235060 -27.9073477745 1.8235058004 -15.7228674630 0.0075853081 4.6072946052 -23.1836204735
+ 0.4780000000 6.5609441457 0.5973987998 1.0450948982 17.7410896212 -27.4680617667 1.7735963913 -15.8276820270 0.0669793480 4.6399608713 -23.1929304618
+ 0.4790000000 6.5674838025 0.5973250727 1.0449306784 17.6804967972 -27.0282615231 1.7233943359 -15.9326492350 0.1262469143 4.6728181070 -23.2021841441
+ 0.4800000000 6.5740991462 0.5972527095 1.0447647906 17.6191719505 -26.5880253529 1.6729266453 -16.0377593612 0.1853741128 4.7058551048 -23.2113810997
+ 0.4810000000 6.5807884812 0.5971817067 1.0445972354 17.5571427191 -26.1474328870 1.6222207998 -16.1430020306 0.2443462410 4.7390707694 -23.2205206219
+ 0.4820000000 6.5875500775 0.5971120605 1.0444280137 17.4944370813 -25.7065648922 1.5713046272 -16.2483666323 0.3031483488 4.7724636112 -23.2296020137
+ 0.4830000000 6.5943824216 0.5970437670 1.0442571284 17.4310829854 -25.2655030890 1.5202061818 -16.3538427238 0.3617657884 4.8060218442 -23.2386248743
+ 0.4840000000 6.6012842132 0.5969768222 1.0440845835 17.3671083484 -24.8243301282 1.4689537131 -16.4594200274 0.4201842159 4.8397237491 -23.2475890893
+ 0.4850000000 6.6082538678 0.5969112218 1.0439103829 17.3025417573 -24.3831298716 1.4175758145 -16.5650876588 0.4783885486 4.8735574064 -23.2564942651
+ 0.4860000000 6.6152895131 0.5968469605 1.0437345298 17.2374124671 -23.9419873663 1.3661013977 -16.6708341226 0.5363629620 4.9075208804 -23.2653397207
+ 0.4870000000 6.6223892480 0.5967840329 1.0435570283 17.1717500176 -23.5009886527 1.3145595652 -16.7766477282 0.5940914508 4.9416118827 -23.2741247831
+ 0.4880000000 6.6295513966 0.5967224337 1.0433778839 17.1055838612 -23.0602205770 1.2629794856 -16.8825169991 0.6515583902 4.9758180568 -23.2828490738
+ 0.4890000000 6.6367745039 0.5966621575 1.0431971037 17.0389433594 -22.6197707619 1.2113903601 -16.9884306712 0.7087485422 5.0101173381 -23.2915124993
+ 0.4900000000 6.6440568359 0.5966031984 1.0430146946 16.9718584826 -22.1797278813 1.1598215753 -17.0943769194 0.7656459985 5.0444973175 -23.3001146878
+ 0.4910000000 6.6513963744 0.5965455499 1.0428306631 16.9043598075 -21.7401816299 1.1083026754 -17.2003433535 0.8222341750 5.0789554489 -23.3086549799
+ 0.4920000000 6.6587910765 0.5964892053 1.0426450164 16.8364781336 -21.3012225263 1.0568632324 -17.3063174366 0.8784963778 5.1134889327 -23.3171327232
+ 0.4930000000 6.6662391326 0.5964341578 1.0424577632 16.7682441043 -20.8629417179 1.0055327151 -17.4122869020 0.9344163827 5.1480850880 -23.3255475613
+ 0.4940000000 6.6737389628 0.5963804009 1.0422689142 16.6996882006 -20.4254309460 0.9543404547 -17.5182397561 0.9899784445 5.1827216770 -23.3338994265
+ 0.4950000000 6.6812886948 0.5963279275 1.0420784795 16.6308415041 -19.9887828074 0.9033158189 -17.6241634773 1.0451662003 5.2173860396 -23.3421879639
+ 0.4960000000 6.6888860668 0.5962767279 1.0418864679 16.5617354017 -19.5530907759 0.8524880944 -17.7300451153 1.0999626645 5.2520753273 -23.3504125917
+ 0.4970000000 6.6965283646 0.5962267859 1.0416928849 16.4924008291 -19.1184491869 0.8018864369 -17.8358718614 1.1543507443 5.2867865667 -23.3585729109
+ 0.4980000000 6.7042129985 0.5961780836 1.0414977367 16.4228684523 -18.6849528689 0.7515398264 -17.9416312644 1.2083138750 5.3215070794 -23.3666688445
+ 0.4990000000 6.7119376332 0.5961306037 1.0413010314 16.3531687157 -18.2526970282 0.7014769349 -18.0473112087 1.2618360616 5.3562147794 -23.3747006036
+ 0.5000000000 6.7196996724 0.5960843283 1.0411027772 16.2833325587 -17.8217775181 0.6517262880 -18.1528991144 1.3149007612 5.3908972348 -23.3826681115
+ 0.5010000000 6.7274962501 0.5960392391 1.0409029821 16.2133914144 -17.3922908002 0.6023162389 -18.2583819323 1.3674908761 5.4255519539 -23.3905709926
+ 0.5020000000 6.7353244994 0.5959953177 1.0407016552 16.1433768193 -16.9643337350 0.5532748309 -18.3637465745 1.4195893505 5.4601765147 -23.3984088693
+ 0.5030000000 6.7431818278 0.5959525463 1.0404988074 16.0733200109 -16.5380033689 0.5046296563 -18.4689803587 1.4711797797 5.4947588489 -23.4061816674
+ 0.5040000000 6.7510659169 0.5959109073 1.0402944520 16.0032519164 -16.1133968884 0.4564078221 -18.5740710169 1.5222464164 5.5292774790 -23.4138896118
+ 0.5050000000 6.7589741891 0.5958703827 1.0400886021 15.9332038886 -15.6906118953 0.4086361300 -18.6790058698 1.5727730259 5.5637206599 -23.4215326356
+ 0.5060000000 6.7669037987 0.5958309544 1.0398812707 15.8632077054 -15.2697463645 0.3613410520 -18.7837718202 1.6227428809 5.5980867165 -23.4291103679
+ 0.5070000000 6.7748519067 0.5957926040 1.0396724719 15.7932951689 -14.8508984277 0.3145485907 -18.8883557961 1.6721393729 5.6323741737 -23.4366224371
+ 0.5080000000 6.7828159677 0.5957553138 1.0394622221 15.7234976858 -14.4341661514 0.2682841324 -18.9927452138 1.7209466249 5.6665718582 -23.4440687892
+ 0.5090000000 6.7907937300 0.5957190666 1.0392505397 15.6538462529 -14.0196474873 0.2225724151 -19.0969279870 1.7691494947 5.7006590849 -23.4514496842
+ 0.5100000000 6.7987826842 0.5956838447 1.0390374431 15.5843722206 -13.6074405547 0.1774377231 -19.2008916691 1.8167324145 5.7346250596 -23.4587650853
+ 0.5110000000 6.8067800536 0.5956496302 1.0388229505 15.5151072939 -13.1976435951 0.1329038670 -19.3046234432 1.8636793861 5.7684692842 -23.4660146440
+ 0.5120000000 6.8147830776 0.5956164055 1.0386070814 15.4460831170 -12.7903547502 0.0889940393 -19.4081105808 1.9099746007 5.8021916104 -23.4731980141
+ 0.5130000000 6.8227893108 0.5955841532 1.0383898572 15.3773308337 -12.3856718299 0.0457306631 -19.5113409261 1.9556030512 5.8357820062 -23.4803151847
+ 0.5140000000 6.8307966246 0.5955528568 1.0381713017 15.3088810710 -11.9836922614 0.0031353627 -19.6143029054 2.0005505340 5.8692206764 -23.4873664784
+ 0.5150000000 6.8388026343 0.5955224994 1.0379514385 15.2407647377 -11.5845133804 -0.0387708229 -19.7169846276 2.0448024801 5.9024979850 -23.4943519125
+ 0.5160000000 6.8468046897 0.5954930639 1.0377302910 15.1730130275 -11.1882323852 -0.0799674562 -19.8193738700 2.0883439489 5.9356149419 -23.5012711834
+ 0.5170000000 6.8548001681 0.5954645335 1.0375078835 15.1056569861 -10.7949461075 -0.1204348487 -19.9214585555 2.1311602483 5.9685730607 -23.5081239933
+ 0.5180000000 6.8627867879 0.5954368920 1.0372842426 15.0387270488 -10.4047507722 -0.1601542174 -20.0232272613 2.1732375520 6.0013636173 -23.5149104004
+ 0.5190000000 6.8707626116 0.5954101238 1.0370593968 14.9722530231 -10.0177419451 -0.1991077094 -20.1246692273 2.2145629001 6.0339677018 -23.5216308184
+ 0.5200000000 6.8787255308 0.5953842146 1.0368333754 14.9062649839 -9.6340148497 -0.2372781050 -20.2257733805 2.2551230403 6.0663769840 -23.5282853214
+ 0.5210000000 6.8866734646 0.5953591541 1.0366062096 14.8407936677 -9.2536641103 -0.2746489401 -20.3265281767 2.2949044410 6.0985942605 -23.5348735269
+ 0.5220000000 6.8946044385 0.5953349335 1.0363779321 14.7758696946 -8.8767836223 -0.3112046955 -20.4269222240 2.3338938768 6.1306228914 -23.5413950346
+ 0.5230000000 6.9025168359 0.5953115446 1.0361485777 14.7115228574 -8.5034664527 -0.3469308376 -20.5269448920 2.3720790558 6.1624554732 -23.5478498448
+ 0.5240000000 6.9104093842 0.5952889794 1.0359181828 14.6477821709 -8.1338047475 -0.3818138658 -20.6265862981 2.4094486090 6.1940738731 -23.5542383477
+ 0.5250000000 6.9182805296 0.5952672297 1.0356867832 14.5846767585 -7.7678900506 -0.4158410569 -20.7258363032 2.4459908877 6.2254710422 -23.5605606174
+ 0.5260000000 6.9261284287 0.5952462869 1.0354544137 14.5222358565 -7.4058132563 -0.4490004717 -20.8246844924 2.4816939483 6.2566515460 -23.5668163961
+ 0.5270000000 6.9339512701 0.5952261424 1.0352211097 14.4604883361 -7.0476643665 -0.4812811098 -20.9231206997 2.5165461791 6.2876204608 -23.5730054556
+ 0.5280000000 6.9417476115 0.5952067881 1.0349869084 14.3994622017 -6.6935322404 -0.5126730702 -21.0211355600 2.5505369397 6.3183716904 -23.5791279776
+ 0.5290000000 6.9495163827 0.5951882166 1.0347518486 14.3391845793 -6.3435045443 -0.5431675634 -21.1187205075 2.5836565603 6.3488880607 -23.5851845491
+ 0.5300000000 6.9572562371 0.5951704201 1.0345159683 14.2796826406 -5.9976680814 -0.5727566357 -21.2158667274 2.6158951099 6.3791640126 -23.5911754290
+ 0.5310000000 6.9649655469 0.5951533905 1.0342793044 14.2209836039 -5.6561087451 -0.6014331715 -21.3125651371 2.6472423788 6.4092060124 -23.5971005347
+ 0.5320000000 6.9726427394 0.5951371199 1.0340418943 14.1631142338 -5.3189112694 -0.6291910506 -21.4088069367 2.6776885182 6.4390208469 -23.6029598216
+ 0.5330000000 6.9802866370 0.5951216012 1.0338037769 14.1061003379 -4.9861589817 -0.6560253043 -21.5045841630 2.7072246840 6.4686039692 -23.6087536650
+ 0.5340000000 6.9878964566 0.5951068278 1.0335649929 14.0499667605 -4.6579337565 -0.6819321197 -21.5998896812 2.7358430311 6.4979397478 -23.6144828511
+ 0.5350000000 6.9954711494 0.5950927930 1.0333255819 13.9947383246 -4.3343163498 -0.7069085504 -21.6947161129 2.7635354578 6.5270244367 -23.6201478323
+ 0.5360000000 7.0030093989 0.5950794900 1.0330855824 13.9404398286 -4.0153863517 -0.7309525154 -21.7890558223 2.7902935896 6.5558663874 -23.6257487167
+ 0.5370000000 7.0105099679 0.5950669122 1.0328450331 13.8870955311 -3.7012219364 -0.7540629549 -21.8829014821 2.8161094307 6.5844739725 -23.6312856601
+ 0.5380000000 7.0179720317 0.5950550538 1.0326039746 13.8347286605 -3.3918996231 -0.7762399773 -21.9762466148 2.8409759983 6.6128444621 -23.6367592375
+ 0.5390000000 7.0253951727 0.5950439099 1.0323624487 13.7833614158 -3.0874942353 -0.7974848549 -22.0690855753 2.8648873087 6.6409644725 -23.6421704302
+ 0.5400000000 7.0327787229 0.5950334755 1.0321204962 13.7330159001 -2.7880792309 -0.8177997306 -22.1614124872 2.8878371183 6.6688323383 -23.6475198884
+ 0.5410000000 7.0401217646 0.5950237455 1.0318781567 13.6837141118 -2.4937266559 -0.8371876114 -22.2532212342 2.9098189090 6.6964581106 -23.6528079263
+ 0.5420000000 7.0474234805 0.5950147151 1.0316354702 13.6354774297 -2.2045068989 -0.8556525201 -22.3445060270 2.9308265429 6.7238515587 -23.6580349148
+ 0.5430000000 7.0546834708 0.5950063806 1.0313924780 13.5883261467 -1.9204884670 -0.8731996281 -22.4352619172 2.9508548743 6.7510119753 -23.6632016337
+ 0.5440000000 7.0619017437 0.5949987391 1.0311492229 13.5422794777 -1.6417379507 -0.8898352432 -22.5254847733 2.9698997257 6.7779287972 -23.6683092555
+ 0.5450000000 7.0690780762 0.5949917877 1.0309057464 13.4973564591 -1.3683203422 -0.9055665199 -22.6151702533 2.9879566504 6.8046025353 -23.6733586357
+ 0.5460000000 7.0762120155 0.5949855235 1.0306620890 13.4535759380 -1.1002989922 -0.9204014484 -22.7043138004 3.0050209193 6.8310446391 -23.6783503116
+ 0.5470000000 7.0833032211 0.5949799440 1.0304182911 13.4109560722 -0.8377353763 -0.9343489956 -22.7929111930 3.0210881625 6.8572661084 -23.6832848826
+ 0.5480000000 7.0903517650 0.5949750479 1.0301743946 13.3695138932 -0.5806888874 -0.9474192243 -22.8809590259 3.0361549536 6.8832683161 -23.6881633424
+ 0.5490000000 7.0973581190 0.5949708346 1.0299304426 13.3292653168 -0.3292168072 -0.9596232731 -22.9684546838 3.0502187772 6.9090436890 -23.6929870605
+ 0.5500000000 7.1043225424 0.5949673038 1.0296864771 13.2902259975 -0.0833746081 -0.9709730759 -23.0553953660 3.0632768317 6.9345947772 -23.6977571110
+ 0.5510000000 7.1112450819 0.5949644549 1.0294425386 13.2524113181 0.1567840836 -0.9814813453 -23.1417780816 3.0753260116 6.9599341203 -23.7024742718
+ 0.5520000000 7.1181258981 0.5949622880 1.0291986677 13.2158359173 0.3912077040 -0.9911616995 -23.2276001696 3.0863635249 6.9850738451 -23.7071393846
+ 0.5530000000 7.1249655528 0.5949608043 1.0289549061 13.1805132754 0.6198469449 -1.0000287696 -23.3128597540 3.0963874528 7.0100172467 -23.7117536709
+ 0.5540000000 7.1317649956 0.5949600058 1.0287112967 13.1464557253 0.8426547763 -1.0080981745 -23.3975557188 3.1053967139 7.0347593851 -23.7163187150
+ 0.5550000000 7.1385249772 0.5949598947 1.0284678811 13.1136752642 1.0595861571 -1.0153862484 -23.4816867796 3.1133899058 7.0593044962 -23.7208358274
+ 0.5560000000 7.1452460456 0.5949604731 1.0282246994 13.0821835494 1.2705980641 -1.0219100183 -23.5652514751 3.1203652817 7.0836659900 -23.7253060416
+ 0.5570000000 7.1519288547 0.5949617437 1.0279817915 13.0519914551 1.4756496900 -1.0276873171 -23.6482486534 3.1263213382 7.1078570789 -23.7297304526
+ 0.5580000000 7.1585744478 0.5949637102 1.0277391985 13.0231086684 1.6747026256 -1.0327368827 -23.7306779158 3.1312573626 7.1318826229 -23.7341105254
+ 0.5590000000 7.1651842451 0.5949663772 1.0274969623 12.9955436982 1.8677208776 -1.0370783291 -23.8125395947 3.1351733983 7.1557395291 -23.7384480827
+ 0.5600000000 7.1717594725 0.5949697496 1.0272551233 12.9693046629 2.0546705846 -1.0407318774 -23.8938338534 3.1380691114 7.1794332223 -23.7427446880
+ 0.5610000000 7.1783011521 0.5949738319 1.0270137205 12.9443992953 2.2355200357 -1.0437183275 -23.9745606682 3.1399437587 7.2029778726 -23.7470016374
+ 0.5620000000 7.1848103981 0.5949786295 1.0267727924 12.9208345228 2.4102398534 -1.0460591590 -24.0547202891 3.1407967501 7.2263877827 -23.7512202815
+ 0.5630000000 7.1912887047 0.5949841484 1.0265323786 12.8986160577 2.5788031700 -1.0477766279 -24.1343136896 3.1406282029 7.2496688891 -23.7554023398
+ 0.5640000000 7.1977379380 0.5949903960 1.0262925192 12.8777484022 2.7411856409 -1.0488937356 -24.2133425493 3.1394389107 7.2728189036 -23.7595498922
+ 0.5650000000 7.2041597618 0.5949973795 1.0260532530 12.8582356419 2.8973651544 -1.0494339563 -24.2918083494 3.1372292089 7.2958438945 -23.7636647614
+ 0.5660000000 7.2105556243 0.5950051060 1.0258146170 12.8400814595 3.0473218406 -1.0494212021 -24.3697123439 3.1339989327 7.3187587754 -23.7677484980
+ 0.5670000000 7.2169270474 0.5950135832 1.0255766477 12.8232887256 3.1910382425 -1.0488799184 -24.4470560099 3.1297479691 7.3415789252 -23.7718026962
+ 0.5680000000 7.2232759299 0.5950228198 1.0253393822 12.8078590697 3.3284994921 -1.0478351823 -24.5238415196 3.1244768335 7.3643108040 -23.7758293252
+ 0.5690000000 7.2296045435 0.5950328253 1.0251028587 12.7937928818 3.4596933194 -1.0463126703 -24.6000717269 3.1181866453 7.3869518488 -23.7798307248
+ 0.5700000000 7.2359149382 0.5950436094 1.0248671133 12.7810901396 3.5846097440 -1.0443383746 -24.6757492251 3.1108779606 7.4095082454 -23.7838089629
+ 0.5710000000 7.2422089243 0.5950551816 1.0246321804 12.7697504326 3.7032410741 -1.0419385636 -24.7508763080 3.1025507221 7.4319956376 -23.7877658154
+ 0.5720000000 7.2484883678 0.5950675520 1.0243980940 12.7597725461 3.8155820725 -1.0391398764 -24.8254554287 3.0932048178 7.4544303614 -23.7917030887
+ 0.5730000000 7.2547555141 0.5950807315 1.0241648885 12.7511540032 3.9216301358 -1.0359694275 -24.8994897041 3.0828406935 7.4768188310 -23.7956229742
+ 0.5740000000 7.2610129865 0.5950947321 1.0239325990 12.7438910657 4.0213852966 -1.0324547731 -24.9729829033 3.0714593345 7.4991572649 -23.7995280468
+ 0.5750000000 7.2672631578 0.5951095656 1.0237012589 12.7379796178 4.1148498898 -1.0286236106 -25.0459384432 3.0590610389 7.5214514754 -23.8034205811
+ 0.5760000000 7.2735081296 0.5951252440 1.0234708996 12.7334151972 4.2020285421 -1.0245037363 -25.1183593422 3.0456453623 7.5437177125 -23.8073025269
+ 0.5770000000 7.2797500425 0.5951417795 1.0232415519 12.7301925583 4.2829283378 -1.0201231438 -25.1902487030 3.0312117001 7.5659729815 -23.8111758496
+ 0.5780000000 7.2859914229 0.5951591853 1.0230132472 12.7283051821 4.3575590021 -1.0155101367 -25.2616102557 3.0157599437 7.5882230961 -23.8150429118
+ 0.5790000000 7.2922351829 0.5951774757 1.0227860175 12.7277452791 4.4259328961 -1.0106932935 -25.3324483435 2.9992904655 7.6104623472 -23.8189064709
+ 0.5800000000 7.2984839489 0.5951966647 1.0225598929 12.7285047405 4.4880646525 -1.0057011484 -25.4027668455 2.9818028163 7.6326957332 -23.8227689460
+ 0.5810000000 7.3047400415 0.5952167665 1.0223349016 12.7305751731 4.5439711568 -1.0005621485 -25.4725691269 2.9632956681 7.6549398204 -23.8266323922
+ 0.5820000000 7.3110058074 0.5952377955 1.0221110712 12.7339474309 4.5936717165 -0.9953047611 -25.5418585590 2.9437674356 7.6772117871 -23.8304988669
+ 0.5830000000 7.3172839848 0.5952597670 1.0218884297 12.7386110992 4.6371882465 -0.9899575899 -25.6106390927 2.9232169714 7.6995163371 -23.8343708327
+ 0.5840000000 7.3235777028 0.5952826975 1.0216670059 12.7445545019 4.6745452561 -0.9845493401 -25.6789152409 2.9016435508 7.7218454439 -23.8382511540
+ 0.5850000000 7.3298897688 0.5953066032 1.0214468267 12.7517657170 4.7057694544 -0.9791084987 -25.7466909321 2.8790454927 7.7442029136 -23.8421423157
+ 0.5860000000 7.3362226503 0.5953315002 1.0212279169 12.7602326106 4.7308897234 -0.9736632624 -25.8139694649 2.8554201064 7.7666051386 -23.8460464009
+ 0.5870000000 7.3425788307 0.5953574049 1.0210103010 12.7699423363 4.7499372907 -0.9682416206 -25.8807540655 2.8307643589 7.7890687922 -23.8499654830
+ 0.5880000000 7.3489611852 0.5953843347 1.0207940037 12.7808808024 4.7629459203 -0.9628716690 -25.9470484791 2.8050755917 7.8115970406 -23.8539020435
+ 0.5890000000 7.3553729766 0.5954123079 1.0205790506 12.7930326889 4.7699518852 -0.9575814751 -26.0128569448 2.7783515017 7.8341794744 -23.8578589623
+ 0.5900000000 7.3618171101 0.5954413425 1.0203654655 12.8063825189 4.7709935201 -0.9523979844 -26.0781830056 2.7505887123 7.8568183984 -23.8618386986
+ 0.5910000000 7.3682961232 0.5954714564 1.0201532701 12.8209146652 4.7661112469 -0.9473484875 -26.1430294684 2.7217827178 7.8795293786 -23.8658432860
+ 0.5920000000 7.3748125690 0.5955026674 1.0199424858 12.8366128008 4.7553478226 -0.9424625199 -26.2073989916 2.6919285779 7.9023278013 -23.8698747614
+ 0.5930000000 7.3813693607 0.5955349949 1.0197331342 12.8534595143 4.7387481327 -0.9377621197 -26.2712946803 2.6610217083 7.9252150057 -23.8739354967
+ 0.5940000000 7.3879697590 0.5955684585 1.0195252376 12.8714362404 4.7163593461 -0.9332668590 -26.3347200582 2.6290578123 7.9481784233 -23.8780282334
+ 0.5950000000 7.3946167574 0.5956030765 1.0193188183 12.8905238053 4.6882319875 -0.9290322391 -26.3976778287 2.5960311442 7.9712183731 -23.8821555785
+ 0.5956964223 7.3992747756 0.5956278775 1.0191759458 12.9044630578 4.6652808086 -0.9262512705 -26.4412478129 2.5723992948 7.9873163933 -23.8850514093
+ 0.5960000000 7.4013129121 0.5956388688 1.0191138941 12.9107035934 4.6544170498 -0.9250748895 -26.4601698798 2.5619350553 7.9943487798 -23.8863193460
+ 0.5966964223 7.4060064149 0.5956645019 1.0189720697 12.9253931945 4.6275332725 -0.9224221737 -26.5034166001 2.5375548108 8.0105182607 -23.8892409880
+ 0.5970000000 7.4080602053 0.5956758594 1.0189104766 12.9319582887 4.6149620023 -0.9212664649 -26.5221980451 2.5267634724 8.0175842849 -23.8905201529
+ 0.5976160123 7.4122430210 0.5956992486 1.0187859291 12.9455774926 4.5878733807 -0.9189938462 -26.5601782265 2.5045590078 8.0319507258 -23.8931272755
+ 0.5980000000 7.4148609136 0.5957140605 1.0187085919 12.9542665185 4.5699224712 -0.9176393976 -26.5837646182 2.4905092353 8.0409243574 -23.8947605245
+ 0.5986160123 7.4190780775 0.5957381950 1.0185850104 12.9685216220 4.5394268390 -0.9156137932 -26.6214617699 2.4676334741 8.0553470780 -23.8973945332
+ 0.5990000000 7.4217180224 0.5957534715 1.0185082836 12.9776018323 4.5193655623 -0.9144742714 -26.6448722015 2.4531634694 8.0643519266 -23.8990455773
+ 0.5997064166 7.4265971831 0.5957820468 1.0183677481 12.9946928763 4.4803586510 -0.9125468088 -26.6877639584 2.4261193641 8.0809530841 -23.9021010047
+ 0.6000000000 7.4286336766 0.5957941036 1.0183095786 13.0019416646 4.4633509119 -0.9118058178 -26.7055225430 2.4147178799 8.0878659537 -23.9033777846
+ 0.6007064166 7.4335552554 0.5958235548 1.0181701830 13.0197305124 4.4205217226 -0.9101478655 -26.7480918209 2.3868919559 8.1045358490 -23.9064668013
+ 0.6010000000 7.4356096700 0.5958359788 1.0181124891 13.0272662874 4.4019340907 -0.9095084092 -26.7657164494 2.3751642199 8.1114794713 -23.9077576617
+ 0.6019809482 7.4425136145 0.5958782820 1.0179207410 13.0530440033 4.3364992550 -0.9076279700 -26.8243204024 2.3352780492 8.1347508665 -23.9121019260
+ 0.6020000000 7.4426483139 0.5958791158 1.0179170326 13.0535536778 4.3351779472 -0.9075955067 -26.8254542530 2.3344926733 8.1352039443 -23.9121867813
+ 0.6029809482 7.4496163346 0.5959226733 1.0177269069 13.0802528876 4.2645699009 -0.9061400523 -26.8836113596 2.2935002291 8.1585812497 -23.9165815269
+ 0.6030000000 7.4497523065 0.5959235316 1.0177232302 13.0807802300 4.2631487552 -0.9061160480 -26.8847365408 2.2926932773 8.1590362257 -23.9166673854
+ 0.6040000000 7.4569245709 0.5959692451 1.0175311027 13.1089218298 4.1859135857 -0.9050853360 -26.9435641406 2.2497563995 8.1829597973 -23.9212017646
+ 0.6050000000 7.4641676541 0.5960162749 1.0173406696 13.1379544599 4.1035411250 -0.9045188999 -27.0019369447 2.2056711356 8.2069709664 -23.9257917401
+ 0.6060000000 7.4714837213 0.5960646387 1.0171519494 13.1678541438 4.0161017673 -0.9044373185 -27.0598538925 2.1604252583 8.2310790129 -23.9304387005
+ 0.6070000000 7.4788749031 0.5961143547 1.0169649607 13.1985965453 3.9236674549 -0.9048580233 -27.1173135548 2.1140059725 8.2552925128 -23.9351439417
+ 0.6080000000 7.4863436586 0.5961654412 1.0167797235 13.2301564478 3.8263120699 -0.9057979405 -27.1743146584 2.0664005338 8.2796059029 -23.9399090707
+ 0.6090000000 7.4938927663 0.5962179174 1.0165962594 13.2625077742 3.7241114663 -0.9072748133 -27.2308560443 2.0175962077 8.3039998142 -23.9447359971
+ 0.6100000000 7.5015246086 0.5962718020 1.0164145891 13.2956246562 3.6171427503 -0.9093045051 -27.2869355776 1.9675789997 8.3284673684 -23.9496261389
+ 0.6110000000 7.5092411592 0.5963271132 1.0162347322 13.3294814751 3.5054841616 -0.9119008239 -27.3425501207 1.9163336337 8.3530147027 -23.9545804060
+ 0.6120000000 7.5170443518 0.5963838696 1.0160567085 13.3640523566 3.3892153053 -0.9150766344 -27.3976960819 1.8638442033 8.3776475106 -23.9595996019
+ 0.6130000000 7.5249364535 0.5964420903 1.0158805400 13.3993106511 3.2684176395 -0.9188450768 -27.4523699433 1.8100948170 8.4023568508 -23.9646848229
+ 0.6140000000 7.5329200559 0.5965017949 1.0157062506 13.4352289660 3.1431744720 -0.9232195080 -27.5065682283 1.7550695852 8.4271192623 -23.9698374427
+ 0.6150000000 7.5409973436 0.5965630028 1.0155338635 13.4717802430 3.0135700067 -0.9282112751 -27.5602864267 1.6987513572 8.4519239848 -23.9750583210
+ 0.6160000000 7.5491700741 0.5966257332 1.0153634008 13.5089378020 2.8796891946 -0.9338295545 -27.6135189647 1.6411216884 8.4767737537 -23.9803477829
+ 0.6170000000 7.5574399508 0.5966900054 1.0151948853 13.5466748442 2.7416180590 -0.9400822900 -27.6662597379 1.5821614769 8.5016711766 -23.9857060131
+ 0.6180000000 7.5658090292 0.5967558394 1.0150283424 13.5849638973 2.5994443992 -0.9469779168 -27.7185026539 1.5218516614 8.5266031773 -23.9911334760
+ 0.6190000000 7.5742797088 0.5968232560 1.0148637999 13.6237768369 2.4532577985 -0.9545253978 -27.7702416079 1.4601732281 8.5515409002 -23.9966309068
+ 0.6200000000 7.5828539535 0.5968922756 1.0147012850 13.6630860136 2.3031482982 -0.9627313384 -27.8214693986 1.3971058933 8.5764690485 -24.0021984919
+ 0.6210000000 7.5915332630 0.5969629185 1.0145408238 13.7028642929 2.1492062271 -0.9715997412 -27.8721777008 1.3326280615 8.6013868097 -24.0078358486
+ 0.6220000000 7.6003190695 0.5970352050 1.0143824434 13.7430845372 1.9915226960 -0.9811331511 -27.9223576025 1.2667174850 8.6262933037 -24.0135424294
+ 0.6230000000 7.6092131757 0.5971091562 1.0142261740 13.7837190193 1.8301905294 -0.9913350812 -27.9720001578 1.1993520316 8.6511706679 -24.0193179632
+ 0.6240000000 7.6182177395 0.5971847940 1.0140720486 13.8247394385 1.6653042669 -1.0022101072 -28.0210963662 1.1305097039 8.6759839640 -24.0251624484
+ 0.6250000000 7.6273344331 0.5972621398 1.0139200995 13.8661181022 1.4969584088 -1.0137599115 -28.0696360777 1.0601672198 8.7007130698 -24.0310752984
+ 0.6260000000 7.6365644123 0.5973412143 1.0137703578 13.9078279475 1.3252472481 -1.0259829582 -28.1176079801 0.9882999726 8.7253534551 -24.0370553287
+ 0.6270000000 7.6459087467 0.5974220386 1.0136228558 13.9498419839 1.1502655873 -1.0388760588 -28.1650001535 0.9148827493 8.7499001756 -24.0431011849
+ 0.6280000000 7.6553688690 0.5975046339 1.0134776292 13.9921327062 0.9721098483 -1.0524377101 -28.2118006038 0.8398905491 8.7743303598 -24.0492117859
+ 0.6290000000 7.6649465444 0.5975890220 1.0133347165 14.0346721139 0.7908780422 -1.0666682378 -28.2579972395 0.7632986011 8.7986034100 -24.0553863148
+ 0.6300000000 7.6746429896 0.5976752240 1.0131941557 14.0774329082 0.6066676339 -1.0815643523 -28.3035768054 0.6850808496 8.8226946145 -24.0616233495
+ 0.6310000000 7.6844588463 0.5977632598 1.0130559829 14.1203884823 0.4195754080 -1.0971187625 -28.3485248973 0.6052099297 8.8465954932 -24.0679208664
+ 0.6320000000 7.6943946410 0.5978531489 1.0129202354 14.1635123302 0.2296984127 -1.1133223951 -28.3928265248 0.5236579556 8.8702964681 -24.0742766889
+ 0.6330000000 7.7044512081 0.5979449110 1.0127869537 14.2067775119 0.0371351344 -1.1301687894 -28.4364665805 0.4403973389 8.8937700382 -24.0806889019
+ 0.6340000000 7.7146296386 0.5980385651 1.0126561815 14.2501566871 -0.1580145866 -1.1476542716 -28.4794298078 0.3554007921 8.9169714851 -24.0871558347
+ 0.6350000000 7.7249304169 0.5981341292 1.0125279608 14.2936232446 -0.3556519043 -1.1657706832 -28.5216998409 0.2686397874 8.9398722131 -24.0936752265
+ 0.6360000000 7.7353534062 0.5982316195 1.0124023318 14.3371512577 -0.5556790420 -1.1845049534 -28.5632592493 0.1800845565 8.9624595673 -24.1002442487
+ 0.6370000000 7.7458983106 0.5983310513 1.0122793350 14.3807148960 -0.7579981820 -1.2038421702 -28.6040900760 0.0897049228 8.9847191012 -24.1068599535
+ 0.6380000000 7.7565650340 0.5984324388 1.0121590138 14.4242879972 -0.9625103747 -1.2237711286 -28.6441742001 -0.0025289380 9.0066196054 -24.1135196287
+ 0.6390000000 7.7673536105 0.5985357952 1.0120414143 14.4678441206 -1.1691156878 -1.2442845223 -28.6834932974 -0.0966465131 9.0281142887 -24.1202207700
+ 0.6400000000 7.7782634367 0.5986411314 1.0119265802 14.5113575120 -1.3777155098 -1.2653695903 -28.7220280654 -0.1926784193 9.0491715858 -24.1269603397
+ 0.6410000000 7.7892932709 0.5987484566 1.0118145523 14.5548030360 -1.5882125532 -1.2870076598 -28.7597582902 -0.2906563813 9.0697746438 -24.1337348027
+ 0.6420000000 7.8004416571 0.5988577779 1.0117053714 14.5981556475 -1.8005097031 -1.3091782295 -28.7966633109 -0.3906124103 9.0899045520 -24.1405405407
+ 0.6430000000 7.8117071976 0.5989691007 1.0115990800 14.6413901000 -2.0145091451 -1.3318657083 -28.8327222611 -0.4925781349 9.1095275359 -24.1473741326
+ 0.6440000000 7.8230884779 0.5990824281 1.0114957225 14.6844810163 -2.2301125698 -1.3550596105 -28.8679140303 -0.5965848253 9.1285963032 -24.1542323208
+ 0.6450000000 7.8345834562 0.5991977609 1.0113953399 14.7274036217 -2.4472231582 -1.3787429540 -28.9022167154 -0.7026647065 9.1470770966 -24.1611113994
+ 0.6460000000 7.8461894740 0.5993150976 1.0112979695 14.7701336758 -2.6657455237 -1.4028918086 -28.9356076904 -0.8108509292 9.1649492840 -24.1680072516
+ 0.6470000000 7.8579036044 0.5994344345 1.0112036477 14.8126470588 -2.8855846701 -1.4274805406 -28.9680639568 -0.9211768177 9.1821906394 -24.1749156993
+ 0.6480000000 7.8697228446 0.5995557650 1.0111124114 14.8549196013 -3.1066454167 -1.4524896305 -28.9995622925 -1.0336752723 9.1987657969 -24.1818327213
+ 0.6490000000 7.8816440542 0.5996790797 1.0110242981 14.8969271627 -3.3288326275 -1.4779058295 -29.0300792228 -1.1483787835 9.2146272931 -24.1887544210
+ 0.6500000000 7.8936635183 0.5998043669 1.0109393409 14.9386461304 -3.5520526812 -1.5037083609 -29.0595906756 -1.2653205861 9.2297396111 -24.1956765396
+ 0.6510000000 7.9057769632 0.5999316129 1.0108575690 14.9800533754 -3.7762133791 -1.5298685393 -29.0880720297 -1.3845346448 9.2440793559 -24.2025944801
+ 0.6520000000 7.9179798126 0.6000608017 1.0107790093 15.0211259770 -4.0012231434 -1.5563562433 -29.1154983457 -1.5060549957 9.2576227089 -24.2095035821
+ 0.6530000000 7.9302673336 0.6001919139 1.0107036882 15.0618411225 -4.2269907335 -1.5831484826 -29.1418444807 -1.6299151518 9.2703332639 -24.2163993134
+ 0.6540000000 7.9426346041 0.6003249274 1.0106316311 15.1021761771 -4.4534254583 -1.6102295030 -29.1670850803 -1.7561480843 9.2821623680 -24.2232772476
+ 0.6550000000 7.9550762099 0.6004598181 1.0105628590 15.1421090185 -4.6804380710 -1.6375752784 -29.1911943437 -1.8847873087 9.2930728934 -24.2301326517
+ 0.6560000000 7.9675862590 0.6005965607 1.0104973883 15.1816180316 -4.9079406877 -1.6651529497 -29.2141460421 -2.0158668998 9.3030402678 -24.2369604882
+ 0.6570000000 7.9801585581 0.6007351278 1.0104352323 15.2206819509 -5.1358462910 -1.6929284077 -29.2359136609 -2.1494208981 9.3120409727 -24.2437556323
+ 0.6580000000 7.9927867596 0.6008754890 1.0103764030 15.2592797575 -5.3640686243 -1.7208761054 -29.2564705454 -2.2854826335 9.3200377295 -24.2505130821
+ 0.6590000000 8.0054643621 0.6010176115 1.0103209103 15.2973907328 -5.5925223882 -1.7489780050 -29.2757899211 -2.4240846556 9.3269790531 -24.2572279470
+ 0.6600000000 8.0181844621 0.6011614614 1.0102687595 15.3349947371 -5.8211236689 -1.7772065478 -29.2938446522 -2.5652599014 9.3328263781 -24.2638950350
+ 0.6610000000 8.0309397615 0.6013070046 1.0102199517 15.3720722379 -6.0497898341 -1.8055259498 -29.3106072230 -2.7090417568 9.3375558325 -24.2705088438
+ 0.6620000000 8.0437227055 0.6014542054 1.0101744844 15.4086042123 -6.2784393432 -1.8338997504 -29.3260498606 -2.8554634486 9.3411457999 -24.2770637539
+ 0.6630000000 8.0565256656 0.6016030260 1.0101323532 15.4445719908 -6.5069917728 -1.8622992417 -29.3401447627 -3.0045571999 9.3435582290 -24.2835542799
+ 0.6640000000 8.0693409633 0.6017534266 1.0100935511 15.4799572888 -6.7353678916 -1.8907040729 -29.3528641293 -3.1563541319 9.3447376817 -24.2899750747
+ 0.6650000000 8.0821605930 0.6019053678 1.0100580668 15.5147425265 -6.9634898036 -1.9190849080 -29.3641798203 -3.3108856674 9.3446446883 -24.2963204625
+ 0.6660000000 8.0949762245 0.6020588102 1.0100258855 15.5489108736 -7.1912809362 -1.9474032400 -29.3740633310 -3.4681836103 9.3432578320 -24.3025844155
+ 0.6670000000 8.1077793469 0.6022137140 1.0099969891 15.5824461418 -7.4186660020 -1.9756205913 -29.3824859496 -3.6282794464 9.3405584288 -24.3087607736
+ 0.6680000000 8.1205614961 0.6023700379 1.0099713569 15.6153325616 -7.6455710026 -2.0037066184 -29.3894190645 -3.7912033147 9.3365080642 -24.3148435405
+ 0.6690000000 8.1333142844 0.6025277396 1.0099489661 15.6475547992 -7.8719232745 -2.0316387280 -29.3948342065 -3.9569838844 9.3310476804 -24.3208268882
+ 0.6700000000 8.1460290454 0.6026867773 1.0099297904 15.6790983578 -8.0976515376 -2.0593857330 -29.3987025767 -4.1256500859 9.3241379804 -24.3267046195
+ 0.6710000000 8.1586968337 0.6028471104 1.0099138004 15.7099496113 -8.3226859106 -2.0869079569 -29.4009950307 -4.2972312010 9.3157612599 -24.3324701540
+ 0.6720000000 8.1713086078 0.6030086978 1.0099009643 15.7400956418 -8.5469579472 -2.1141661259 -29.4016823124 -4.4717559958 9.3059022264 -24.3381167900
+ 0.6730000000 8.1838554819 0.6031714978 1.0098912481 15.7695239802 -8.7704005817 -2.1411286833 -29.4007354066 -4.6492515417 9.2945230597 -24.3436380190
+ 0.6740000000 8.1963287431 0.6033354681 1.0098846154 15.7982226183 -8.9929481438 -2.1677713097 -29.3981255770 -4.8297430978 9.2815630270 -24.3490275248
+ 0.6750000000 8.2087194220 0.6035005670 1.0098810279 15.8261804619 -9.2145364542 -2.1940618936 -29.3938238078 -5.0132561567 9.2669844854 -24.3542786078
+ 0.6760000000 8.2210182953 0.6036667539 1.0098804448 15.8533873329 -9.4351028478 -2.2199606952 -29.3878008124 -5.1998165272 9.2507740790 -24.3593841881
+ 0.6770000000 8.2332161094 0.6038339881 1.0098828240 15.8798337510 -9.6545861879 -2.2454286162 -29.3800273370 -5.3894492859 9.2329200581 -24.3643371043
+ 0.6780000000 8.2453038236 0.6040022281 1.0098881211 15.9055106904 -9.8729267707 -2.2704337756 -29.3704745055 -5.5821775190 9.2133865975 -24.3691304103
+ 0.6790000000 8.2572726298 0.6041714319 1.0098962904 15.9304094983 -10.0900664056 -2.2949509623 -29.3591138758 -5.7780222115 9.1921141274 -24.3737573784
+ 0.6800000000 8.2691134854 0.6043415584 1.0099072850 15.9545225732 -10.3059484340 -2.3189481735 -29.3459167995 -5.9770045425 9.1690681712 -24.3782108999
+ 0.6810000000 8.2808171269 0.6045125675 1.0099210573 15.9778433382 -10.5205177200 -2.3423867207 -29.3308544550 -6.1791459497 9.1442398848 -24.3824835059
+ 0.6820000000 8.2923743205 0.6046844190 1.0099375588 16.0003657329 -10.7337207604 -2.3652285500 -29.3138982625 -6.3844669088 9.1176212419 -24.3865677200
+ 0.6830000000 8.3037760389 0.6048570713 1.0099567394 16.0220841395 -10.9455055428 -2.3874424833 -29.2950201520 -6.5929856897 9.0891798886 -24.3904562962
+ 0.6840000000 8.3150134380 0.6050304819 1.0099785478 16.0429934050 -11.1558215673 -2.4090038446 -29.2741925850 -6.8047182935 9.0588600496 -24.3941422048
+ 0.6850000000 8.3260774394 0.6052046081 1.0100029319 16.0630891651 -11.3646200131 -2.4298819146 -29.2513880567 -7.0196808078 9.0266315586 -24.3976181423
+ 0.6860000000 8.3369587415 0.6053794071 1.0100298397 16.0823677939 -11.5718537198 -2.4500398613 -29.2265791416 -7.2378894588 8.9924900559 -24.4008765609
+ 0.6870000000 8.3476480506 0.6055548355 1.0100592184 16.1008261921 -11.7774771118 -2.4694414065 -29.1997388109 -7.4593593479 8.9564316975 -24.4039099500
+ 0.6880000000 8.3581362424 0.6057308479 1.0100910141 16.1184616926 -11.9814461762 -2.4880571525 -29.1708406693 -7.6841032284 8.9184287961 -24.4067110416
+ 0.6890000000 8.3684143360 0.6059073973 1.0101251721 16.1352720849 -12.1837184982 -2.5058644082 -29.1398589739 -7.9121314639 8.8784309131 -24.4092727964
+ 0.6900000000 8.3784731536 0.6060844362 1.0101616374 16.1512557965 -12.3842533302 -2.5228348212 -29.1067682332 -8.1434543670 8.8364129039 -24.4115879973
+ 0.6910000000 8.3883033349 0.6062619170 1.0102003557 16.1664118412 -12.5830115481 -2.5389340981 -29.0715432478 -8.3780822490 8.7923751658 -24.4136492737
+ 0.6920000000 8.3978955319 0.6064397907 1.0102412724 16.1807396758 -12.7799555952 -2.5541283266 -29.0341593780 -8.6160241518 8.7463188245 -24.4154493387
+ 0.6930000000 8.4072405384 0.6066180064 1.0102843319 16.1942391789 -12.9750495484 -2.5683908797 -28.9945927327 -8.8572866701 8.6982216156 -24.4169811647
+ 0.6940000000 8.4163292735 0.6067965110 1.0103294784 16.2069106735 -13.1682591578 -2.5817024407 -28.9528201900 -9.1018739133 8.6480388309 -24.4182379755
+ 0.6950000000 8.4251525237 0.6069752508 1.0103766562 16.2187549731 -13.3595517468 -2.5940379134 -28.9088190777 -9.3497897871 8.5957507308 -24.4192129006
+ 0.6960000000 8.4337009570 0.6071541724 1.0104258104 16.2297733434 -13.5488961563 -2.6053659740 -28.8625671972 -9.6010380543 8.5413630851 -24.4198989869
+ 0.6970000000 8.4419652774 0.6073332211 1.0104768865 16.2399674380 -13.7362627567 -2.6156555841 -28.8140430343 -9.8556211017 8.4848828985 -24.4202893928
+ 0.6980000000 8.4499363368 0.6075123403 1.0105298291 16.2493393526 -13.9216236012 -2.6248836617 -28.7632260393 -10.1135389186 8.4262937887 -24.4203775333
+ 0.6990000000 8.4576052195 0.6076914721 1.0105845826 16.2578916236 -14.1049524243 -2.6330352783 -28.7100963373 -10.3747887275 8.3655565371 -24.4201571048
+ 0.7000000000 8.4649630533 0.6078705602 1.0106410919 16.2656271818 -14.2862243633 -2.6400892558 -28.6546344285 -10.6393672333 8.3026570736 -24.4196217556
+ 0.7010000000 8.4720009356 0.6080495491 1.0106993029 16.2725493488 -14.4654159306 -2.6460175836 -28.5968215079 -10.9072710291 8.2376073769 -24.4187650577
+ 0.7020000000 8.4787100620 0.6082283829 1.0107591616 16.2786618084 -14.6425051063 -2.6507925706 -28.5366395307 -11.1784952518 8.1704210485 -24.4175807061
+ 0.7030000000 8.4850818482 0.6084070040 1.0108206143 16.2839686608 -14.8174715301 -2.6543953292 -28.4740713671 -11.4530324008 8.1010876981 -24.4160627022
+ 0.7040000000 8.4911079434 0.6085853535 1.0108836073 16.2884744367 -14.9902965133 -2.6568159618 -28.4091008239 -11.7308722767 8.0295735373 -24.4142053565
+ 0.7050000000 8.4967800410 0.6087633735 1.0109480883 16.2921839743 -15.1609626269 -2.6580376345 -28.3417123901 -12.0120042554 7.9558707589 -24.4120029524
+ 0.7060000000 8.5020898893 0.6089410075 1.0110140059 16.2951023993 -15.3294536463 -2.6580360287 -28.2718912310 -12.2964173948 7.8799983034 -24.4094497398
+ 0.7070000000 8.5070294049 0.6091181994 1.0110813095 16.2972351705 -15.4957547275 -2.6567872998 -28.1996233341 -12.5840992424 7.8019767841 -24.4065401042
+ 0.7080000000 8.5115908029 0.6092948918 1.0111499493 16.2985881601 -15.6598526226 -2.6542771608 -28.1248956567 -12.8750346141 7.7218022750 -24.4032687618
+ 0.7090000000 8.5157666109 0.6094710266 1.0112198761 16.2991676655 -15.8217356784 -2.6505010178 -28.0476961451 -13.1692055261 7.6394470773 -24.3996307617
+ 0.7100000000 8.5195494712 0.6096465476 1.0112910422 16.2989802198 -15.9813933388 -2.6454467097 -27.9680134988 -13.4665935462 7.5549103181 -24.3956211331
+ 0.7110000000 8.5229321484 0.6098214004 1.0113634010 16.2980325632 -16.1388160904 -2.6390940145 -27.8858371638 -13.7671799172 7.4682183951 -24.3912348816
+ 0.7120000000 8.5259076445 0.6099955317 1.0114369074 16.2963317191 -16.2939956851 -2.6314234147 -27.8011574680 -14.0709443381 7.3793990345 -24.3864671691
+ 0.7130000000 8.5284693251 0.6101688872 1.0115115171 16.2938851158 -16.4469253799 -2.6224255282 -27.7139657467 -14.3778637072 7.2884553710 -24.3813135067
+ 0.7140000000 8.5306109253 0.6103414126 1.0115871878 16.2907005973 -16.5975999299 -2.6121011383 -27.6242543620 -14.6879120596 7.1953670947 -24.3757697547
+ 0.7150000000 8.5323263430 0.6105130555 1.0116638781 16.2867861440 -16.7460150291 -2.6004430150 -27.5320165023 -15.0010630087 7.1001410208 -24.3698317694
+ 0.7160000000 8.5336096449 0.6106837660 1.0117415483 16.2821498268 -16.8921672473 -2.5874354892 -27.4372461840 -15.3172898747 7.0028110377 -24.3634954096
+ 0.7170000000 8.5344551834 0.6108534953 1.0118201601 16.2767999174 -17.0360542788 -2.5730638165 -27.3399383719 -15.6365644220 6.9034117981 -24.3567567226
+ 0.7180000000 8.5348577040 0.6110221941 1.0118996769 16.2707450752 -17.1776752325 -2.5573237627 -27.2400890681 -15.9588555967 6.8019541052 -24.3496121177
+ 0.7190000000 8.5348123381 0.6111898127 1.0119800644 16.2639943562 -17.3170306308 -2.5402215233 -27.1376953300 -16.2841294822 6.6984264695 -24.3420583622
+ 0.7200000000 8.5343144100 0.6113563039 1.0120612893 16.2565568095 -17.4541217612 -2.5217550238 -27.0327551327 -16.6123517954 6.5928439196 -24.3340922575
+ 0.7210000000 8.5333594434 0.6115216227 1.0121433198 16.2484414153 -17.5889505984 -2.5019135649 -26.9252673772 -16.9434880096 6.4852474705 -24.3257106563
+ 0.7220000000 8.5319432715 0.6116857251 1.0122261260 16.2396572466 -17.7215200828 -2.4806875513 -26.8152319830 -17.2775020577 6.3756783370 -24.3169106406
+ 0.7230000000 8.5300621106 0.6118485666 1.0123096798 16.2302137386 -17.8518344985 -2.4580780745 -26.7026499306 -17.6143551036 6.2641554045 -24.3076896607
+ 0.7240000000 8.5277125450 0.6120101024 1.0123939557 16.2201206945 -17.9798994820 -2.4340967224 -26.5875232783 -17.9540055224 6.1506770647 -24.2980455273
+ 0.7250000000 8.5248913769 0.6121702896 1.0124789292 16.2093877329 -18.1057212268 -2.4087467060 -26.4698551008 -18.2964113847 6.0352667279 -24.2879761439
+ 0.7260000000 8.5215956357 0.6123290876 1.0125645772 16.1980242199 -18.2293063899 -2.3820225867 -26.3496494975 -18.6415305685 5.9179719642 -24.2774795287
+ 0.7270000000 8.5178226674 0.6124864568 1.0126508781 16.1860395036 -18.3506624322 -2.3539201676 -26.2269116442 -18.9893194616 5.7988401164 -24.2665539691
+ 0.7280000000 8.5135701686 0.6126423567 1.0127378126 16.1734432669 -18.4697981054 -2.3244459134 -26.1016477871 -19.3397317952 5.6778982810 -24.2551981165
+ 0.7290000000 8.5088361696 0.6127967462 1.0128253640 16.1602455304 -18.5867234655 -2.2936166464 -25.9738652576 -19.6927186476 5.5551552192 -24.2434109784
+ 0.7300000000 8.5036189600 0.6129495861 1.0129135164 16.1464559230 -18.7014488707 -2.2614408534 -25.8435723828 -20.0482308004 5.4306426332 -24.2311917432
+ 0.7310000000 8.4979169838 0.6131008380 1.0130022550 16.1320836220 -18.8139849202 -2.2279184621 -25.7107788043 -20.4062190108 5.3044140962 -24.2185397901
+ 0.7320000000 8.4917287509 0.6132504603 1.0130915672 16.1171375919 -18.9243429167 -2.1930507004 -25.5754956725 -20.7666327954 5.1765226430 -24.2054548652
+ 0.7330000000 8.4850530378 0.6133984091 1.0131814431 16.1016270541 -19.0325353998 -2.1568492237 -25.4377351718 -21.1294191296 5.0470034581 -24.1919371095
+ 0.7340000000 8.4778889174 0.6135446401 1.0132718748 16.0855615321 -19.1385761539 -2.1193356749 -25.2975105672 -21.4945225128 4.9158756549 -24.1779870080
+ 0.7350000000 8.4702357529 0.6136891105 1.0133628547 16.0689500206 -19.2424790162 -2.0805234386 -25.1548362730 -21.8618872654 4.7831787785 -24.1636052611
+ 0.7360000000 8.4620932077 0.6138317801 1.0134543760 16.0518009441 -19.3442577879 -2.0404175491 -25.0097278356 -22.2314576336 4.6489718737 -24.1487927984
+ 0.7370000000 8.4534612678 0.6139726089 1.0135464328 16.0341225540 -19.4439267849 -1.9990243458 -24.8622018935 -22.6031765901 4.5133134475 -24.1335508579
+ 0.7380000000 8.4443402109 0.6141115564 1.0136390211 16.0159233932 -19.5415014782 -1.9563601431 -24.7122761077 -22.9769847949 4.3762464940 -24.1178810016
+ 0.7390000000 8.4347306058 0.6142485813 1.0137321387 15.9972122785 -19.6369984772 -1.9124507515 -24.5599691750 -23.3528206212 4.2378000043 -24.1017851132
+ 0.7400000000 8.4246333676 0.6143836450 1.0138257833 15.9779973868 -19.7304341989 -1.8673139709 -24.4053009271 -23.7306223506 4.0980208201 -24.0852653305
+ 0.7410000000 8.4140497568 0.6145167109 1.0139199527 15.9582862398 -19.8218248076 -1.8209595608 -24.2482922973 -24.1103282831 3.9569730764 -24.0683240464
+ 0.7420000000 8.4029813690 0.6146477438 1.0140146452 15.9380861603 -19.9111868617 -1.7733985260 -24.0889652493 -24.4918756068 3.8147204972 -24.0509639520
+ 0.7430000000 8.3914300968 0.6147767079 1.0141098605 15.9174047331 -19.9985379364 -1.7246513261 -23.9273427076 -24.8751993870 3.6713131448 -24.0331880382
+ 0.7440000000 8.3793981333 0.6149035678 1.0142055997 15.8962497712 -20.0838965739 -1.6747473852 -23.7634485722 -25.2602325925 3.5267887802 -24.0149995965
+ 0.7450000000 8.3668880517 0.6150282902 1.0143018633 15.8746283826 -20.1672809392 -1.6237084521 -23.5973078199 -25.6469082294 3.3812007807 -23.9964021905
+ 0.7460000000 8.3539027962 0.6151508449 1.0143986511 15.8525469799 -20.2487087974 -1.5715485577 -23.4289464591 -26.0351594578 3.2346177985 -23.9773996473
+ 0.7470000000 8.3404456467 0.6152712031 1.0144959633 15.8300117663 -20.3281982002 -1.5182827982 -23.2583914453 -26.4249185114 3.0871084322 -23.9579960708
+ 0.7480000000 8.3265201896 0.6153893363 1.0145938010 15.8070291544 -20.4057680246 -1.4639352555 -23.0856706266 -26.8161156952 2.9387289312 -23.9381958470
+ 0.7490000000 8.3121303270 0.6155052163 1.0146921658 15.7836057174 -20.4814378985 -1.4085385801 -22.9108127614 -27.2086794130 2.7895240425 -23.9180036539
+ 0.7500000000 8.2972803450 0.6156188178 1.0147910585 15.7597473060 -20.5552269654 -1.3521180449 -22.7338475946 -27.6025382783 2.6395524212 -23.8974244383
+ 0.7510000000 8.2819748881 0.6157301187 1.0148904791 15.7354590670 -20.6271538877 -1.2946913928 -22.5548058120 -27.9976212311 2.4888867399 -23.8764634001
+ 0.7520000000 8.2662189150 0.6158390980 1.0149904276 15.7107459200 -20.6972375132 -1.2362771226 -22.3737189610 -28.3938564838 2.3376000782 -23.8551259940
+ 0.7530000000 8.2500176922 0.6159457358 1.0150909039 15.6856129051 -20.7654972865 -1.1769024791 -22.1906194177 -28.7911705280 2.1857534748 -23.8334179574
+ 0.7540000000 8.2333768034 0.6160500126 1.0151919086 15.6600651213 -20.8319531595 -1.1166031975 -22.0055404045 -29.1894881677 2.0333963245 -23.8113453279
+ 0.7550000000 8.2163021723 0.6161519117 1.0152934408 15.6341069516 -20.8966245687 -1.0554076950 -21.8185160291 -29.5887346179 1.8805911038 -23.7889143921
+ 0.7560000000 8.1988000275 0.6162514191 1.0153954993 15.6077420906 -20.9595304605 -0.9933367334 -21.6295812397 -29.9888356157 1.7274138620 -23.7661316637
+ 0.7570000000 8.1808768702 0.6163485223 1.0154980817 15.5809739715 -21.0206898631 -0.9304114475 -21.4387717644 -30.3897163766 1.5739414222 -23.7430038938
+ 0.7580000000 8.1625394937 0.6164432096 1.0156011861 15.5538060384 -21.0801221693 -0.8666618180 -21.2461240902 -30.7913006264 1.4202379800 -23.7195381281
+ 0.7590000000 8.1437949911 0.6165354695 1.0157048101 15.5262416797 -21.1378470434 -0.8021266041 -21.0516754768 -31.1935106454 1.2663551314 -23.6957417286
+ 0.7600000000 8.1246507220 0.6166252933 1.0158089505 15.4982835937 -21.1938836534 -0.7368369278 -20.8554639615 -31.5962693330 1.1123576495 -23.6716222711
+ 0.7610000000 8.1051142770 0.6167126742 1.0159136033 15.4699338187 -21.2482507009 -0.6708157417 -20.6575283164 -31.9995003011 0.9583241556 -23.6471875209
+ 0.7620000000 8.0851934681 0.6167976069 1.0160187642 15.4411940885 -21.3009668654 -0.6040859924 -20.4579080066 -32.4031268375 0.8043340010 -23.6224454666
+ 0.7630000000 8.0648963671 0.6168800862 1.0161244286 15.4120660386 -21.3520509798 -0.5366799058 -20.2566431722 -32.8070710141 0.6504529052 -23.5974044066
+ 0.7640000000 8.0442313103 0.6169601076 1.0162305921 15.3825511501 -21.4015219487 -0.4686390652 -20.0537746287 -33.2112537436 0.4967328871 -23.5720729647
+ 0.7650000000 8.0232068247 0.6170376683 1.0163372496 15.3526502546 -21.4493982133 -0.3999966960 -19.8493438523 -33.6155967368 0.3432397564 -23.5464599321
+ 0.7660000000 8.0018316028 0.6171127673 1.0164443956 15.3223635593 -21.4956977738 -0.3307770007 -19.6433929367 -34.0200225774 0.1900536268 -23.5205742445
+ 0.7670000000 7.9801145192 0.6171854045 1.0165520245 15.2916909272 -21.5404385030 -0.2610038884 -19.4359645613 -34.4244537198 0.0372547210 -23.4944250477
+ 0.7680000000 7.9580646682 0.6172555800 1.0166601308 15.2606320520 -21.5836382577 -0.1907111722 -19.2271019603 -34.8288117050 -0.1150910520 -23.4680217912
+ 0.7690000000 7.9356913665 0.6173232939 1.0167687093 15.2291864213 -21.6253148157 -0.1199426950 -19.0168489084 -35.2330172330 -0.2669318809 -23.4413742337
+ 0.7700000000 7.9130040732 0.6173885480 1.0168777547 15.1973529189 -21.6654855076 -0.0487329469 -18.8052497076 -35.6369919413 -0.4182017804 -23.4144922516
+ 0.7710000000 7.8900123797 0.6174513455 1.0169872617 15.1651298444 -21.7041672283 0.0228936006 -18.5923491408 -36.0406584581 -0.5688206117 -23.3873858222
+ 0.7720000000 7.8667260415 0.6175116905 1.0170972256 15.1325151363 -21.7413766500 0.0949128729 -18.3781924340 -36.4439394726 -0.7187092677 -23.3600651112
+ 0.7730000000 7.8431549965 0.6175695867 1.0172076419 15.0995065479 -21.7771303024 0.1672903117 -18.1628252105 -36.8467570850 -0.8678025434 -23.3325405519
+ 0.7740000000 7.8193093657 0.6176250384 1.0173185069 15.0661016340 -21.8114445275 0.2399808354 -17.9462934657 -37.2490328924 -1.0160483289 -23.3048228370
+ 0.7750000000 7.7951994024 0.6176780509 1.0174298174 15.0322973924 -21.8443352125 0.3129496988 -17.7286435658 -37.6506895255 -1.1633810396 -23.2769227327
+ 0.7760000000 7.7708354957 0.6177286313 1.0175415709 14.9980902799 -21.8758177941 0.3861730302 -17.5099221961 -38.0516506829 -1.3097223606 -23.2488510676
+ 0.7770000000 7.7462281982 0.6177767875 1.0176537657 14.9634764082 -21.9059074101 0.4596272888 -17.2901763092 -38.4518403117 -1.4549963373 -23.2206188244
+ 0.7780000000 7.7213882146 0.6178225274 1.0177664009 14.9284517426 -21.9346189630 0.5332781329 -17.0694530732 -38.8511821002 -1.5991390588 -23.1922371869
+ 0.7790000000 7.6963264006 0.6178658591 1.0178794767 14.8930121044 -21.9619670865 0.6070805597 -16.8477998415 -39.2495995716 -1.7420971997 -23.1637175217
+ 0.7800000000 7.6710537612 0.6179067925 1.0179929942 14.8571528059 -21.9879659415 0.6810005819 -16.6252641602 -39.6470173476 -1.8838062134 -23.1350712340
+ 0.7810000000 7.6455814647 0.6179453391 1.0181069555 14.8208686583 -22.0126292193 0.7550155824 -16.4018937586 -40.0433611596 -2.0241917228 -23.1063097620
+ 0.7820000000 7.6199208698 0.6179815120 1.0182213641 14.7841541944 -22.0359702566 0.8291031269 -16.1777363581 -40.4385571595 -2.1631827435 -23.0774446375
+ 0.7830000000 7.5940835343 0.6180153260 1.0183362241 14.7470039173 -22.0580020732 0.9032300090 -15.9528395698 -40.8325315321 -2.3007172659 -23.0484874787
+ 0.7840000000 7.5680811571 0.6180467967 1.0184515408 14.7094122696 -22.0787373540 0.9773525819 -15.7272510354 -41.2252106166 -2.4367404273 -23.0194499946
+ 0.7850000000 7.5419255977 0.6180759418 1.0185673207 14.6713732294 -22.0981883057 1.0514384381 -15.5010184076 -41.6165219027 -2.5711897399 -22.9903439084
+ 0.7860000000 7.5156288804 0.6181027804 1.0186835718 14.6328803229 -22.1163666671 1.1254665870 -15.2741892958 -42.0063940410 -2.7039967160 -22.9611809521
+ 0.7870000000 7.4892031737 0.6181273330 1.0188003031 14.5939268418 -22.1332838064 1.1994160909 -15.0468112059 -42.3947563067 -2.8350966854 -22.9319729098
+ 0.7880000000 7.4626607354 0.6181496208 1.0189175248 14.5545060754 -22.1489507365 1.2732555690 -14.8189315092 -42.7815383336 -2.9644305370 -22.9027316048
+ 0.7890000000 7.4360139074 0.6181696660 1.0190352486 14.5146113184 -22.1633780930 1.3469436635 -14.5905974202 -43.1666702079 -3.0919428708 -22.8734688803
+ 0.7900000000 7.4092751813 0.6181874923 1.0191534869 14.4742354484 -22.1765760568 1.4204500970 -14.3618559821 -43.5500832171 -3.2175747780 -22.8441965707
+ 0.7910000000 7.3824571923 0.6182031255 1.0192722536 14.4333709387 -22.1885543735 1.4937557579 -14.1327540228 -43.9317098562 -3.3412652878 -22.8149264966
+ 0.7920000000 7.3555726764 0.6182165922 1.0193915634 14.3920100926 -22.1993224234 1.5668415779 -13.9033381080 -44.3114834278 -3.4629569692 -22.7856704759
+ 0.7930000000 7.3286344155 0.6182279204 1.0195114322 14.3501452700 -22.2088891997 1.6396785144 -13.6736545232 -44.6893378560 -3.5825950043 -22.7564403010
+ 0.7940000000 7.3016552283 0.6182371388 1.0196318766 14.3077688872 -22.2172632925 1.7122280524 -13.4437492550 -45.0652077708 -3.7001257767 -22.7272477253
+ 0.7950000000 7.2746480351 0.6182442775 1.0197529143 14.2648729923 -22.2244528940 1.7844623800 -13.2136679610 -45.4390290633 -3.8154957699 -22.6981044705
+ 0.7960000000 7.2476258416 0.6182493683 1.0198745636 14.2214492782 -22.2304658230 1.8563644970 -12.9834559393 -45.8107388901 -3.9286525112 -22.6690222197
+ 0.7970000000 7.2206016877 0.6182524440 1.0199968433 14.1774893205 -22.2353095561 1.9279175924 -12.7531581013 -46.1802753848 -4.0395463284 -22.6400126070
+ 0.7980000000 7.1935886008 0.6182535381 1.0201197731 14.1329847875 -22.2389911760 1.9990952663 -12.5228189545 -46.5475775275 -4.1481283422 -22.6110871964
+ 0.7990000000 7.1665995847 0.6182526849 1.0202433733 14.0879274342 -22.2415173638 2.0698619640 -12.2924825837 -46.9125852152 -4.2543497175 -22.5822574761
+ 0.8000000000 7.1396476677 0.6182499199 1.0203676644 14.0423086990 -22.2428944805 2.1401925217 -12.0621926214 -47.2752396704 -4.3581640625 -22.5535348755
+ 0.8010000000 7.1127458816 0.6182452794 1.0204926672 13.9961197157 -22.2431285906 2.2100723634 -11.8319922292 -47.6354834450 -4.4595277814 -22.5249307562
+ 0.8020000000 7.0859072141 0.6182388003 1.0206184028 13.9493515422 -22.2422254526 2.2794873176 -11.6019240854 -47.9932602123 -4.5583992680 -22.4964563943
+ 0.8030000000 7.0591445733 0.6182305202 1.0207448925 13.9019953522 -22.2401904526 2.3484138111 -11.3720303546 -48.3485146766 -4.6547371065 -22.4681229679
+ 0.8040000000 7.0324707761 0.6182204769 1.0208721579 13.8540424269 -22.2370286053 2.4168191988 -11.1423526677 -48.7011926263 -4.7484999932 -22.4399415557
+ 0.8050000000 7.0058985801 0.6182087088 1.0210002203 13.8054837849 -22.2327446858 2.4846811381 -10.9129321083 -49.0512412244 -4.8396501890 -22.4119231464
+ 0.8060000000 6.9794406600 0.6181952546 1.0211291010 13.7563101996 -22.2273432517 2.5519878714 -10.6838092097 -49.3986090287 -4.9281528704 -22.3840786258
+ 0.8070000000 6.9531095668 0.6181801532 1.0212588211 13.7065124151 -22.2208286059 2.6187282428 -10.4550239489 -49.7432458619 -5.0139737107 -22.3564187570
+ 0.8080000000 6.9269177230 0.6181634435 1.0213894017 13.6560812951 -22.2132047124 2.6848816809 -10.2266156547 -50.0851026300 -5.0970815425 -22.3289542024
+ 0.8090000000 6.9008773990 0.6181451646 1.0215208635 13.6050078290 -22.2044752131 2.7504184685 -9.9986230105 -50.4241314157 -5.1774469108 -22.3016955113
+ 0.8100000000 6.8750006614 0.6181253554 1.0216532269 13.5532828963 -22.1946436336 2.8153194069 -9.7710842486 -50.7602861475 -5.2550308059 -22.2746530205
+ 0.8110000000 6.8492995118 0.6181040547 1.0217865116 13.5008971072 -22.1837132976 2.8795759514 -9.5440367773 -51.0935217112 -5.3298112028 -22.2478370177
+ 0.8120000000 6.8237860032 0.6180813012 1.0219207378 13.4478407872 -22.1716871633 2.9431799583 -9.3175167433 -51.4237927444 -5.4018132675 -22.2212579399
+ 0.8126749535 6.8066773505 0.6180651414 1.0220118762 13.4116467118 -22.1629522182 2.9857329937 -9.1649429973 -51.6450140262 -5.4488034934 -22.2034571096
+ 0.8130000000 6.7984713372 0.6180571326 1.0220559243 13.3941051832 -22.1585683655 3.0061148786 -9.0915613612 -51.7510593284 -5.4709378336 -22.1949253183
+ 0.8136749535 6.7815028031 0.6180400397 1.0221477188 13.3574482440 -22.1490978050 3.0482019188 -8.9393904019 -51.9702333919 -5.5158553895 -22.1772956828
+ 0.8140000000 6.7733660258 0.6180315887 1.0221920841 13.3396825279 -22.1443601758 3.0683549609 -8.8662087554 -52.0752871060 -5.5369617437 -22.1688477500
+ 0.8145976806 6.7584660487 0.6180156838 1.0222739325 13.3068231610 -22.1353489319 3.1052156465 -8.7318212181 -52.2676027580 -5.5749816806 -22.1533877060
+ 0.8150000000 6.7484824546 0.6180047151 1.0223292261 13.2845629201 -22.1290644677 3.1298835684 -8.6414908266 -52.3964305163 -5.6000337326 -22.1430357699
+ 0.8155976806 6.7337212333 0.6179880379 1.0224116653 13.2512818064 -22.1194038342 3.1663153350 -8.5074963874 -52.5868787209 -5.6364408737 -22.1277398618
+ 0.8160000000 6.7238333711 0.6179765579 1.0224673586 13.2287357373 -22.1126826474 3.1906939238 -8.4174370169 -52.7144411562 -5.6604244313 -22.1175003991
+ 0.8165976806 6.7092173960 0.6179591325 1.0225503953 13.1950275189 -22.1023740411 3.2266942893 -8.2838557694 -52.9030001520 -5.6951955978 -22.1023741132
+ 0.8170000000 6.6994291174 0.6179471564 1.0226064932 13.1721924979 -22.0952173645 3.2507824317 -8.1940822293 -53.0292862135 -5.7180020492 -22.0922502828
+ 0.8175976806 6.6849640634 0.6179290040 1.0226901365 13.1380524527 -22.0842625054 3.2863469857 -8.0609357507 -53.2159394493 -5.7509942022 -22.0772983939
+ 0.8180000000 6.6752794413 0.6179165453 1.0227466465 13.1149249778 -22.0766712018 3.3101364784 -7.9714613427 -53.3409356963 -5.7726009285 -22.0672937987
+ 0.8188840648 6.6541498760 0.6178885031 1.0228714140 13.0636863957 -22.0593764440 3.3619785184 -7.7752863158 -53.6137643084 -5.8184090725 -22.0454825963
+ 0.8190000000 6.6513947018 0.6178847587 1.0228878365 13.0569241968 -22.0570459387 3.3687322881 -7.7496056164 -53.6493541621 -5.8242465944 -22.0426401911
+ 0.8200000000 6.6277850219 0.6178518308 1.0230300793 12.9981812264 -22.0363433735 3.4265579401 -7.5285457873 -53.9545080468 -5.8729495371 -22.0182983936
+ 0.8210000000 6.6044601793 0.6178177953 1.0231733895 12.9386872917 -22.0145653907 3.4836122671 -7.3083123471 -54.2563663993 -5.9186879297 -21.9942769503
+ 0.8220000000 6.5814297757 0.6177826851 1.0233177811 12.8784337054 -21.9917137735 3.5398946688 -7.0889347736 -54.5548992016 -5.9614541183 -21.9705842622
+ 0.8230000000 6.5587031871 0.6177465330 1.0234632670 12.8174120280 -21.9677901285 3.5953952286 -6.8704416129 -54.8500776485 -6.0012463612 -21.9472285524
+ 0.8240000000 6.5362895334 0.6177093708 1.0236098588 12.7556141002 -21.9427959098 3.6500951492 -6.6528605942 -55.1418744156 -6.0380614290 -21.9242178256
+ 0.8250000000 6.5141977198 0.6176712303 1.0237575673 12.6930318128 -21.9167326163 3.7039863300 -6.4362186278 -55.4302635251 -6.0718980910 -21.9015598526
+ 0.8260000000 6.4924364366 0.6176321424 1.0239064019 12.6296571286 -21.8896018208 3.7570714451 -6.2205417853 -55.7152203220 -6.1027576014 -21.8792621660
+ 0.8270000000 6.4710141329 0.6175921377 1.0240563712 12.5654822258 -21.8614051061 3.8093536505 -6.0058552712 -55.9967215013 -6.1306428379 -21.8573320679
+ 0.8280000000 6.4499390015 0.6175512464 1.0242074823 12.5004995831 -21.8321439242 3.8608270810 -5.7921833947 -56.2747450911 -6.1555585059 -21.8357766449
+ 0.8290000000 6.4292189803 0.6175094977 1.0243597411 12.4347019796 -21.8018195938 3.9114772847 -5.5795495657 -56.5492704375 -6.1775112642 -21.8146027638
+ 0.8300000000 6.4088617728 0.6174669209 1.0245131522 12.3680823292 -21.7704335779 3.9613001942 -5.3679763376 -56.8202782039 -6.1965095329 -21.7938170360
+ 0.8310000000 6.3888748447 0.6174235444 1.0246677194 12.3006337034 -21.7379875199 4.0103021765 -5.1574853997 -57.0877503621 -6.2125634712 -21.7734258126
+ 0.8320000000 6.3692654063 0.6173793960 1.0248234452 12.2323494428 -21.7044831458 4.0584900354 -4.9480975488 -57.3516701767 -6.2256850408 -21.7534352004
+ 0.8330000000 6.3500404025 0.6173345032 1.0249803305 12.1632232147 -21.6699220764 4.1058618338 -4.7398326754 -57.6120221870 -6.2358880301 -21.7338510790
+ 0.8340000000 6.3312065132 0.6172888929 1.0251383747 12.0932490111 -21.6343058218 4.1524073155 -4.5327097669 -57.8687921933 -6.2431880271 -21.7146790976
+ 0.8350000000 6.3127701644 0.6172425913 1.0252975763 12.0224210333 -21.5976361477 4.1981262108 -4.3267469350 -58.1219672549 -6.2476023046 -21.6959246373
+ 0.8360000000 6.2947375252 0.6171956242 1.0254579325 11.9507337116 -21.5599151131 4.2430283215 -4.1219614133 -58.3715356759 -6.2491497997 -21.6775928084
+ 0.8370000000 6.2771144959 0.6171480166 1.0256194397 11.8781817871 -21.5211449278 4.2871239127 -3.9183695424 -58.6174869832 -6.2478511438 -21.6596884690
+ 0.8380000000 6.2599067024 0.6170997930 1.0257820921 11.8047603437 -21.4813277185 4.3304146716 -3.7159867684 -58.8598119021 -6.2437286757 -21.6422162457
+ 0.8390000000 6.2431194965 0.6170509774 1.0259458826 11.7304648066 -21.4404655256 4.3728940604 -3.5148276490 -59.0985023383 -6.2368064103 -21.6251805315
+ 0.8400000000 6.2267579589 0.6170015930 1.0261108029 11.6552908725 -21.3985607569 4.4145652029 -3.3149058690 -59.3335513770 -6.2271099289 -21.6085854457
+ 0.8410000000 6.2108268968 0.6169516626 1.0262768439 11.5792345260 -21.3556162242 4.4554410464 -3.1162342430 -59.5649532639 -6.2146663508 -21.5924348329
+ 0.8420000000 6.1953308381 0.6169012078 1.0264439952 11.5022920916 -21.3116349484 4.4955350594 -2.9188247128 -59.7927033772 -6.1995043491 -21.5767322847
+ 0.8430000000 6.1802740289 0.6168502501 1.0266122447 11.4244602490 -21.2666198925 4.5348521095 -2.7226883528 -60.0167981999 -6.1816541487 -21.5614811622
+ 0.8440000000 6.1656604333 0.6167988101 1.0267815783 11.3457360293 -21.2205739605 4.5733887271 -2.5278353876 -60.2372352958 -6.1611474968 -21.5466845961
+ 0.8450000000 6.1514937277 0.6167469075 1.0269519812 11.2661167813 -21.1735005255 4.6111509540 -2.3342752020 -60.4540133089 -6.1380175565 -21.5323454465
+ 0.8460000000 6.1377773042 0.6166945614 1.0271234380 11.1856001897 -21.1254034596 4.6481545814 -2.1420163339 -60.6671319439 -6.1122988653 -21.5184662990
+ 0.8470000000 6.1245142717 0.6166417899 1.0272959318 11.1041843021 -21.0762868924 4.6844159576 -1.9510664854 -60.8765919302 -6.0840273419 -21.5050494890
+ 0.8480000000 6.1117074569 0.6165886107 1.0274694440 11.0218675300 -21.0261549200 4.7199426387 -1.7614325394 -61.0823949875 -6.0532402792 -21.4920971272
+ 0.8490000000 6.0993594058 0.6165350409 1.0276439541 10.9386486506 -20.9750116088 4.7547335849 -1.5731205688 -61.2845438030 -6.0199763032 -21.4796110976
+ 0.8500000000 6.0874723791 0.6164810965 1.0278194411 10.8545268035 -20.9228615722 4.7887972991 -1.3861358372 -61.4830420287 -5.9842752692 -21.4675930139
+ 0.8510000000 6.0760483546 0.6164267929 1.0279958832 10.7695015012 -20.8697099954 4.8221520860 -1.2004828090 -61.6778942554 -5.9461782227 -21.4560442191
+ 0.8520000000 6.0650890300 0.6163721449 1.0281732578 10.6835726390 -20.8155623600 4.8548167366 -1.0161651666 -61.8691059765 -5.9057273926 -21.4449658121
+ 0.8530000000 6.0545958260 0.6163171664 1.0283515402 10.5967404843 -20.7604241343 4.8868009914 -0.8331858325 -62.0566835497 -5.8629661773 -21.4343586744
+ 0.8540000000 6.0445698901 0.6162618709 1.0285307040 10.5090056810 -20.7043007777 4.9181057371 -0.6515469818 -62.2406341719 -5.8179390999 -21.4242234690
+ 0.8550000000 6.0350120904 0.6162062710 1.0287107226 10.4203692675 -20.6471983541 4.9487414933 -0.4712500366 -62.4209658754 -5.7706917062 -21.4145605932
+ 0.8560000000 6.0259230204 0.6161503784 1.0288915686 10.3308326857 -20.5891235516 4.9787286368 -0.2922956793 -62.5976874998 -5.7212705217 -21.4053701797
+ 0.8570000000 6.0173030042 0.6160942043 1.0290732142 10.2403977764 -20.5300833825 5.0080878697 -0.1146838771 -62.7708086524 -5.6697230378 -21.3966521244
+ 0.8580000000 6.0091521035 0.6160377593 1.0292556293 10.1490667599 -20.4700848548 5.0368306417 0.0615860899 -62.9403396675 -5.6160976924 -21.3884061152
+ 0.8590000000 6.0014701220 0.6159810534 1.0294387827 10.0568422401 -20.4091349769 5.0649593949 0.2365156156 -63.1062915797 -5.5604438225 -21.3806316307
+ 0.8600000000 5.9942565976 0.6159240958 1.0296226426 9.9637272397 -20.3472414012 5.0924862306 0.4101067770 -63.2686761199 -5.5028115639 -21.3733278914
+ 0.8610000000 5.9875108086 0.6158668950 1.0298071774 9.8697252074 -20.2844124413 5.1194330515 0.5823623179 -63.4275056865 -5.4432518060 -21.3664938617
+ 0.8620000000 5.9812317820 0.6158094589 1.0299923546 9.7748400009 -20.2206567494 5.1458218519 0.7532856193 -63.5827933029 -5.3818161730 -21.3601282802
+ 0.8630000000 5.9754183028 0.6157517950 1.0301781400 9.6790758591 -20.1559829723 5.1716653221 0.9228806666 -63.7345525763 -5.3185570005 -21.3542296888
+ 0.8640000000 5.9700689199 0.6156939102 1.0303644984 9.5824374058 -20.0903997550 5.1969671754 1.0911520344 -63.8827976700 -5.2535272855 -21.3487964326
+ 0.8650000000 5.9651819344 0.6156358107 1.0305513942 9.4849296969 -20.0239164135 5.2217406450 1.2581048990 -64.0275433005 -5.1867805909 -21.3438266110
+ 0.8660000000 5.9607554055 0.6155775022 1.0307387924 9.3865582288 -19.9565429491 5.2460085223 1.4237450218 -64.1688047083 -5.1183709978 -21.3393180797
+ 0.8670000000 5.9567871612 0.6155189896 1.0309266571 9.2873289027 -19.8882897062 5.2697934159 1.5880787109 -64.3065976151 -5.0483530842 -21.3352684845
+ 0.8680000000 5.9532748129 0.6154602776 1.0311149514 9.1872479880 -19.8191670142 5.2931087802 1.7511127854 -64.4409381811 -4.9767818973 -21.3316752925
+ 0.8690000000 5.9502157594 0.6154013703 1.0313036370 9.0863221323 -19.7491851916 5.3159593390 1.9128545605 -64.5718429784 -4.9037129043 -21.3285357903
+ 0.8700000000 5.9476071718 0.6153422713 1.0314926762 8.9845584150 -19.6783552426 5.3383589743 2.0733118618 -64.6993289894 -4.8292019010 -21.3258470375
+ 0.8710000000 5.9454460000 0.6152829836 1.0316820315 8.8819643461 -19.6066888626 5.3603306687 2.2324930047 -64.8234135780 -4.7533049642 -21.3236058709
+ 0.8720000000 5.9437289872 0.6152235095 1.0318716653 8.7785478304 -19.5341980770 5.3818969790 2.3904067556 -64.9441144468 -4.6760784273 -21.3218089378
+ 0.8730000000 5.9424526850 0.6151638511 1.0320615391 8.6743171287 -19.4608948882 5.4030716488 2.5470622942 -65.0614495957 -4.5975788524 -21.3204527271
+ 0.8740000000 5.9416134586 0.6151040101 1.0322516133 8.5692808581 -19.3867912855 5.4238600941 2.7024691954 -65.1754372958 -4.5178629814 -21.3195335701
+ 0.8750000000 5.9412074660 0.6150439876 1.0324418491 8.4634480507 -19.3118999400 5.4442763333 2.8566374453 -65.2860960897 -4.4369876495 -21.3190475961
+ 0.8760000000 5.9412306642 0.6149837841 1.0326322083 8.3568281475 -19.2362342016 5.4643428758 3.0095774188 -65.3934447641 -4.3550097380 -21.3189907371
+ 0.8770000000 5.9416788269 0.6149233995 1.0328226529 8.2494309555 -19.1598077259 5.4840816302 3.1612998391 -65.4975023077 -4.2719861497 -21.3193587621
+ 0.8780000000 5.9425475617 0.6148628334 1.0330131441 8.1412666111 -19.0826341429 5.5035061558 3.3118157388 -65.5982878715 -4.1879737813 -21.3201473073
+ 0.8790000000 5.9438323142 0.6148020852 1.0332036424 8.0323455796 -19.0047270734 5.5226221726 3.4611364418 -65.6958207439 -4.1030294778 -21.3213518792
+ 0.8800000000 5.9455283442 0.6147411535 1.0333941095 7.9226787085 -18.9261007912 5.5414433460 3.6092735795 -65.7901203531 -4.0172099492 -21.3229678105
+ 0.8810000000 5.9476307319 0.6146800364 1.0335845078 7.8122772183 -18.8467702112 5.5599911489 3.7562390685 -65.8812062422 -3.9305717258 -21.3249902657
+ 0.8820000000 5.9501343977 0.6146187314 1.0337747998 7.7011526572 -18.7667505203 5.5782863333 3.9020450688 -65.9690980283 -3.8431711337 -21.3274142752
+ 0.8830000000 5.9530341211 0.6145572358 1.0339649478 7.5893168701 -18.6860568840 5.5963418304 4.0467039456 -66.0538153646 -3.7550642721 -21.3302347653
+ 0.8840000000 5.9563245443 0.6144955466 1.0341549140 7.4767819966 -18.6047044657 5.6141632576 4.1902282515 -66.1353779172 -3.6663069699 -21.3334465622
+ 0.8850000000 5.9600001472 0.6144336600 1.0343446612 7.3635605156 -18.5227090267 5.6317634710 4.3326307432 -66.2138053709 -3.5769547061 -21.3370443477
+ 0.8860000000 5.9640552535 0.6143715718 1.0345341534 7.2496652326 -18.4400869058 5.6491624449 4.4739243600 -66.2891174061 -3.4870625678 -21.3410226652
+ 0.8870000000 5.9684840519 0.6143092772 1.0347233550 7.1351092385 -18.3568546755 5.6663793995 4.6141221826 -66.3613336610 -3.3966852289 -21.3453759523
+ 0.8880000000 5.9732806168 0.6142467714 1.0349122300 7.0199058836 -18.2730288891 5.6834262448 4.7532373957 -66.4304736944 -3.3058769327 -21.3500985724
+ 0.8890000000 5.9784389125 0.6141840490 1.0351007428 6.9040687756 -18.1886261006 5.7003080411 4.8912832702 -66.4965569653 -3.2146914536 -21.3551848179
+ 0.8900000000 5.9839527667 0.6141211042 1.0352888583 6.7876118123 -18.1036633839 5.7170364289 5.0282731826 -66.5596028419 -3.1231820187 -21.3606288653
+ 0.8910000000 5.9898158771 0.6140579306 1.0354765428 6.6705491679 -18.0181583092 5.7336295633 5.1642205944 -66.6196305822 -3.0314012699 -21.3664247798
+ 0.8920000000 5.9960218336 0.6139945217 1.0356637626 6.5528952576 -17.9321286375 5.7501048898 5.2991390128 -66.6766592978 -2.9394012488 -21.3725665476
+ 0.8930000000 6.0025641409 0.6139308706 1.0358504842 6.4346647171 -17.8455921031 5.7664729547 5.4330419529 -66.7307079177 -2.8472333852 -21.3790481092
+ 0.8940000000 6.0094362233 0.6138669701 1.0360366743 6.3158723998 -17.7585664292 5.7827377868 5.5659429206 -66.7817951703 -2.7549484650 -21.3858633629
+ 0.8950000000 6.0166313969 0.6138028127 1.0362223003 6.1965333974 -17.6710697687 5.7989094650 5.6978554358 -66.8299395974 -2.6625965531 -21.3930061159
+ 0.8960000000 6.0241428745 0.6137383905 1.0364073304 6.0766630279 -17.5831206834 5.8150041339 5.8287930148 -66.8751595379 -2.5702269605 -21.4004700875
+ 0.8970000000 6.0319637900 0.6136736956 1.0365917334 5.9562768055 -17.4947378808 5.8310373228 5.9587691314 -66.9174730930 -2.4778882360 -21.4082489428
+ 0.8980000000 6.0400872231 0.6136087195 1.0367754779 5.8353904237 -17.4059400159 5.8470179122 6.0877971780 -66.9568980907 -2.3856281644 -21.4163363276
+ 0.8990000000 6.0485062050 0.6135434541 1.0369585329 5.7140197501 -17.3167456981 5.8629484201 6.2158904495 -66.9934520700 -2.2934937392 -21.4247258727
+ 0.9000000000 6.0572136855 0.6134778907 1.0371408679 5.5921808398 -17.2271738783 5.8788370740 6.3430621731 -67.0271523016 -2.2015310874 -21.4334111389
+ 0.9010000000 6.0662025373 0.6134120205 1.0373224531 5.4698899238 -17.1372438328 5.8946979160 6.4693254931 -67.0580157741 -2.1097854433 -21.4423856189
+ 0.9020000000 6.0754655816 0.6133458348 1.0375032592 5.3471633839 -17.0469749358 5.9105444862 6.5946934326 -67.0860591611 -2.0183011483 -21.4516427728
+ 0.9030000000 6.0849956163 0.6132793244 1.0376832566 5.2240177355 -16.9563864605 5.9263837436 6.7191788513 -67.1112987853 -1.9271216584 -21.4611760664
+ 0.9040000000 6.0947854221 0.6132124807 1.0378624162 5.1004696197 -16.8654975779 5.9422162586 6.8427944315 -67.1337506050 -1.8362895239 -21.4709789760
+ 0.9050000000 6.1048277212 0.6131452947 1.0380407092 4.9765358140 -16.7743277227 5.9580481754 6.9655527162 -67.1534302428 -1.7458463162 -21.4810449248
+ 0.9060000000 6.1151151803 0.6130777572 1.0382181074 4.8522332217 -16.6828965828 5.9738914140 7.0874660974 -67.1703529755 -1.6558326078 -21.4913672846
+ 0.9070000000 6.1256404388 0.6130098591 1.0383945828 4.7275788483 -16.5912238880 5.9897575243 7.2085467760 -67.1845337014 -1.5662879822 -21.5019394134
+ 0.9080000000 6.1363961410 0.6129415916 1.0385701075 4.6025897806 -16.4993292026 6.0056513535 7.3288067166 -67.1959869042 -1.4772510503 -21.5127546991
+ 0.9090000000 6.1473749411 0.6128729458 1.0387446537 4.4772831774 -16.4072319178 6.0215711511 7.4482576344 -67.2047266424 -1.3887594366 -21.5238065637
+ 0.9100000000 6.1585694525 0.6128039128 1.0389181939 4.3516762820 -16.3149516225 6.0375208343 7.5669110458 -67.2107665875 -1.3008497084 -21.5350883904
+ 0.9110000000 6.1699722492 0.6127344837 1.0390907012 4.2257864118 -16.2225080963 6.0535102550 7.6847782585 -67.2141200175 -1.2135573622 -21.5465935245
+ 0.9120000000 6.1815758972 0.6126646497 1.0392621486 4.0996309335 -16.1299210978 6.0695489731 7.8018703295 -67.2147997841 -1.1269168427 -21.5583153153
+ 0.9130000000 6.1933729911 0.6125944021 1.0394325095 3.9732272375 -16.0372101482 6.0856396043 7.9181980157 -67.2128182769 -1.0409615683 -21.5702471648
+ 0.9140000000 6.2053561583 0.6125237324 1.0396017572 3.8465927269 -15.9443945229 6.1017778882 8.0337717631 -67.2081874168 -0.9557239233 -21.5823825319
+ 0.9150000000 6.2175179971 0.6124526320 1.0397698652 3.7197448370 -15.8514936367 6.1179654889 8.1486017708 -67.2009187036 -0.8712351895 -21.5947148484
+ 0.9160000000 6.2298510784 0.6123810925 1.0399368078 3.5927010244 -15.7585270354 6.1342102745 8.2626979843 -67.1910232131 -0.7875255389 -21.6072375199
+ 0.9170000000 6.2423479809 0.6123091054 1.0401025591 3.4654787388 -15.6655141756 6.1505198303 8.3760700486 -67.1785115651 -0.7046240621 -21.6199439728
+ 0.9180000000 6.2550013308 0.6122366624 1.0402670935 3.3380953926 -15.5724742097 6.1668945474 8.4887272572 -67.1633938882 -0.6225588012 -21.6328277079
+ 0.9190000000 6.2678038046 0.6121637554 1.0404303855 3.2105683498 -15.4794259801 6.1833277095 8.6006785429 -67.1456798170 -0.5413567485 -21.6458823034
+ 0.9200000000 6.2807480595 0.6120903761 1.0405924099 3.0829149543 -15.3863884101 6.1998188319 8.7119325566 -67.1253785501 -0.4610437802 -21.6591013209
+ 0.9210000000 6.2938267353 0.6120165165 1.0407531420 2.9551525197 -15.2933804909 6.2163739022 8.8224976627 -67.1024988499 -0.3816446568 -21.6724783059
+ 0.9220000000 6.3070324933 0.6119421683 1.0409125574 2.8272982960 -15.2004210527 6.2329985729 8.9323818892 -67.0770490113 -0.3031830592 -21.6860068401
+ 0.9230000000 6.3203580579 0.6118673234 1.0410706317 2.6993694353 -15.1075285681 6.2496911624 9.0415928735 -67.0490368288 -0.2256816279 -21.6996805989
+ 0.9240000000 6.3337962181 0.6117919741 1.0412273409 2.5713829828 -15.0147211520 6.2664428104 9.1501378576 -67.0184695975 -0.1491619678 -21.7134933525
+ 0.9250000000 6.3473397543 0.6117161123 1.0413826615 2.4433559140 -14.9220169334 6.2832511352 9.2580237795 -66.9853541785 -0.0736445861 -21.7274388636
+ 0.9260000000 6.3609814403 0.6116397301 1.0415365702 2.3153051251 -14.8294340351 6.3001203814 9.3652572707 -66.9496970016 0.0008511014 -21.7415108870
+ 0.9270000000 6.3747140854 0.6115628193 1.0416890444 2.1872473953 -14.7369903492 6.3170543461 9.4718446031 -66.9115040345 0.0743067267 -21.7557032273
+ 0.9280000000 6.3885305757 0.6114853722 1.0418400617 2.0591993509 -14.6447033724 6.3340495678 9.5777916337 -66.8707807521 0.1467049255 -21.7700097974
+ 0.9290000000 6.4024238756 0.6114073809 1.0419895999 1.9311774582 -14.5525902130 6.3510955895 9.6831038044 -66.8275321414 0.2180293276 -21.7844246186
+ 0.9300000000 6.4163869532 0.6113288376 1.0421376376 1.8031980681 -14.4606679135 6.3681884948 9.7877862425 -66.7817627709 0.2882646128 -21.7989417110
+ 0.9310000000 6.4304127843 0.6112497343 1.0422841537 1.6752774087 -14.3689534260 6.3853309346 9.8918437607 -66.7334767956 0.3573964993 -21.8135550939
+ 0.9320000000 6.4444943956 0.6111700632 1.0424291280 1.5474315434 -14.2774634082 6.4025249842 9.9952808009 -66.6826779267 0.4254116939 -21.8282588465
+ 0.9330000000 6.4586249037 0.6110898165 1.0425725403 1.4196763352 -14.1862140981 6.4197657953 10.0981013815 -66.6293694047 0.4922978447 -21.8430471658
+ 0.9340000000 6.4727975171 0.6110089865 1.0427143713 1.2920274416 -14.0952213239 6.4370419712 10.2003090989 -66.5735540060 0.5580435269 -21.8579143646
+ 0.9350000000 6.4870054640 0.6109275656 1.0428546020 1.1645003647 -14.0045007607 6.4543484598 10.3019072354 -66.5152341144 0.6226382914 -21.8728547602
+ 0.9360000000 6.5012419971 0.6108455461 1.0429932144 1.0371104447 -13.9140679035 6.4716864859 10.4028987605 -66.4544117275 0.6860726474 -21.8878626737
+ 0.9370000000 6.5155004362 0.6107629204 1.0431301909 0.9098728171 -13.8239378971 6.4890566371 10.5032862750 -66.3910884281 0.7483380099 -21.9029324919
+ 0.9380000000 6.5297742045 0.6106796812 1.0432655145 0.7828023769 -13.7341254495 6.5064531139 10.6030719591 -66.3252653603 0.8094266486 -21.9180587238
+ 0.9390000000 6.5440568319 0.6105958212 1.0433991688 0.6559137759 -13.6446448424 6.5238641716 10.7022575773 -66.2569432376 0.8693316696 -21.9332359976
+ 0.9400000000 6.5583418852 0.6105113333 1.0435311384 0.5292214747 -13.5555101158 6.5412840110 10.8008445894 -66.1861224149 0.9280470568 -21.9484589495
+ 0.9410000000 6.5726229729 0.6104262104 1.0436614082 0.4027397378 -13.4667350433 6.5587126597 10.8988341545 -66.1128028960 0.9855676504 -21.9637222219
+ 0.9420000000 6.5868937860 0.6103404458 1.0437899641 0.2764825913 -13.3783330038 6.5761495258 10.9962270756 -66.0369843080 1.0418890917 -21.9790205245
+ 0.9430000000 6.6011481334 0.6102540330 1.0439167926 0.1504637875 -13.2903169235 6.5935882554 11.0930237493 -65.9586658789 1.0970077703 -21.9943486906
+ 0.9440000000 6.6153799453 0.6101669655 1.0440418808 0.0246968032 -13.2026992843 6.6110171877 11.1892241727 -65.8778464475 1.1509208022 -22.0097016741
+ 0.9450000000 6.6295832046 0.6100792375 1.0441652168 -0.1008051076 -13.1154922475 6.6284301036 11.2848280566 -65.7945245354 1.2036260652 -22.0250744374
+ 0.9460000000 6.6437519505 0.6099908430 1.0442867891 -0.2260289163 -13.0287076364 6.6458261101 11.3798348330 -65.7086983570 1.2551221747 -22.0404619495
+ 0.9470000000 6.6578803170 0.6099017767 1.0444065871 -0.3509618608 -12.9423568467 6.6632037960 11.4742436011 -65.6203657957 1.3054084278 -22.0558592458
+ 0.9480000000 6.6719625703 0.6098120335 1.0445246011 -0.4755914815 -12.8564508041 6.6805565855 11.5680530766 -65.5295243829 1.3544847483 -22.0712614851
+ 0.9490000000 6.6859931118 0.6097216087 1.0446408218 -0.5999056234 -12.7709999667 6.6978731527 11.6612615985 -65.4361713080 1.4023516619 -22.0866639474
+ 0.9500000000 6.6999664066 0.6096304978 1.0447552410 -0.7238923806 -12.6860144147 6.7151471255 11.7538672487 -65.3403034936 1.4490103287 -22.1020619204
+ 0.9510000000 6.7138769846 0.6095386970 1.0448678509 -0.8475400977 -12.6015038401 6.7323770199 11.8458678614 -65.2419176069 1.4944625177 -22.1174506959
+ 0.9520000000 6.7277194784 0.6094462027 1.0449786444 -0.9708374092 -12.5174774859 6.7495610082 11.9372609710 -65.1410100384 1.5387105502 -22.1328256287
+ 0.9530000000 6.7414886651 0.6093530118 1.0450876153 -1.0937732782 -12.4339441055 6.7666925710 12.0280437571 -65.0375768789 1.5817572424 -22.1481821981
+ 0.9540000000 6.7551794692 0.6092591218 1.0451947581 -1.2163369990 -12.3509119622 6.7837608320 12.1182130517 -64.9316139315 1.6236058796 -22.1635160068
+ 0.9550000000 6.7687868823 0.6091645305 1.0453000681 -1.3385181363 -12.2683889082 6.8007595169 12.2077654685 -64.8231167903 1.6642602479 -22.1788226610
+ 0.9560000000 6.7823059612 0.6090692362 1.0454035409 -1.4603065259 -12.1863823818 6.8176869421 12.2966974144 -64.7120808554 1.7037246086 -22.1940977659
+ 0.9570000000 6.7957318689 0.6089732376 1.0455051727 -1.5816923133 -12.1048993599 6.8345412425 12.3850050363 -64.5985013107 1.7420036410 -22.2093369869
+ 0.9580000000 6.8090599219 0.6088765342 1.0456049608 -1.7026659969 -12.0239463139 6.8513162056 12.4726841598 -64.4823730989 1.7791023837 -22.2245361160
+ 0.9590000000 6.8222855925 0.6087791258 1.0457029031 -1.8232184314 -11.9435292077 6.8680015408 12.5597302970 -64.3636909340 1.8150262074 -22.2396910719
+ 0.9600000000 6.8354044159 0.6086810125 1.0457989980 -1.9433407587 -11.8636535839 6.8845913554 12.6461387883 -64.2424493875 1.8497808498 -22.2547977710
+ 0.9610000000 6.8484119871 0.6085821953 1.0458932443 -2.0630244076 -11.7843245654 6.9010841684 12.7319048148 -64.1186429040 1.8833723905 -22.2698521225
+ 0.9620000000 6.8613040061 0.6084826753 1.0459856413 -2.1822611358 -11.7055468097 6.9174784285 12.8170233411 -63.9922657779 1.9158071933 -22.2848500941
+ 0.9630000000 6.8740763316 0.6083824543 1.0460761892 -2.3010430763 -11.6273244624 6.9337685103 12.9014890474 -63.8633121252 1.9470918464 -22.2997877841
+ 0.9640000000 6.8867249820 0.6082815345 1.0461648888 -2.4193627418 -11.5496611570 6.9499449517 12.9852963375 -63.7317758975 1.9772331371 -22.3146614215
+ 0.9650000000 6.8992460294 0.6081799187 1.0462517416 -2.5372129457 -11.4725601124 6.9660025601 13.0684394941 -63.5976509747 2.0062380902 -22.3294672272
+ 0.9660000000 6.9116355963 0.6080776099 1.0463367489 -2.6545868012 -11.3960241352 6.9819404283 13.1509126918 -63.4609311819 2.0341139438 -22.3442014097
+ 0.9670000000 6.9238899065 0.6079746116 1.0464199126 -2.7714777679 -11.3200555695 6.9977576557 13.2327099327 -63.3216102624 2.0608680926 -22.3588602361
+ 0.9680000000 6.9360053432 0.6078709278 1.0465012355 -2.8878797014 -11.2446562578 7.0134495225 13.3138249737 -63.1796818484 2.0865080289 -22.3734401091
+ 0.9690000000 6.9479784489 0.6077665630 1.0465807212 -3.0037868571 -11.1698275461 7.0290077149 13.3942513348 -63.0351394751 2.1110413191 -22.3879375670
+ 0.9700000000 6.9598058095 0.6076615218 1.0466583732 -3.1191938018 -11.0955703807 7.0444280710 13.4739824660 -62.8879766799 2.1344756466 -22.4023491359
+ 0.9710000000 6.9714840506 0.6075558093 1.0467341952 -3.2340954125 -11.0218853080 7.0597105998 13.5530117606 -62.7381870186 2.1568187902 -22.4166713261
+ 0.9720000000 6.9830098944 0.6074494310 1.0468081914 -3.3484869269 -10.9487724243 7.0748553951 13.6313324839 -62.5857640363 2.1780785680 -22.4309007082
+ 0.9730000000 6.9943802199 0.6073423925 1.0468803665 -3.4623639965 -10.8762313549 7.0898589693 13.7089376958 -62.4307012364 2.1982627816 -22.4450339945
+ 0.9740000000 7.0055920625 0.6072346999 1.0469507261 -3.5757226882 -10.8042612666 7.1047144601 13.7858202592 -62.2729920951 2.2173791948 -22.4590680387
+ 0.9750000000 7.0166424917 0.6071263596 1.0470192758 -3.6885593878 -10.7328609420 7.1194190336 13.8619730174 -62.1126301646 2.2354355811 -22.4729996806
+ 0.9760000000 7.0275286081 0.6070173782 1.0470860209 -3.8008707974 -10.6620287773 7.1339739289 13.9373888072 -61.9496090895 2.2524397051 -22.4868257422
+ 0.9770000000 7.0382476035 0.6069077624 1.0471509672 -3.9126539901 -10.5917627419 7.1483805772 14.0120603819 -61.7839225752 2.2683992692 -22.5005431090
+ 0.9780000000 7.0487968237 0.6067975194 1.0472141210 -4.0239064650 -10.5220603839 7.1626369919 14.0859803280 -61.6155643554 2.2833218598 -22.5141488152
+ 0.9790000000 7.0591737679 0.6066866563 1.0472754893 -4.1346261479 -10.4529188460 7.1767379265 14.1591410743 -61.4445282061 2.2972149301 -22.5276400438
+ 0.9800000000 7.0693759633 0.6065751806 1.0473350790 -4.2448112857 -10.3843349015 7.1906820610 14.2315350782 -61.2708080523 2.3100858522 -22.5410139636
+ 0.9810000000 7.0794009625 0.6064631000 1.0473928966 -4.3544604409 -10.3163049516 7.2044721401 14.3031548406 -61.0943979838 2.3219419026 -22.5542677240
+ 0.9820000000 7.0892464055 0.6063504223 1.0474489488 -4.4635725493 -10.2488250056 7.2181113046 14.3739928230 -60.9152922230 2.3327902122 -22.5673985403
+ 0.9830000000 7.0989100858 0.6062371555 1.0475032428 -4.5721469803 -10.1818907109 7.2315992370 14.4440413563 -60.7334850875 2.3426377148 -22.5804037861
+ 0.9840000000 7.1083899518 0.6061233077 1.0475557864 -4.6801835363 -10.1154973697 7.2449322032 14.5132926480 -60.5489710046 2.3514911336 -22.5932809943
+ 0.9850000000 7.1176839771 0.6060088872 1.0476065871 -4.7876823337 -10.0496399306 7.2581104609 14.5817389827 -60.3617446211 2.3593570401 -22.6060276820
+ 0.9860000000 7.1267901583 0.6058939025 1.0476556519 -4.8946437960 -9.9843129904 7.2711385485 14.6493727383 -60.1718008205 2.3662418449 -22.6186413437
+ 0.9870000000 7.1357065782 0.6057783622 1.0477029875 -5.0010687089 -9.9195107995 7.2840216606 14.7161863016 -59.9791346893 2.3721517535 -22.6311195402
+ 0.9880000000 7.1444314795 0.6056622751 1.0477486015 -5.1069582936 -9.8552273024 7.2967611698 14.7821719541 -59.7837414712 2.3770927103 -22.6434600043
+ 0.9890000000 7.1529632659 0.6055456500 1.0477925017 -5.2123142099 -9.7914561556 7.3093545171 14.8473218741 -59.5856165805 2.3810703894 -22.6556606449
+ 0.9900000000 7.1613003633 0.6054284959 1.0478346952 -5.3171384132 -9.7281906872 7.3218034934 14.9116283684 -59.3847557233 2.3840902687 -22.6677193499
+ 0.9910000000 7.1694412191 0.6053108221 1.0478751887 -5.4214331412 -9.6654239050 7.3341146921 14.9750838886 -59.1811549124 2.3861576225 -22.6796339776
+ 0.9920000000 7.1773843701 0.6051926379 1.0479139886 -5.5252009793 -9.6031485282 7.3462955998 15.0376809330 -58.9748104280 2.3872774777 -22.6914024546
+ 0.9930000000 7.1851285257 0.6050739529 1.0479511016 -5.6284449484 -9.5413570201 7.3583491809 15.0994119212 -58.7657187668 2.3874545634 -22.7030228956
+ 0.9940000000 7.1926725760 0.6049547768 1.0479865349 -5.7311685009 -9.4800415934 7.3702736307 15.1602691981 -58.5538766518 2.3866933049 -22.7144936067
+ 0.9950000000 7.2000154348 0.6048351195 1.0480202947 -5.8333753524 -9.4191941746 7.3820721768 15.2202452877 -58.3392811651 2.3849979055 -22.7258128639
+ 0.9960000000 7.2071560367 0.6047149912 1.0480523867 -5.9350694620 -9.3588064218 7.3937536612 15.2793329132 -58.1219297642 2.3823723468 -22.7369789018
+ 0.9970000000 7.2140934128 0.6045944025 1.0480828161 -6.0362551098 -9.2988697667 7.4053279654 15.3375248840 -57.9018202369 2.3788203454 -22.7479900235
+ 0.9980000000 7.2208267876 0.6044733639 1.0481115886 -6.1369370030 -9.2393754173 7.4167994887 15.3948139484 -57.6789506401 2.3743453023 -22.7588447389
+ 0.9990000000 7.2273555893 0.6043518865 1.0481387100 -6.2371202712 -9.1803143544 7.4281668255 15.4511927965 -57.4533193089 2.3689503018 -22.7695417678
+ 1.0000000000 7.2336792675 0.6042299814 1.0481641852 -6.3368102605 -9.1216773386 7.4394345373 15.5066543522 -57.2249250055 2.3626382066 -22.7800797858
+ 1.0010000000 7.2397972903 0.6041076602 1.0481880184 -6.4360125094 -9.0634549379 7.4506137808 15.5611917945 -56.9937669363 2.3554116630 -22.7904574118
+ 1.0020000000 7.2457092312 0.6039849348 1.0482102135 -6.5347328428 -9.0056375570 7.4617167386 15.6147984239 -56.7598446975 2.3472730581 -22.8006733341
+ 1.0030000000 7.2514148810 0.6038618174 1.0482307745 -6.6329774976 -8.9482153959 7.4727490733 15.6674674950 -56.5231582039 2.3382244684 -22.8107264659
+ 1.0040000000 7.2569142581 0.6037383205 1.0482497057 -6.7307531180 -8.8911784403 7.4837096295 15.7191922180 -56.2837076985 2.3282676638 -22.8206159474
+ 1.0050000000 7.2622073967 0.6036144569 1.0482670105 -6.8280665066 -8.8345165446 7.4946042275 15.7699660919 -56.0414939191 2.3174042166 -22.8303408585
+ 1.0060000000 7.2672943434 0.6034902398 1.0482826916 -6.9249246004 -8.7782194658 7.5054462295 15.8197829241 -55.7965181145 2.3056355116 -22.8399002061
+ 1.0070000000 7.2721752590 0.6033656829 1.0482967513 -7.0213345838 -8.7222768607 7.5162498280 15.8686366745 -55.5487819801 2.2929627012 -22.8492930691
+ 1.0080000000 7.2768505436 0.6032408000 1.0483091922 -7.1173040327 -8.6666781940 7.5270217955 15.9165212704 -55.2982875793 2.2793866563 -22.8585187667
+ 1.0090000000 7.2813208443 0.6031156054 1.0483200171 -7.2128409073 -8.6114127266 7.5377613132 15.9634306095 -55.0450373532 2.2649079742 -22.8675768597
+ 1.0100000000 7.2855868154 0.6029901139 1.0483292280 -7.3079532668 -8.5564696931 7.5484753773 16.0093589273 -54.7890343028 2.2495270999 -22.8764668338
+ 1.0110000000 7.2896491144 0.6028643403 1.0483368263 -7.4026492460 -8.5018383378 7.5591792327 16.0543008140 -54.5302820051 2.2332443392 -22.8851880899
+ 1.0120000000 7.2935085194 0.6027382999 1.0483428129 -7.4969371887 -8.4475078643 7.5698886560 16.0982510375 -54.2687845380 2.2160598138 -22.8937401051
+ 1.0130000000 7.2971660640 0.6026120086 1.0483471892 -7.5908258056 -8.3934672987 7.5806113864 16.1412043453 -54.0045463970 2.1979734135 -22.9021226105
+ 1.0140000000 7.3006230417 0.6024854823 1.0483499571 -7.6843241656 -8.3397054808 7.5913471237 16.1831554697 -53.7375725051 2.1789848090 -22.9103355901
+ 1.0150000000 7.3038807426 0.6023587375 1.0483511174 -7.7774413813 -8.2862113339 7.6021038951 16.2240995194 -53.4678684075 2.1590935813 -22.9183789447
+ 1.0160000000 7.3069404491 0.6022317908 1.0483506705 -7.8701865878 -8.2329738978 7.6128983447 16.2640319940 -53.1954402860 2.1382992382 -22.9262524845
+ 1.0170000000 7.3098035672 0.6021046589 1.0483486166 -7.9625690948 -8.1799822273 7.6237473437 16.3029485885 -52.9202948763 2.1166011694 -22.9339561033
+ 1.0180000000 7.3124717673 0.6019773592 1.0483449562 -8.0545985524 -8.1272252237 7.6346594139 16.3408449889 -52.6424393811 2.0939986015 -22.9414899605
+ 1.0190000000 7.3149469858 0.6018499093 1.0483396905 -8.1462849422 -8.0746916323 7.6456348796 16.3777168767 -52.3618814811 2.0704906138 -22.9488544796
+ 1.0200000000 7.3172311451 0.6017223269 1.0483328198 -8.2376382416 -8.0223703844 7.6566825588 16.4135603374 -52.0786295370 2.0460762744 -22.9560500001
+ 1.0210000000 7.3193261488 0.6015946298 1.0483243439 -8.3286684068 -7.9702506257 7.6678199336 16.4483718709 -51.7926926024 2.0207546586 -22.9630767718
+ 1.0220000000 7.3212340236 0.6014668362 1.0483142625 -8.4193855374 -7.9183215699 7.6790644523 16.4821481841 -51.5040803361 1.9945248052 -22.9699351386
+ 1.0230000000 7.3229570639 0.6013389643 1.0483025758 -8.5098000474 -7.8665723133 7.6904251425 16.5148859819 -51.2128029127 1.9673856736 -22.9766257218
+ 1.0240000000 7.3244978311 0.6012110327 1.0482892846 -8.5999226553 -7.8149918385 7.7019028671 16.5465819727 -50.9188710345 1.9393361628 -22.9831494174
+ 1.0250000000 7.3258588625 0.6010830601 1.0482743889 -8.6897640356 -7.7635694027 7.7135068609 16.5772332844 -50.6222961365 1.9103752503 -22.9895070428
+ 1.0260000000 7.3270426670 0.6009550650 1.0482578884 -8.7793348030 -7.7122945605 7.7252548602 16.6068374739 -50.3230903992 1.8805020129 -22.9956993319
+ 1.0270000000 7.3280518725 0.6008270661 1.0482397824 -8.8686456850 -7.6611569876 7.7371644344 16.6353923129 -50.0212666567 1.8497155839 -23.0017271222
+ 1.0280000000 7.3288893739 0.6006990823 1.0482200710 -8.9577076967 -7.6101462864 7.7492447545 16.6628955745 -49.7168383064 1.8180151116 -23.0075915400
+ 1.0290000000 7.3295583313 0.6005711327 1.0481987548 -9.0465321304 -7.5592519950 7.7614968673 16.6893450389 -49.4098193195 1.7853997793 -23.0132939969
+ 1.0300000000 7.3300618712 0.6004432361 1.0481758338 -9.1351301959 -7.5084639985 7.7739299613 16.7147389162 -49.1002244489 1.7518689466 -23.0188358322
+ 1.0310000000 7.3304030818 0.6003154114 1.0481513074 -9.2235130048 -7.4577725486 7.7865615308 16.7390758557 -48.7880692406 1.7174221714 -23.0242183071
+ 1.0320000000 7.3305851640 0.6001876774 1.0481251748 -9.3116917473 -7.4071680698 7.7994088857 16.7623547280 -48.4733699408 1.6820591678 -23.0294427931
+ 1.0330000000 7.3306115832 0.6000600530 1.0480974358 -9.3996778720 -7.3566409593 7.8124809047 16.7845744061 -48.1561434013 1.6457797636 -23.0345109599
+ 1.0340000000 7.3304860670 0.5999325572 1.0480680910 -9.4874830752 -7.3061815979 7.8257782595 16.8057337702 -47.8364070901 1.6085839207 -23.0394247717
+ 1.0350000000 7.3302122997 0.5998052089 1.0480371399 -9.5751189284 -7.2557807719 7.8393096028 16.8258321407 -47.5141793011 1.5704718785 -23.0441861224
+ 1.0360000000 7.3297939162 0.5996780265 1.0480045817 -9.6625968606 -7.2054296926 7.8530918041 16.8448692876 -47.1894791658 1.5314441769 -23.0487968284
+ 1.0370000000 7.3292346564 0.5995510288 1.0479704153 -9.7499283389 -7.1551197938 7.8671415794 16.8628452094 -46.8623265574 1.4915016125 -23.0532588178
+ 1.0380000000 7.3285385217 0.5994242342 1.0479346403 -9.8371250567 -7.1048425211 7.8814670430 16.8797599063 -46.5327419925 1.4506451943 -23.0575743230
+ 1.0390000000 7.3277097733 0.5992976615 1.0478972565 -9.9241989213 -7.0545893399 7.8960678607 16.8956133846 -46.2007466399 1.4088761636 -23.0617458771
+ 1.0400000000 7.3267526173 0.5991713291 1.0478582633 -10.0111616658 -7.0043521719 7.9109516736 16.9104061032 -45.8663625350 1.3661961395 -23.0657759375
+ 1.0410000000 7.3256711977 0.5990452552 1.0478176591 -10.0980248284 -6.9541234161 7.9261344231 16.9241389842 -45.5296125908 1.3226071421 -23.0696668775
+ 1.0420000000 7.3244697540 0.5989194579 1.0477754425 -10.1847999388 -6.9038957407 7.9416319536 16.9368131865 -45.1905204984 1.2781115462 -23.0734211778
+ 1.0430000000 7.3231527855 0.5987939553 1.0477316122 -10.2714987178 -6.8536618495 7.9574511669 16.9484298687 -44.8491106238 1.2327120329 -23.0770416267
+ 1.0440000000 7.3217250497 0.5986687656 1.0476861677 -10.3581330654 -6.8034144849 7.9735900985 16.9589901922 -44.5054080146 1.1864116071 -23.0805313155
+ 1.0450000000 7.3201912346 0.5985439068 1.0476391074 -10.4447146508 -6.7531468944 7.9900549379 16.9684957860 -44.1594386207 1.1392137478 -23.0838932486
+ 1.0460000000 7.3185559509 0.5984193967 1.0475904293 -10.5312548896 -6.7028528546 8.0068604428 16.9769487588 -43.8112293049 1.0911224288 -23.0871303325
+ 1.0470000000 7.3168238942 0.5982952528 1.0475401309 -10.6177651400 -6.6525264496 8.0240213242 16.9843514645 -43.4608077389 1.0421420686 -23.0902455734
+ 1.0480000000 7.3150000191 0.5981714929 1.0474882103 -10.7042569161 -6.6021618050 8.0415428513 16.9907062516 -43.1082022928 0.9922774765 -23.0932422853
+ 1.0490000000 7.3130895375 0.5980481346 1.0474346662 -10.7907418777 -6.5517530854 8.0594208686 16.9960154659 -42.7534420403 0.9415338674 -23.0961240862
+ 1.0500000000 7.3110975740 0.5979251956 1.0473794964 -10.8772313938 -6.5012950099 8.0776597408 17.0002819373 -42.3965569881 0.8899170159 -23.0988944907
+ 1.0510000000 7.3090291568 0.5978026931 1.0473226978 -10.9637365192 -6.4507828785 8.0962728141 17.0035089932 -42.0375780855 0.8374332750 -23.1015568969
+ 1.0520000000 7.3068893873 0.5976806443 1.0472642673 -11.0502682032 -6.4002123266 8.1152733693 17.0057002125 -41.6765371139 0.7840895204 -23.1041147922
+ 1.0530000000 7.3046836246 0.5975590664 1.0472042024 -11.1368375202 -6.3495790199 8.1346646647 17.0068591605 -41.3134665693 0.7298930891 -23.1065719719
+ 1.0540000000 7.3024174830 0.5974379768 1.0471425010 -11.2234556599 -6.2988786480 8.1544399450 17.0069893913 -40.9483996660 0.6748517914 -23.1089325343
+ 1.0550000000 7.3000964679 0.5973173927 1.0470791601 -11.3101334625 -6.2481075043 8.1746014403 17.0060949597 -40.5813705751 0.6189740692 -23.1112004544
+ 1.0560000000 7.2977259646 0.5971973308 1.0470141762 -11.3968813953 -6.1972625126 8.1951608259 17.0041804349 -40.2124144334 0.5622690120 -23.1133795701
+ 1.0570000000 7.2953114643 0.5970778080 1.0469475457 -11.4837098333 -6.1463409174 8.2161296096 17.0012504582 -39.8415672004 0.5047462206 -23.1154738302
+ 1.0580000000 7.2928587126 0.5969588419 1.0468792660 -11.5706291703 -6.0953399922 8.2375087298 16.9973098867 -39.4688655680 0.4464158944 -23.1174874387
+ 1.0590000000 7.2903737161 0.5968404508 1.0468093353 -11.6576498067 -6.0442570300 8.2592886037 16.9923638051 -39.0943469490 0.3872888190 -23.1194248470
+ 1.0600000000 7.2878623982 0.5967226533 1.0467377512 -11.7447817922 -5.9930899417 8.2814690756 16.9864176351 -38.7180496969 0.3273763854 -23.1212903929
+ 1.0610000000 7.2853305384 0.5966054672 1.0466645110 -11.8320347508 -5.9418373091 8.3040598447 16.9794773269 -38.3400131444 0.2666906837 -23.1230882563
+ 1.0620000000 7.2827839625 0.5964889105 1.0465896118 -11.9194181213 -5.8904980648 8.3270703031 16.9715490867 -37.9602774783 0.2052444308 -23.1248226834
+ 1.0630000000 7.2802287438 0.5963730013 1.0465130515 -12.0069414187 -5.8390711228 8.3504988164 16.9626390865 -37.5788836069 0.1430508934 -23.1264982230
+ 1.0640000000 7.2776711986 0.5962577578 1.0464348288 -12.0946142246 -5.7875553753 8.3743328583 16.9527534666 -37.1958731618 0.0801238926 -23.1281197207
+ 1.0650000000 7.2751174816 0.5961431977 1.0463549420 -12.1824456676 -5.7359503958 8.3985697286 16.9418988960 -36.8112887546 0.0164779693 -23.1296918545
+ 1.0660000000 7.2725735752 0.5960293386 1.0462733888 -12.2704444052 -5.6842564550 8.4232168615 16.9300825830 -36.4251739814 -0.0478716078 -23.1312191237
+ 1.0670000000 7.2700454894 0.5959161975 1.0461901671 -12.3586188819 -5.6324741627 8.4482811638 16.9173119862 -36.0375732895 -0.1129089228 -23.1327060832
+ 1.0680000000 7.2675394689 0.5958037919 1.0461052759 -12.4469775985 -5.5806040911 8.4737583334 16.9035945187 -35.6485318405 -0.1786174972 -23.1341575842
+ 1.0690000000 7.2650619855 0.5956921391 1.0460187150 -12.5355291017 -5.5286467770 8.4996331293 16.8889375515 -35.2580955100 -0.2449802898 -23.1355787660
+ 1.0700000000 7.2626193211 0.5955812560 1.0459304838 -12.6242814463 -5.4766034519 8.5259003117 16.8733489903 -34.8663111506 -0.3119795297 -23.1369745805
+ 1.0710000000 7.2602175579 0.5954711589 1.0458405817 -12.7132421800 -5.4244760487 8.5525648119 16.8568372840 -34.4732265925 -0.3795967128 -23.1383497816
+ 1.0720000000 7.2578627868 0.5953618640 1.0457490081 -12.8024186153 -5.3722668193 8.5796308029 16.8394111242 -34.0788905038 -0.4478126916 -23.1397091682
+ 1.0730000000 7.2555613141 0.5952533874 1.0456557639 -12.8918181014 -5.3199779679 8.6070913860 16.8210791480 -33.6833522510 -0.5166077664 -23.1410578239
+ 1.0740000000 7.2533196531 0.5951457451 1.0455608508 -12.9814480126 -5.2676116603 8.6349290042 16.8018499431 -33.2866618979 -0.5859616893 -23.1424011074
+ 1.0750000000 7.2511441014 0.5950389528 1.0454642705 -13.0713152016 -5.2151707465 8.6631359863 16.7817326324 -32.8888704680 -0.6558534978 -23.1437441721
+ 1.0760000000 7.2490407313 0.5949330252 1.0453660245 -13.1614259868 -5.1626587586 8.6917146033 16.7607368802 -32.4900299431 -0.7262615166 -23.1450919562
+ 1.0770000000 7.2470156028 0.5948279770 1.0452661147 -13.2517864330 -5.1100795215 8.7206662151 16.7388725865 -32.0901931184 -0.7971634549 -23.1464494288
+ 1.0780000000 7.2450749684 0.5947238228 1.0451645446 -13.3424026221 -5.0574368121 8.7499815180 16.7161495902 -31.6894134617 -0.8685365041 -23.1478218281
+ 1.0790000000 7.2432252631 0.5946205768 1.0450613187 -13.4332806405 -5.0047343735 8.7796410503 16.6925776754 -31.2877451100 -0.9403573467 -23.1492146503
+ 1.0800000000 7.2414726822 0.5945182528 1.0449564416 -13.5244260324 -4.9519765994 8.8096348701 16.6681671575 -30.8852431293 -1.0126019913 -23.1506331685
+ 1.0810000000 7.2398231717 0.5944168639 1.0448499176 -13.6158437873 -4.8991685252 8.8399625622 16.6429288889 -30.4819635104 -1.0852457791 -23.1520824229
+ 1.0820000000 7.2382826409 0.5943164229 1.0447417519 -13.7075386237 -4.8463154517 8.8706227772 16.6168739529 -30.0779630207 -1.1582634890 -23.1535674662
+ 1.0830000000 7.2368571650 0.5942169422 1.0446319509 -13.7995152565 -4.7934226377 8.9016040398 16.5900133728 -29.6732990846 -1.2316293833 -23.1550936002
+ 1.0840000000 7.2355529793 0.5941184344 1.0445205224 -13.8917783910 -4.7404953101 8.9328852689 16.5623581066 -29.2680297285 -1.3053173380 -23.1566663649
+ 1.0850000000 7.2343760574 0.5940209112 1.0444074739 -13.9843321768 -4.6875392930 8.9644544194 16.5339196323 -28.8622138389 -1.3793006798 -23.1582910581
+ 1.0860000000 7.2333320962 0.5939243837 1.0442928130 -14.0771801888 -4.6345610013 8.9963085322 16.5047099702 -28.4559112043 -1.4535520797 -23.1599727214
+ 1.0870000000 7.2324267275 0.5938288627 1.0441765478 -14.1703257133 -4.5815670901 9.0284438582 16.4747413690 -28.0491823417 -1.5280437211 -23.1617163847
+ 1.0880000000 7.2316657230 0.5937343586 1.0440586879 -14.2637720260 -4.5285641688 9.0608469853 16.4440260020 -27.6420883481 -1.6027474124 -23.1635273073
+ 1.0890000000 7.2310549864 0.5936408817 1.0439392444 -14.3575223814 -4.4755588139 9.0934952696 16.4125759723 -27.2346908916 -1.6776346067 -23.1654109671
+ 1.0900000000 7.2306001290 0.5935484416 1.0438182283 -14.4515794615 -4.4225581435 9.1263747004 16.3804039071 -26.8270524654 -1.7526762364 -23.1673725736
+ 1.0910000000 7.2303064573 0.5934570472 1.0436956503 -14.5459453591 -4.3695698087 9.1594800961 16.3475229696 -26.4192363798 -1.8278427278 -23.1694170518
+ 1.0920000000 7.2301791807 0.5933667071 1.0435715219 -14.6406218621 -4.3166016757 9.1928057864 16.3139465526 -26.0113066110 -1.9031041176 -23.1715492853
+ 1.0930000000 7.2302236271 0.5932774293 1.0434458557 -14.7356107466 -4.2636615515 9.2263366272 16.2796879583 -25.6033276441 -1.9784301755 -23.1737743690
+ 1.0940000000 7.2304452366 0.5931892220 1.0433186663 -14.8309137713 -4.2107571913 9.2600482670 16.2447603997 -25.1953644589 -2.0537904286 -23.1760976013
+ 1.0950000000 7.2308491256 0.5931020925 1.0431899677 -14.9265321042 -4.1578968363 9.2939248972 16.2091776177 -24.7874827900 -2.1291539901 -23.1785239789
+ 1.0960000000 7.2314400721 0.5930160475 1.0430597735 -15.0224663032 -4.1050892105 9.3279596220 16.1729538970 -24.3797491172 -2.2044895759 -23.1810581768
+ 1.0970000000 7.2322227282 0.5929310931 1.0429280980 -15.1187166085 -4.0523432265 9.3621453913 16.1361037507 -23.9722305082 -2.2797656298 -23.1837047982
+ 1.0980000000 7.2332018499 0.5928472355 1.0427949568 -15.2152832597 -3.9996677085 9.3964655332 16.0986415758 -23.5649944497 -2.3549504574 -23.1864686454
+ 1.0990000000 7.2343822957 0.5927644805 1.0426603671 -15.3121664944 -3.9470713910 9.4308938622 16.0605816508 -23.1581088290 -2.4300122557 -23.1893547142
+ 1.1000000000 7.2357685668 0.5926828333 1.0425243455 -15.4093659379 -3.8945634485 9.4654130407 16.0219387910 -22.7516422053 -2.5049189295 -23.1923676590
+ 1.1010000000 7.2373647930 0.5926022983 1.0423869083 -15.5068805814 -3.8421534972 9.5000150700 15.9827283664 -22.3456637985 -2.5796381105 -23.1955117710
+ 1.1020000000 7.2391749566 0.5925228797 1.0422480720 -15.6047090927 -3.7898513116 9.5346920301 15.9429659661 -21.9402433214 -2.6541372922 -23.1987912423
+ 1.1030000000 7.2412031397 0.5924445815 1.0421078545 -15.7028501603 -3.7376665314 9.5694260102 15.9026670292 -21.5354507989 -2.7283839767 -23.2022104570
+ 1.1040000000 7.2434535253 0.5923674075 1.0419662755 -15.8013024937 -3.6856086533 9.6041891434 15.8618468402 -21.1313565447 -2.8023457064 -23.2057739863
+ 1.1050000000 7.2459299092 0.5922913608 1.0418233537 -15.9000641676 -3.6336875779 9.6389630002 15.8205212292 -20.7280314491 -2.8759898654 -23.2094860181
+ 1.1060000000 7.2486356878 0.5922164441 1.0416791073 -15.9991326007 -3.5819136157 9.6737390937 15.7787065880 -20.3255469634 -2.9492837005 -23.2133503366
+ 1.1070000000 7.2515740113 0.5921426591 1.0415335546 -16.0985047845 -3.5302972622 9.7085091103 15.7364198531 -19.9239748644 -3.0221943921 -23.2173705517
+ 1.1080000000 7.2547480706 0.5920700057 1.0413867143 -16.1981779450 -3.4788487811 9.7432543596 15.6936772180 -19.5233872310 -3.0946894111 -23.2215505758
+ 1.1090000000 7.2581609330 0.5919984794 1.0412386035 -16.2981496121 -3.4275782242 9.7779458655 15.6504939508 -19.1238565284 -3.1667364617 -23.2258946737
+ 1.1100000000 7.2618151166 0.5919280741 1.0410892382 -16.3984165702 -3.3764960958 9.8125647933 15.6068861825 -18.7254556729 -3.2383031034 -23.2304066454
+ 1.1110000000 7.2657127326 0.5918587831 1.0409386336 -16.4989749255 -3.3256132850 9.8471028289 15.5628706262 -18.3282580190 -3.3093569057 -23.2350898445
+ 1.1120000000 7.2698557469 0.5917905997 1.0407868054 -16.5998204697 -3.2749407600 9.8815517495 15.5184641892 -17.9323371653 -3.3798656060 -23.2399474823
+ 1.1130000000 7.2742462499 0.5917235172 1.0406337710 -16.7009490566 -3.2244892307 9.9158929274 15.4736835768 -17.5377667585 -3.4497972701 -23.2449829387
+ 1.1140000000 7.2788864558 0.5916575293 1.0404795493 -16.8023565980 -3.1742691364 9.9500975660 15.4285452940 -17.1446204678 -3.5191203249 -23.2501997527
+ 1.1150000000 7.2837781713 0.5915926292 1.0403241584 -16.9040383396 -3.1242912683 9.9841473828 15.3830664079 -16.7529722898 -3.5878033349 -23.2556010046
+ 1.1160000000 7.2889227905 0.5915288100 1.0401676159 -17.0059888492 -3.0745667786 10.0180348030 15.3372645540 -16.3628965240 -3.6558150283 -23.2611893039
+ 1.1170000000 7.2943215697 0.5914660645 1.0400099400 -17.1082023991 -3.0251068529 10.0517521276 15.2911575314 -15.9744675700 -3.7231244624 -23.2669671068
+ 1.1180000000 7.2999758943 0.5914043860 1.0398511502 -17.2106733411 -2.9759223569 10.0852815423 15.2447629134 -15.5877597325 -3.7897011831 -23.2729370211
+ 1.1190000000 7.3058872742 0.5913437680 1.0396912678 -17.3133960982 -2.9270238261 10.1185955512 15.1980980538 -15.2028471965 -3.8555152548 -23.2791017927
+ 1.1200000000 7.3120568090 0.5912842041 1.0395303135 -17.4163644398 -2.8784221263 10.1516771063 15.1511808452 -14.8198043272 -3.9205370352 -23.2854636928
+ 1.1210000000 7.3184851855 0.5912256871 1.0393683071 -17.5195714759 -2.8301284621 10.1845196301 15.1040297198 -14.4387056413 -3.9847372020 -23.2920245101
+ 1.1220000000 7.3251729574 0.5911682103 1.0392052691 -17.6230100480 -2.7821540299 10.2171162766 15.0566632393 -14.0596256013 -4.0480869204 -23.2987858716
+ 1.1230000000 7.3321208042 0.5911117674 1.0390412216 -17.7266730927 -2.7345096528 10.2494507138 15.0090997206 -13.6826384262 -4.1105579969 -23.3057495350
+ 1.1240000000 7.3393295222 0.5910563523 1.0388761880 -17.8305536327 -2.6872057752 10.2814976851 14.9613572447 -13.3078180666 -4.1721229067 -23.3129173727
+ 1.1250000000 7.3467994998 0.5910019591 1.0387101912 -17.9346440698 -2.6402531524 10.3132419095 14.9134543911 -12.9352384919 -4.2327545720 -23.3202907798
+ 1.1260000000 7.3545307139 0.5909485813 1.0385432536 -18.0389361842 -2.5936628586 10.3446780362 14.8654102348 -12.5649736589 -4.2924263884 -23.3278706700
+ 1.1270000000 7.3625230073 0.5908962128 1.0383753977 -18.1434215210 -2.5474459247 10.3758004759 14.8172439449 -12.1970973099 -4.3511123884 -23.3356577879
+ 1.1280000000 7.3707763385 0.5908448478 1.0382066477 -18.2480917415 -2.5016129676 10.4065948926 14.7689744246 -11.8316827887 -4.4087873888 -23.3436529893
+ 1.1290000000 7.3792907709 0.5907944812 1.0380370292 -18.3529386166 -2.4561741895 10.4370387685 14.7206203195 -11.4688030162 -4.4654270148 -23.3518572265
+ 1.1300000000 7.3880659624 0.5907451077 1.0378665671 -18.4579533441 -2.4111400867 10.4671189249 14.6722007219 -11.1085307614 -4.5210074849 -23.3602709817
+ 1.1310000000 7.3971011605 0.5906967217 1.0376952856 -18.5631265508 -2.3665214588 10.4968315302 14.6237351663 -10.7509386097 -4.5755056338 -23.3688942632
+ 1.1320000000 7.4063954709 0.5906493176 1.0375232092 -18.6684486662 -2.3223290366 10.5261727219 14.5752432440 -10.3960987677 -4.6288990686 -23.3777269057
+ 1.1330000000 7.4159481040 0.5906028908 1.0373503638 -18.7739102685 -2.2785731086 10.5551304780 14.5267442504 -10.0440828838 -4.6811663106 -23.3867688433
+ 1.1340000000 7.4257584389 0.5905574376 1.0371767770 -18.8795020928 -2.2352634955 10.5836850572 14.4782571329 -9.6949620848 -4.7322867221 -23.3960200968
+ 1.1350000000 7.4358256388 0.5905129574 1.0370024778 -18.9852142095 -2.1924102843 10.6118255397 14.4298016374 -9.3488069749 -4.7822404745 -23.4054801257
+ 1.1360000000 7.4461485011 0.5904694502 1.0368274945 -19.0910361027 -2.1500238601 10.6395499758 14.3813981000 -9.0056876734 -4.8310085980 -23.4151478832
+ 1.1370000000 7.4567256849 0.5904269161 1.0366518559 -19.1969571496 -2.1081145019 10.6668566838 14.3330667097 -8.6656738492 -4.8785729342 -23.4250221749
+ 1.1380000000 7.4675559258 0.5903853554 1.0364755917 -19.3029669318 -2.0666920318 10.6937360206 14.2848272854 -8.3288344598 -4.9249163481 -23.4351019157
+ 1.1390000000 7.4786380285 0.5903447688 1.0362987326 -19.4090552365 -2.0257658209 10.7201706425 14.2366992755 -7.9952377220 -4.9700227489 -23.4453861228
+ 1.1400000000 7.4899703697 0.5903051563 1.0361213084 -19.5152113907 -1.9853455196 10.7461518367 14.1887024358 -7.6649513665 -5.0138768739 -23.4558733725
+ 1.1410000000 7.5015508898 0.5902665174 1.0359433476 -19.6214242560 -1.9454410681 10.7716798669 14.1408568316 -7.3380426088 -5.0564643015 -23.4665617919
+ 1.1420000000 7.5133773494 0.5902288513 1.0357648787 -19.7276825871 -1.9060623165 10.7967556114 14.0931824727 -7.0145779661 -5.0977715913 -23.4774493414
+ 1.1430000000 7.5254475894 0.5901921576 1.0355859312 -19.8339753953 -1.8672186513 10.8213718623 14.0456989429 -6.6946230731 -5.1377864236 -23.4885341013
+ 1.1440000000 7.5377595283 0.5901564363 1.0354065356 -19.9402919529 -1.8289190025 10.8455134231 13.9984253944 -6.3782426528 -5.1764976138 -23.4998142690
+ 1.1450000000 7.5503106567 0.5901216864 1.0352267210 -20.0466211064 -1.7911725778 10.8691739953 13.9513812424 -6.0655007741 -5.2138948866 -23.5112876035
+ 1.1460000000 7.5630980296 0.5900879068 1.0350465156 -20.1529512677 -1.7539888741 10.8923566199 13.9045861698 -5.7564608236 -5.2499688833 -23.5229514156
+ 1.1470000000 7.5761185274 0.5900550959 1.0348659473 -20.2592707780 -1.7173772968 10.9150651376 13.8580597561 -5.4511853225 -5.2847112981 -23.5348028541
+ 1.1480000000 7.5893691278 0.5900232526 1.0346850450 -20.3655682882 -1.6813467868 10.9372949608 13.8118210911 -5.1497357396 -5.3181150180 -23.5468392063
+ 1.1490000000 7.6028469061 0.5899923760 1.0345038384 -20.4718327627 -1.6459058284 10.9590331093 13.7658887668 -4.8521724604 -5.3501741324 -23.5590578960
+ 1.1500000000 7.6165485164 0.5899624647 1.0343223562 -20.5780527615 -1.6110631864 10.9802759898 13.7202815997 -4.5585550530 -5.3808836933 -23.5714559082
+ 1.1510000000 7.6304701853 0.5899335169 1.0341406255 -20.6842164285 -1.5768279178 11.0010298342 13.6750186355 -4.2689422407 -5.4102397169 -23.5840297786
+ 1.1520000000 7.6446079831 0.5899055304 1.0339586736 -20.7903118699 -1.5432089924 11.0213016853 13.6301187647 -3.9833917163 -5.4382393192 -23.5967758913
+ 1.1530000000 7.6589581050 0.5898785038 1.0337765286 -20.8963275480 -1.5102149191 11.0410898064 13.5856003220 -3.7019599525 -5.4648808541 -23.6096907896
+ 1.1540000000 7.6735168735 0.5898524359 1.0335942193 -21.0022522820 -1.4778537548 11.0603837541 13.5414810793 -3.4247021732 -5.4901639163 -23.6227711744
+ 1.1550000000 7.6882802053 0.5898273249 1.0334117736 -21.1080745004 -1.4461338442 11.0791829442 13.4977789946 -3.1516726264 -5.5140890887 -23.6360133084
+ 1.1560000000 7.7032436073 0.5898031690 1.0332292180 -21.2137822292 -1.4150638334 11.0974969952 13.4545122151 -2.8829245577 -5.5366579385 -23.6494130072
+ 1.1570000000 7.7184024597 0.5897799661 1.0330465787 -21.3193634864 -1.3846522910 11.1153361921 13.4116986761 -2.6185100220 -5.5578731519 -23.6629659509
+ 1.1580000000 7.7337523016 0.5897577148 1.0328638829 -21.4248066821 -1.3549073328 11.1327018515 13.3693556948 -2.3584796953 -5.5777386675 -23.6766679988
+ 1.1590000000 7.7492888335 0.5897364141 1.0326811590 -21.5301006162 -1.3258366307 11.1495865053 13.3274999663 -2.1028828487 -5.5962596725 -23.6905151871
+ 1.1600000000 7.7650073735 0.5897160630 1.0324984336 -21.6352337102 -1.2974481588 11.1659927852 13.2861483286 -1.8517676264 -5.6134423394 -23.7045031205
+ 1.1610000000 7.7809028568 0.5896966598 1.0323157326 -21.7401939986 -1.2697502092 11.1819336281 13.2453177635 -1.6051810207 -5.6292938175 -23.7186269668
+ 1.1620000000 7.7969701269 0.5896782033 1.0321330813 -21.8449695344 -1.2427510137 11.1974224076 13.2050249830 -1.3631686830 -5.6438223650 -23.7328817782
+ 1.1630000000 7.8132042205 0.5896606929 1.0319505061 -21.9495487887 -1.2164583627 11.2124635852 13.1652860262 -1.1257747411 -5.6570374746 -23.7472628047
+ 1.1640000000 7.8296003686 0.5896441287 1.0317680343 -22.0539206441 -1.1908796151 11.2270530220 13.1261162589 -0.8930417769 -5.6689498623 -23.7617654890
+ 1.1650000000 7.8461534491 0.5896285104 1.0315856920 -22.1580736224 -1.1660224551 11.2411965809 13.0875311407 -0.6650111064 -5.6795711986 -23.7763848588
+ 1.1660000000 7.8628579875 0.5896138378 1.0314035039 -22.2619958780 -1.1418949124 11.2549102155 13.0495462236 -0.4417227558 -5.6889140955 -23.7911155241
+ 1.1670000000 7.8797084521 0.5896001111 1.0312214945 -22.3656756085 -1.1185049806 11.2682101140 13.0121767350 -0.2232152771 -5.6969922328 -23.8059520021
+ 1.1680000000 7.8966995348 0.5895873309 1.0310396893 -22.4691014469 -1.0958602283 11.2811037998 12.9754371824 -0.0095255723 -5.7038204736 -23.8208890244
+ 1.1690000000 7.9138261493 0.5895754988 1.0308581145 -22.5722624532 -1.0739678103 11.2935905214 12.9393413563 0.1993111240 -5.7094148467 -23.8359215312
+ 1.1700000000 7.9310828870 0.5895646164 1.0306767953 -22.6751473494 -1.0528352415 11.3056791449 12.9039030879 0.4032609667 -5.7137922763 -23.8510440730
+ 1.1710000000 7.9484640169 0.5895546851 1.0304957553 -22.7777445144 -1.0324704196 11.3173881947 12.8691362469 0.6022915195 -5.7169705639 -23.8662508093
+ 1.1720000000 7.9659637790 0.5895457066 1.0303150179 -22.8800423917 -1.0128812368 11.3287363152 12.8350543292 0.7963719335 -5.7189685055 -23.8815358309
+ 1.1730000000 7.9835766614 0.5895376835 1.0301346075 -22.9820298730 -0.9940751845 11.3397337917 12.8016700705 0.9854731140 -5.7198059989 -23.8968934606
+ 1.1740000000 8.0012973963 0.5895306193 1.0299545491 -23.0836962901 -0.9760593663 11.3503829430 12.7689954505 1.1695677343 -5.7195040193 -23.9123182479
+ 1.1750000000 8.0191204209 0.5895245175 1.0297748666 -23.1850306622 -0.9588412895 11.3606952014 12.7370424370 1.3486299590 -5.7180843497 -23.9278043834
+ 1.1760000000 8.0370398760 0.5895193812 1.0295955824 -23.2860216908 -0.9424288893 11.3706911755 12.7058229842 1.5226354598 -5.7155695569 -23.9433456979
+ 1.1770000000 8.0550498947 0.5895152141 1.0294167184 -23.3866581597 -0.9268301324 11.3803915616 12.6753486293 1.6915615847 -5.7119831005 -23.9589359783
+ 1.1780000000 8.0731448781 0.5895120208 1.0292382977 -23.4869293146 -0.9120526174 11.3898089189 12.6456301122 1.8553875187 -5.7073494312 -23.9745692653
+ 1.1790000000 8.0913194903 0.5895098065 1.0290603439 -23.5868248552 -0.8981035898 11.3989479993 12.6166773782 2.0140942922 -5.7016939622 -23.9902398484
+ 1.1800000000 8.1095681231 0.5895085765 1.0288828793 -23.6863341923 -0.8849907477 11.4078221928 12.5885003121 2.1676645066 -5.6950428000 -24.0059416915
+ 1.1810000000 8.1278848931 0.5895083358 1.0287059246 -23.7854464415 -0.8727222656 11.4164536889 12.5611087387 2.3160823432 -5.6874227145 -24.0216684308
+ 1.1820000000 8.1462639255 0.5895090899 1.0285295003 -23.8841508144 -0.8613063914 11.4248648301 12.5345120290 2.4593337249 -5.6788612398 -24.0374136833
+ 1.1830000000 8.1646996317 0.5895108450 1.0283536276 -23.9824369998 -0.8507510449 11.4330698169 12.5087187179 2.5974064713 -5.6693867677 -24.0531713471
+ 1.1840000000 8.1831867059 0.5895136081 1.0281783286 -24.0802951585 -0.8410638356 11.4410749091 12.4837365051 2.7302903042 -5.6590285153 -24.0689355985
+ 1.1850000000 8.2017195890 0.5895173859 1.0280036235 -24.1777151791 -0.8322528745 11.4488947273 12.4595729889 2.8579765694 -5.6478162536 -24.0847003194
+ 1.1860000000 8.2202924628 0.5895221852 1.0278295314 -24.2746866669 -0.8243267979 11.4565525666 12.4362356716 2.9804582400 -5.6357802727 -24.1004590920
+ 1.1870000000 8.2388995320 0.5895280128 1.0276560709 -24.3711993314 -0.8172943604 11.4640719921 12.4137315709 3.0977300696 -5.6229514751 -24.1162055041
+ 1.1880000000 8.2575353094 0.5895348762 1.0274832612 -24.4672433780 -0.8111640334 11.4714680957 12.3920668259 3.2097887478 -5.6093614696 -24.1319334581
+ 1.1890000000 8.2761946153 0.5895427839 1.0273111224 -24.5628095044 -0.8059440233 11.4787475373 12.3712466956 3.3166329007 -5.5950425355 -24.1476371721
+ 1.1900000000 8.2948720317 0.5895517440 1.0271396728 -24.6578881395 -0.8016430854 11.4859253676 12.3512763094 3.4182628045 -5.5800273451 -24.1633105943
+ 1.1910000000 8.3135618946 0.5895617642 1.0269689293 -24.7524694266 -0.7982705470 11.4930255098 12.3321606787 3.5146803816 -5.5643489235 -24.1789473945
+ 1.1920000000 8.3322585780 0.5895728526 1.0267989086 -24.8465436128 -0.7958359008 11.5000722648 12.3139043053 3.6058893496 -5.5480407399 -24.1945412717
+ 1.1930000000 8.3509567919 0.5895850181 1.0266296277 -24.9401014608 -0.7943483997 11.5070807766 12.2965107677 3.6918953782 -5.5311368030 -24.2100862794
+ 1.1940000000 8.3696515852 0.5895982699 1.0264611044 -25.0331342454 -0.7938170726 11.5140569270 12.2799827183 3.7727060864 -5.5136716241 -24.2255768284
+ 1.1950000000 8.3883377797 0.5896126172 1.0262933552 -25.1256329583 -0.7942515419 11.5210153663 12.2643226686 3.8483307402 -5.4956799280 -24.2410070751
+ 1.1960000000 8.4070099613 0.5896280688 1.0261263947 -25.2175882841 -0.7956620475 11.5279801315 12.2495330067 3.9187802417 -5.4771966100 -24.2563709097
+ 1.1970000000 8.4256627712 0.5896446339 1.0259602372 -25.3089910031 -0.7980590399 11.5349756620 12.2356155934 3.9840672780 -5.4582568270 -24.2716622738
+ 1.1980000000 8.4442912207 0.5896623220 1.0257948978 -25.3998324259 -0.8014527649 11.5420162823 12.2225713249 4.0442064807 -5.4388960994 -24.2868755048
+ 1.1990000000 8.4628906952 0.5896811434 1.0256303920 -25.4901043899 -0.8058532753 11.5491060093 12.2104001296 4.0992144189 -5.4191502722 -24.3020053395
+ 1.2000000000 8.4814563611 0.5897011083 1.0254667339 -25.5797984158 -0.8112712599 11.5562582806 12.1991018023 4.1491092764 -5.3990552118 -24.3170462662
+ 1.2010000000 8.4999831555 0.5897222264 1.0253039362 -25.6689056802 -0.8177180697 11.5634966453 12.1886760252 4.1939108345 -5.3786467613 -24.3319925104
+ 1.2020000000 8.5184660911 0.5897445076 1.0251420108 -25.7574174369 -0.8252053052 11.5708449643 12.1791219448 4.2336406228 -5.3579608362 -24.3468383684
+ 1.2030000000 8.5369005858 0.5897679624 1.0249809706 -25.8453254770 -0.8337443854 11.5783158983 12.1704377106 4.2683220819 -5.3370335320 -24.3615785714
+ 1.2040000000 8.5552824674 0.5897926021 1.0248208291 -25.9326221216 -0.8433465556 11.5859107090 12.1626204748 4.2979805516 -5.3159010847 -24.3762082867
+ 1.2050000000 8.5736073484 0.5898184377 1.0246615982 -26.0192993274 -0.8540237380 11.5936408791 12.1556672794 4.3226429242 -5.2945995529 -24.3907224310
+ 1.2060000000 8.5918706164 0.5898454797 1.0245032884 -26.1053486581 -0.8657885588 11.6015287738 12.1495750785 4.3423376234 -5.2731647730 -24.4051156560
+ 1.2070000000 8.6100677554 0.5898737391 1.0243459096 -26.1907617317 -0.8786539237 11.6095968131 12.1443402898 4.3570947578 -5.2516324624 -24.4193827023
+ 1.2080000000 8.6281946862 0.5899032272 1.0241894727 -26.2755306963 -0.8926325694 11.6178552173 12.1399583176 4.3669462856 -5.2300383315 -24.4335187759
+ 1.2090000000 8.6462477681 0.5899339562 1.0240339890 -26.3596482185 -0.9077370684 11.6263019086 12.1364235585 4.3719259959 -5.2084180434 -24.4475195463
+ 1.2100000000 8.6642231470 0.5899659380 1.0238794685 -26.4431065486 -0.9239807087 11.6349457560 12.1337303312 4.3720691424 -5.1868068841 -24.4613804282
+ 1.2110000000 8.6821167476 0.5899991841 1.0237259199 -26.5258974943 -0.9413775181 11.6438071272 12.1318728972 4.3674124171 -5.1652397221 -24.4750965690
+ 1.2120000000 8.6999246096 0.5900337061 1.0235733511 -26.6080128915 -0.9599418249 11.6529060833 12.1308449891 4.3579941089 -5.1437511222 -24.4886632217
+ 1.2130000000 8.7176432318 0.5900695165 1.0234217712 -26.6894450867 -0.9796877938 11.6622497421 12.1306393289 4.3438542654 -5.1223754443 -24.5020761256
+ 1.2140000000 8.7352695698 0.5901066282 1.0232711899 -26.7701869199 -1.0006294317 11.6718323396 12.1312476403 4.3250346676 -5.1011468105 -24.5153315000
+ 1.2150000000 8.7528003676 0.5901450537 1.0231216153 -26.8502307691 -1.0227814918 11.6816595223 12.1326616022 4.3015784475 -5.0800988317 -24.5284253095
+ 1.2160000000 8.7702321510 0.5901848055 1.0229730544 -26.9295685276 -1.0461594953 11.6917487791 12.1348728688 4.2735300621 -5.0592644506 -24.5413532538
+ 1.2170000000 8.7875615745 0.5902258958 1.0228255138 -27.0081920918 -1.0707792727 11.7021169504 12.1378725828 4.2409354560 -5.0386759210 -24.5541111511
+ 1.2180000000 8.8047857616 0.5902683377 1.0226790008 -27.0860938386 -1.0966565006 11.7127674752 12.1416508917 4.2038421978 -5.0183656897 -24.5666953229
+ 1.2190000000 8.8219023023 0.5903121447 1.0225335236 -27.1632666033 -1.1238067032 11.7236905963 12.1461969748 4.1622994600 -4.9983659623 -24.5791025793
+ 1.2200000000 8.8389085750 0.5903573301 1.0223890889 -27.2397027305 -1.1522461468 11.7348881596 12.1515000192 4.1163577109 -4.9787053608 -24.5913294578
+ 1.2210000000 8.8558017296 0.5904039063 1.0222457022 -27.3153940516 -1.1819919127 11.7463739255 12.1575491747 4.0660685101 -4.9594149511 -24.6033722731
+ 1.2220000000 8.8725790777 0.5904518856 1.0221033693 -27.3903323441 -1.2130614825 11.7581606922 12.1643330601 4.0114844841 -4.9405354905 -24.6152275499
+ 1.2230000000 8.8892384222 0.5905012828 1.0219620953 -27.4645098751 -1.2454719243 11.7702478015 12.1718395886 3.9526605891 -4.9220778890 -24.6268920596
+ 1.2240000000 8.9057777814 0.5905521118 1.0218218854 -27.5379194907 -1.2792399789 11.7826213759 12.1800556342 3.8896537610 -4.9040273696 -24.6383629418
+ 1.2248848431 8.9203103027 0.5905982837 1.0216987144 -27.6022290560 -1.3102661031 11.7938063086 12.1879058170 3.8304588270 -4.8884393220 -24.6483495561
+ 1.2250000000 8.9221944455 0.5906043751 1.0216827464 -27.6105536074 -1.3143838800 11.7952785133 12.1889669711 3.8225192605 -4.8864413791 -24.6496378995
+ 1.2258848431 8.9366158580 0.5906518149 1.0215605295 -27.6741701962 -1.3466435223 11.8067218529 12.1974202576 3.7597180611 -4.8713386395 -24.6594492850
+ 1.2260000000 8.9384853873 0.5906580717 1.0215446861 -27.6824040845 -1.3509229370 11.8082282703 12.1985590889 3.7513124927 -4.8694065259 -24.6607146702
+ 1.2268848431 8.9527935333 0.5907067868 1.0214234283 -27.7453204184 -1.3844328034 11.8199377795 12.2076031385 3.6849578510 -4.8547993019 -24.6703482495
+ 1.2270000000 8.9546482015 0.5907132104 1.0214077099 -27.7534626962 -1.3888760010 11.8214793449 12.2088180673 3.6760934242 -4.8529296261 -24.6715903042
+ 1.2278848431 8.9688416503 0.5907632138 1.0212874170 -27.8156716915 -1.4236525185 11.8334520353 12.2184403038 3.6062400770 -4.8388124412 -24.6810436539
+ 1.2280000000 8.9706813312 0.5907698058 1.0212718248 -27.8237214773 -1.4282616263 11.8350266799 12.2197296062 3.5969238571 -4.8370080680 -24.6822621407
+ 1.2290000000 8.9865837168 0.5908278707 1.0211370402 -27.8931727670 -1.4690985019 11.8488508727 12.2312783806 3.5138653993 -4.8216736421 -24.6927282940
+ 1.2300000000 9.0023540606 0.5908874173 1.0210033648 -27.9618083612 -1.5114060725 11.8629445629 12.2434491587 3.4269805756 -4.8069537198 -24.7029866104
+ 1.2310000000 9.0179908915 0.5909484578 1.0208708060 -28.0296195016 -1.5552044864 11.8773123525 12.2562268906 3.3363329934 -4.7928671455 -24.7130346213
+ 1.2320000000 9.0334929027 0.5910110047 1.0207393719 -28.0965973223 -1.6005142135 11.8919579881 12.2695961891 3.2419871125 -4.7794342213 -24.7228699936
+ 1.2330000000 9.0488592994 0.5910750709 1.0206090722 -28.1627333256 -1.6473555444 11.9068707136 12.2835408315 3.1440086787 -4.7666759847 -24.7324909031
+ 1.2340000000 9.0640897985 0.5911406699 1.0204799182 -28.2280193629 -1.6957485738 11.9220254051 12.2980437919 3.0424647874 -4.7546127082 -24.7418960105
+ 1.2350000000 9.0791839368 0.5912078151 1.0203519208 -28.2924467005 -1.7457141323 11.9374087954 12.3130882418 2.9374231285 -4.7432627910 -24.7510837172
+ 1.2360000000 9.0941410549 0.5912765195 1.0202250902 -28.3560059977 -1.7972738071 11.9530201407 12.3286575821 2.8289518696 -4.7326427462 -24.7600521508
+ 1.2370000000 9.1089606535 0.5913467963 1.0200994371 -28.4186877745 -1.8504494645 11.9688580030 12.3447349662 2.7171199144 -4.7227678337 -24.7687995422
+ 1.2380000000 9.1236427759 0.5914186597 1.0199749745 -28.4804828863 -1.9052627321 11.9849056308 12.3613027816 2.6019974411 -4.7136533408 -24.7773246202
+ 1.2390000000 9.1381880022 0.5914921244 1.0198517174 -28.5413825061 -1.9617349867 12.0011309785 12.3783426670 2.4836559146 -4.7053146265 -24.7856266039
+ 1.2400000000 9.1525967186 0.5915672051 1.0197296804 -28.6013771824 -2.0198883174 12.0175145127 12.3958365516 2.3621670824 -4.6977649846 -24.7937044320
+ 1.2410000000 9.1668690946 0.5916439162 1.0196088778 -28.6604568178 -2.0797455496 12.0340499707 12.4137666909 2.2376028281 -4.6910153433 -24.8015567448
+ 1.2420000000 9.1810054581 0.5917222723 1.0194893246 -28.7186111378 -2.1413297525 12.0507304393 12.4321151797 2.1100355323 -4.6850750130 -24.8091822674
+ 1.2430000000 9.1950067062 0.5918022891 1.0193710386 -28.7758301714 -2.2046636773 12.0675327321 12.4508634019 1.9795388507 -4.6799538581 -24.8165802207
+ 1.2440000000 9.2088742955 0.5918839832 1.0192540400 -28.8321042347 -2.2697697380 12.0844174048 12.4699920406 1.8461877436 -4.6756624960 -24.8237503155
+ 1.2450000000 9.2226094579 0.5919673708 1.0191383492 -28.8874229793 -2.3366710370 12.1013584301 12.4894821727 1.7100570640 -4.6722089207 -24.8306919517
+ 1.2460000000 9.2362131719 0.5920524680 1.0190239856 -28.9417753772 -2.4053913925 12.1183439226 12.5093152983 1.5712213865 -4.6695979781 -24.8374042022
+ 1.2470000000 9.2496865635 0.5921392911 1.0189109704 -28.9951501962 -2.4759548134 12.1353612289 12.5294728273 1.4297555531 -4.6678324848 -24.8438862079
+ 1.2480000000 9.2630313415 0.5922278574 1.0187993275 -29.0475364758 -2.5483848936 12.1523805896 12.5499355044 1.2857357140 -4.6669168422 -24.8501376039
+ 1.2490000000 9.2762497778 0.5923181850 1.0186890842 -29.0989235104 -2.6227047890 12.1693552847 12.5706834150 1.1392393561 -4.6668574110 -24.8561585135
+ 1.2500000000 9.2893438689 0.5924102916 1.0185802673 -29.1492999048 -2.6989383187 12.1862529093 12.5916971296 0.9903434103 -4.6676568902 -24.8619487193
+ 1.2510000000 9.3023153031 0.5925041944 1.0184729035 -29.1986535727 -2.7771099929 12.2030559258 12.6129577176 0.8391240786 -4.6693136051 -24.8675076519
+ 1.2520000000 9.3151658897 0.5925999107 1.0183670205 -29.2469722166 -2.8572444458 12.2197457587 12.6344461997 0.6856576268 -4.6718235438 -24.8728348040
+ 1.2530000000 9.3278980017 0.5926974583 1.0182626496 -29.2942437792 -2.9393657938 12.2362863172 12.6561429691 0.5300216453 -4.6751857576 -24.8779301586
+ 1.2540000000 9.3405145407 0.5927968557 1.0181598258 -29.3404564248 -3.0234976157 12.2526243861 12.6780277997 0.3722950513 -4.6794028397 -24.8827941813
+ 1.2550000000 9.3530180646 0.5928981204 1.0180585832 -29.3855976371 -3.1096641231 12.2687216530 12.7000810083 0.2125557447 -4.6844722659 -24.8874269786
+ 1.2560000000 9.3654107541 0.5930012690 1.0179589555 -29.4296542329 -3.1978901846 12.2845550182 12.7222834454 0.0508804650 -4.6903855941 -24.8918282967
+ 1.2570000000 9.3776948606 0.5931063176 1.0178609771 -29.4726128371 -3.2882007150 12.3001000622 12.7446159213 -0.1126541526 -4.6971319402 -24.8959979483
+ 1.2580000000 9.3898731334 0.5932132825 1.0177646867 -29.5144602865 -3.3806200194 12.3153150141 12.7670586550 -0.2779702091 -4.7047052047 -24.8999362295
+ 1.2590000000 9.4019487682 0.5933221794 1.0176701258 -29.5551836113 -3.4751717801 12.3301414045 12.7895912913 -0.4449885914 -4.7131045450 -24.9036439086
+ 1.2600000000 9.4139245403 0.5934330230 1.0175773351 -29.5947692128 -3.5718802689 12.3445357658 12.8121940275 -0.6136316093 -4.7223223403 -24.9071213967
+ 1.2610000000 9.4258027740 0.5935458259 1.0174863538 -29.6332028935 -3.6707703641 12.3584697684 12.8348475836 -0.7838230777 -4.7323434108 -24.9103687545
+ 1.2620000000 9.4375857896 0.5936605999 1.0173972218 -29.6704703041 -3.7718669066 12.3719136883 12.8575326249 -0.9554870527 -4.7431502266 -24.9133861223
+ 1.2630000000 9.4492762950 0.5937773558 1.0173099825 -29.7065572903 -3.8751940557 12.3848210652 12.8802292682 -1.1285465120 -4.7547317741 -24.9161741132
+ 1.2640000000 9.4608773219 0.5938961030 1.0172246819 -29.7414498748 -3.9807752840 12.3971294962 12.9029171102 -1.3029234715 -4.7670839260 -24.9187337983
+ 1.2650000000 9.4723914115 0.5940168488 1.0171413642 -29.7751335435 -4.0886345884 12.4087913038 12.9255762690 -1.4785416498 -4.7801941499 -24.9210659116
+ 1.2660000000 9.4838205913 0.5941395984 1.0170600712 -29.8075932827 -4.1987964992 12.4197736909 12.9481873414 -1.6553264751 -4.7940408327 -24.9231708611
+ 1.2670000000 9.4951667969 0.5942643550 1.0169808449 -29.8388139794 -4.3112854269 12.4300427735 12.9707308565 -1.8332037340 -4.8086002683 -24.9250491456
+ 1.2680000000 9.5064322165 0.5943911198 1.0169037296 -29.8687807148 -4.4261250444 12.4395486117 12.9931868509 -2.0120984578 -4.8238568052 -24.9267017244
+ 1.2690000000 9.5176192277 0.5945198913 1.0168287716 -29.8974787500 -4.5433382877 12.4482259263 13.0155349111 -2.1919351004 -4.8398030468 -24.9281299999
+ 1.2700000000 9.5287296722 0.5946506660 1.0167560143 -29.9248929205 -4.6629485254 12.4560238899 13.0377550970 -2.3726399310 -4.8564217918 -24.9293350638
+ 1.2710000000 9.5397648423 0.5947834375 1.0166854978 -29.9510076694 -4.7849795647 12.4629065492 13.0598279052 -2.5541409689 -4.8736855272 -24.9303177053
+ 1.2720000000 9.5507258596 0.5949181970 1.0166172614 -29.9758073897 -4.9094550119 12.4688375989 13.0817337802 -2.7363667086 -4.8915650331 -24.9310788051
+ 1.2730000000 9.5616139754 0.5950549327 1.0165513458 -29.9992766866 -5.0363976826 12.4737649022 13.1034527505 -2.9192453145 -4.9100403358 -24.9316196913
+ 1.2740000000 9.5724305221 0.5951936293 1.0164877922 -30.0214003681 -5.1658295953 12.4776208973 13.1249644818 -3.1027048368 -4.9291007031 -24.9319421210
+ 1.2750000000 9.5831762896 0.5953342695 1.0164266385 -30.0421629175 -5.2977730886 12.4803527067 13.1462490888 -3.2866750867 -4.9487245848 -24.9320475563
+ 1.2760000000 9.5938515230 0.5954768332 1.0163679184 -30.0615485088 -5.4322508303 12.4819230467 13.1672871203 -3.4710875277 -4.9688792858 -24.9319371616
+ 1.2770000000 9.6044562478 0.5956212978 1.0163116636 -30.0795412971 -5.5692852093 12.4822953527 13.1880591420 -3.6558742291 -4.9895308279 -24.9316121737
+ 1.2780000000 9.6149905475 0.5957676372 1.0162579065 -30.0961256816 -5.7088977468 12.4814165235 13.2085454019 -3.8409673855 -5.0106552767 -24.9310742635
+ 1.2790000000 9.6254545401 0.5959158217 1.0162066788 -30.1112863029 -5.8511090739 12.4792168631 13.2287258895 -4.0262995280 -5.0322385371 -24.9303255193
+ 1.2800000000 9.6358478354 0.5960658197 1.0161580083 -30.1250075365 -5.9959400208 12.4756425675 13.2485810775 -4.2118047828 -5.0542550947 -24.9293677212
+ 1.2810000000 9.6461695407 0.5962175982 1.0161119181 -30.1372734845 -6.1434116413 12.4706571932 13.2680919379 -4.3974187552 -5.0766678984 -24.9282023241
+ 1.2820000000 9.6564185430 0.5963711214 1.0160684293 -30.1480682362 -6.2935446314 12.4642261350 13.2872395852 -4.5830778049 -5.0994390660 -24.9268308160
+ 1.2830000000 9.6665937896 0.5965263505 1.0160275621 -30.1573761637 -6.4463586967 12.4562964355 13.3060049325 -4.7687188165 -5.1225410335 -24.9252551047
+ 1.2840000000 9.6766942917 0.5966832436 1.0159893356 -30.1651819252 -6.6018725046 12.4467962928 13.3243687491 -4.9542793596 -5.1459563960 -24.9234775042
+ 1.2850000000 9.6867186164 0.5968417577 1.0159537648 -30.1714699199 -6.7601048157 12.4356721509 13.3423123917 -5.1396983947 -5.1696563985 -24.9214999740
+ 1.2860000000 9.6966648943 0.5970018494 1.0159208605 -30.1762242598 -6.9210745301 12.4228905905 13.3598178505 -5.3249162128 -5.1936003591 -24.9193240863
+ 1.2870000000 9.7065310825 0.5971634738 1.0158906307 -30.1794290315 -7.0848001058 12.4084208666 13.3768674190 -5.5098740181 -5.2177471158 -24.9169513937
+ 1.2880000000 9.7163152708 0.5973265834 1.0158630823 -30.1810686431 -7.2512988341 12.3922111900 13.3934433100 -5.6945137871 -5.2420663551 -24.9143838564
+ 1.2890000000 9.7260157051 0.5974911285 1.0158382212 -30.1811278319 -7.4205867586 12.3741880415 13.4095277078 -5.8787783852 -5.2665377049 -24.9116238260
+ 1.2900000000 9.7356302557 0.5976570598 1.0158160490 -30.1795910426 -7.5926799437 12.3542993912 13.4251035404 -6.0626119430 -5.2911293812 -24.9086732248
+ 1.2910000000 9.7451564240 0.5978243284 1.0157965638 -30.1764423894 -7.7675945519 12.3325166968 13.4401545345 -6.2459598222 -5.3157983258 -24.9055335130
+ 1.2920000000 9.7545916136 0.5979928852 1.0157797614 -30.1716659498 -7.9453462104 12.3088144094 13.4546648772 -6.4287684434 -5.3405012933 -24.9022060803
+ 1.2930000000 9.7639334710 0.5981626794 1.0157656363 -30.1652461606 -8.1259491531 12.2831429684 13.4686187860 -6.6109851216 -5.3652054999 -24.8986927067
+ 1.2940000000 9.7731799134 0.5983336593 1.0157541820 -30.1571678262 -8.3094161189 12.2554282679 13.4820005517 -6.7925580911 -5.3898882622 -24.8949955475
+ 1.2950000000 9.7823285314 0.5985057742 1.0157453886 -30.1474154186 -8.4957598446 12.2256212065 13.4947953648 -6.9734368241 -5.4145159649 -24.8911162539
+ 1.2960000000 9.7913765917 0.5986789750 1.0157392436 -30.1359730475 -8.6849931644 12.1936994173 13.5069893605 -7.1535720554 -5.4390440063 -24.8870559460
+ 1.2970000000 9.8003213380 0.5988532132 1.0157357324 -30.1228248002 -8.8771282752 12.1596432721 13.5185692430 -7.3329156869 -5.4634278742 -24.8828156417
+ 1.2980000000 9.8091603570 0.5990284392 1.0157348396 -30.1079551613 -9.0721757397 12.1234066280 13.5295218313 -7.5114204961 -5.4876334693 -24.8783967320
+ 1.2990000000 9.8178915928 0.5992046037 1.0157365494 -30.0913490212 -9.2701443768 12.0849167884 13.5398340960 -7.6890401180 -5.5116367357 -24.8738009635
+ 1.3000000000 9.8265126767 0.5993816587 1.0157408433 -30.0729909339 -9.4710430230 12.0441290865 13.5494940088 -7.8657295111 -5.5354032003 -24.8690295280
+ 1.3010000000 9.8350209252 0.5995595580 1.0157477011 -30.0528651086 -9.6748806442 12.0010280356 13.5584905569 -8.0414450095 -5.5588878653 -24.8640830534
+ 1.3020000000 9.8434136771 0.5997382563 1.0157571010 -30.0309557895 -9.8816654633 11.9556002063 13.5668133298 -8.2161441717 -5.5820459971 -24.8589620612
+ 1.3030000000 9.8516886573 0.5999177081 1.0157690212 -30.0072477233 -10.0914039280 11.9078042687 13.5744520987 -8.3897853600 -5.6048432746 -24.8536674138
+ 1.3040000000 9.8598440120 0.6000978683 1.0157834396 -29.9817260020 -10.3041004381 11.8575715699 13.5813968410 -8.5623276965 -5.6272555140 -24.8482003068
+ 1.3050000000 9.8678776055 0.6002786940 1.0158003322 -29.9543753230 -10.5197593552 11.8048633476 13.5876385519 -8.7337317581 -5.6492485878 -24.8425613732
+ 1.3060000000 9.8757869704 0.6004601440 1.0158196738 -29.9251801728 -10.7383852881 11.7496712500 13.5931692309 -8.9039596364 -5.6707782037 -24.8367506794
+ 1.3070000000 9.8835696698 0.6006421777 1.0158414386 -29.8941251656 -10.9599819968 11.6919881870 13.5979814400 -9.0729746486 -5.6918004744 -24.8307682056
+ 1.3080000000 9.8912236364 0.6008247540 1.0158656009 -29.8611954020 -11.1845512332 11.6317790355 13.6020679395 -9.2407408496 -5.7122820893 -24.8246142661
+ 1.3090000000 9.8987471379 0.6010078319 1.0158921353 -29.8263764735 -11.4120926641 11.5689819100 13.6054217234 -9.4072230240 -5.7322000857 -24.8182894824
+ 1.3100000000 9.9061380810 0.6011913708 1.0159210155 -29.7896538176 -11.6426060454 11.5035653481 13.6080367080 -9.5723875442 -5.7515218633 -24.8117939566
+ 1.3110000000 9.9133940102 0.6013753314 1.0159522142 -29.7510127524 -11.8760913211 11.4355282221 13.6099076769 -9.7362023808 -5.7702048972 -24.8051272965
+ 1.3120000000 9.9205124678 0.6015596741 1.0159857044 -29.7104388483 -12.1125474953 11.3648700794 13.6110298880 -9.8986366906 -5.7882071804 -24.7982890607
+ 1.3130000000 9.9274912893 0.6017443584 1.0160214592 -29.6679182250 -12.3519714767 11.2915634631 13.6113987801 -10.0596603958 -5.8054975237 -24.7912791230
+ 1.3140000000 9.9343285526 0.6019293430 1.0160594525 -29.6234375284 -12.5943580396 11.2155555809 13.6110101058 -10.2192441636 -5.8220554054 -24.7840976285
+ 1.3150000000 9.9410219624 0.6021145869 1.0160996579 -29.5769833997 -12.8397020476 11.1368234123 13.6098604435 -10.3773602457 -5.8378508148 -24.7767442654
+ 1.3160000000 9.9475688570 0.6023000495 1.0161420483 -29.5285425446 -13.0879985285 11.0553733156 13.6079470284 -10.5339824952 -5.8528438898 -24.7692183125
+ 1.3170000000 9.9539665265 0.6024856893 1.0161865969 -29.4781020428 -13.3392415022 10.9712120846 13.6052674732 -10.6890858891 -5.8669954279 -24.7615190360
+ 1.3180000000 9.9602124405 0.6026714633 1.0162332773 -29.4256495632 -13.5934228804 10.8843211913 13.6018196294 -10.8426462130 -5.8802773610 -24.7536459856
+ 1.3190000000 9.9663042032 0.6028573263 1.0162820641 -29.3711733673 -13.8505324338 10.7946585372 13.5976016287 -10.9946401235 -5.8926725361 -24.7455989676
+ 1.3200000000 9.9722390523 0.6030432332 1.0163329308 -29.3146619007 -14.1105599757 10.7022104389 13.5926121930 -11.1450458077 -5.9041543048 -24.7373774255
+ 1.3210000000 9.9780138723 0.6032291389 1.0163858511 -29.2561038199 -14.3734954414 10.6069912484 13.5868505741 -11.2938429102 -5.9146862187 -24.7289804652
+ 1.3220000000 9.9836254750 0.6034149973 1.0164407984 -29.1954882463 -14.6393277184 10.5090158860 13.5803163403 -11.4410121308 -5.9242326287 -24.7204071992
+ 1.3230000000 9.9890707750 0.6036007602 1.0164977469 -29.1328049215 -14.9080435935 10.4082757310 13.5730093405 -11.5865350759 -5.9327692511 -24.7116569915
+ 1.3240000000 9.9943467609 0.6037863769 1.0165566711 -29.0680442136 -15.1796277236 10.3047402079 13.5649297425 -11.7303943303 -5.9402828976 -24.7027294339
+ 1.3250000000 9.9994501186 0.6039717972 1.0166175450 -29.0011968081 -15.4540647426 10.1984056608 13.5560781582 -11.8725738166 -5.9467508838 -24.6936238239
+ 1.3260000000 10.0043772498 0.6041569711 1.0166803423 -28.9322537162 -15.7313393499 10.0892951889 13.5464556033 -12.0130587107 -5.9521407569 -24.6843391782
+ 1.3270000000 10.0091244942 0.6043418482 1.0167450364 -28.8612064625 -16.0114351850 9.9774328298 13.5360633934 -12.1518351821 -5.9564209557 -24.6748745200
+ 1.3280000000 10.0136882729 0.6045263757 1.0168116012 -28.7880472063 -16.2943337849 9.8628205375 13.5249031763 -12.2888903773 -5.9595714549 -24.6652290912
+ 1.3290000000 10.0180650793 0.6047104992 1.0168800108 -28.7127687512 -16.5800145440 9.7454394726 13.5129769611 -12.4242124745 -5.9615834767 -24.6554023367
+ 1.3300000000 10.0222512007 0.6048941650 1.0169502386 -28.6353643034 -16.8684567832 9.6252964782 13.5002871016 -12.5577907541 -5.9624387612 -24.6453934510
+ 1.3310000000 10.0262427322 0.6050773209 1.0170222573 -28.5558274605 -17.1596398622 9.5024242127 13.4868362792 -12.6896155286 -5.9621092914 -24.6352013800
+ 1.3320000000 10.0300357504 0.6052599145 1.0170960394 -28.4741523486 -17.4535420938 9.3768567080 13.4726274891 -12.8196780489 -5.9605679725 -24.6248250628
+ 1.3330000000 10.0336264455 0.6054418923 1.0171715575 -28.3903337341 -17.7501396549 9.2486068295 13.4576641019 -12.9479705409 -5.9577994414 -24.6142636334
+ 1.3340000000 10.0370111302 0.6056231995 1.0172487841 -28.3043670417 -18.0494065275 9.1176672732 13.4419498758 -13.0744862242 -5.9537998280 -24.6035164138
+ 1.3350000000 10.0401860067 0.6058037831 1.0173276910 -28.2162481435 -18.3513166248 8.9840556160 13.4254888543 -13.1992192084 -5.9485557616 -24.5925824995
+ 1.3360000000 10.0431471706 0.6059835925 1.0174082490 -28.1259733359 -18.6558439307 8.8478147250 13.4082853656 -13.3221644537 -5.9420440314 -24.5814607510
+ 1.3370000000 10.0458907527 0.6061625778 1.0174904286 -28.0335394486 -18.9629614132 8.7089892252 13.3903440668 -13.4433177983 -5.9342423243 -24.5701500088
+ 1.3380000000 10.0484130609 0.6063406886 1.0175742000 -27.9389439660 -19.2726398432 8.5676029122 13.3716699996 -13.5626759688 -5.9251403886 -24.5586493031
+ 1.3390000000 10.0507105960 0.6065178742 1.0176595334 -27.8421850537 -19.5848477209 8.4236595361 13.3522685848 -13.6802365600 -5.9147399033 -24.5469578563
+ 1.3400000000 10.0527798128 0.6066940865 1.0177463981 -27.7432613539 -19.8995535552 8.2771873783 13.3321454850 -13.7959979111 -5.9030329000 -24.5350746774
+ 1.3410000000 10.0546171069 0.6068692796 1.0178347626 -27.6421718020 -20.2167259509 8.1282399739 13.3113065577 -13.9099590820 -5.8900013458 -24.5229985966
+ 1.3420000000 10.0562187797 0.6070434066 1.0179245955 -27.5389162466 -20.5363327016 7.9768727735 13.2897579401 -14.0221199749 -5.8756280249 -24.5107284392
+ 1.3430000000 10.0575812457 0.6072164192 1.0180158652 -27.4334955386 -20.8583394703 7.8231201188 13.2675061027 -14.1324812687 -5.8599082465 -24.4982632368
+ 1.3440000000 10.0587011744 0.6073882689 1.0181085404 -27.3259110931 -21.1827094953 7.6669961869 13.2445577925 -14.2410443294 -5.8428498958 -24.4856022861
+ 1.3450000000 10.0595751977 0.6075589094 1.0182025888 -27.2161648420 -21.5094061641 7.5085397468 13.2209199441 -14.3478111909 -5.8244508227 -24.4727446828
+ 1.3460000000 10.0601998884 0.6077282974 1.0182979777 -27.1042592126 -21.8383931796 7.3478147672 13.1965996801 -14.4527845535 -5.8046982916 -24.4596893087
+ 1.3470000000 10.0605719014 0.6078963905 1.0183946737 -26.9901972380 -22.1696333163 7.1848872905 13.1716043747 -14.5559678128 -5.7835804341 -24.4464350456
+ 1.3480000000 10.0606881548 0.6080631465 1.0184926436 -26.8739826997 -22.5030870615 7.0198019764 13.1459416695 -14.6573649525 -5.7610985154 -24.4329810218
+ 1.3490000000 10.0605458330 0.6082285231 1.0185918545 -26.7556201663 -22.8387125547 6.8525828755 13.1196194466 -14.7569805044 -5.7372669370 -24.4193266247
+ 1.3500000000 10.0601420622 0.6083924802 1.0186922728 -26.6351147664 -23.1764682470 6.6832788481 13.0926457087 -14.8548196165 -5.7120895301 -24.4054710538
+ 1.3510000000 10.0594738873 0.6085549799 1.0187938646 -26.5124721726 -23.5163130582 6.5119639839 13.0650285693 -14.9508880389 -5.6855590307 -24.3914133129
+ 1.3520000000 10.0585384305 0.6087159851 1.0188965959 -26.3876987199 -23.8582050275 6.3387141978 13.0367763021 -15.0451920840 -5.6576692266 -24.3771524385
+ 1.3530000000 10.0573330779 0.6088754584 1.0190004334 -26.2608015424 -24.2020999356 6.1635836956 13.0078973592 -15.1377385326 -5.6284274350 -24.3626877535
+ 1.3540000000 10.0558554730 0.6090333620 1.0191053441 -26.1317886075 -24.5479512688 5.9866059787 12.9784003490 -15.2285346171 -5.5978543677 -24.3480188745
+ 1.3550000000 10.0541031706 0.6091896597 1.0192112952 -26.0006684875 -24.8957129727 5.8078394687 12.9482939173 -15.3175881081 -5.5659596981 -24.3331452480
+ 1.3560000000 10.0520736232 0.6093443168 1.0193182537 -25.8674503462 -25.2453395901 5.6273675100 12.9175867263 -15.4049072722 -5.5327417049 -24.3180661506
+ 1.3570000000 10.0497643544 0.6094972991 1.0194261872 -25.7321440588 -25.5967848396 5.4452746957 12.8862874967 -15.4905007907 -5.4982000202 -24.3027809301
+ 1.3580000000 10.0471731285 0.6096485714 1.0195350641 -25.5947603280 -25.9500002735 5.2616241741 12.8544050571 -15.5743777558 -5.4623477401 -24.2872892437
+ 1.3590000000 10.0442979407 0.6097980977 1.0196448542 -25.4553107096 -26.3049352705 5.0764588757 12.8219483312 -15.6565476799 -5.4252110205 -24.2715910583
+ 1.3600000000 10.0411366959 0.6099458430 1.0197555275 -25.3138073978 -26.6615397771 4.8898459636 12.7889261828 -15.7370204695 -5.3868048569 -24.2556861997
+ 1.3610000000 10.0376871990 0.6100917737 1.0198670542 -25.1702632057 -27.0197644190 4.7018769722 12.7553474027 -15.8158063601 -5.3471329924 -24.2395743477
+ 1.3620000000 10.0339473278 0.6102358561 1.0199794057 -25.0246916760 -27.3795590632 4.5126443335 12.7212207639 -15.8929158659 -5.3062008347 -24.2232552772
+ 1.3630000000 10.0299151998 0.6103780551 1.0200925546 -24.8771071782 -27.7408715657 4.3222185315 12.6865550772 -15.9683598881 -5.2640265990 -24.2067290982
+ 1.3640000000 10.0255891289 0.6105183348 1.0202064752 -24.7275249162 -28.1036477643 4.1306518515 12.6513592382 -16.0421497638 -5.2206405690 -24.1899962072
+ 1.3650000000 10.0209673507 0.6106566599 1.0203211423 -24.5759607333 -28.4678341186 3.9380210921 12.6156420268 -16.1142970337 -5.1760622658 -24.1730568617
+ 1.3660000000 10.0160480818 0.6107929968 1.0204365313 -24.4224310989 -28.8333778308 3.7444234629 12.5794120119 -16.1848133288 -5.1303006633 -24.1559112481
+ 1.3670000000 10.0108296445 0.6109273118 1.0205526188 -24.2669531944 -29.2002254274 3.5499560324 12.5426776824 -16.2537104390 -5.0833665832 -24.1385596698
+ 1.3680000000 10.0053105497 0.6110595697 1.0206693832 -24.1095449804 -29.5683215727 3.3546983047 12.5054476169 -16.3210005713 -5.0352824479 -24.1210026937
+ 1.3690000000 9.9994895220 0.6111897346 1.0207868044 -23.9502252087 -29.9376091147 3.1587119478 12.4677304425 -16.3866963579 -4.9860813522 -24.1032411719
+ 1.3700000000 9.9933653034 0.6113177718 1.0209048630 -23.7890132566 -30.3080315808 2.9620794692 12.4295345493 -16.4508103863 -4.9357865811 -24.0852758855
+ 1.3710000000 9.9869366524 0.6114436483 1.0210235402 -23.6259290874 -30.6795332328 2.7649037195 12.3908680985 -16.5133551389 -4.8844119184 -24.0671075324
+ 1.3720000000 9.9802024744 0.6115673315 1.0211428182 -23.4609933253 -31.0520577478 2.5672863765 12.3517391387 -16.5743431715 -4.8319728741 -24.0487369336
+ 1.3730000000 9.9731618901 0.6116887880 1.0212626807 -23.2942273195 -31.4255471437 2.3693125703 12.3121557803 -16.6337874232 -4.7784952229 -24.0301651655
+ 1.3740000000 9.9658142326 0.6118079836 1.0213831135 -23.1256531476 -31.7999418065 2.1710525077 12.2721261961 -16.6917012242 -4.7240140569 -24.0113935441
+ 1.3750000000 9.9581589238 0.6119248864 1.0215041024 -22.9552934655 -32.1751828223 1.9725944511 12.2316582573 -16.7480976617 -4.6685557939 -23.9924233468
+ 1.3760000000 9.9501954811 0.6120394664 1.0216256339 -22.7831714701 -32.5512120536 1.7740439874 12.1907595331 -16.8029895411 -4.6121384109 -23.9732558131
+ 1.3770000000 9.9419236021 0.6121516948 1.0217476951 -22.6093109603 -32.9279709015 1.5755054769 12.1494374572 -16.8563896856 -4.5547811686 -23.9538923036
+ 1.3780000000 9.9333432085 0.6122615422 1.0218702750 -22.4337363944 -33.3053992831 1.3770686669 12.1076995183 -16.9083112324 -4.4965125410 -23.9343344046
+ 1.3790000000 9.9244544516 0.6123689797 1.0219933635 -22.2564728949 -33.6834356791 1.1788100646 12.0655532415 -16.9587676077 -4.4373695123 -23.9145839237
+ 1.3800000000 9.9152576245 0.6124739803 1.0221169511 -22.0775461062 -34.0620193152 0.9808214586 12.0230057937 -17.0077718694 -4.3773812719 -23.8946426633
+ 1.3810000000 9.9057531585 0.6125765199 1.0222410278 -21.8969821589 -34.4410902296 0.7832094470 11.9800639916 -17.0553367044 -4.3165691612 -23.8745124146
+ 1.3820000000 9.8959416767 0.6126765758 1.0223655849 -21.7148077250 -34.8205881200 0.5860795227 11.9367344945 -17.1014747810 -4.2549551437 -23.8541950847
+ 1.3830000000 9.8858240357 0.6127741255 1.0224906141 -21.5310500736 -35.2004513998 0.3895238427 11.8930239732 -17.1461989585 -4.1925700029 -23.8336928000
+ 1.3840000000 9.8754013335 0.6128691469 1.0226161087 -21.3457370737 -35.5806172521 0.1936222082 11.8489390800 -17.1895222342 -4.1294530345 -23.8130079096
+ 1.3850000000 9.8646748253 0.6129616206 1.0227420615 -21.1588970579 -35.9610236607 -0.0015324708 11.8044860693 -17.2314572036 -4.0656359476 -23.7921427785
+ 1.3860000000 9.8536459109 0.6130515300 1.0228684652 -20.9705587893 -36.3416094677 -0.1958342974 11.7596708105 -17.2720160858 -4.0011424311 -23.7710997758
+ 1.3870000000 9.8423161738 0.6131388599 1.0229953128 -20.7807515166 -36.7223133001 -0.3891782785 11.7144989831 -17.3112110478 -3.9359961108 -23.7498813848
+ 1.3880000000 9.8306874309 0.6132235957 1.0231225980 -20.5895050188 -37.1030727160 -0.5814722934 11.6689762108 -17.3490542945 -3.8702297899 -23.7284903180
+ 1.3890000000 9.8187617407 0.6133057235 1.0232503155 -20.3968496031 -37.4838242646 -0.7726365196 11.6231080272 -17.3855580006 -3.8038855264 -23.7069295264
+ 1.3900000000 9.8065413038 0.6133852321 1.0233784593 -20.2028159804 -37.8645053527 -0.9625793047 11.5768995457 -17.4207339772 -3.7369971739 -23.6852019814
+ 1.3910000000 9.7940284477 0.6134621126 1.0235070235 -20.0074352363 -38.2450542893 -1.1511970586 11.5303554760 -17.4545937120 -3.6695896379 -23.6633106606
+ 1.3920000000 9.7812256679 0.6135363578 1.0236360018 -19.8107388793 -38.6254092943 -1.3383871490 11.4834802983 -17.4871485998 -3.6016872669 -23.6412586572
+ 1.3930000000 9.7681356845 0.6136079610 1.0237653891 -19.6127588682 -39.0055077488 -1.5240598722 11.4362783678 -17.5184099193 -3.5333244795 -23.6190493089
+ 1.3940000000 9.7547614501 0.6136769163 1.0238951806 -19.4135276002 -39.3852862605 -1.7081380718 11.3887538837 -17.5483887662 -3.4645460504 -23.5966862046
+ 1.3950000000 9.7411060358 0.6137432199 1.0240253712 -19.2130778114 -39.7646823391 -1.8905333717 11.3409106215 -17.5770959453 -3.3953872890 -23.5741729449
+ 1.3960000000 9.7271726352 0.6138068707 1.0241559556 -19.0114426832 -40.1436344022 -2.0711462157 11.2927519394 -17.6045420049 -3.3258731844 -23.5515131284
+ 1.3970000000 9.7129646324 0.6138678693 1.0242869284 -18.8086555479 -40.5220808972 -2.2498784545 11.2442809667 -17.6307373483 -3.2560280331 -23.5287104537
+ 1.3980000000 9.6984856679 0.6139262180 1.0244182848 -18.6047498756 -40.8999596682 -2.4266447282 11.1955007033 -17.6556921284 -3.1858871969 -23.5057688394
+ 1.3990000000 9.6837396198 0.6139819196 1.0245500208 -18.3997596005 -41.2772080134 -2.6013721147 11.1464139474 -17.6794161939 -3.1154973123 -23.4826924528
+ 1.4000000000 9.6687304686 0.6140349792 1.0246821319 -18.1937189212 -41.6537641581 -2.7739770796 11.0970230851 -17.7019191735 -3.0448941523 -23.4594854568
+ 1.4010000000 9.6534622935 0.6140854038 1.0248146139 -17.9866622679 -42.0295672722 -2.9443657816 11.0473301062 -17.7232105069 -2.9741019247 -23.4361519985
+ 1.4020000000 9.6379393291 0.6141332014 1.0249474627 -17.7786243135 -42.4045566776 -3.1124467606 10.9973367241 -17.7432994452 -2.9031442957 -23.4126963399
+ 1.4030000000 9.6221660111 0.6141783806 1.0250806753 -17.5696399637 -42.7786713354 -3.2781406708 10.9470444635 -17.7621949025 -2.8320566110 -23.3891229723
+ 1.4040000000 9.6061469796 0.6142209506 1.0252142492 -17.3597443344 -43.1518499228 -3.4413794041 10.8964546514 -17.7799054206 -2.7608858695 -23.3654366095
+ 1.4050000000 9.5898869800 0.6142609225 1.0253481823 -17.1489727067 -43.5240320488 -3.6020855072 10.8455682280 -17.7964393741 -2.6896671454 -23.3416419442
+ 1.4060000000 9.5733908662 0.6142983088 1.0254824726 -16.9373604920 -43.8951582593 -3.7601729718 10.7943857606 -17.8118049907 -2.6184231805 -23.3177436411
+ 1.4070000000 9.5566636544 0.6143331233 1.0256171185 -16.7249432221 -44.2651693637 -3.9155591772 10.7429075508 -17.8260102748 -2.5471764977 -23.2937464660
+ 1.4080000000 9.5397105519 0.6143653805 1.0257521196 -16.5117565362 -44.6340060445 -4.0681718930 10.6911337274 -17.8390628394 -2.4759613060 -23.2696553759
+ 1.4090000000 9.5225369584 0.6143950952 1.0258874763 -16.2978361593 -45.0016089375 -4.2179479944 10.6390642460 -17.8509698865 -2.4048231395 -23.2454755048
+ 1.4100000000 9.5051483905 0.6144222841 1.0260231892 -16.0832178690 -45.3679196015 -4.3648172779 10.5866987065 -17.8617384849 -2.3337952409 -23.2212119553
+ 1.4110000000 9.4875504869 0.6144469654 1.0261592595 -15.8679374586 -45.7328805136 -4.5087036547 10.5340363659 -17.8713755864 -2.2628984503 -23.1968697967
+ 1.4120000000 9.4697490504 0.6144691584 1.0262956888 -15.6520307166 -46.0964345236 -4.6495351957 10.4810762422 -17.8798879053 -2.1921536631 -23.1724541780
+ 1.4130000000 9.4517500618 0.6144888829 1.0264324798 -15.4355334230 -46.4585245783 -4.7872478814 10.4278172115 -17.8872817370 -2.1215929114 -23.1479703919
+ 1.4140000000 9.4335596768 0.6145061599 1.0265696361 -15.2184813337 -46.8190938014 -4.9217840836 10.3742580088 -17.8935629483 -2.0512587504 -23.1234238585
+ 1.4150000000 9.4151841739 0.6145210113 1.0267071615 -15.0009101392 -47.1780862264 -5.0530821918 10.3203970448 -17.8987373031 -1.9811817621 -23.0988199648
+ 1.4160000000 9.3966299551 0.6145334608 1.0268450603 -14.7828554323 -47.5354467843 -5.1810779265 10.2662324175 -17.9028104817 -1.9113806154 -23.0741640653
+ 1.4170000000 9.3779035736 0.6145435330 1.0269833373 -14.5643526905 -47.8911208878 -5.3057114230 10.2117620173 -17.9057879364 -1.8418741083 -23.0494615719
+ 1.4180000000 9.3590117380 0.6145512534 1.0271219982 -14.3454372877 -48.2450542545 -5.4269280512 10.1569836190 -17.9076746889 -1.7726913494 -23.0247179962
+ 1.4190000000 9.3399613057 0.6145566482 1.0272610491 -14.1261444827 -48.5971929824 -5.5446770205 10.1018948806 -17.9084753241 -1.7038710637 -22.9999389355
+ 1.4200000000 9.3207592456 0.6145597449 1.0274004967 -13.9065093602 -48.9474840597 -5.6589069889 10.0464931629 -17.9081943666 -1.6354407120 -22.9751299600
+ 1.4210000000 9.3014126290 0.6145605720 1.0275403476 -13.6865668082 -49.2958753670 -5.7695668267 9.9907755435 -17.9068363087 -1.5674165413 -22.9502966109
+ 1.4220000000 9.2819286433 0.6145591592 1.0276806087 -13.4663515196 -49.6423154014 -5.8766089572 9.9347389239 -17.9044054470 -1.4998147490 -22.9254444613
+ 1.4230000000 9.2623146108 0.6145555366 1.0278212876 -13.2458979916 -49.9867530696 -5.9799904990 9.8783800885 -17.9009056356 -1.4326611135 -22.9005791663
+ 1.4240000000 9.2425779691 0.6145497354 1.0279623919 -13.0252405306 -50.3291378044 -6.0796711582 9.8216957081 -17.8963402867 -1.3659903860 -22.8757064455
+ 1.4250000000 9.2227261747 0.6145417875 1.0281039294 -12.8044132588 -50.6694203171 -6.1756047666 9.7646822543 -17.8907128518 -1.2998266800 -22.8508319300
+ 1.4260000000 9.2027668223 0.6145317258 1.0282459075 -12.5834499154 -51.0075517722 -6.2677566883 9.7073358730 -17.8840267817 -1.2341835008 -22.8259612929
+ 1.4270000000 9.1827077685 0.6145195836 1.0283883342 -12.3623836893 -51.3434826107 -6.3561243699 9.6496523060 -17.8762852546 -1.1690741802 -22.8011004554
+ 1.4277967925 9.1666584478 0.6145084418 1.0285021450 -12.1861886653 -51.6095441446 -6.4237782948 9.6034465663 -17.8693633757 -1.1175918816 -22.7813021706
+ 1.4280000000 9.1625563895 0.6145053944 1.0285312171 -12.1412484076 -51.6771677634 -6.4406284013 9.5916278116 -17.8674913454 -1.1045204842 -22.7762547976
+ 1.4287967925 9.1464385336 0.6144926470 1.0286453944 -11.9650229535 -51.9414109431 -6.5050904635 9.5451481676 -17.8597330355 -1.0535027452 -22.7564720334
+ 1.4290000000 9.1423197645 0.6144891941 1.0286745597 -11.9200783454 -52.0085665866 -6.5211136659 9.5332592158 -17.8576479537 -1.0405529984 -22.7514291198
+ 1.4297144373 9.1278146148 0.6144764116 1.0287772496 -11.7620623240 -52.2439022321 -6.5761817316 9.4913451029 -17.8499739101 -0.9952233916 -22.7337083856
+ 1.4300000000 9.1220067942 0.6144710250 1.0288183603 -11.6989046929 -52.3376278905 -6.5976498465 9.4745415355 -17.8467571437 -0.9771929501 -22.7266297314
+ 1.4307144373 9.1074529675 0.6144568629 1.0289213760 -11.5409043144 -52.5712596885 -6.6499996411 9.4323744326 -17.8383358935 -0.9323046641 -22.7089320350
+ 1.4310000000 9.1016268978 0.6144509306 1.0289626172 -11.4777573884 -52.6642975474 -6.6703865284 9.4154690246 -17.8348208056 -0.9144518267 -22.7018634517
+ 1.4317144373 9.0870299590 0.6144354169 1.0290659605 -11.3197956406 -52.8961951196 -6.7199838136 9.3730457266 -17.8256542402 -0.8700116404 -22.6841927068
+ 1.4320000000 9.0811875811 0.6144289495 1.0291073332 -11.2566690214 -52.9885352143 -6.7392388286 9.3560374347 -17.8218417215 -0.8523388834 -22.6771355083
+ 1.4327144373 9.0665525061 0.6144121091 1.0292110091 -11.0987696001 -53.2186723178 -6.7859873617 9.3133550237 -17.8119317837 -0.8083572835 -22.6594952739
+ 1.4330000000 9.0606959876 0.6144051165 1.0292525160 -11.0356724211 -53.3103026282 -6.8041017428 9.2962424440 -17.8078223767 -0.7908721815 -22.6524511163
+ 1.4340000000 9.0401599904 0.6143794670 1.0293981735 -10.8147989084 -53.6295561564 -6.8649813372 9.2360788201 -17.7927643893 -0.7300800004 -22.6278163077
+ 1.4350000000 9.0195874235 0.6143520369 1.0295443119 -10.5940795008 -53.9462534823 -6.9218772508 9.1755412265 -17.7766696133 -0.6699795520 -22.6032369879
+ 1.4360000000 8.9989859688 0.6143228619 1.0296909366 -10.3735450582 -54.2603543182 -6.9747717579 9.1146243006 -17.7595401930 -0.6105774744 -22.5787188740
+ 1.4370000000 8.9783633366 0.6142919774 1.0298380524 -10.1532259576 -54.5718188405 -7.0236569997 9.0533225246 -17.7413781917 -0.5518795900 -22.5542677177
+ 1.4380000000 8.9577272523 0.6142594191 1.0299856628 -9.9331521375 -54.8806079515 -7.0685301403 8.9916302849 -17.7221852518 -0.4939009851 -22.5298893057
+ 1.4390000000 8.9370854218 0.6142252224 1.0301337704 -9.7133531379 -55.1866835361 -7.1093891063 8.9295419001 -17.7019626119 -0.4366657627 -22.5055894255
+ 1.4400000000 8.9164455020 0.6141894229 1.0302823771 -9.4938580448 -55.4900083832 -7.1462345410 8.8670515744 -17.6807117912 -0.3801873931 -22.4813737931
+ 1.4410000000 8.8958150967 0.6141520555 1.0304314839 -9.2746954701 -55.7905461765 -7.1790700798 8.8041534163 -17.6584346217 -0.3244684552 -22.4572480477
+ 1.4420000000 8.8752017650 0.6141131552 1.0305810911 -9.0558935510 -56.0882615154 -7.2079018758 8.7408414829 -17.6351329272 -0.2695107388 -22.4332177884
+ 1.4430000000 8.8546130318 0.6140727568 1.0307311977 -8.8374799501 -56.3831198998 -7.2327387299 8.6771097844 -17.6108081459 -0.2153253294 -22.4092886092
+ 1.4440000000 8.8340563822 0.6140308950 1.0308818015 -8.6194818416 -56.6750877318 -7.2535921510 8.6129522902 -17.5854613363 -0.1619322943 -22.3854660911
+ 1.4450000000 8.8135392209 0.6139876041 1.0310328999 -8.4019258717 -56.9641323576 -7.2704761926 8.5483629342 -17.5590939243 -0.1093408837 -22.3617557159
+ 1.4460000000 8.7930688676 0.6139429179 1.0311844895 -8.1848381444 -57.2502220720 -7.2834074308 8.4833356375 -17.5317077319 -0.0575494544 -22.3381628610
+ 1.4470000000 8.7726525698 0.6138968699 1.0313365661 -7.9682442233 -57.5333261038 -7.2924050115 8.4178643302 -17.5033046203 -0.0065558319 -22.3146928393
+ 1.4480000000 8.7522975127 0.6138494937 1.0314891245 -7.7521691376 -57.8134146039 -7.2974906628 8.3519429398 -17.4738860998 0.0436331326 -22.2913509305
+ 1.4490000000 8.7320108134 0.6138008221 1.0316421579 -7.5366373710 -58.0904586495 -7.2986886605 8.2855653989 -17.4434533424 0.0930020489 -22.2681423716
+ 1.4500000000 8.7117994829 0.6137508880 1.0317956593 -7.3216728157 -58.3644302807 -7.2960257126 8.2187256873 -17.4120079625 0.1415461401 -22.2450722768
+ 1.4510000000 8.6916704229 0.6136997233 1.0319496212 -7.1072987623 -58.6353025014 -7.2895309325 8.1514178543 -17.3795520414 0.1892711115 -22.2221456338
+ 1.4520000000 8.6716304394 0.6136473597 1.0321040357 -6.8935379087 -58.9030492613 -7.2792358562 8.0836360216 -17.3460877472 0.2361829018 -22.1993673425
+ 1.4530000000 8.6516862513 0.6135938286 1.0322588930 -6.6804123713 -59.1676454431 -7.2651744324 8.0153743538 -17.3116169391 0.2822790596 -22.1767422419
+ 1.4540000000 8.6318444861 0.6135391611 1.0324141827 -6.4679436759 -59.4290668644 -7.2473829785 7.9466270668 -17.2761411835 0.3275493790 -22.1542751003
+ 1.4550000000 8.6121116435 0.6134833877 1.0325698935 -6.2561527103 -59.6872903082 -7.2259000765 7.8773885024 -17.2396625532 0.3719935911 -22.1319705461
+ 1.4560000000 8.5924940938 0.6134265383 1.0327260145 -6.0450597188 -59.9422935205 -7.2007665368 7.8076531486 -17.2021836499 0.4156211067 -22.1098330654
+ 1.4570000000 8.5729980869 0.6133686422 1.0328825337 -5.8346843042 -60.1940552003 -7.1720253792 7.7374156253 -17.1637072123 0.4584413827 -22.0878670366
+ 1.4580000000 8.5536297597 0.6133097284 1.0330394381 -5.6250454797 -60.4425549694 -7.1397218296 7.6666706297 -17.1242357139 0.5004563252 -22.0660767577
+ 1.4590000000 8.5343951352 0.6132498254 1.0331967131 -5.4161616559 -60.6877733721 -7.1039032647 7.5954129468 -17.0837713786 0.5416609607 -22.0444664364
+ 1.4600000000 8.5153000880 0.6131889612 1.0333543440 -5.2080505607 -60.9296919139 -7.0646190958 7.5236375608 -17.0423169955 0.5820592646 -22.0230401271
+ 1.4610000000 8.4963503457 0.6131271629 1.0335123161 -5.0007292528 -61.1682930471 -7.0219207360 7.4513396687 -16.9998759394 0.6216639171 -22.0018017330
+ 1.4620000000 8.4775515009 0.6130644573 1.0336706143 -4.7942141413 -61.4035601510 -6.9758615742 7.3785146458 -16.9564517697 0.6604876449 -21.9807550361
+ 1.4630000000 8.4589090182 0.6130008708 1.0338292217 -4.5885210024 -61.6354775177 -6.9264969248 7.3051579898 -16.9120478201 0.6985363870 -21.9599037130
+ 1.4640000000 8.4404282285 0.6129364294 1.0339881202 -4.3836649754 -61.8640303499 -6.8738839671 7.2312653287 -16.8666672140 0.7358098630 -21.9392513286
+ 1.4650000000 8.4221142991 0.6128711587 1.0341472915 -4.1796605221 -62.0892047759 -6.8180816686 7.1568325443 -16.8203136926 0.7723157432 -21.9188012912
+ 1.4660000000 8.4039722314 0.6128050834 1.0343067175 -3.9765214279 -62.3109878421 -6.7591507296 7.0818557853 -16.7729916380 0.8080695594 -21.8985568537
+ 1.4670000000 8.3860068716 0.6127382275 1.0344663795 -3.7742608240 -62.5293674933 -6.6971535371 7.0063314183 -16.7247056643 0.8430870662 -21.8785211361
+ 1.4680000000 8.3682229172 0.6126706149 1.0346262571 -3.5728912056 -62.7443325579 -6.6321541022 6.9302559648 -16.6754601913 0.8773776429 -21.8586971396
+ 1.4690000000 8.3506249119 0.6126022692 1.0347863285 -3.3724244309 -62.9558727427 -6.5642179945 6.8536261101 -16.6252594579 0.9109446507 -21.8390877413
+ 1.4700000000 8.3332172170 0.6125332131 1.0349465720 -3.1728716848 -63.1639786416 -6.4934122730 6.7764388410 -16.5741083731 0.9437987203 -21.8196956584
+ 1.4710000000 8.3160040099 0.6124634687 1.0351069658 -2.9742434828 -63.3686417255 -6.4198054225 6.6986914552 -16.5220125413 0.9759578857 -21.8005234488
+ 1.4720000000 8.2989892927 0.6123930574 1.0352674878 -2.7765496939 -63.5698543238 -6.3434672915 6.6203815025 -16.4689778400 1.0074406439 -21.7815735277
+ 1.4730000000 8.2821769003 0.6123220003 1.0354281141 -2.5797995622 -63.7676096065 -6.2644690245 6.5415067180 -16.4150099734 1.0382590536 -21.7628481830
+ 1.4740000000 8.2655704962 0.6122503183 1.0355888193 -2.3840017083 -63.9619015762 -6.1828829932 6.4620650331 -16.3601144845 1.0684188682 -21.7443495706
+ 1.4750000000 8.2491735447 0.6121780314 1.0357495781 -2.1891640958 -64.1527250732 -6.0987827274 6.3820547200 -16.3042976370 1.0979329203 -21.7260796824
+ 1.4760000000 8.2329893092 0.6121051588 1.0359103656 -1.9952940369 -64.3400757643 -6.0122428450 6.3014743989 -16.2475664382 1.1268214502 -21.7080403450
+ 1.4770000000 8.2170208611 0.6120317192 1.0360711562 -1.8023982171 -64.5239501231 -5.9233389815 6.2203229721 -16.1899281991 1.1551053275 -21.6902332345
+ 1.4780000000 8.2012710909 0.6119577308 1.0362319226 -1.6104827207 -64.7043454089 -5.8321477219 6.1385995579 -16.1313900704 1.1827985216 -21.6726598948
+ 1.4790000000 8.1857427050 0.6118832115 1.0363926364 -1.4195530350 -64.8812596562 -5.7387465302 6.0563035014 -16.0719590532 1.2099080821 -21.6553217345
+ 1.4800000000 8.1704381969 0.6118081786 1.0365532692 -1.2296140162 -65.0546916793 -5.6432136750 5.9734345218 -16.0116429116 1.2364483857 -21.6382199916
+ 1.4810000000 8.1553598462 0.6117326484 1.0367137931 -1.0406698968 -65.2246410599 -5.5456281560 5.8899927172 -15.9504501913 1.2624415625 -21.6213557316
+ 1.4820000000 8.1405097287 0.6116566365 1.0368741796 -0.8527243133 -65.3911081260 -5.4460696310 5.8059784947 -15.8883897580 1.2879103848 -21.6047298630
+ 1.4830000000 8.1258897318 0.6115801583 1.0370343990 -0.6657803364 -65.5540939259 -5.3446183514 5.7213925062 -15.8254703240 1.3128700594 -21.5883431607
+ 1.4840000000 8.1115015525 0.6115032288 1.0371944200 -0.4798404777 -65.7136002157 -5.2413550917 5.6362356595 -15.7617004605 1.3373281674 -21.5721962644
+ 1.4850000000 8.0973466656 0.6114258621 1.0373542121 -0.2949066527 -65.8696294668 -5.1363610661 5.5505092625 -15.6970895289 1.3613000902 -21.5562896359
+ 1.4860000000 8.0834263228 0.6113480715 1.0375137451 -0.1109801897 -66.0221848526 -5.0297178541 5.4642150265 -15.6316476927 1.3848094336 -21.5406235559
+ 1.4870000000 8.0697415663 0.6112698698 1.0376729886 0.0719381386 -66.1712702237 -4.9215073302 5.3773549946 -15.5653854382 1.4078803104 -21.5251981440
+ 1.4880000000 8.0562932485 0.6111912692 1.0378319108 0.2538480789 -66.3168900779 -4.8118116055 5.2899314797 -15.4983131024 1.4305286084 -21.5100133884
+ 1.4890000000 8.0430820313 0.6111122818 1.0379904792 0.4347498885 -66.4590495454 -4.7007129580 5.2019470748 -15.4304408874 1.4527619793 -21.4950691448
+ 1.4900000000 8.0301083489 0.6110329185 1.0381486616 0.6146443774 -66.5977544016 -4.5882937405 5.1134047911 -15.3617797929 1.4745963457 -21.4803650839
+ 1.4910000000 8.0173724076 0.6109531897 1.0383064265 0.7935328980 -66.7330110524 -4.4746363061 5.0243080598 -15.2923416213 1.4960562535 -21.4659006884
+ 1.4920000000 8.0048742034 0.6108731051 1.0384637425 0.9714173082 -66.8648265058 -4.3598229458 4.9346606597 -15.2221384892 1.5171665237 -21.4516752788
+ 1.4930000000 7.9926135461 0.6107926738 1.0386205769 1.1482999289 -66.9932083370 -4.2439358368 4.8444666571 -15.1511823661 1.5379432294 -21.4376880497
+ 1.4940000000 7.9805900600 0.6107119048 1.0387768965 1.3241835336 -67.1181646726 -4.1270569755 4.7537304152 -15.0794850916 1.5583937809 -21.4239380693
+ 1.4950000000 7.9688031400 0.6106308061 1.0389326686 1.4990713966 -67.2397042091 -4.0092680774 4.6624567238 -15.0070592903 1.5785341684 -21.4104242167
+ 1.4960000000 7.9572519513 0.6105493850 1.0390878613 1.6729672816 -67.3578361972 -3.8906505061 4.5706507980 -14.9339183701 1.5983892279 -21.3971451790
+ 1.4970000000 7.9459354529 0.6104676480 1.0392424429 1.8458753984 -67.4725704094 -3.7712852195 4.4783182080 -14.8600760349 1.6179838205 -21.3840994845
+ 1.4980000000 7.9348524252 0.6103856015 1.0393963806 2.0178003547 -67.5839171004 -3.6512527277 4.3854648190 -14.7855458424 1.6373337081 -21.3712855450
+ 1.4990000000 7.9240014729 0.6103032513 1.0395496413 2.1887471433 -67.6918869907 -3.5306330291 4.2920967990 -14.7103412230 1.6564457330 -21.3587016571
+ 1.5000000000 7.9133809727 0.6102206023 1.0397021926 2.3587211983 -67.7964912905 -3.4095055054 4.1982207394 -14.6344763605 1.6753354354 -21.3463459276
+ 1.5010000000 7.9029890746 0.6101376588 1.0398540029 2.5277283816 -67.8977416847 -3.2879488557 4.1038436521 -14.5579661849 1.6940272535 -21.3342162726
+ 1.5020000000 7.8928237294 0.6100544246 1.0400050406 2.6957749347 -67.9956502951 -3.1660410528 4.0089728995 -14.4808258951 1.7125454372 -21.3223104570
+ 1.5030000000 7.8828827228 0.6099709029 1.0401552736 2.8628674224 -68.0902296368 -3.0438593117 3.9136161357 -14.4030705424 1.7309049302 -21.3106261441
+ 1.5040000000 7.8731636780 0.6098870965 1.0403046696 3.0290127196 -68.1814926006 -2.9214800308 3.8177813109 -14.3247150494 1.7491116181 -21.2991608975
+ 1.5050000000 7.8636639969 0.6098030075 1.0404531969 3.1942180750 -68.2694524844 -2.7989786843 3.7214767844 -14.2457750441 1.7671800739 -21.2879120962
+ 1.5060000000 7.8543808616 0.6097186373 1.0406008245 3.3584910978 -68.3541229770 -2.6764297625 3.6247113206 -14.1662668473 1.7851336947 -21.2768769338
+ 1.5070000000 7.8453112679 0.6096339867 1.0407475216 3.5218397018 -68.4355181159 -2.5539067402 3.5274940188 -14.0862070138 1.8029954846 -21.2660524655
+ 1.5080000000 7.8364520640 0.6095490561 1.0408932573 3.6842720439 -68.5136522400 -2.4314820553 3.4298342549 -14.0056119453 1.8207790831 -21.2554356643
+ 1.5090000000 7.8277999540 0.6094638455 1.0410380002 3.8457965087 -68.5885399717 -2.3092270573 3.3317416832 -13.9244979092 1.8384890824 -21.2450234232
+ 1.5100000000 7.8193514320 0.6093783541 1.0411817198 4.0064217833 -68.6601962550 -2.1872118983 3.2332263438 -13.8428818152 1.8561386515 -21.2348124590
+ 1.5110000000 7.8111027848 0.6092925806 1.0413243861 4.1661568420 -68.7286363382 -2.0655054824 3.1342986568 -13.7607811983 1.8737495978 -21.2247993125
+ 1.5120000000 7.8030501305 0.6092065230 1.0414659697 4.3250108849 -68.7938757285 -1.9441754463 3.0349693529 -13.6782137845 1.8913431309 -21.2149804030
+ 1.5130000000 7.7951894615 0.6091201791 1.0416064408 4.4829932708 -68.8559301413 -1.8232881477 2.9352494147 -13.5951971364 1.9089312237 -21.2053520880
+ 1.5140000000 7.7875166486 0.6090335460 1.0417457695 4.6401135019 -68.9148154825 -1.7029086221 2.8351500760 -13.5117486725 1.9265170041 -21.1959106666
+ 1.5150000000 7.7800273684 0.6089466205 1.0418839266 4.7963813075 -68.9705478923 -1.5831004769 2.7346829255 -13.4278863769 1.9441119293 -21.1866522728
+ 1.5160000000 7.7727171078 0.6088593985 1.0420208838 4.9518066292 -69.0231437279 -1.4639258500 2.6338598990 -13.3436287787 1.9617357726 -21.1775728774
+ 1.5170000000 7.7655812069 0.6087718757 1.0421566129 5.1063995527 -69.0726195143 -1.3454454030 2.5326932107 -13.2589945478 1.9794075352 -21.1686683472
+ 1.5180000000 7.7586149045 0.6086840474 1.0422910857 5.2601702380 -69.1189918920 -1.2277183195 2.4311952933 -13.1740021760 1.9971372988 -21.1599345089
+ 1.5190000000 7.7518133432 0.6085959083 1.0424242742 5.4131289042 -69.1622776003 -1.1108022710 2.3293787958 -13.0886699945 2.0149266778 -21.1513671513
+ 1.5200000000 7.7451714915 0.6085074527 1.0425561508 5.5652859207 -69.2024935247 -0.9947533177 2.2272566827 -13.0030168120 2.0327852122 -21.1429619121
+ 1.5210000000 7.7386841493 0.6084186747 1.0426866887 5.7166517931 -69.2396566798 -0.8796258773 2.1248422262 -12.9170618922 2.0507303175 -21.1347142796
+ 1.5220000000 7.7323459936 0.6083295674 1.0428158614 5.8672370908 -69.2737841582 -0.7654727300 2.0221489365 -12.8308245850 2.0687785545 -21.1266196569
+ 1.5230000000 7.7261516271 0.6082401242 1.0429436425 6.0170523739 -69.3048930769 -0.6523450272 1.9191905004 -12.7443240397 2.0869379889 -21.1186734277
+ 1.5240000000 7.7200955824 0.6081503378 1.0430700058 6.1661081782 -69.3330005613 -0.5402922665 1.8159807772 -12.6575792186 2.1052086508 -21.1108709582
+ 1.5250000000 7.7141722415 0.6080602008 1.0431949256 6.3144151137 -69.3581237956 -0.4293622022 1.7125338949 -12.5706094666 2.1235979870 -21.1032074795
+ 1.5260000000 7.7083758394 0.6079697052 1.0433183767 6.4619838516 -69.3802800072 -0.3196008233 1.6088642417 -12.4834344902 2.1421208564 -21.0956780887
+ 1.5270000000 7.7027005139 0.6078788428 1.0434403344 6.6088250487 -69.3994864135 -0.2110523700 1.5049863958 -12.3960740264 2.1607913259 -21.0882778154
+ 1.5280000000 7.6971403557 0.6077876051 1.0435607740 6.7549492699 -69.4157601679 -0.1037593523 1.4009150605 -12.3085475768 2.1796153166 -21.0810016922
+ 1.5290000000 7.6916894145 0.6076959837 1.0436796711 6.9003669734 -69.4291183432 0.0022374638 1.2966650573 -12.2208744158 2.1985909818 -21.0738447570
+ 1.5300000000 7.6863416122 0.6076039696 1.0437970017 7.0450886180 -69.4395779869 0.1068991383 1.1922514229 -12.1330741063 2.2177234498 -21.0668019291
+ 1.5310000000 7.6810907469 0.6075115536 1.0439127424 7.1891246516 -69.4471561067 0.2101885680 1.0876893997 -12.0451664835 2.2370249534 -21.0598680089
+ 1.5320000000 7.6759305435 0.6074187266 1.0440268698 7.3324854337 -69.4518696171 0.3120704613 0.9829943654 -11.9571713567 2.2565071404 -21.0530377474
+ 1.5330000000 7.6708547106 0.6073254792 1.0441393609 7.4751811496 -69.4537352820 0.4125113062 0.8781817609 -11.8691082496 2.2761735975 -21.0463059238
+ 1.5340000000 7.6658569473 0.6072318019 1.0442501931 7.6172217954 -69.4527696979 0.5114793740 0.7732670802 -11.7809964007 2.2960200793 -21.0396673496
+ 1.5350000000 7.6609308481 0.6071376852 1.0443593438 7.7586172996 -69.4489893571 0.6089447941 0.6682659742 -11.6928552518 2.3160491652 -21.0331167323
+ 1.5360000000 7.6560699050 0.6070431194 1.0444667909 7.8993775141 -69.4424106346 0.7048795561 0.5631942426 -11.6047044371 2.3362705460 -21.0266486746
+ 1.5370000000 7.6512675629 0.6069480947 1.0445725126 8.0395121320 -69.4330497339 0.7992574732 0.4580677589 -11.5165635055 2.3566935571 -21.0202577475
+ 1.5380000000 7.6465172848 0.6068526015 1.0446764872 8.1790305912 -69.4209226232 0.8920541357 0.3529023887 -11.4284516541 2.3773192427 -21.0139385797
+ 1.5390000000 7.6418125603 0.6067566302 1.0447786935 8.3179420582 -69.4060450204 0.9832469056 0.2477139771 -11.3403877209 2.3981404490 -21.0076858622
+ 1.5400000000 7.6371467965 0.6066601711 1.0448791103 8.4562555720 -69.3884324666 1.0728149868 0.1425184675 -11.2523906740 2.4191570791 -21.0014941944
+ 1.5410000000 7.6325133205 0.6065632145 1.0449777169 8.5939800372 -69.3681003152 1.1607394180 0.0373318941 -11.1644796044 2.4403764648 -20.9953580810
+ 1.5420000000 7.6279054409 0.6064657510 1.0450744927 8.7311241337 -69.3450636734 1.2470030233 -0.0678296991 -11.0766734532 2.4618056955 -20.9892720147
+ 1.5430000000 7.6233165234 0.6063677710 1.0451694173 8.8676962079 -69.3193373341 1.3315903537 -0.1729503523 -10.9889907317 2.4834431845 -20.9832305765
+ 1.5440000000 7.6187400000 0.6062692653 1.0452624710 9.0037042582 -69.2909357612 1.4144876717 -0.2780142030 -10.9014495115 2.5052787339 -20.9772284399
+ 1.5450000000 7.6141692429 0.6061702248 1.0453536341 9.1391561047 -69.2598731769 1.4956830191 -0.3830053463 -10.8140679312 2.5273096912 -20.9712601958
+ 1.5460000000 7.6095975681 0.6060706404 1.0454428872 9.2740593833 -69.2261635514 1.5751662008 -0.4879078413 -10.7268641897 2.5495412589 -20.9653203488
+ 1.5470000000 7.6050183072 0.6059705031 1.0455302113 9.4084214436 -69.1898205390 1.6529287220 -0.5927058034 -10.6398562644 2.5719782937 -20.9594034129
+ 1.5480000000 7.6004248888 0.6058698044 1.0456155876 9.5422492324 -69.1508574076 1.7289637200 -0.6973835066 -10.5530616260 2.5946167556 -20.9535040176
+ 1.5490000000 7.5958108478 0.6057685359 1.0456989981 9.6755492832 -69.1092870264 1.8032659413 -0.8019253950 -10.4664972304 2.6174438968 -20.9476169112
+ 1.5500000000 7.5911696846 0.6056666893 1.0457804250 9.8083279068 -69.0651219639 1.8758318044 -0.9063159243 -10.3801800412 2.6404549299 -20.9417367676
+ 1.5510000000 7.5864948703 0.6055642566 1.0458598508 9.9405911866 -69.0183744775 1.9466593737 -1.0105395681 -10.2941270199 2.6636531280 -20.9358581855
+ 1.5520000000 7.5817799277 0.6054612301 1.0459372583 10.0723448636 -68.9690564451 2.0157482857 -1.1145809220 -10.2083548318 2.6870411286 -20.9299757943
+ 1.5530000000 7.5770185152 0.6053576021 1.0460126311 10.2035942213 -68.9171792965 2.0830996749 -1.2184248087 -10.1228795720 2.7106129152 -20.9240843607
+ 1.5540000000 7.5722044321 0.6052533657 1.0460859535 10.3343440789 -68.8627540039 2.1487161442 -1.3220562865 -10.0377167630 2.7343542425 -20.9181787889
+ 1.5550000000 7.5673314729 0.6051485140 1.0461572100 10.4645989930 -68.8057911847 2.2126018188 -1.4254604865 -9.9528818760 2.7582588119 -20.9122539218
+ 1.5560000000 7.5623934340 0.6050430403 1.0462263856 10.5943632529 -68.7463010909 2.2747623102 -1.5286226074 -9.8683903054 2.7823281091 -20.9063045420
+ 1.5570000000 7.5573842007 0.6049369383 1.0462934660 10.7236407611 -68.6842935392 2.3352046340 -1.6315280256 -9.7842570749 2.8065626779 -20.9003254836
+ 1.5580000000 7.5522978245 0.6048302022 1.0463584376 10.8524349228 -68.6197778489 2.3939371363 -1.7341624112 -9.7004966001 2.8309552016 -20.8943117327
+ 1.5590000000 7.5471285256 0.6047228265 1.0464212875 10.9807486448 -68.5527628360 2.4509694578 -1.8365117294 -9.6171226899 2.8554911455 -20.8882584247
+ 1.5600000000 7.5418705472 0.6046148060 1.0464820034 11.1085845337 -68.4832569131 2.5063125739 -1.9385620748 -9.5341490284 2.8801633143 -20.8821606540
+ 1.5610000000 7.5365181626 0.6045061357 1.0465405735 11.2359448886 -68.4112680809 2.5599787526 -2.0402996832 -9.4515891567 2.9049715378 -20.8760134787
+ 1.5620000000 7.5310657617 0.6043968112 1.0465969865 11.3628315827 -68.3368038607 2.6119814713 -2.1417110439 -9.3694561915 2.9299146026 -20.8698120307
+ 1.5630000000 7.5255079223 0.6042868281 1.0466512320 11.4892459673 -68.2598712404 2.6623353418 -2.2427829930 -9.2877626127 2.9549845380 -20.8635516045
+ 1.5640000000 7.5198394105 0.6041761830 1.0467033008 11.6151888732 -68.1804766718 2.7110560710 -2.3435027195 -9.2065202751 2.9801673317 -20.8572276537
+ 1.5650000000 7.5140550440 0.6040648724 1.0467531837 11.7406607953 -68.0986261637 2.7581604861 -2.4438576121 -9.1257408354 3.0054553092 -20.8508356180
+ 1.5660000000 7.5081496970 0.6039528933 1.0468008723 11.8656618870 -68.0143252759 2.8036664894 -2.5438352721 -9.0454357357 3.0308468679 -20.8443709271
+ 1.5670000000 7.5021183811 0.6038402431 1.0468463588 11.9901918528 -67.9275790598 2.8475929771 -2.6434236189 -8.9656159538 3.0563395934 -20.8378291019
+ 1.5680000000 7.4959563121 0.6037269196 1.0468896362 12.1142498580 -67.8383920100 2.8899597636 -2.7426109792 -8.8862918175 3.0819252993 -20.8312058383
+ 1.5690000000 7.4896589106 0.6036129211 1.0469306985 12.2378345303 -67.7467680630 2.9307875387 -2.8413860951 -8.8074730146 3.1075905943 -20.8244970053
+ 1.5700000000 7.4832216723 0.6034982464 1.0469695400 12.3609441345 -67.6527106867 2.9700978826 -2.9397379807 -8.7291689694 3.1333274888 -20.8176984847
+ 1.5710000000 7.4766401702 0.6033828947 1.0470061555 12.4835765721 -67.5562228778 3.0079132196 -3.0376559326 -8.6513888334 3.1591333755 -20.8108061725
+ 1.5720000000 7.4699101265 0.6032668654 1.0470405402 12.6057292859 -67.4573071125 3.0442567393 -3.1351296261 -8.5741412720 3.1850053495 -20.8038160690
+ 1.5730000000 7.4630274850 0.6031501586 1.0470726904 12.7273991644 -67.3559652968 3.0791523195 -3.2321492098 -8.4974342843 3.2109351833 -20.7967243680
+ 1.5740000000 7.4559884129 0.6030327751 1.0471026030 12.8485825421 -67.2521987670 3.1126244797 -3.3287053160 -8.4212752070 3.2369095848 -20.7895274584
+ 1.5750000000 7.4487891687 0.6029147159 1.0471302754 12.9692753798 -67.1460083822 3.1446983930 -3.4247889126 -8.3456710681 3.2629202613 -20.7822217611
+ 1.5760000000 7.4414261005 0.6027959824 1.0471557050 13.0894732726 -67.0373945276 3.1753998416 -3.5203913065 -8.2706285893 3.2889642437 -20.7748037252
+ 1.5770000000 7.4338957152 0.6026765768 1.0471788899 13.2091713586 -66.9263570697 3.2047551394 -3.6155042352 -8.1961539981 3.3150388811 -20.7672699137
+ 1.5780000000 7.4261947624 0.6025565016 1.0471998288 13.3283642083 -66.8128953016 3.2327910501 -3.7101199778 -8.1222528286 3.3411359372 -20.7596171089
+ 1.5790000000 7.4183202408 0.6024357602 1.0472185214 13.4470458205 -66.6970079432 3.2595347399 -3.8042313665 -8.0489299181 3.3672415131 -20.7518423172
+ 1.5800000000 7.4102692484 0.6023143562 1.0472349673 13.5652098335 -66.5786932481 3.2850137953 -3.8978316107 -7.9761897798 3.3933470933 -20.7439425824
+ 1.5810000000 7.4020389779 0.6021922938 1.0472491665 13.6828495388 -66.4579490123 3.3092561793 -3.9909142922 -7.9040366173 3.4194501463 -20.7359149774
+ 1.5820000000 7.3936267910 0.6020695778 1.0472611191 13.7999577844 -66.3347725282 3.3322901552 -4.0834734635 -7.8324741391 3.4455489161 -20.7277566964
+ 1.5830000000 7.3850303203 0.6019462138 1.0472708263 13.9165268390 -66.2091605202 3.3541441991 -4.1755037801 -7.7615053249 3.4716352491 -20.7194651817
+ 1.5840000000 7.3762474781 0.6018222078 1.0472782897 14.0325483886 -66.0811091467 3.3748469535 -4.2670005129 -7.6911324161 3.4976943146 -20.7110381313
+ 1.5850000000 7.3672762774 0.6016975666 1.0472835113 14.1480137933 -65.9506141294 3.3944272567 -4.3579593241 -7.6213573464 3.5237176872 -20.7024732727
+ 1.5860000000 7.3581148258 0.6015722972 1.0472864930 14.2629141070 -65.8176707655 3.4129141019 -4.4483762571 -7.5521817637 3.5497040372 -20.6937683510
+ 1.5870000000 7.3487614135 0.6014464076 1.0472872371 14.3772399608 -65.6822738749 3.4303365582 -4.5382478513 -7.4836068227 3.5756529555 -20.6849212392
+ 1.5880000000 7.3392146321 0.6013199062 1.0472857466 14.4909814053 -65.5444177274 3.4467236806 -4.6275712974 -7.4156329157 3.6015566676 -20.6759300862
+ 1.5890000000 7.3294733838 0.6011928024 1.0472820256 14.6041279085 -65.4040960472 3.4621044672 -4.7163444452 -7.3482596626 3.6273997679 -20.6667933225
+ 1.5900000000 7.3195366681 0.6010651060 1.0472760780 14.7166686654 -65.2613021673 3.4765079009 -4.8045655287 -7.2814864157 3.6531744868 -20.6575093917
+ 1.5910000000 7.3094035761 0.6009368273 1.0472679078 14.8285926177 -65.1160290433 3.4899629120 -4.8922331519 -7.2153122819 3.6788812671 -20.6480767390
+ 1.5920000000 7.2990733969 0.6008079773 1.0472575195 14.9398883133 -64.9682691914 3.5024982962 -4.9793464287 -7.1497358806 3.7045213092 -20.6384939440
+ 1.5930000000 7.2885457472 0.6006785679 1.0472449184 15.0505437319 -64.8180146114 3.5141426265 -5.0659051533 -7.0847550493 3.7300877323 -20.6287598826
+ 1.5940000000 7.2778205783 0.6005486114 1.0472301109 15.1605462888 -64.6652567945 3.5249242145 -5.1519098037 -7.0203668408 3.7555654982 -20.6188737299
+ 1.5950000000 7.2668979333 0.6004181210 1.0472131033 15.2698831854 -64.5099868989 3.5348711640 -5.2373612231 -6.9565680901 3.7809481546 -20.6088346578
+ 1.5960000000 7.2557779430 0.6002871101 1.0471939019 15.3785414287 -64.3521957647 3.5440113364 -5.3222606067 -6.8933554337 3.8062381903 -20.5986418255
+ 1.5970000000 7.2444609473 0.6001555930 1.0471725136 15.4865076675 -64.1918738443 3.5523722687 -5.4066096639 -6.8307250319 3.8314385451 -20.5882945331
+ 1.5980000000 7.2329476311 0.6000235845 1.0471489464 15.5937680112 -64.0290111243 3.5599810908 -5.4904107970 -6.7686722697 3.8565438158 -20.5777923894
+ 1.5990000000 7.2212390258 0.5998911002 1.0471232091 15.7003080387 -63.8635971396 3.5668644922 -5.5736670992 -6.7071917638 3.8815404224 -20.5671353113
+ 1.6000000000 7.2093362481 0.5997581563 1.0470953109 15.8061131759 -63.6956211609 3.5730487835 -5.6563820089 -6.6462779631 3.9064237788 -20.5563232017
+ 1.6010000000 7.1972404958 0.5996247692 1.0470652606 15.9111687126 -63.5250722120 3.5785598662 -5.7385592984 -6.5859251633 3.9311984430 -20.5453559429
+ 1.6020000000 7.1849531803 0.5994909561 1.0470330679 16.0154596245 -63.3519389957 3.5834231549 -5.8202032515 -6.5261272068 3.9558691601 -20.5342335631
+ 1.6030000000 7.1724760622 0.5993567348 1.0469987433 16.1189703904 -63.1762098193 3.5876635004 -5.9013188441 -6.4668771965 3.9804324735 -20.5229564054
+ 1.6040000000 7.1598112496 0.5992221237 1.0469622988 16.2216850059 -62.9978726122 3.5913051635 -5.9819117377 -6.4081675127 4.0048770669 -20.5115251242
+ 1.6050000000 7.1469609269 0.5990871414 1.0469237460 16.3235873724 -62.8169151209 3.5943718815 -6.0619879210 -6.3499904135 4.0292005149 -20.4999403562
+ 1.6060000000 7.1339273501 0.5989518074 1.0468830967 16.4246613150 -62.6333249285 3.5968868444 -6.1415536990 -6.2923380458 4.0534093367 -20.4882027142
+ 1.6070000000 7.1207129839 0.5988161411 1.0468403631 16.5248903975 -62.4470893808 3.5988726225 -6.2206158775 -6.2352021431 4.0775101393 -20.4763129596
+ 1.6080000000 7.1073206369 0.5986801628 1.0467955587 16.6242577389 -62.2581955147 3.6003510974 -6.2991819431 -6.1785737593 4.1015016393 -20.4642721714
+ 1.6090000000 7.0937534578 0.5985438933 1.0467486979 16.7227460300 -62.0666300795 3.6013434422 -6.3772600543 -6.1224432935 4.1253750521 -20.4520817420
+ 1.6100000000 7.0800146597 0.5984073536 1.0466997950 16.8203379292 -61.8723797356 3.6018701934 -6.4548586758 -6.0668010656 4.1491301348 -20.4397430442
+ 1.6110000000 7.0661075143 0.5982705651 1.0466488644 16.9170160828 -61.6754310776 3.6019512340 -6.5319865643 -6.0116373277 4.1727752652 -20.4272574247
+ 1.6120000000 7.0520354896 0.5981335495 1.0465959206 17.0127629389 -61.4757705630 3.6016057290 -6.6086529543 -5.9569419746 4.1963189792 -20.4146263764
+ 1.6130000000 7.0378023873 0.5979963290 1.0465409795 17.1075605594 -61.2733844409 3.6008520632 -6.6848677405 -5.9027042975 4.2197621652 -20.4018517121
+ 1.6140000000 7.0234123395 0.5978589264 1.0464840577 17.2013906368 -61.0682587765 3.5997078284 -6.7606414667 -5.8489130101 4.2430983889 -20.3889355597
+ 1.6150000000 7.0088695270 0.5977213644 1.0464251719 17.2942349021 -60.8603796552 3.5981899022 -6.8359849487 -5.7955567944 4.2663294598 -20.3758800224
+ 1.6160000000 6.9941781730 0.5975836662 1.0463643382 17.3860751481 -60.6497332086 3.5963144389 -6.9109092559 -5.7426243144 4.2894655978 -20.3626871695
+ 1.6170000000 6.9793426816 0.5974458553 1.0463015730 17.4768930403 -60.4363055457 3.5940968128 -6.9854258965 -5.6901039479 4.3125173161 -20.3493592108
+ 1.6180000000 6.9643677803 0.5973079555 1.0462368940 17.5666699222 -60.2200826806 3.5915515625 -7.0595470067 -5.6379835489 4.3354875263 -20.3358986766
+ 1.6190000000 6.9492585177 0.5971699909 1.0461703196 17.6553868317 -60.0010505594 3.5886923858 -7.1332853368 -5.5862504725 4.3583717606 -20.3223084129
+ 1.6200000000 6.9340199712 0.5970319862 1.0461018676 17.7430249264 -59.7791952728 3.5855322276 -7.2066538564 -5.5348920993 4.3811736986 -20.3085912289
+ 1.6210000000 6.9186572358 0.5968939656 1.0460315554 17.8295655026 -59.5545030874 3.5820832780 -7.2796657336 -5.4838958566 4.4039054206 -20.2947498883
+ 1.6220000000 6.9031755702 0.5967559539 1.0459594007 17.9149898053 -59.3269603745 3.5783569228 -7.3523345208 -5.4332489673 4.4265794071 -20.2807872859
+ 1.6230000000 6.8875805468 0.5966179763 1.0458854218 17.9992788259 -59.0965535367 3.5743636942 -7.4246743523 -5.3829382064 4.4492003976 -20.2667066349
+ 1.6240000000 6.8718780502 0.5964800581 1.0458096378 18.0824133203 -58.8632690355 3.5701132728 -7.4966999274 -5.3329499219 4.4717655326 -20.2525114616
+ 1.6250000000 6.8560739752 0.5963422250 1.0457320673 18.1643742546 -58.6270936135 3.5656145845 -7.5684260916 -5.2832705593 4.4942801973 -20.2382052361
+ 1.6260000000 6.8401742189 0.5962045028 1.0456527281 18.2451428332 -58.3880143252 3.5608758064 -7.6398678096 -5.2338866893 4.5167583166 -20.2237913605
+ 1.6270000000 6.8241848284 0.5960669174 1.0455716380 18.3247002950 -58.1460184663 3.5559043229 -7.7110403597 -5.1847847640 4.5392142319 -20.2092733547
+ 1.6280000000 6.8081121561 0.5959294953 1.0454888155 18.4030276997 -57.9010934982 3.5507066826 -7.7819595423 -5.1359508558 4.5616543011 -20.1946550502
+ 1.6290000000 6.7919628571 0.5957922632 1.0454042798 18.4801059469 -57.6532270773 3.5452886070 -7.8526416610 -5.0873706714 4.5840770130 -20.1799405844
+ 1.6300000000 6.7757435741 0.5956552481 1.0453180494 18.5559162423 -57.4024072856 3.5396550954 -7.9231030796 -5.0390301043 4.6064892764 -20.1651340159
+ 1.6310000000 6.7594609285 0.5955184769 1.0452301416 18.6304401245 -57.1486226632 3.5338104378 -7.9933601940 -4.9909152673 4.6289067077 -20.1502393130
+ 1.6320000000 6.7431216756 0.5953819770 1.0451405739 18.7036592513 -56.8918621334 3.5277581752 -8.0634296366 -4.9430122415 4.6513452603 -20.1352605475
+ 1.6330000000 6.7267328632 0.5952457759 1.0450493641 18.7755551799 -56.6321149262 3.5215010633 -8.1333284923 -4.8953067870 4.6738126531 -20.1202020920
+ 1.6340000000 6.7103018284 0.5951099017 1.0449565308 18.8461093869 -56.3693706087 3.5150410864 -8.2030742781 -4.8477843545 4.6963085061 -20.1050686133
+ 1.6350000000 6.6938358685 0.5949743825 1.0448620914 18.9153037489 -56.1036193223 3.5083795698 -8.2726844806 -4.8004306835 4.7188410018 -20.0898646767
+ 1.6360000000 6.6773422326 0.5948392463 1.0447660626 18.9831205683 -55.8348518147 3.5015171978 -8.3421765286 -4.7532318371 4.7414271278 -20.0745947361
+ 1.6370000000 6.6608282816 0.5947045215 1.0446684605 19.0495423494 -55.5630593618 3.4944539787 -8.4115680076 -4.7061739300 4.7640840566 -20.0592633339
+ 1.6380000000 6.6443016503 0.5945702368 1.0445693020 19.1145515762 -55.2882336908 3.4871892142 -8.4808768807 -4.6592428121 4.7868205434 -20.0438752992
+ 1.6390000000 6.6277702402 0.5944364212 1.0444686042 19.1781307338 -55.0103670115 3.4797215192 -8.5501214663 -4.6124240812 4.8096371139 -20.0284357395
+ 1.6400000000 6.6112418815 0.5943031034 1.0443663834 19.2402627960 -54.7294522566 3.4720489383 -8.6193199641 -4.5657037316 4.8325428936 -20.0129496409
+ 1.6410000000 6.5947243237 0.5941703126 1.0442626546 19.3009312482 -54.4454831127 3.4641689686 -8.6884904281 -4.5190681879 4.8555557758 -19.9974218597
+ 1.6420000000 6.5782254009 0.5940380774 1.0441574328 19.3601198581 -54.1584539403 3.4560785294 -8.7576509907 -4.4725040019 4.8786936329 -19.9818573252
+ 1.6430000000 6.5617531923 0.5939064272 1.0440507331 19.4178124536 -53.8683596971 3.4477739365 -8.8268200837 -4.4259975236 4.9019658690 -19.9662612367
+ 1.6440000000 6.5453160125 0.5937753913 1.0439425712 19.4739929455 -53.5751959707 3.4392509269 -8.8960164146 -4.3795349176 4.9253736851 -19.9506390526
+ 1.6450000000 6.5289220695 0.5936449989 1.0438329618 19.5286458152 -53.2789592171 3.4305047778 -8.9652584872 -4.3331028484 4.9489267734 -19.9349960931
+ 1.6460000000 6.5125794552 0.5935152788 1.0437219183 19.5817561348 -52.9796467921 3.4215303328 -9.0345645778 -4.2866885060 4.9726433870 -19.9193375320
+ 1.6470000000 6.4962963134 0.5933862599 1.0436094541 19.6333093347 -52.6772568692 3.4123219760 -9.1039529643 -4.2402792761 4.9965415204 -19.9036686015
+ 1.6480000000 6.4800809964 0.5932579713 1.0434955827 19.6832909867 -52.3717883649 3.4028736109 -9.1734421420 -4.1938624180 5.0206308440 -19.8879947826
+ 1.6490000000 6.4639420527 0.5931304417 1.0433803182 19.7316868272 -52.0632409719 3.3931786885 -9.2430507990 -4.1474250889 5.0449130647 -19.8723217930
+ 1.6500000000 6.4478878883 0.5930036998 1.0432636738 19.7784832378 -51.7516153935 3.3832303270 -9.3127973395 -4.1009550301 5.0693980830 -19.8566551971
+ 1.6510000000 6.4319267587 0.5928777737 1.0431456613 19.8236672627 -51.4369133729 3.3730213411 -9.3826998631 -4.0544405829 5.0941039547 -19.8410003989
+ 1.6520000000 6.4160669359 0.5927526913 1.0430262926 19.8672263772 -51.1191376115 3.3625442188 -9.4527763941 -4.0078703463 5.1190482382 -19.8253628443
+ 1.6530000000 6.4003168581 0.5926284806 1.0429055800 19.9091482788 -50.7982916978 3.3517911056 -9.5230450882 -3.9612328820 5.1442405327 -19.8097482030
+ 1.6540000000 6.3846851169 0.5925051690 1.0427835359 19.9494209116 -50.4743801393 3.3407538339 -9.5935242057 -3.9145167465 5.1696829284 -19.7941623551
+ 1.6550000000 6.3691801290 0.5923827838 1.0426601721 19.9880329318 -50.1474085895 3.3294240427 -9.6642316473 -3.8677111380 5.1953851906 -19.7786110137
+ 1.6560000000 6.3538101293 0.5922613515 1.0425354993 20.0249737240 -49.8173838753 3.3177932079 -9.7351849348 -3.8208059031 5.2213646467 -19.7630997180
+ 1.6570000000 6.3385833333 0.5921408984 1.0424095280 20.0602331748 -49.4843139173 3.3058526231 -9.8064014349 -3.7737912053 5.2476379618 -19.7476340295
+ 1.6580000000 6.3235080805 0.5920214503 1.0422822691 20.0938014722 -49.1482076602 3.2935933856 -9.8778985559 -3.7266572663 5.2742143599 -19.7322197052
+ 1.6590000000 6.3085928214 0.5919030330 1.0421537340 20.1256691295 -48.8090751039 3.2810064271 -9.9496937196 -3.6793944011 5.3010961078 -19.7168626841
+ 1.6600000000 6.2938458036 0.5917856715 1.0420239332 20.1558274327 -48.4669275198 3.2680826316 -10.0218039152 -3.6319935976 5.3282924596 -19.7015687237
+ 1.6610000000 6.2792750656 0.5916693903 1.0418928762 20.1842684575 -48.1217774761 3.2548128659 -10.0942456788 -3.5844465214 5.3558195543 -19.6863433934
+ 1.6620000000 6.2648885911 0.5915542132 1.0417605724 20.2109848510 -47.7736387604 3.2411879628 -10.1670353074 -3.5367452138 5.3836928549 -19.6711922602
+ 1.6630000000 6.2506944497 0.5914401639 1.0416270314 20.2359696341 -47.4225263098 3.2271987068 -10.2401890511 -3.4888818614 5.4119208639 -19.6561210583
+ 1.6640000000 6.2367007848 0.5913272658 1.0414922637 20.2592162226 -47.0684562379 3.2128358651 -10.3137230866 -3.4408488248 5.4405055407 -19.6411356769
+ 1.6650000000 6.2229155116 0.5912155413 1.0413562785 20.2807188619 -46.7114460425 3.1980903023 -10.3876530850 -3.3926391559 5.4694551441 -19.6262418072
+ 1.6660000000 6.2093463091 0.5911050127 1.0412190841 20.3004726451 -46.3515146292 3.1829530115 -10.4619941878 -3.3442466056 5.4987842570 -19.6114449324
+ 1.6670000000 6.1960007671 0.5909957012 1.0410806885 20.3184733036 -45.9886822344 3.1674150978 -10.5367612116 -3.2956653607 5.5285069440 -19.5967505056
+ 1.6680000000 6.1828865293 0.5908876282 1.0409411004 20.3347170021 -45.6229703511 3.1514677609 -10.6119688465 -3.2468898129 5.5586305141 -19.5821641228
+ 1.6690000000 6.1700112858 0.5907808145 1.0408003286 20.3492003541 -45.2544017494 3.1351023241 -10.6876316354 -3.1979145769 5.5891557646 -19.5676915133
+ 1.6700000000 6.1573824703 0.5906752802 1.0406583812 20.3619208578 -44.8830006818 3.1183103490 -10.7637635392 -3.1487349782 5.6200893640 -19.5533381861
+ 1.6710000000 6.1450072491 0.5905710448 1.0405152649 20.3728769177 -44.5087929047 3.1010836658 -10.8403779098 -3.0993470712 5.6514440897 -19.5391094155
+ 1.6720000000 6.1328926641 0.5904681276 1.0403709865 20.3820676366 -44.1318056000 3.0834143550 -10.9174876905 -3.0497474006 5.6832324658 -19.5250104157
+ 1.6730000000 6.1210457890 0.5903665471 1.0402255527 20.3894925915 -43.7520672886 3.0652947247 -10.9951056363 -2.9999327397 5.7154600171 -19.5110465268
+ 1.6740000000 6.1094737246 0.5902663220 1.0400789712 20.3951518421 -43.3696078454 3.0467173353 -11.0732442994 -2.9499000933 5.7481252886 -19.4972232096
+ 1.6750000000 6.0981832807 0.5901674698 1.0399312481 20.3990463886 -42.9844587097 3.0276751181 -11.1519155709 -2.8996472124 5.7812327384 -19.4835456740
+ 1.6760000000 6.0871809611 0.5900700080 1.0397823886 20.4011781951 -42.5966529048 3.0081614035 -11.2311306502 -2.8491726208 5.8147931906 -19.4700188609
+ 1.6770000000 6.0764731119 0.5899739530 1.0396323974 20.4015499728 -42.2062249516 2.9881698973 -11.3109002556 -2.7984753721 5.8488174459 -19.4566476221
+ 1.6780000000 6.0660660960 0.5898793212 1.0394812797 20.4001649268 -41.8132107668 2.9676946491 -11.3912348751 -2.7475547370 5.8833086393 -19.4434369273
+ 1.6790000000 6.0559662916 0.5897861288 1.0393290412 20.3970267589 -41.4176476705 2.9467300727 -11.4721447592 -2.6964101947 5.9182620870 -19.4303918615
+ 1.6800000000 6.0461797440 0.5896943911 1.0391756863 20.3921401649 -41.0195746110 2.9252710703 -11.5536394177 -2.6450420198 5.9536795590 -19.4175172210
+ 1.6810000000 6.0367121490 0.5896041227 1.0390212182 20.3855108577 -40.6190321798 2.9033130578 -11.6357275886 -2.5934513107 5.9895698387 -19.4048174940
+ 1.6820000000 6.0275690165 0.5895153379 1.0388656398 20.3771453279 -40.2160625119 2.8808519322 -11.7184174743 -2.5416397102 6.0259417285 -19.3922970558
+ 1.6830000000 6.0187559303 0.5894280506 1.0387089547 20.3670503013 -39.8107091337 2.8578839226 -11.8017171039 -2.4896090029 6.0627955018 -19.3799604458
+ 1.6840000000 6.0102784776 0.5893422755 1.0385511672 20.3552333392 -39.4030170103 2.8344058340 -11.8856341344 -2.4373611741 6.1001227735 -19.3678122411
+ 1.6850000000 6.0021418738 0.5892580272 1.0383922810 20.3417033905 -38.9930327697 2.8104151490 -11.9701752927 -2.3848990798 6.1379224391 -19.3558566133
+ 1.6860000000 5.9943510175 0.5891753198 1.0382322989 20.3264702035 -38.5808046729 2.7859098396 -12.0553465453 -2.3322263962 6.1762011216 -19.3440974358
+ 1.6870000000 5.9869106038 0.5890941670 1.0380712233 20.3095443165 -38.1663825380 2.7608884405 -12.1411532873 -2.2793473292 6.2149652561 -19.3325384520
+ 1.6880000000 5.9798253285 0.5890145822 1.0379090573 20.2909367581 -37.7498176087 2.7353499980 -12.2276006459 -2.2262662278 6.2542120929 -19.3211835154
+ 1.6890000000 5.9730998861 0.5889365784 1.0377458047 20.2706590466 -37.3311625525 2.7092940800 -12.3146934749 -2.1729875758 6.2939296608 -19.3100365854
+ 1.6900000000 5.9667385613 0.5888601677 1.0375814684 20.2487237689 -36.9104717115 2.6827209132 -12.4024357598 -2.1195167212 6.3341139413 -19.2991012570
+ 1.6910000000 5.9607452185 0.5887853615 1.0374160501 20.2251445923 -36.4878011042 2.6556313982 -12.4908305971 -2.0658598851 6.3747691805 -19.2883807461
+ 1.6920000000 5.9551235039 0.5887121706 1.0372495514 20.1999359662 -36.0632082905 2.6280270534 -12.5798804958 -2.0120237829 6.4158990848 -19.2778781274
+ 1.6930000000 5.9498770530 0.5886406052 1.0370819748 20.1731128147 -35.6367522334 2.5999099567 -12.6695876876 -1.9580152402 6.4574979621 -19.2675965767
+ 1.6940000000 5.9450094856 0.5885706754 1.0369133237 20.1446905386 -35.2084932936 2.5712827511 -12.7599541187 -1.9038411932 6.4995509241 -19.2575393632
+ 1.6950000000 5.9405239876 0.5885023900 1.0367436005 20.1146856091 -34.7784934808 2.5421487831 -12.8509808362 -1.8495094283 6.5420513106 -19.2477093663
+ 1.6960000000 5.9364233046 0.5884357573 1.0365728067 20.0831155722 -34.3468164481 2.5125121109 -12.9426679757 -1.7950285779 6.5850007803 -19.2381090665
+ 1.6970000000 5.9327099556 0.5883707847 1.0364009441 20.0499987323 -33.9135273441 2.4823774392 -13.0350150819 -1.7404077204 6.6284001200 -19.2287407937
+ 1.6980000000 5.9293864353 0.5883074790 1.0362280153 20.0153538494 -33.4786926716 2.4517500535 -13.1280214142 -1.6856560196 6.6722409946 -19.2196069641
+ 1.6990000000 5.9264552081 0.5882458470 1.0360540239 19.9792001431 -33.0423802782 2.4206358224 -13.2216859362 -1.6307827315 6.7165063607 -19.2107100694
+ 1.7000000000 5.9239182935 0.5881858940 1.0358789728 19.9415578799 -32.6046595994 2.3890413320 -13.3160067073 -1.5757979105 6.7611871605 -19.2020521984
+ 1.7010000000 5.9217772634 0.5881276249 1.0357028642 19.9024483719 -32.1656016454 2.3569738883 -13.4109808763 -1.5207123985 6.8062822832 -19.1936350312
+ 1.7020000000 5.9200334564 0.5880710435 1.0355257005 19.8618936566 -31.7252788466 2.3244414436 -13.5066050057 -1.4655374334 6.8517896063 -19.1854600874
+ 1.7030000000 5.9186881754 0.5880161535 1.0353474852 19.8199162009 -31.2837649105 2.2914525267 -13.6028753714 -1.4102843111 6.8976984457 -19.1775289566
+ 1.7040000000 5.9177426807 0.5879629577 1.0351682229 19.7765389032 -30.8411348062 2.2580162394 -13.6997879531 -1.3549643920 6.9439900477 -19.1698432863
+ 1.7050000000 5.9171977871 0.5879114586 1.0349879177 19.7317856645 -30.3974649959 2.2241423866 -13.7973378430 -1.2995897601 6.9906530821 -19.1624043179
+ 1.7060000000 5.9170538583 0.5878616572 1.0348065728 19.6856813916 -29.9528334327 2.1898415151 -13.8955192376 -1.2441732169 7.0376836357 -19.1552128781
+ 1.7070000000 5.9173110211 0.5878135542 1.0346241919 19.6382516719 -29.5073193672 2.1551247525 -13.9943257616 -1.1887279106 7.0850769164 -19.1482696237
+ 1.7080000000 5.9179693652 0.5877671500 1.0344407795 19.5895224761 -29.0610031980 2.1200037280 -14.0937507706 -1.1332670000 7.1328200678 -19.1415752708
+ 1.7090000000 5.9190289333 0.5877224446 1.0342563413 19.5395201663 -28.6139664892 2.0844906485 -14.1937873415 -1.0778036589 7.1808925663 -19.1351305837
+ 1.7100000000 5.9204893228 0.5876794370 1.0340708826 19.4882720505 -28.1662921734 2.0485983839 -14.2944276936 -1.0223517089 7.2292808027 -19.1289359195
+ 1.7110000000 5.9223496789 0.5876381256 1.0338844079 19.4358063815 -27.7180645282 2.0123404602 -14.3956631816 -0.9669256198 7.2779782547 -19.1229912179
+ 1.7120000000 5.9246088990 0.5875985079 1.0336969219 19.3821520488 -27.2693690184 1.9757309754 -14.4974846080 -0.9115401636 7.3269778733 -19.1172962369
+ 1.7130000000 5.9272658429 0.5875605813 1.0335084307 19.3273382606 -26.8202921335 1.9387845127 -14.5998825469 -0.8562100552 7.3762646860 -19.1118507944
+ 1.7140000000 5.9303193327 0.5875243427 1.0333189419 19.2713945336 -26.3709213577 1.9015161241 -14.7028473491 -0.8009499409 7.4258159861 -19.1066547652
+ 1.7150000000 5.9337677413 0.5874897884 1.0331284621 19.2143512690 -25.9213453937 1.8639414603 -14.8063685428 -0.7457750541 7.4756158796 -19.1017076115
+ 1.7160000000 5.9376089815 0.5874569136 1.0329369976 19.1562397544 -25.4716541367 1.8260767606 -14.9104348226 -0.6907012242 7.5256556885 -19.0970083694
+ 1.7170000000 5.9418407133 0.5874257131 1.0327445546 19.0970918506 -25.0219385092 1.7879387621 -15.0150343684 -0.6357445296 7.5759266151 -19.0925558870
+ 1.7180000000 5.9464605751 0.5873961814 1.0325511412 19.0369396436 -24.5722902815 1.7495445989 -15.1201552031 -0.5809208965 7.6264116403 -19.0883490874
+ 1.7190000000 5.9514661878 0.5873683127 1.0323567664 18.9758154252 -24.1228020340 1.7109117797 -15.2257852072 -0.5262460774 7.6770855032 -19.0843869706
+ 1.7200000000 5.9568547135 0.5873421004 1.0321614389 18.9137523087 -23.6735673927 1.6720583278 -15.3319114732 -0.4717363688 7.7279301870 -19.0806681137
+ 1.7210000000 5.9626228430 0.5873175371 1.0319651665 18.8507842330 -23.2246810004 1.6330027682 -15.4385202934 -0.4174086239 7.7789354929 -19.0771906536
+ 1.7220000000 5.9687670163 0.5872946147 1.0317679574 18.7869456286 -22.7762383381 1.5937640267 -15.5455975009 -0.3632798797 7.8300913955 -19.0739525394
+ 1.7230000000 5.9752836784 0.5872733250 1.0315698212 18.7222710345 -22.3283355270 1.5543613147 -15.6531288668 -0.3093669100 7.8813790539 -19.0709518214
+ 1.7240000000 5.9821692864 0.5872536595 1.0313707693 18.6567950736 -21.8810692836 1.5148141027 -15.7611001190 -0.2556862020 7.9327706850 -19.0681866559
+ 1.7250000000 5.9894198286 0.5872356091 1.0311708120 18.5905531241 -21.4345371756 1.4751422745 -15.8694962340 -0.2022547508 7.9842465743 -19.0656547610
+ 1.7260000000 5.9970308124 0.5872191635 1.0309699591 18.5235813227 -20.9888375878 1.4353661126 -15.9783014239 -0.1490900729 8.0357956921 -19.0633533991
+ 1.7270000000 6.0049975073 0.5872043120 1.0307682209 18.4559161991 -20.5440695269 1.3955061833 -16.0874995134 -0.0962097892 8.0874072854 -19.0612796528
+ 1.7280000000 6.0133152219 0.5871910438 1.0305656090 18.3875942618 -20.1003324064 1.3555832090 -16.1970743697 -0.0436311469 8.1390611629 -19.0594307364
+ 1.7290000000 6.0219791016 0.5871793461 1.0303621360 18.3186524357 -19.6577259117 1.3156181369 -16.3070097787 0.0086288909 8.1907276483 -19.0578039315
+ 1.7300000000 6.0309835505 0.5871692001 1.0301578099 18.2491272436 -19.2163506620 1.2756320583 -16.4172892008 0.0605529179 8.2423860047 -19.0563963257
+ 1.7310000000 6.0403224210 0.5871605834 1.0299526363 18.1790550803 -18.7763081067 1.2356462933 -16.5278956533 0.1121231089 8.2940250008 -19.0552047131
+ 1.7320000000 6.0499892154 0.5871534726 1.0297466212 18.1084732227 -18.3376999743 1.1956824858 -16.6388116518 0.1633215147 8.3456337300 -19.0542256123
+ 1.7330000000 6.0599775327 0.5871478445 1.0295397725 18.0374188273 -17.9006281355 1.1557622870 -16.7500198467 0.2141306610 8.3971915158 -19.0534556918
+ 1.7340000000 6.0702810790 0.5871436760 1.0293321000 17.9659289052 -17.4651945532 1.1159073285 -16.8615030390 0.2645335648 8.4486679566 -19.0528917717
+ 1.7350000000 6.0808931189 0.5871409434 1.0291236130 17.8940410959 -17.0315015717 1.0761394093 -16.9732433551 0.3145128248 8.5000424031 -19.0525302012
+ 1.7360000000 6.0918064722 0.5871396224 1.0289143203 17.8217936640 -16.5996518713 1.0364804756 -17.0852222404 0.3640506181 8.5513043330 -19.0523668469
+ 1.7370000000 6.1030138039 0.5871396888 1.0287042316 17.7492250706 -16.1697482402 0.9969524818 -17.1974209057 0.4131291871 8.6024433437 -19.0523974155
+ 1.7380000000 6.1145079243 0.5871411185 1.0284933586 17.6763735318 -15.7418933416 0.9575772459 -17.3098207896 0.4617313411 8.6534391797 -19.0526177873
+ 1.7390000000 6.1262817955 0.5871438879 1.0282817150 17.6032770012 -15.3161896619 0.9183764197 -17.4224035687 0.5098404662 8.7042619519 -19.0530240135
+ 1.7400000000 6.1383279656 0.5871479729 1.0280693142 17.5299739677 -14.8927398063 0.8793716871 -17.5351503031 0.5574395912 8.7548918333 -19.0536116767
+ 1.7410000000 6.1506385684 0.5871533491 1.0278561691 17.4565034475 -14.4716464493 0.8405847429 -17.6480414342 0.6045113863 8.8053192848 -19.0543758819
+ 1.7420000000 6.1632056272 0.5871599921 1.0276422935 17.3829045369 -14.0530120976 0.8020371452 -17.7610572516 0.6510386637 8.8555347523 -19.0553115946
+ 1.7430000000 6.1760213567 0.5871678784 1.0274277032 17.3092159686 -13.6369388561 0.7637501688 -17.8741783587 0.6970048829 8.9055190478 -19.0564139734
+ 1.7440000000 6.1890781668 0.5871769847 1.0272124163 17.2354760976 -13.2235283762 0.7257447763 -17.9873856789 0.7423941566 8.9552437037 -19.0576783660
+ 1.7450000000 6.2023680895 0.5871872878 1.0269964506 17.1617237062 -12.8128821520 0.6880418244 -18.1006595904 0.7871903018 9.0046902662 -19.0590996648
+ 1.7460000000 6.2158827793 0.5871987641 1.0267798232 17.0879979933 -12.4051014682 0.6506620425 -18.2139799273 0.8313768363 9.0538504291 -19.0606723012
+ 1.7470000000 6.2296138229 0.5872113905 1.0265625521 17.0143381179 -12.0002871603 0.6136258810 -18.3273264557 0.8749374847 9.1027158345 -19.0623905884
+ 1.7480000000 6.2435530423 0.5872251447 1.0263446578 16.9407827580 -11.5985393815 0.5769533644 -18.4406793393 0.9178566906 9.1512688841 -19.0642490535
+ 1.7490000000 6.2576924969 0.5872400051 1.0261261627 16.8673700953 -11.1999575514 0.5406640644 -18.5540191448 0.9601196195 9.1994831525 -19.0662424327
+ 1.7500000000 6.2720239057 0.5872559503 1.0259070888 16.7941386213 -10.8046406500 0.5047773121 -18.6673259755 1.0017111936 9.2473419668 -19.0683650295
+ 1.7510000000 6.2865386472 0.5872729588 1.0256874578 16.7211271231 -10.4126871657 0.4693121776 -18.7805794738 1.0426160830 9.2948385184 -19.0706107099
+ 1.7520000000 6.3012280712 0.5872910095 1.0254672920 16.6483742273 -10.0241948559 0.4342873180 -18.8937592994 1.0828192183 9.3419660083 -19.0729732465
+ 1.7530000000 6.3160838914 0.5873100836 1.0252466166 16.5759179850 -9.6392605420 0.3997209032 -19.0068455795 1.1223063336 9.3887088193 -19.0754466313
+ 1.7540000000 6.3310983827 0.5873301676 1.0250254620 16.5037962979 -9.2579798197 0.3656304594 -19.1198187579 1.1610639852 9.4350429234 -19.0780249601
+ 1.7550000000 6.3462635761 0.5873512492 1.0248038583 16.4320474015 -8.8804474582 0.3320330483 -19.2326588501 1.1990785276 9.4809537016 -19.0807018891
+ 1.7560000000 6.3615711880 0.5873733159 1.0245818350 16.3607095691 -8.5067575278 0.2989453915 -19.3453455413 1.2363361107 9.5264360564 -19.0834706942
+ 1.7570000000 6.3770129079 0.5873963555 1.0243594219 16.2898207461 -8.1370031088 0.2663836808 -19.4578586376 1.2728231815 9.5714849868 -19.0863245990
+ 1.7580000000 6.3925807055 0.5874203563 1.0241366510 16.2194181054 -7.7712760615 0.2343634309 -19.5701785356 1.3085270108 9.6160869822 -19.0892571080
+ 1.7590000000 6.4082668313 0.5874453075 1.0239135558 16.1495380310 -7.4096669768 0.2028994582 -19.6822862312 1.3434356903 9.6602203664 -19.0922620050
+ 1.7600000000 6.4240632279 0.5874711982 1.0236901691 16.0802169250 -7.0522654700 0.1720061058 -19.7941624452 1.3775371230 9.7038726176 -19.0953327127
+ 1.7610000000 6.4399615261 0.5874980169 1.0234665224 16.0114911971 -6.6991601322 0.1416972291 -19.9057876243 1.4108190100 9.7470405837 -19.0984622878
+ 1.7620000000 6.4559533598 0.5875257526 1.0232426477 15.9433968092 -6.3504382977 0.1119860473 -20.0171424201 1.4432693776 9.7897214061 -19.1016437629
+ 1.7630000000 6.4720306785 0.5875543949 1.0230185790 15.8759688245 -6.0061858156 0.0828849979 -20.1282081646 1.4748771036 9.8319039310 -19.1048704850
+ 1.7640000000 6.4881857476 0.5875839344 1.0227943517 15.8092413915 -5.6664870034 0.0544057197 -20.2389668795 1.5056319102 9.8735689643 -19.1081361149
+ 1.7650000000 6.5044105523 0.5876143614 1.0225700002 15.7432485617 -5.3314249433 0.0265592866 -20.3494003875 1.5355233408 9.9147063782 -19.1114339803
+ 1.7660000000 6.5206967923 0.5876456659 1.0223455577 15.6780242825 -5.0010814384 -0.0006438026 -20.4594903099 1.5645407455 9.9553154189 -19.1147570700
+ 1.7670000000 6.5370361994 0.5876778381 1.0221210577 15.6136019401 -4.6755367830 -0.0271937699 -20.5692185483 1.5926738117 9.9953958380 -19.1180983775
+ 1.7680000000 6.5534208571 0.5877108692 1.0218965351 15.5500139011 -4.3548695358 -0.0530817030 -20.6785677682 1.6199130879 10.0349390967 -19.1214512469
+ 1.7690000000 6.5698432019 0.5877447512 1.0216720267 15.4872914966 -4.0391564766 -0.0782995676 -20.7875214064 1.6462499718 10.0739285200 -19.1248093729
+ 1.7700000000 6.5862954156 0.5877794759 1.0214475678 15.4254658595 -3.7284729098 -0.1028399631 -20.8960627612 1.6716756811 10.1123565915 -19.1281661420
+ 1.7710000000 6.6027694201 0.5878150347 1.0212231922 15.3645679200 -3.4228926243 -0.1266961278 -21.0041749855 1.6961812374 10.1502253560 -19.1315146253
+ 1.7720000000 6.6192572001 0.5878514196 1.0209989341 15.3046279443 -3.1224876679 -0.1498620828 -21.1118415734 1.7197579957 10.1875375526 -19.1348479272
+ 1.7730000000 6.6357511290 0.5878886232 1.0207748289 15.2456750670 -2.8273281219 -0.1723327752 -21.2190468544 1.7423981642 10.2242874152 -19.1381595393
+ 1.7740000000 6.6522439711 0.5879266393 1.0205509134 15.1877372777 -2.5374820628 -0.1941040859 -21.3257759966 1.7640947883 10.2604607356 -19.1414433405
+ 1.7750000000 6.6687282614 0.5879654614 1.0203272230 15.1308422813 -2.2530158742 -0.2151725731 -21.4320140711 1.7848407211 10.2960527360 -19.1446929230
+ 1.7760000000 6.6851963013 0.5880050826 1.0201037916 15.0750174970 -1.9739942120 -0.2355354724 -21.5377460399 1.8046286033 10.3310685519 -19.1479015831
+ 1.7770000000 6.7016404857 0.5880454968 1.0198806527 15.0202895906 -1.7004797826 -0.2551908381 -21.6429572512 1.8234513892 10.3655141465 -19.1510626775
+ 1.7780000000 6.7180536364 0.5880866985 1.0196578416 14.9666839973 -1.4325331206 -0.2741376851 -21.7476339428 1.8413028641 10.3993865733 -19.1541699853
+ 1.7790000000 6.7344290041 0.5881286832 1.0194353942 14.9142249119 -1.1702125555 -0.2923759903 -21.8517632420 1.8581776264 10.4326739781 -19.1572177079
+ 1.7800000000 6.7507596348 0.5881714466 1.0192133452 14.8629361746 -0.9135745350 -0.3099064243 -21.9553322003 1.8740700548 10.4653743667 -19.1601997767
+ 1.7810000000 6.7670383662 0.5882149839 1.0189917276 14.8128412741 -0.6626735956 -0.3267303458 -22.0583277775 1.8889742856 10.4974961176 -19.1631098438
+ 1.7820000000 6.7832581611 0.5882592911 1.0187705738 14.7639628693 -0.4175621447 -0.3428499413 -22.1607373476 1.9028847353 10.5290484575 -19.1659416470
+ 1.7830000000 6.7994124450 0.5883043649 1.0185499178 14.7163223077 -0.1782902433 -0.3582683633 -22.2625492094 1.9157966161 10.5600312146 -19.1686893778
+ 1.7840000000 6.8154951067 0.5883502031 1.0183297943 14.6699396199 0.0550944199 -0.3729897255 -22.3637525802 1.9277059152 10.5904348230 -19.1713476795
+ 1.7850000000 6.8314998539 0.5883968037 1.0181102366 14.6248344289 0.2825461954 -0.3870188232 -22.4643366053 1.9386083585 10.6202600578 -19.1739109394
+ 1.7860000000 6.8474202093 0.5884441645 1.0178912760 14.5810259544 0.5040214950 -0.4003611233 -22.5642903398 1.9484993857 10.6495185116 -19.1763732804
+ 1.7870000000 6.8632498508 0.5884922837 1.0176729435 14.5385325270 0.7194790059 -0.4130229008 -22.6636032645 1.9573746717 10.6782225217 -19.1787289339
+ 1.7880000000 6.8789829486 0.5885411608 1.0174552714 14.4973711055 0.9288798997 -0.4250113726 -22.7622657977 1.9652306363 10.7063745866 -19.1809726101
+ 1.7890000000 6.8946141639 0.5885907962 1.0172382926 14.4575572789 1.1321878496 -0.4363346857 -22.8602692820 1.9720644199 10.7339674365 -19.1830994925
+ 1.7900000000 6.9101379973 0.5886411905 1.0170220386 14.4191061895 1.3293686899 -0.4470016304 -22.9576049778 1.9778728474 10.7610045353 -19.1851045221
+ 1.7910000000 6.9255487865 0.5886923442 1.0168065390 14.3820325385 1.5203904312 -0.4570216248 -23.0542640449 1.9826524035 10.7875004619 -19.1869823900
+ 1.7920000000 6.9408410499 0.5887442583 1.0165918231 14.3463500949 1.7052234681 -0.4664048484 -23.1502380648 1.9863997527 10.8134703306 -19.1887279159
+ 1.7930000000 6.9560098191 0.5887969352 1.0163779212 14.3120712201 1.8838407775 -0.4751623686 -23.2455195456 1.9891122359 10.8389191476 -19.1903364149
+ 1.7940000000 6.9710506347 0.5888503782 1.0161648646 14.2792068758 2.0562179278 -0.4833061224 -23.3401019028 1.9907878421 10.8638419918 -19.1918036891
+ 1.7950000000 6.9859588958 0.5889045907 1.0159526828 14.2477675498 2.2223327332 -0.4908486254 -23.4339784506 1.9914241844 10.8882448443 -19.1931253124
+ 1.7960000000 7.0007298587 0.5889595762 1.0157414037 14.2177632622 2.3821652628 -0.4978029532 -23.5271423842 1.9910184759 10.9121448564 -19.1942966243
+ 1.7970000000 7.0153589795 0.5890153388 1.0155310548 14.1892030753 2.5356980393 -0.5041828690 -23.6195873015 1.9895680434 10.9355594778 -19.1953131095
+ 1.7980000000 7.0298422395 0.5890718838 1.0153216647 14.1620946300 2.6829162250 -0.5100029424 -23.7113076961 1.9870708061 10.9584959772 -19.1961707573
+ 1.7990000000 7.0441761378 0.5891292175 1.0151132628 14.1364441594 2.8238076227 -0.5152785255 -23.8022989318 1.9835252437 10.9809517242 -19.1968660504
+ 1.8000000000 7.0583570494 0.5891873465 1.0149058770 14.1122574058 2.9583623284 -0.5200254622 -23.8925562467 1.9789293968 11.0029348884 -19.1973952589
+ 1.8010000000 7.0723812228 0.5892462773 1.0146995335 14.0895396284 3.0865727338 -0.5242600656 -23.9820747343 1.9732808422 11.0244646352 -19.1977544350
+ 1.8020000000 7.0862451192 0.5893060172 1.0144942582 14.0682951212 3.2084337129 -0.5279992395 -24.0708498573 1.9665771929 11.0455602433 -19.1979397880
+ 1.8030000000 7.0999457281 0.5893665746 1.0142900779 14.0485267619 3.3239427965 -0.5312605889 -24.1588779267 1.9588165606 11.0662308468 -19.1979480349
+ 1.8040000000 7.1134805598 0.5894279589 1.0140870205 14.0302360294 3.4331001642 -0.5340623921 -24.2461560737 1.9499975227 11.0864757577 -19.1977763887
+ 1.8050000000 7.1268470134 0.5894901797 1.0138851120 14.0134239072 3.5359082978 -0.5364233126 -24.3326812716 1.9401181502 11.1063047985 -19.1974218650
+ 1.8060000000 7.1400423735 0.5895532469 1.0136843771 13.9980908941 3.6323719749 -0.5383623730 -24.4184503146 1.9291759808 11.1257385066 -19.1968812760
+ 1.8070000000 7.1530641404 0.5896171708 1.0134848400 13.9842365351 3.7224984434 -0.5398990685 -24.5034603176 1.9171684998 11.1447974573 -19.1961515968
+ 1.8080000000 7.1659103425 0.5896819629 1.0132865259 13.9718589788 3.8062975850 -0.5410534723 -24.5877091872 1.9040935962 11.1634920630 -19.1952303115
+ 1.8090000000 7.1785795265 0.5897476358 1.0130894607 13.9609549965 3.8837818999 -0.5418462042 -24.6711955926 1.8899495323 11.1818228524 -19.1941154016
+ 1.8100000000 7.1910701348 0.5898142022 1.0128936689 13.9515208759 3.9549661587 -0.5422981444 -24.7539180019 1.8747339890 11.1998005706 -19.1928046627
+ 1.8110000000 7.2033804977 0.5898816750 1.0126991733 13.9435524371 4.0198673859 -0.5424304039 -24.8358746569 1.8584440345 11.2174464740 -19.1912956960
+ 1.8120000000 7.2155091567 0.5899500675 1.0125059963 13.9370445769 4.0785050230 -0.5422644316 -24.9170640590 1.8410765895 11.2347818777 -19.1895862666
+ 1.8130000000 7.2274551766 0.5900193943 1.0123141612 13.9319908265 4.1309010841 -0.5418221165 -24.9974854400 1.8226288905 11.2518177082 -19.1876746500
+ 1.8140000000 7.2392181370 0.5900896709 1.0121236918 13.9283833718 4.1770801343 -0.5411257545 -25.0771387340 1.8030984637 11.2685546743 -19.1855596218
+ 1.8150000000 7.2507975077 0.5901609130 1.0119346107 13.9262139485 4.2170689339 -0.5401977615 -25.1560236161 1.7824821686 11.2850035948 -19.1832397759
+ 1.8160000000 7.2621926386 0.5902331361 1.0117469385 13.9254738649 4.2508964132 -0.5390606420 -25.2341394719 1.7607761614 11.3011858221 -19.1807135133
+ 1.8170000000 7.2734030784 0.5903063564 1.0115606955 13.9261535526 4.2785938255 -0.5377370925 -25.3114858766 1.7379763558 11.3171228190 -19.1779793958
+ 1.8180000000 7.2844288910 0.5903805911 1.0113759025 13.9282421208 4.3001948981 -0.5362500988 -25.3880630715 1.7140789038 11.3328251640 -19.1750364981
+ 1.8190000000 7.2952706475 0.5904558583 1.0111925813 13.9317273771 4.3157358034 -0.5346229036 -25.4638719368 1.6890801741 11.3482926037 -19.1718843980
+ 1.8200000000 7.3059287922 0.5905321759 1.0110107518 13.9365967359 4.3252547916 -0.5328787353 -25.5389130199 1.6629757738 11.3635351656 -19.1685224874
+ 1.8210000000 7.3164036304 0.5906095621 1.0108304322 13.9428372475 4.3287921565 -0.5310407388 -25.6131865007 1.6357605094 11.3785737049 -19.1649499587
+ 1.8220000000 7.3266956467 0.5906880351 1.0106516402 13.9504351507 4.3263903805 -0.5291320399 -25.6866926722 1.6074288573 11.3934292096 -19.1611661581
+ 1.8230000000 7.3368058285 0.5907676141 1.0104743940 13.9593754137 4.3180942864 -0.5271760623 -25.7594324229 1.5779754593 11.4081110492 -19.1571709491
+ 1.8240000000 7.3467356584 0.5908483191 1.0102987126 13.9696417621 4.3039509996 -0.5251963779 -25.8314072109 1.5473951087 11.4226169444 -19.1529647003
+ 1.8250000000 7.3564864627 0.5909301700 1.0101246128 13.9812176282 4.2840095527 -0.5232155924 -25.9026180821 1.5156817616 11.4369553466 -19.1485475666
+ 1.8260000000 7.3660593983 0.5910131862 1.0099521103 13.9940861344 4.2583208692 -0.5212569800 -25.9730656193 1.4828284505 11.4511460293 -19.1439195089
+ 1.8270000000 7.3754557961 0.5910973870 1.0097812204 14.0082296051 4.2269379357 -0.5193464408 -26.0427503995 1.4488277208 11.4652087903 -19.1390806895
+ 1.8280000000 7.3846774542 0.5911827941 1.0096119568 14.0236293882 4.1899157965 -0.5175020297 -26.1116736047 1.4136724500 11.4791511084 -19.1340316187
+ 1.8290000000 7.3937265460 0.5912694289 1.0094443347 14.0402657438 4.1473114875 -0.5157349229 -26.1798370310 1.3773557874 11.4929680536 -19.1287731937
+ 1.8300000000 7.4026049447 0.5913573046 1.0092783779 14.0581180221 4.0991837935 -0.5140730915 -26.2472418255 1.3398693475 11.5066656062 -19.1233065410
+ 1.8310000000 7.4113142892 0.5914464317 1.0091141122 14.0771651565 4.0455932196 -0.5125514216 -26.3138885220 1.3012035407 11.5202616149 -19.1176327136
+ 1.8320000000 7.4198564230 0.5915368274 1.0089515536 14.0973860697 3.9866022072 -0.5111897643 -26.3797777638 1.2613488930 11.5337743755 -19.1117524575
+ 1.8330000000 7.4282337610 0.5916285128 1.0087907146 14.1187587607 3.9222752449 -0.5100058870 -26.4449106070 1.2202960827 11.5472088600 -19.1056669403
+ 1.8340000000 7.4364492131 0.5917215082 1.0086316104 14.1412599698 3.8526786827 -0.5090233136 -26.5092883958 1.1780355779 11.5605564101 -19.0993779943
+ 1.8350000000 7.4445054738 0.5918158330 1.0084742552 14.1648663668 3.7778803378 -0.5082638608 -26.5729118682 1.1345568469 11.5738203447 -19.0928871908
+ 1.8360000000 7.4524050227 0.5919115067 1.0083186612 14.1895546347 3.6979494528 -0.5077469902 -26.6357811271 1.0898483597 11.5870166783 -19.0861957946
+ 1.8370000000 7.4601504695 0.5920085491 1.0081648404 14.2153009488 3.6129568220 -0.5074920685 -26.6978961065 1.0438980382 11.6001612881 -19.0793051855
+ 1.8380000000 7.4677448983 0.5921069802 1.0080128059 14.2420804975 3.5229750805 -0.5075191290 -26.7592570770 0.9966938293 11.6132556913 -19.0722172282
+ 1.8390000000 7.4751918612 0.5922068209 1.0078625717 14.2698675280 3.4280786868 -0.5078486085 -26.8198646153 0.9482237114 11.6262870216 -19.0649342495
+ 1.8400000000 7.4824946919 0.5923080917 1.0077141504 14.2986363647 3.3283432887 -0.5084994127 -26.8797185747 0.8984745941 11.6392550422 -19.0574582878
+ 1.8410000000 7.4896564905 0.5924108127 1.0075675538 14.3283614541 3.2238456195 -0.5094889148 -26.9388180479 0.8474322775 11.6521728611 -19.0497910760
+ 1.8420000000 7.4966804753 0.5925150045 1.0074227933 14.3590168897 3.1146637036 -0.5108339583 -26.9971618671 0.7950819924 11.6650533436 -19.0419344179
+ 1.8430000000 7.5035703461 0.5926206882 1.0072798819 14.3905759194 3.0008772621 -0.5125517730 -27.0547491047 0.7414090047 11.6778940061 -19.0338905683
+ 1.8440000000 7.5103302767 0.5927278857 1.0071388337 14.4230109813 2.8825676977 -0.5146598541 -27.1115790389 0.6863986197 11.6906770066 -19.0256622168
+ 1.8450000000 7.5169642002 0.5928366188 1.0069996620 14.4562947448 2.7598172645 -0.5171740953 -27.1676501248 0.6300350270 11.7033978324 -19.0172517274
+ 1.8460000000 7.5234757908 0.5929469089 1.0068623792 14.4904001518 2.6327089372 -0.5201087734 -27.2229599612 0.5723012564 11.7160660193 -19.0086611220
+ 1.8470000000 7.5298688282 0.5930587778 1.0067269981 14.5252999381 2.5013266915 -0.5234774685 -27.2775057926 0.5131797480 11.7286907102 -18.9998924600
+ 1.8480000000 7.5361475816 0.5931722483 1.0065935333 14.5609661278 2.3657560819 -0.5272940162 -27.3312850091 0.4526530124 11.7412647093 -18.9909482194
+ 1.8490000000 7.5423167956 0.5932873437 1.0064620008 14.5973700660 2.2260842379 -0.5315723992 -27.3842951162 0.3907036430 11.7537645283 -18.9818312819
+ 1.8500000000 7.5483809394 0.5934040874 1.0063324163 14.6344834752 2.0823987383 -0.5363249488 -27.4365327091 0.3273130757 11.7661807325 -18.9725441691
+ 1.8510000000 7.5543441818 0.5935225024 1.0062047949 14.6722784890 1.9347874583 -0.5415622430 -27.4879934505 0.2624615433 11.7785186199 -18.9630890288
+ 1.8520000000 7.5602107742 0.5936426117 1.0060791523 14.7107271627 1.7833389793 -0.5472938708 -27.5386725741 0.1961286921 11.7907828927 -18.9534680174
+ 1.8530000000 7.5659854503 0.5937644396 1.0059555062 14.7498009601 1.6281433678 -0.5535297802 -27.5885653761 0.1282942980 11.8029610495 -18.9436836806
+ 1.8540000000 7.5716734017 0.5938880108 1.0058338769 14.7894707788 1.4692921720 -0.5602802657 -27.6376671874 0.0589382827 11.8150235421 -18.9337389402
+ 1.8550000000 7.5772794889 0.5940133498 1.0057142840 14.8297080175 1.3068769323 -0.5675537558 -27.6859723701 -0.0119606229 11.8269555638 -18.9236363307
+ 1.8560000000 7.5828082107 0.5941404803 1.0055967466 14.8704845931 1.1409890219 -0.5753565459 -27.7334743096 -0.0844249200 11.8387576107 -18.9133779936
+ 1.8570000000 7.5882641065 0.5942694257 1.0054812847 14.9117724363 0.9717202369 -0.5836935536 -27.7801659196 -0.1584776668 11.8504293029 -18.9029660611
+ 1.8580000000 7.5936521599 0.5944002104 1.0053679209 14.9535429849 0.7991637588 -0.5925705737 -27.8260401059 -0.2341417243 11.8619524912 -18.8924030306
+ 1.8590000000 7.5989777588 0.5945328589 1.0052566802 14.9957672061 0.6234141322 -0.6019944214 -27.8710897396 -0.3114397446 11.8732915952 -18.8816917507
+ 1.8600000000 7.6042458856 0.5946673950 1.0051475873 15.0384166520 0.4445654139 -0.6119694752 -27.9153067055 -0.3903955825 11.8844262716 -18.8708346713
+ 1.8610000000 7.6094610839 0.5948038408 1.0050406659 15.0814634548 0.2627110304 -0.6224972124 -27.9586819128 -0.4710343280 11.8953518182 -18.8598338458
+ 1.8620000000 7.6146278742 0.5949422181 1.0049359408 15.1248798127 0.0779445725 -0.6335773374 -28.0012057892 -0.5533815758 11.9060623949 -18.8486913149
+ 1.8630000000 7.6197511410 0.5950825486 1.0048334395 15.1686375131 -0.1096391348 -0.6452114390 -28.0428686972 -0.6374626631 11.9165342346 -18.8374094632
+ 1.8640000000 7.6248360789 0.5952248535 1.0047331917 15.2127079571 -0.2999440922 -0.6574032941 -28.0836609072 -0.7233026656 11.9267261730 -18.8259910036
+ 1.8650000000 7.6298873951 0.5953691523 1.0046352265 15.2570631679 -0.4928752383 -0.6701532218 -28.1235717341 -0.8109278399 11.9366124829 -18.8144382568
+ 1.8660000000 7.6349092797 0.5955154628 1.0045395717 15.3016757645 -0.6883385483 -0.6834574473 -28.1625895652 -0.9003656423 11.9461831587 -18.8027531619
+ 1.8670000000 7.6399058185 0.5956638011 1.0044462557 15.3465184545 -0.8862400624 -0.6973101224 -28.2007023247 -0.9916439643 11.9554269446 -18.7909376512
+ 1.8680000000 7.6448813450 0.5958141825 1.0043553093 15.3915636119 -1.0864848282 -0.7117087125 -28.2378978271 -1.0847903906 11.9643148427 -18.7789939800
+ 1.8690000000 7.6498403777 0.5959666208 1.0042667654 15.4367833112 -1.2889770123 -0.7266544086 -28.2741637513 -1.1798322028 11.9728007581 -18.7669247098
+ 1.8700000000 7.6547868778 0.5961211275 1.0041806553 15.4821502458 -1.4936220777 -0.7421435132 -28.3094868953 -1.2767977963 11.9808539881 -18.7547320315
+ 1.8710000000 7.6597242293 0.5962777116 1.0040970084 15.5276376891 -1.7003268194 -0.7581667279 -28.3438532133 -1.3757166874 11.9884595089 -18.7424177807
+ 1.8720000000 7.6646556265 0.5964363799 1.0040158542 15.5732190195 -1.9089983024 -0.7747125833 -28.3772482305 -1.4766187457 11.9956012013 -18.7299837933
+ 1.8730000000 7.6695843810 0.5965971372 1.0039372239 15.6188673692 -2.1195429472 -0.7917745541 -28.4096573335 -1.5795334866 12.0022454756 -18.7174322068
+ 1.8740000000 7.6745138578 0.5967599859 1.0038611499 15.6645556717 -2.3318666940 -0.8093514654 -28.4410657448 -1.6844900742 12.0083418892 -18.7047654406
+ 1.8750000000 7.6794468270 0.5969249256 1.0037876626 15.7102574586 -2.5458769992 -0.8274356173 -28.4714579061 -1.7915186755 12.0138553442 -18.6919855709
+ 1.8760000000 7.6843854545 0.5970919532 1.0037167893 15.7559468206 -2.7614828058 -0.8460121373 -28.5008175141 -1.9006504627 12.0187665310 -18.6790943445
+ 1.8770000000 7.6893316480 0.5972610630 1.0036485568 15.8015979902 -2.9785935170 -0.8650641529 -28.5291278709 -2.0119168711 12.0230554812 -18.6660935079
+ 1.8780000000 7.6942873157 0.5974322463 1.0035829927 15.8471850629 -3.1971183274 -0.8845812473 -28.5563721257 -2.1253489141 12.0266847777 -18.6529850841
+ 1.8790000000 7.6992543152 0.5976054912 1.0035201248 15.8926820566 -3.4169664219 -0.9045597217 -28.5825332544 -2.2409771758 12.0296000020 -18.6397713512
+ 1.8800000000 7.7042339124 0.5977807833 1.0034599781 15.9380635781 -3.6380485700 -0.9249878429 -28.6075935507 -2.3588331021 12.0317623540 -18.6264542636
+ 1.8810000000 7.7092267856 0.5979581056 1.0034025742 15.9833047950 -3.8602770472 -0.9458453827 -28.6315346523 -2.4789490080 12.0331493630 -18.6130354600
+ 1.8820000000 7.7142333184 0.5981374381 1.0033479329 16.0283810921 -4.0835647768 -0.9671104957 -28.6543378280 -2.6013573702 12.0337385126 -18.5995165636
+ 1.8830000000 7.7192538221 0.5983187579 1.0032960742 16.0732678508 -4.3078249423 -0.9887689082 -28.6759841945 -2.7260901335 12.0334893653 -18.5858994448
+ 1.8840000000 7.7242885032 0.5985020384 1.0032470172 16.1179405151 -4.5329711932 -1.0108139421 -28.6964547031 -2.8531786829 12.0323437764 -18.5721861983
+ 1.8850000000 7.7293370219 0.5986872509 1.0032007777 16.1623751418 -4.7589187107 -1.0332298026 -28.7157297012 -2.9826551132 12.0302600688 -18.5583785970
+ 1.8860000000 7.7343985053 0.5988743650 1.0031573677 16.2065483900 -4.9855841107 -1.0559913713 -28.7337889442 -3.1145522506 12.0272140029 -18.5444780926
+ 1.8870000000 7.7394717928 0.5990633476 1.0031167972 16.2504372499 -5.2128848441 -1.0790724176 -28.7506118357 -3.2489029645 12.0231818745 -18.5304860931
+ 1.8880000000 7.7445556342 0.5992541625 1.0030790751 16.2940188582 -5.4407390582 -1.1024548456 -28.7661776423 -3.3857394252 12.0181210876 -18.5164042183
+ 1.8890000000 7.7496486780 0.5994467706 1.0030442089 16.3372705652 -5.6690657753 -1.1261284536 -28.7804654889 -3.5250930490 12.0119701986 -18.5022342773
+ 1.8900000000 7.7547491006 0.5996411313 1.0030122025 16.3801703944 -5.8977854384 -1.1500734609 -28.7934539487 -3.6669958186 12.0046856440 -18.4879777411
+ 1.8910000000 7.7598546260 0.5998372032 1.0029830564 16.4226970478 -6.1268198244 -1.1742605360 -28.8051210457 -3.8114803230 11.9962428440 -18.4736357390
+ 1.8920000000 7.7649627346 0.6000349431 1.0029567683 16.4648296905 -6.3560917305 -1.1986597349 -28.8154444714 -3.9585790551 11.9866181273 -18.4592093222
+ 1.8930000000 7.7700708501 0.6002343050 1.0029333347 16.5065477859 -6.5855249919 -1.2232493451 -28.8244018087 -4.1083235841 11.9757676929 -18.4446997146
+ 1.8940000000 7.7751763416 0.6004352408 1.0029127500 16.5478311568 -6.8150446146 -1.2480153105 -28.8319705357 -4.2607444752 11.9636276387 -18.4301082897
+ 1.8950000000 7.7802761920 0.6006377020 1.0028950054 16.5886603774 -7.0445769302 -1.2729339394 -28.8381276224 -4.4158727368 11.9501536471 -18.4154360599
+ 1.8960000000 7.7853670165 0.6008416401 1.0028800890 16.6290167838 -7.2740495254 -1.2979726796 -28.8428495273 -4.5737398814 11.9353220548 -18.4006836741
+ 1.8970000000 7.7904452524 0.6010470054 1.0028679864 16.6688822966 -7.5033911701 -1.3230989336 -28.8461124121 -4.7343771686 11.9191102223 -18.3858516740
+ 1.8980000000 7.7955073406 0.6012537468 1.0028586814 16.7082392649 -7.7325319168 -1.3482872151 -28.8478923799 -4.8978146617 11.9014741996 -18.3709407328
+ 1.8990000000 7.8005497300 0.6014618113 1.0028521558 16.7470705198 -7.9614031477 -1.3735196033 -28.8481654812 -5.0640811382 11.8823488904 -18.3559516363
+ 1.9000000000 7.8055685582 0.6016711464 1.0028483887 16.7853597073 -8.1899375131 -1.3987697159 -28.8469073112 -5.2332057262 11.8616904087 -18.3408847961
+ 1.9010000000 7.8105596686 0.6018817003 1.0028473567 16.8230912899 -8.4180689298 -1.4240022479 -28.8440930212 -5.4052179708 11.8394769961 -18.3257402517
+ 1.9020000000 7.8155187894 0.6020934210 1.0028490343 16.8602503917 -8.6457326308 -1.4491821731 -28.8396975348 -5.5801469916 11.8156878552 -18.3105179199
+ 1.9030000000 7.8204417076 0.6023062550 1.0028533942 16.8968226609 -8.8728652263 -1.4742817284 -28.8336957834 -5.7580204314 11.7902799859 -18.2952178183
+ 1.9040000000 7.8253242705 0.6025201482 1.0028604071 16.9327943050 -9.0994047386 -1.4992796462 -28.8260627266 -5.9388643541 11.7631885714 -18.2798400459
+ 1.9050000000 7.8301620668 0.6027350471 1.0028700418 16.9681523614 -9.3252904874 -1.5241468678 -28.8167729645 -6.1227050965 11.7343712826 -18.2643843374
+ 1.9060000000 7.8349504357 0.6029508991 1.0028822652 17.0028846857 -9.5504630907 -1.5488467870 -28.8058007556 -6.3095693487 11.7038090168 -18.2488500733
+ 1.9070000000 7.8396846422 0.6031676516 1.0028970429 17.0369798114 -9.7748645734 -1.5733430561 -28.7931202425 -6.4994831932 11.6714835548 -18.2332365151
+ 1.9080000000 7.8443600417 0.6033852512 1.0029143385 17.0704268386 -9.9984383793 -1.5976059764 -28.7787056756 -6.6924709614 11.6373539294 -18.2175430067
+ 1.9090000000 7.8489720847 0.6036036440 1.0029341142 17.1032154820 -10.2211293837 -1.6216119941 -28.7625314304 -6.8885551360 11.6013570068 -18.2017689511
+ 1.9100000000 7.8535160502 0.6038227774 1.0029563314 17.1353363188 -10.4428837920 -1.6453306709 -28.7445716312 -7.0877583953 11.5634530314 -18.1859133985
+ 1.9110000000 7.8579870005 0.6040426000 1.0029809508 17.1667806940 -10.6636491529 -1.6687248041 -28.7248002071 -7.2901037020 11.5236262351 -18.1699750830
+ 1.9120000000 7.8623799324 0.6042630604 1.0030079319 17.1975405830 -10.8833744609 -1.6917574441 -28.7031911199 -7.4956132312 11.4818617333 -18.1539526437
+ 1.9130000000 7.8666899270 0.6044841057 1.0030372326 17.2276085202 -11.1020101405 -1.7143980427 -28.6797185667 -7.7043071694 11.4381215953 -18.1378448011
+ 1.9140000000 7.8709121310 0.6047056824 1.0030688096 17.2569776121 -11.3195080523 -1.7366221067 -28.6543570124 -7.9162036317 11.3923455437 -18.1216503463
+ 1.9150000000 7.8750414582 0.6049277371 1.0031026188 17.2856416442 -11.5358214740 -1.7583989319 -28.6270808790 -8.1313208681 11.3444973068 -18.1053677983
+ 1.9160000000 7.8790725887 0.6051502167 1.0031386159 17.3135950384 -11.7509050885 -1.7796915401 -28.5978645822 -8.3496773391 11.2945651834 -18.0889954222
+ 1.9170000000 7.8830001288 0.6053730677 1.0031767557 17.3408327656 -11.9647150170 -1.8004631095 -28.5666827379 -8.5712905449 11.2425384728 -18.0725314206
+ 1.9180000000 7.8868187424 0.6055962351 1.0032169919 17.3673503245 -12.1772088240 -1.8206833089 -28.5335103361 -8.7961758096 11.1883832875 -18.0559740871
+ 1.9190000000 7.8905231289 0.6058196622 1.0032592773 17.3931437514 -12.3883455352 -1.8403281402 -28.4983227753 -9.0243462139 11.1320433072 -18.0393218001
+ 1.9200000000 7.8941077600 0.6060432926 1.0033035644 17.4182096292 -12.5980855966 -1.8593676789 -28.4610956025 -9.2558148805 11.0734867698 -18.0225727256
+ 1.9210000000 7.8975668804 0.6062670697 1.0033498061 17.4425450382 -12.8063908370 -1.8777658330 -28.4218045493 -9.4905950421 11.0127069959 -18.0057248352
+ 1.9220000000 7.9008946551 0.6064909359 1.0033979549 17.4661475104 -13.0132244800 -1.8954865826 -28.3804257166 -9.7286988112 10.9496984347 -17.9887760733
+ 1.9230000000 7.9040852763 0.6067148319 1.0034479625 17.4890150703 -13.2185512195 -1.9125008185 -28.3369357129 -9.9701359873 10.8844323396 -17.9717244892
+ 1.9240000000 7.9071329613 0.6069386966 1.0034997799 17.5111462599 -13.4223372481 -1.9287863377 -28.2913117014 -10.2149140243 10.8168575752 -17.9545682208
+ 1.9250000000 7.9100318115 0.6071624701 1.0035533582 17.5325400630 -13.6245500868 -1.9443149101 -28.2435310503 -10.4630402233 10.7469480332 -17.9373052239
+ 1.9260000000 7.9127757758 0.6073860931 1.0036086489 17.5531958338 -13.8251585317 -1.9590519068 -28.1935714085 -10.7145218224 10.6747030835 -17.9199333029
+ 1.9270000000 7.9153587459 0.6076095056 1.0036656037 17.5731133007 -14.0241327054 -1.9729627603 -28.1414109602 -10.9693648294 10.6001232849 -17.9024502565
+ 1.9280000000 7.9177746373 0.6078326454 1.0037241738 17.5922926695 -14.2214442265 -1.9860204655 -28.0870284979 -11.2275728364 10.5231861770 -17.8848539943
+ 1.9290000000 7.9200173804 0.6080554485 1.0037843102 17.6107346380 -14.4170662435 -1.9982056756 -28.0304034500 -11.4891469722 10.4438471645 -17.8671425325
+ 1.9300000000 7.9220807730 0.6082778513 1.0038459646 17.6284401809 -14.6109731006 -2.0094926331 -27.9715157325 -11.7540881429 10.3620869879 -17.8493137730
+ 1.9310000000 7.9239584965 0.6084997905 1.0039090899 17.6454105042 -14.8031402616 -2.0198487235 -27.9103457696 -12.0223970971 10.2779120421 -17.8313655139
+ 1.9320000000 7.9256442175 0.6087212026 1.0039736391 17.6616471134 -14.9935444289 -2.0292414838 -27.8468746138 -12.2940732007 10.1913298601 -17.8132955745
+ 1.9330000000 7.9271316425 0.6089420219 1.0040395657 17.6771519924 -15.1821638092 -2.0376467349 -27.7810840080 -12.5691133276 10.1023254282 -17.7951018858
+ 1.9340000000 7.9284145176 0.6091621812 1.0041068230 17.6919276199 -15.3689781405 -2.0450486948 -27.7129564095 -12.8475118133 10.0108621792 -17.7767824857
+ 1.9350000000 7.9294865447 0.6093816142 1.0041753658 17.7059766297 -15.5539681609 -2.0514246612 -27.6424749015 -13.1292626306 9.9169288513 -17.7583353342
+ 1.9360000000 7.9303414005 0.6096002559 1.0042451498 17.7193017694 -15.7371155298 -2.0567445680 -27.5696232047 -13.4143594663 9.8205396613 -17.7397583209
+ 1.9370000000 7.9309728101 0.6098180412 1.0043161316 17.7319060366 -15.9184030460 -2.0609786875 -27.4943857591 -13.7027945355 9.7217098710 -17.7210493702
+ 1.9380000000 7.9313745784 0.6100349036 1.0043882685 17.7437929192 -16.0978149838 -2.0641062287 -27.4167477542 -13.9945574952 9.6204329489 -17.7022065122
+ 1.9390000000 7.9315405975 0.6102507756 1.0044615183 17.7549664095 -16.2753371062 -2.0661153976 -27.3366951524 -14.2896353947 9.5166816698 -17.6832278801
+ 1.9400000000 7.9314648134 0.6104655911 1.0045358401 17.7654305384 -16.4509559655 -2.0669870240 -27.2542146592 -14.5880148090 9.4104536817 -17.6641115620
+ 1.9410000000 7.9311412426 0.6106792865 1.0046111944 17.7751893381 -16.6246588306 -2.0666941693 -27.1692937273 -14.8896819309 9.3017715590 -17.6448556058
+ 1.9420000000 7.9305640173 0.6108917983 1.0046875428 17.7842470447 -16.7964339954 -2.0652104730 -27.0819206028 -15.1946214220 9.1906588344 -17.6254581045
+ 1.9430000000 7.9297274017 0.6111030625 1.0047648478 17.7926083919 -16.9662711638 -2.0625190109 -26.9920843283 -15.5028153277 9.0771182079 -17.6059172526
+ 1.9440000000 7.9286258019 0.6113130145 1.0048430730 17.8002786158 -17.1341614476 -2.0586122675 -26.8997747700 -15.8142430244 8.9611327190 -17.5862313471
+ 1.9450000000 7.9272537637 0.6115215920 1.0049221835 17.8072628737 -17.3000965480 -2.0534750589 -26.8049826408 -16.1288833505 8.8427095108 -17.5663986723
+ 1.9460000000 7.9256059829 0.6117287353 1.0050021455 17.8135662049 -17.4640686867 -2.0470841947 -26.7076995015 -16.4467147134 8.7218797948 -17.5464175047
+ 1.9470000000 7.9236773285 0.6119343859 1.0050829266 17.8191937946 -17.6260709821 -2.0394172850 -26.6079177737 -16.7677139578 8.5986756814 -17.5262861807
+ 1.9480000000 7.9214628482 0.6121384850 1.0051644958 17.8241513143 -17.7860978745 -2.0304617199 -26.5056307226 -17.0918552705 8.4731095203 -17.5060031408
+ 1.9490000000 7.9189577761 0.6123409735 1.0052468235 17.8284449167 -17.9441451179 -2.0202145644 -26.4008324867 -17.4191101310 8.3451751126 -17.4855669348
+ 1.9500000000 7.9161575470 0.6125417952 1.0053298814 17.8320805471 -18.1002088695 -2.0086650797 -26.2935181491 -17.7494494696 8.2148893797 -17.4649761364
+ 1.9510000000 7.9130577996 0.6127408967 1.0054136425 17.8350639014 -18.2542856195 -1.9957944332 -26.1836837367 -18.0828437842 8.0822922516 -17.4442293491
+ 1.9520000000 7.9096543847 0.6129382262 1.0054980810 17.8374007429 -18.4063726143 -1.9815847772 -26.0713262077 -18.4192620073 7.9474245027 -17.4233252591
+ 1.9530000000 7.9059433612 0.6131337316 1.0055831729 17.8390972883 -18.5564683349 -1.9660282615 -25.9564434112 -18.7586704030 7.8103082869 -17.4022626682
+ 1.9540000000 7.9019209992 0.6133273609 1.0056688962 17.8401601949 -18.7045724908 -1.9491268609 -25.8390341202 -19.1010325282 7.6709483691 -17.3810405018
+ 1.9550000000 7.8975838065 0.6135190651 1.0057552297 17.8405957723 -18.8506850114 -1.9308747188 -25.7190981450 -19.4463114244 7.5293715211 -17.3596577507
+ 1.9560000000 7.8929285265 0.6137087978 1.0058421535 17.8404099363 -18.9948059674 -1.9112578924 -25.5966363333 -19.7944697373 7.3856263305 -17.3381134792
+ 1.9570000000 7.8879521550 0.6138965137 1.0059296491 17.8396085039 -19.1369360105 -1.8902636265 -25.4716502206 -20.1454684237 7.2397623643 -17.3164069309
+ 1.9580000000 7.8826517197 0.6140821653 1.0060177007 17.8381976874 -19.2770770158 -1.8678892126 -25.3441427803 -20.4992660521 7.0918116180 -17.2945374763
+ 1.9590000000 7.8770242421 0.6142657019 1.0061062946 17.8361840515 -19.4152320886 -1.8441417497 -25.2141185231 -20.8558187724 6.9417896782 -17.2725046385
+ 1.9600000000 7.8710669994 0.6144470747 1.0061954185 17.8335735804 -19.5514043336 -1.8190205675 -25.0815828062 -21.2150821231 6.7897330969 -17.2503081269
+ 1.9610000000 7.8647775136 0.6146262375 1.0062850610 17.8303717109 -19.6855967957 -1.7925169333 -24.9465421165 -21.5770113116 6.6356989701 -17.2279477737
+ 1.9620000000 7.8581535411 0.6148031448 1.0063752119 17.8265837497 -19.8178129884 -1.7646232897 -24.8090040088 -21.9415600666 6.4797451150 -17.2054235597
+ 1.9630000000 7.8511930394 0.6149777509 1.0064658633 17.8222153555 -19.9480575431 -1.7353421578 -24.6689770183 -22.3086795636 6.3219132007 -17.1827356158
+ 1.9640000000 7.8438941614 0.6151500098 1.0065570093 17.8172725366 -20.0763362047 -1.7046858519 -24.5264706857 -22.6783184193 6.1622298892 -17.1598842299
+ 1.9650000000 7.8362553304 0.6153198773 1.0066486444 17.8117606255 -20.2026545358 -1.6726588857 -24.3814957591 -23.0504248800 6.0007412168 -17.1368698560
+ 1.9660000000 7.8282752344 0.6154873121 1.0067407639 17.8056842542 -20.3270178388 -1.6392577918 -24.2340641795 -23.4249469327 5.8375125158 -17.1136931130
+ 1.9670000000 7.8199527960 0.6156522733 1.0068333640 17.7990478805 -20.4494317536 -1.6044803297 -24.0841889726 -23.8018311757 5.6726099299 -17.0903547843
+ 1.9680000000 7.8112871410 0.6158147200 1.0069264433 17.7918562645 -20.5699029923 -1.5683342006 -23.9318841556 -24.1810217730 5.5060841914 -17.0668558194
+ 1.9690000000 7.8022775925 0.6159746107 1.0070200020 17.7841144568 -20.6884393466 -1.5308366874 -23.7771647607 -24.5624604544 5.3379721454 -17.0431973350
+ 1.9700000000 7.7929237656 0.6161319061 1.0071140409 17.7758267716 -20.8050482071 -1.4919973386 -23.6200470370 -24.9460886736 5.1683290203 -17.0193806300
+ 1.9710000000 7.7832255731 0.6162865698 1.0072085609 17.7669967478 -20.9197364753 -1.4518178720 -23.4605484358 -25.3318477225 4.9972275875 -16.9954071990
+ 1.9720000000 7.7731831739 0.6164385660 1.0073035638 17.7576276768 -21.0325112816 -1.4103012784 -23.2986874951 -25.7196776136 4.8247414607 -16.9712787160
+ 1.9730000000 7.7627969216 0.6165878589 1.0073990534 17.7477231244 -21.1433807804 -1.3674601940 -23.1344837264 -26.1095160709 4.6509301787 -16.9469970188
+ 1.9740000000 7.7520673783 0.6167344121 1.0074950350 17.7372868894 -21.2523541337 -1.3233164773 -22.9679576417 -26.5012985464 4.4758395343 -16.9225641291
+ 1.9750000000 7.7409954235 0.6168781920 1.0075915142 17.7263219599 -21.3594399039 -1.2778844262 -22.7991309572 -26.8949603281 4.2995322257 -16.8979822734
+ 1.9760000000 7.7295822405 0.6170191675 1.0076884960 17.7148305134 -21.4646459940 -1.2311707315 -22.6280265632 -27.2904366483 4.1220881043 -16.8732538724
+ 1.9770000000 7.7178292627 0.6171573086 1.0077859862 17.7028144576 -21.5679804479 -1.1831833255 -22.4546683980 -27.6876616022 3.9435878765 -16.8483815274
+ 1.9780000000 7.7057381317 0.6172925854 1.0078839921 17.6902759209 -21.6694522472 -1.1339393828 -22.2790813397 -28.0865671733 3.7640981461 -16.8233680169
+ 1.9790000000 7.6933107095 0.6174249678 1.0079825225 17.6772172123 -21.7690712774 -1.0834648647 -22.1012912262 -28.4870832551 3.5836719315 -16.7982163124
+ 1.9800000000 7.6805491824 0.6175544285 1.0080815856 17.6636398094 -21.8668466784 -1.0317784151 -21.9213250474 -28.8891397082 3.4023784431 -16.7729295876
+ 1.9810000000 7.6674560443 0.6176809429 1.0081811893 17.6495443730 -21.9627868101 -0.9788913276 -21.7392109065 -29.2926664655 3.2203034187 -16.7475112039
+ 1.9820000000 7.6540340387 0.6178044878 1.0082813413 17.6349312879 -22.0569001041 -0.9248160176 -21.5549778914 -29.6975924832 3.0375334658 -16.7219646958
+ 1.9830000000 7.6402861379 0.6179250403 1.0083820512 17.6198010922 -22.1491958054 -0.8695737234 -21.3686559765 -30.1038448352 2.8541409707 -16.6962937947
+ 1.9840000000 7.6262155435 0.6180425775 1.0084833290 17.6041544519 -22.2396839276 -0.8131940720 -21.1802760298 -30.5113486888 2.6701842832 -16.6705024278
+ 1.9850000000 7.6118257653 0.6181570796 1.0085851842 17.5879912302 -22.3283736623 -0.7556996064 -20.9898699841 -30.9200292970 2.4857375580 -16.6445946982
+ 1.9860000000 7.5971206184 0.6182685293 1.0086876255 17.5713104896 -22.4152733606 -0.6971057137 -20.7974708012 -31.3298121533 2.3008912574 -16.6185748856
+ 1.9870000000 7.5821041639 0.6183769111 1.0087906613 17.5541110116 -22.5003913875 -0.6374286951 -20.6031123446 -31.7406219490 2.1157364160 -16.5924474365
+ 1.9880000000 7.5667806919 0.6184822098 1.0088943016 17.5363916815 -22.5837367808 -0.5766933432 -20.4068292825 -32.1523816997 1.9303494739 -16.5662169934
+ 1.9890000000 7.5511547353 0.6185844106 1.0089985566 17.5181514406 -22.6653191798 -0.5149325998 -20.2086570954 -32.5650127871 1.7447926348 -16.5398884103
+ 1.9900000000 7.5352311203 0.6186835017 1.0091034363 17.4993884570 -22.7451473806 -0.4521724542 -20.0086322291 -32.9784368620 1.5591437869 -16.5134667016
+ 1.9910000000 7.5190149511 0.6187794740 1.0092089496 17.4801001521 -22.8232293465 -0.3884317517 -19.8067920502 -33.3925759313 1.3734966499 -16.4869570279
+ 1.9920000000 7.5025115714 0.6188723199 1.0093151056 17.4602836576 -22.8995730027 -0.3237299542 -19.6031747263 -33.8073513840 1.1879448539 -16.4603647111
+ 1.9930000000 7.4857265480 0.6189620323 1.0094219141 17.4399361585 -22.9741867911 -0.2580948944 -19.3978191290 -34.2226832034 1.0025675104 -16.4336952685
+ 1.9940000000 7.4686656793 0.6190486050 1.0095293859 17.4190548519 -23.0470795939 -0.1915625687 -19.1907648327 -34.6384900254 0.8174298090 -16.4069544205
+ 1.9950000000 7.4513350333 0.6191320340 1.0096375309 17.3976362114 -23.1182594815 -0.1241619188 -18.9820522575 -35.0546909026 0.6326120572 -16.3801480259
+ 1.9960000000 7.4337409366 0.6192123184 1.0097463587 17.3756760088 -23.1877337357 -0.0559144918 -18.7717226232 -35.4712053757 0.4482094354 -16.3532820702
+ 1.9970000000 7.4158899465 0.6192894585 1.0098558789 17.3531697198 -23.2555095522 0.0131578801 -18.5598178316 -35.8879525596 0.2643161165 -16.3263626944
+ 1.9980000000 7.3977888207 0.6193634553 1.0099661020 17.3301128460 -23.3215944966 0.0830248533 -18.3463803655 -36.3048504694 0.0810125837 -16.2993962176
+ 1.9990000000 7.3794445214 0.6194343105 1.0100770393 17.3065008861 -23.3859964301 0.1536476429 -18.1314532797 -36.7218160955 -0.1016334031 -16.2723891380
+ 2.0000000000 7.3608642620 0.6195020281 1.0101887017 17.2823286627 -23.4487224625 0.2249949127 -17.9150803392 -37.1387669758 -0.2835403286 -16.2453480748
+ 2.0010000000 7.3420555030 0.6195666146 1.0103011000 17.2575903402 -23.5097789809 0.2970432509 -17.6973059713 -37.5556212477 -0.4646136163 -16.2182797607
+ 2.0020000000 7.3230259223 0.6196280782 1.0104142452 17.2322797920 -23.5691722487 0.3697692574 -17.4781751454 -37.9722968248 -0.6447606473 -16.1911910716
+ 2.0030000000 7.3037833645 0.6196864273 1.0105281492 17.2063909201 -23.6269087718 0.4431406506 -17.2577332706 -38.3887108541 -0.8239008224 -16.1640890290
+ 2.0040000000 7.2843358416 0.6197416712 1.0106428248 17.1799176381 -23.6829952322 0.5171162401 -17.0360261801 -38.8047798054 -1.0019642492 -16.1369807940
+ 2.0050000000 7.2646916076 0.6197938214 1.0107582848 17.1528532304 -23.7374376357 0.5916629325 -16.8131002633 -39.2204208061 -1.1788695800 -16.1098736366
+ 2.0060000000 7.2448591584 0.6198428918 1.0108745420 17.1251903669 -23.7902413419 0.6667563005 -16.5890024157 -39.6355516776 -1.3545250496 -16.0827749306
+ 2.0070000000 7.2248471977 0.6198888977 1.0109916096 17.0969214465 -23.8414115610 0.7423721663 -16.3637799742 -40.0500902201 -1.5288416210 -16.0556921727
+ 2.0080000000 7.2046645885 0.6199318557 1.0111095018 17.0680389483 -23.8909536371 0.8184769403 -16.1374804609 -40.4639537943 -1.7017399847 -16.0286329468
+ 2.0090000000 7.1843204058 0.6199717843 1.0112282332 17.0385354566 -23.9388729824 0.8950275484 -15.9101514944 -40.8770594071 -1.8731490534 -16.0016048914
+ 2.0100000000 7.1638239830 0.6200087050 1.0113478186 17.0084029824 -23.9851744116 0.9719898125 -15.6818411154 -41.2893248152 -2.0429892985 -15.9746157364
+ 2.0110000000 7.1431848870 0.6200426411 1.0114682731 16.9776329716 -24.0298621764 1.0493390397 -15.4525977035 -41.7006685565 -2.2111738978 -15.9476733051
+ 2.0120000000 7.1224128581 0.6200736174 1.0115896124 16.9462166494 -24.0729403715 1.1270508914 -15.2224698583 -42.1110093798 -2.3776190919 -15.9207855111
+ 2.0130000000 7.1015177259 0.6201016595 1.0117118530 16.9141453454 -24.1144131516 1.2050910455 -14.9915063052 -42.5202659523 -2.5422484400 -15.8939603236
+ 2.0140000000 7.0805094093 0.6201267936 1.0118350124 16.8814104906 -24.1542846838 1.2834151528 -14.7597558728 -42.9283569574 -2.7049913938 -15.8672057564
+ 2.0150000000 7.0593980491 0.6201490481 1.0119591083 16.8480029953 -24.1925586286 1.3619885898 -14.5272675976 -43.3352019268 -2.8657721255 -15.8405299049
+ 2.0160000000 7.0381940061 0.6201684533 1.0120841588 16.8139132670 -24.2292381732 1.4407870131 -14.2940906749 -43.7407212600 -3.0245106089 -15.8139409386
+ 2.0170000000 7.0169077845 0.6201850409 1.0122101824 16.7791315557 -24.2643263543 1.5197864449 -14.0602743473 -44.1448357900 -3.1811299189 -15.7874470779
+ 2.0180000000 6.9955499464 0.6201988434 1.0123371985 16.7436482702 -24.2978262094 1.5989524720 -13.8258678170 -44.5474665816 -3.3355582862 -15.7610565516
+ 2.0190000000 6.9741311116 0.6202098943 1.0124652271 16.7074539765 -24.3297407367 1.6782403001 -13.5909202206 -44.9485350212 -3.4877279146 -15.7347775877
+ 2.0200000000 6.9526620977 0.6202182287 1.0125942886 16.6705387930 -24.3600725241 1.7576155777 -13.3554807192 -45.3479634414 -3.6375685853 -15.7086184695
+ 2.0210000000 6.9311539133 0.6202238839 1.0127244035 16.6328924116 -24.3888237828 1.8370548398 -13.1195984545 -45.7456751397 -3.7850085293 -15.6825875257
+ 2.0220000000 6.9096176729 0.6202268983 1.0128555928 16.5945044394 -24.4159965952 1.9165349094 -12.8833224471 -46.1415940631 -3.9299789309 -15.6566930937
+ 2.0230000000 6.8880645178 0.6202273111 1.0129878781 16.5553646971 -24.4415930040 1.9960219439 -12.6467015125 -46.5356446681 -4.0724144594 -15.6309434763
+ 2.0240000000 6.8665056156 0.6202251625 1.0131212812 16.5154632155 -24.4656149813 2.0754716301 -12.4097842351 -46.9277519995 -4.2122524029 -15.6053469345
+ 2.0250000000 6.8449522891 0.6202204944 1.0132558245 16.4747896628 -24.4880641926 2.1548505593 -12.1726190505 -47.3178421571 -4.3494298833 -15.5799117506
+ 2.0260000000 6.8234160044 0.6202133502 1.0133915301 16.4333333669 -24.5089420319 2.2341365392 -11.9352542084 -47.7058423154 -4.4838844900 -15.5546462178
+ 2.0270000000 6.8019082875 0.6202037744 1.0135284205 16.3910836446 -24.5282497969 2.3133075653 -11.6977376801 -48.0916804993 -4.6155565610 -15.5295585975
+ 2.0280000000 6.7804406560 0.6201918122 1.0136665186 16.3480300756 -24.5459887261 2.3923309994 -11.4601170759 -48.4752854851 -4.7443887805 -15.5046570791
+ 2.0290000000 6.7590246163 0.6201775098 1.0138058472 16.3041624958 -24.5621599760 2.4711639018 -11.2224396205 -48.8565868680 -4.8703256077 -15.4799497759
+ 2.0300000000 6.7376717698 0.6201609147 1.0139464296 16.2594704687 -24.5767645063 2.5497744106 -10.9847522344 -49.2355154180 -4.9933129094 -15.4554447856
+ 2.0310000000 6.7163937984 0.6201420752 1.0140882886 16.2139433068 -24.5898031141 2.6281419248 -10.7471015047 -49.6120030940 -5.1132984481 -15.4311501813
+ 2.0320000000 6.6952023891 0.6201210408 1.0142314471 16.1675703792 -24.6012765454 2.7062459432 -10.5095335985 -49.9859828760 -5.2302326703 -15.4070739700
+ 2.0330000000 6.6741091745 0.6200978612 1.0143759282 16.1203413603 -24.6111854876 2.7840556019 -10.2720941821 -50.3573887341 -5.3440673850 -15.3832240546
+ 2.0340000000 6.6531257293 0.6200725871 1.0145217547 16.0722462199 -24.6195305546 2.8615301159 -10.0348283988 -50.7261556664 -5.4547556099 -15.3596082325
+ 2.0350000000 6.6322636645 0.6200452698 1.0146689496 16.0232747303 -24.6263122678 2.9386396667 -9.7977809512 -51.0922198219 -5.5622541645 -15.3362342630
+ 2.0360000000 6.6115345793 0.6200159608 1.0148175352 15.9734165140 -24.6315311071 3.0153655290 -9.5609960891 -51.4555188109 -5.6665211550 -15.3131098369
+ 2.0370000000 6.5909499763 0.6199847125 1.0149675337 15.9226613634 -24.6351875830 3.0916891119 -9.3245175233 -51.8159919353 -5.7675124363 -15.2902425058
+ 2.0380000000 6.5705213857 0.6199515774 1.0151189670 15.8709992745 -24.6372820869 3.1675817830 -9.0883882932 -52.1735782195 -5.8651985059 -15.2676398055
+ 2.0390000000 6.5502602216 0.6199166081 1.0152718572 15.8184205003 -24.6378149416 3.2430054040 -8.8526508473 -52.5282174430 -5.9595548963 -15.2453092010
+ 2.0400000000 6.5301772534 0.6198798565 1.0154262262 15.7649158490 -24.6367868647 3.3179329499 -8.6173472947 -52.8798579188 -6.0504936837 -15.2232575285
+ 2.0408389524 6.5134741710 0.6198476891 1.0155568860 15.7193070440 -24.6347207445 3.3803990005 -8.4203035839 -53.1725165580 -6.1240956860 -15.2049772855
+ 2.0410000000 6.5102836476 0.6198413782 1.0155820882 15.7104760883 -24.6341985037 3.3923480659 -8.3825187467 -53.2284475848 -6.1379430032 -15.2014915014
+ 2.0418389524 6.4937492276 0.6198078102 1.0157140037 15.6640749209 -24.6308233028 3.4543712264 -8.1859041029 -53.5184957865 -6.2086656672 -15.1834567019
+ 2.0420000000 6.4905921519 0.6198012355 1.0157394474 15.6550909725 -24.6300497246 3.4662339249 -8.1482047786 -53.5739196142 -6.2219727216 -15.1800186988
+ 2.0428389524 6.4742366453 0.6197663175 1.0158726239 15.6078892179 -24.6253654534 3.5277935669 -7.9520520283 -53.8613047649 -6.2898590727 -15.1622355089
+ 2.0430000000 6.4711147524 0.6197594879 1.0158983107 15.5987509197 -24.6243406453 3.5395643259 -7.9144445394 -53.9162137511 -6.3026150491 -15.1588463112
+ 2.0438389524 6.4549466295 0.6197232630 1.0160327625 15.5507416338 -24.6183480443 3.6006309105 -7.7187867386 -54.2008990834 -6.3675911742 -15.1413199898
+ 2.0440000000 6.4518614774 0.6197161864 1.0160586959 15.5414476749 -24.6170721732 3.6123041740 -7.6812774179 -54.2552865932 -6.3797797018 -15.1379805900
+ 2.0450000000 6.4328423705 0.6196713796 1.0162206244 15.4831724347 -24.6082451639 3.6844292132 -7.4487423973 -54.5910910259 -6.4534188341 -15.1174281206
+ 2.0460000000 6.4140678077 0.6196251169 1.0163841156 15.4239159934 -24.5978603820 3.7559252040 -7.2168776706 -54.9235757822 -6.5235295090 -15.0971957149
+ 2.0470000000 6.3955478776 0.6195774467 1.0165491874 15.3636695255 -24.5859188084 3.8267785097 -6.9857206800 -55.2526929619 -6.5900959688 -15.0772899086
+ 2.0480000000 6.3772923972 0.6195284172 1.0167158570 15.3024246240 -24.5724214719 3.8969662519 -6.7553080575 -55.5783967757 -6.6531000156 -15.0577170451
+ 2.0490000000 6.3593110084 0.6194780758 1.0168841400 15.2401732113 -24.5573693924 3.9664566428 -6.5256755760 -55.9006423660 -6.7125300083 -15.0384833410
+ 2.0500000000 6.3416131973 0.6194264692 1.0170540512 15.1769072856 -24.5407638279 4.0352282569 -6.2968582578 -56.2193863714 -6.7683763380 -15.0195948683
+ 2.0510000000 6.3242082755 0.6193736435 1.0172256037 15.1126189469 -24.5226063120 4.1032702388 -6.0688903598 -56.5345870231 -6.8206308484 -15.0010575451
+ 2.0520000000 6.3071053466 0.6193196442 1.0173988098 15.0473005721 -24.5028985768 4.1705723258 -5.8418052876 -56.8462040184 -6.8692880093 -14.9828771258
+ 2.0530000000 6.2903132736 0.6192645159 1.0175736799 14.9809449355 -24.4816423962 4.2371151110 -5.6156355378 -57.1541985589 -6.9143447619 -14.9650591922
+ 2.0540000000 6.2738406748 0.6192083026 1.0177502229 14.9135452040 -24.4588395826 4.3028703634 -5.3904126915 -57.4585333792 -6.9558003420 -14.9476091501
+ 2.0550000000 6.2576959707 0.6191510475 1.0179284463 14.8450947018 -24.4344922853 4.3678201991 -5.1661674927 -57.7591727315 -6.9936562590 -14.9305322376
+ 2.0560000000 6.2418873778 0.6190927928 1.0181083565 14.7755869347 -24.4086030254 4.4319573336 -4.9429298308 -58.0560823917 -7.0279162985 -14.9138335191
+ 2.0570000000 6.2264228728 0.6190335801 1.0182899583 14.7050157396 -24.3811745856 4.4952752095 -4.7207286769 -58.3492296708 -7.0585865446 -14.8975178745
+ 2.0580000000 6.2113101664 0.6189734499 1.0184732547 14.6333753703 -24.3522098059 4.5577581293 -4.4995920435 -58.6385834186 -7.0856754115 -14.8815899979
+ 2.0590000000 6.1965567033 0.6189124423 1.0186582466 14.5606604917 -24.3217115767 4.6193815268 -4.2795469796 -58.9241140226 -7.1091936273 -14.8660543958
+ 2.0600000000 6.1821697004 0.6188505961 1.0188449337 14.4868660097 -24.2896832214 4.6801312800 -4.0606196285 -59.2057934063 -7.1291541294 -14.8509153836
+ 2.0610000000 6.1681561429 0.6187879493 1.0190333145 14.4119870950 -24.2561285342 4.7400039720 -3.8428352149 -59.4835950289 -7.1455720464 -14.8361770803
+ 2.0620000000 6.1545227549 0.6187245390 1.0192233860 14.3360192981 -24.2210516248 4.7989969587 -3.6262179986 -59.7574938853 -7.1584647255 -14.8218434044
+ 2.0630000000 6.1412759787 0.6186604015 1.0194151427 14.2589586031 -24.1844566626 4.8570984036 -3.4107912423 -60.0274665048 -7.1678517369 -14.8079180782
+ 2.0640000000 6.1284219759 0.6185955720 1.0196085772 14.1808014165 -24.1463478645 4.9142875433 -3.1965772323 -60.2934909368 -7.1737548597 -14.7944046291
+ 2.0650000000 6.1159666512 0.6185300848 1.0198036810 14.1015444568 -24.1067299753 4.9705541673 -2.9835973218 -60.5555467522 -7.1761979805 -14.7813063790
+ 2.0660000000 6.1039156549 0.6184639729 1.0200004442 14.0211847863 -24.0656083066 5.0258988603 -2.7718718941 -60.8136150434 -7.1752070502 -14.7686264329
+ 2.0670000000 6.0922743653 0.6183972687 1.0201988555 13.9397198898 -24.0229885305 5.0803229676 -2.5614203411 -61.0676784082 -7.1708101041 -14.7563676822
+ 2.0680000000 6.0810478754 0.6183300035 1.0203989013 13.8571476938 -23.9788763636 5.1338185810 -2.3522610546 -61.3177209361 -7.1630372572 -14.7445328162
+ 2.0690000000 6.0702409961 0.6182622080 1.0206005655 13.7734665631 -23.9332775533 5.1863688150 -2.1444114282 -61.5637281970 -7.1519206660 -14.7331243187
+ 2.0700000000 6.0598582749 0.6181939118 1.0208038311 13.6886752513 -23.8861984643 5.2379673905 -1.9378878779 -61.8056872395 -7.1374944306 -14.7221444471
+ 2.0710000000 6.0499039956 0.6181251436 1.0210086803 13.6027729208 -23.8376461160 5.2886188595 -1.7327058391 -62.0435865790 -7.1197945582 -14.7115952275
+ 2.0720000000 6.0403821622 0.6180559310 1.0212150936 13.5157591873 -23.7876279205 5.3383284953 -1.5288797547 -62.2774161783 -7.0988589591 -14.7014784649
+ 2.0730000000 6.0312964928 0.6179863010 1.0214230493 13.4276341111 -23.7361513084 5.3870922497 -1.3264230795 -62.5071674262 -7.0747274292 -14.6917957581
+ 2.0740000000 6.0226504223 0.6179162798 1.0216325232 13.3383981946 -23.6832237161 5.4348970358 -1.1253482855 -62.7328331220 -7.0474416035 -14.6825484976
+ 2.0750000000 6.0144471111 0.6178458925 1.0218434903 13.2480523838 -23.6288532798 5.4817403712 -0.9256668678 -62.9544074728 -7.0170448607 -14.6737378365
+ 2.0760000000 6.0066894455 0.6177751632 1.0220559252 13.1565980830 -23.5730488707 5.5276305881 -0.7273893476 -63.1718860758 -6.9835822794 -14.6653646885
+ 2.0770000000 5.9993800291 0.6177041152 1.0222698007 13.0640371672 -23.5158197703 5.5725766792 -0.5305252753 -63.3852658923 -6.9471006199 -14.6574297420
+ 2.0780000000 5.9925211818 0.6176327709 1.0224850877 12.9703719517 -23.4571752474 5.6165782422 -0.3350832455 -63.5945452193 -6.9076482950 -14.6499334800
+ 2.0790000000 5.9861149423 0.6175611520 1.0227017544 12.8756051907 -23.3971245490 5.6596257696 -0.1410709049 -63.7997236701 -6.8652753178 -14.6428761776
+ 2.0800000000 5.9801630670 0.6174892793 1.0229197687 12.7797401184 -23.3356776918 5.7017203182 0.0515050516 -64.0008021708 -6.8200332082 -14.6362578682
+ 2.0810000000 5.9746670322 0.6174171724 1.0231390982 12.6827804585 -23.2728454919 5.7428737083 0.2426388725 -64.1977829372 -6.7719749431 -14.6300783424
+ 2.0820000000 5.9696280311 0.6173448499 1.0233597091 12.5847304085 -23.2086391793 5.7830983434 0.4323257343 -64.3906694435 -6.7211549262 -14.6243371678
+ 2.0830000000 5.9650469782 0.6172723299 1.0235815655 12.4855945951 -23.1430699416 5.8223971614 0.6205617179 -64.5794663879 -6.6676289503 -14.6190337105
+ 2.0840000000 5.9609245107 0.6171996296 1.0238046292 12.3853780736 -23.0761489196 5.8607639329 0.8073437982 -64.7641796698 -6.6114541402 -14.6141671333
+ 2.0850000000 5.9572609805 0.6171267653 1.0240288618 12.2840863971 -23.0078880755 5.8982029285 0.9926698544 -64.9448163848 -6.5526888612 -14.6097363588
+ 2.0860000000 5.9540564566 0.6170537520 1.0242542250 12.1817256203 -22.9383002120 5.9347291057 1.1765386565 -65.1213847977 -6.4913926636 -14.6057400694
+ 2.0870000000 5.9513107295 0.6169806039 1.0244806794 12.0783022614 -22.8673985365 5.9703579164 1.3589498394 -65.2938943056 -6.4276262436 -14.6021767313
+ 2.0880000000 5.9490233173 0.6169073346 1.0247081835 11.9738232512 -22.7951961899 6.0050952909 1.5399038741 -65.4623553994 -6.3614514004 -14.5990446169
+ 2.0890000000 5.9471934678 0.6168339567 1.0249366937 11.8682959334 -22.7217062513 6.0389379472 1.7194020542 -65.6267796377 -6.2929309747 -14.5963418040
+ 2.0900000000 5.9458201455 0.6167604820 1.0251661668 11.7617281494 -22.6469426460 6.0718930101 1.8974465097 -65.7871796398 -6.2221287595 -14.5940661363
+ 2.0910000000 5.9449020357 0.6166869210 1.0253965596 11.6541282359 -22.5709201538 6.1039781888 2.0740401887 -65.9435690557 -6.1491094393 -14.5922152262
+ 2.0920000000 5.9444375534 0.6166132833 1.0256278281 11.5455049729 -22.4936539377 6.1352115977 2.2491868237 -66.0959625243 -6.0739385462 -14.5907864796
+ 2.0930000000 5.9444248517 0.6165395779 1.0258599267 11.4358675319 -22.4151590806 6.1656017945 2.4228908997 -66.2443756325 -5.9966824136 -14.5897771208
+ 2.0940000000 5.9448618239 0.6164658131 1.0260928078 11.3252254780 -22.3354505972 6.1951480966 2.5951576381 -66.3888248855 -5.9174081144 -14.5891841913
+ 2.0950000000 5.9457460891 0.6163919961 1.0263264244 11.2135888574 -22.2545443436 6.2238601126 2.7659930108 -66.5293276987 -5.8361833707 -14.5890045104
+ 2.0960000000 5.9470749979 0.6163181329 1.0265607298 11.1009681899 -22.1724570151 6.2517579148 2.9354037180 -66.6659023647 -5.7530764916 -14.5892346783
+ 2.0970000000 5.9488456444 0.6162442287 1.0267956770 10.9873744103 -22.0892056619 6.2788618962 3.1033971498 -66.7985680090 -5.6681563266 -14.5898711036
+ 2.0980000000 5.9510548764 0.6161702882 1.0270312171 10.8728188210 -22.0048072473 6.3051828582 3.2699813516 -66.9273445453 -5.5814922207 -14.5909100284
+ 2.0990000000 5.9536992978 0.6160963151 1.0272673000 10.7573130948 -21.9192786658 6.3307223278 3.4351650065 -67.0522526445 -5.4931539531 -14.5923475284
+ 2.1000000000 5.9567752550 0.6160223125 1.0275038762 10.6408693557 -21.8326376205 6.3554919837 3.5989574473 -67.1733137247 -5.4032116455 -14.5941794730
+ 2.1010000000 5.9602788442 0.6159482821 1.0277408968 10.5235001666 -21.7449026131 6.3795138481 3.7613686311 -67.2905499169 -5.3117357000 -14.5964015295
+ 2.1020000000 5.9642059254 0.6158742251 1.0279783125 10.4052184701 -21.6560924659 6.4028102163 3.9224090988 -67.4039840180 -5.2187967532 -14.5990091916
+ 2.1030000000 5.9685521340 0.6158001419 1.0282160729 10.2860375497 -21.5662259106 6.4253937100 4.0820899378 -67.5136394438 -5.1244656359 -14.6019978064
+ 2.1040000000 5.9733128846 0.6157260324 1.0284541263 10.1659710333 -21.4753216080 6.4472675701 4.2404227632 -67.6195401951 -5.0288133144 -14.6053625750
+ 2.1050000000 5.9784833584 0.6156518957 1.0286924217 10.0450329571 -21.3833989729 6.4684450866 4.3974197270 -67.7217108490 -4.9319107958 -14.6090985125
+ 2.1060000000 5.9840585117 0.6155777298 1.0289309091 9.9232377520 -21.2904781585 6.4889498197 4.5530934912 -67.8201765230 -4.8338290675 -14.6132004520
+ 2.1070000000 5.9900330915 0.6155035322 1.0291695383 9.8006001877 -21.1965796006 6.5088055638 4.7074571851 -67.9149628264 -4.7346390556 -14.6176630749
+ 2.1080000000 5.9964016484 0.6154292998 1.0294082577 9.6771353446 -21.1017236359 6.5280262871 4.8605243671 -68.0060958102 -4.6344115918 -14.6224809394
+ 2.1090000000 6.0031585426 0.6153550292 1.0296470154 9.5528586167 -21.0059305213 6.5466164012 5.0123090041 -68.0936019323 -4.5332173579 -14.6276484830
+ 2.1100000000 6.0102979300 0.6152807162 1.0298857598 9.4277857551 -20.9092211979 6.5645903397 5.1628254794 -68.1775080511 -4.4311267872 -14.6331599787
+ 2.1110000000 6.0178137722 0.6152063556 1.0301244405 9.3019328530 -20.8116172741 6.5819727845 5.3120885655 -68.2578413906 -4.3282100074 -14.6390095405
+ 2.1120000000 6.0256998527 0.6151319419 1.0303630070 9.1753162992 -20.7131405994 6.5987885618 5.4601133805 -68.3346294893 -4.2245368056 -14.6451911538
+ 2.1130000000 6.0339497926 0.6150574694 1.0306014080 9.0479527579 -20.6138129055 6.6150525011 5.6069153486 -68.4079001480 -4.1201766043 -14.6516987076
+ 2.1140000000 6.0425570575 0.6149829318 1.0308395914 8.9198591695 -20.5136558214 6.6307697160 5.7525101780 -68.4776813952 -4.0151984097 -14.6585259966
+ 2.1150000000 6.0515149414 0.6149083222 1.0310775062 8.7910527755 -20.4126915843 6.6459553510 5.8969138705 -68.5440014856 -3.9096707099 -14.6656666741
+ 2.1160000000 6.0608165756 0.6148336334 1.0313151022 8.6615511034 -20.3109430238 6.6606347668 6.0401426944 -68.6068888659 -3.8036614217 -14.6731142564
+ 2.1170000000 6.0704549471 0.6147588574 1.0315523293 8.5313719296 -20.2084331621 6.6748333146 6.1822131412 -68.6663721228 -3.6972378663 -14.6808621553
+ 2.1180000000 6.0804229179 0.6146839864 1.0317891368 8.4005332643 -20.1051848717 6.6885662616 6.3231418831 -68.7224799287 -3.5904667527 -14.6889037135
+ 2.1190000000 6.0907132321 0.6146090121 1.0320254737 8.2690533497 -20.0012208860 6.7018391250 6.4629457508 -68.7752410086 -3.4834141315 -14.6972322064
+ 2.1200000000 6.1013184913 0.6145339260 1.0322612897 8.1369506725 -19.8965644758 6.7146674100 6.6016417486 -68.8246841458 -3.3761452913 -14.7058407891
+ 2.1210000000 6.1122311588 0.6144587188 1.0324965356 8.0042439388 -19.7912394300 6.7270766973 6.7392470247 -68.8708381493 -3.2687247122 -14.7147225033
+ 2.1220000000 6.1234435869 0.6143833809 1.0327311623 7.8709520475 -19.6852696695 6.7390923261 6.8757788264 -68.9137317999 -3.1612160515 -14.7238703125
+ 2.1230000000 6.1349480405 0.6143079028 1.0329651203 7.7370940822 -19.5786789225 6.7507296631 7.0112544584 -68.9533937955 -3.0536821344 -14.7332771369
+ 2.1240000000 6.1467367031 0.6142322748 1.0331983600 7.6026893059 -19.4714907318 6.7619945316 7.1456912607 -68.9898527199 -2.9461849145 -14.7429358559
+ 2.1250000000 6.1588016485 0.6141564869 1.0334308328 7.4677571645 -19.3637290937 6.7729025186 7.2791066295 -69.0231370548 -2.8387853717 -14.7528392494
+ 2.1260000000 6.1711348466 0.6140805288 1.0336624907 7.3323172732 -19.2554184412 6.7834789365 7.4115179923 -69.0532751494 -2.7315434736 -14.7629800021
+ 2.1270000000 6.1837281894 0.6140043899 1.0338932867 7.1963893919 -19.1465832828 6.7937485921 7.5429427613 -69.0802951666 -2.6245181712 -14.7733507417
+ 2.1280000000 6.1965735167 0.6139280597 1.0341231730 7.0599934086 -19.0372478853 6.8037266947 7.6733982879 -69.1042250293 -2.5177673965 -14.7839440774
+ 2.1290000000 6.2096626220 0.6138515276 1.0343521023 6.9231493320 -18.9274362809 6.8134193923 7.8029018411 -69.1250923922 -2.4113480285 -14.7947526016
+ 2.1300000000 6.2229872155 0.6137747831 1.0345800278 6.7858772943 -18.8171728767 6.8228421010 7.9314706355 -69.1429246599 -2.3053157990 -14.8057688276
+ 2.1310000000 6.2365389295 0.6136978150 1.0348069041 6.6481975374 -18.7064824386 6.8320193729 8.0591218081 -69.1577489583 -2.1997252619 -14.8169851941
+ 2.1320000000 6.2503093472 0.6136206123 1.0350326861 6.5101303891 -18.5953897419 6.8409750633 8.1858723702 -69.1695920822 -2.0946297978 -14.8283941060
+ 2.1330000000 6.2642900319 0.6135431639 1.0352573288 6.3716962438 -18.4839192733 6.8497240017 8.3117391606 -69.1784804440 -1.9900816177 -14.8399879722
+ 2.1340000000 6.2784725305 0.6134654591 1.0354807874 6.2329155534 -18.3720952391 6.8582725761 8.4367388263 -69.1844400487 -1.8861317371 -14.8517592081
+ 2.1350000000 6.2928483304 0.6133874866 1.0357030178 6.0938088333 -18.2599421423 6.8666357377 8.5608878568 -69.1874965166 -1.7828298917 -14.8637001707
+ 2.1360000000 6.3074088642 0.6133092353 1.0359239772 5.9543966474 -18.1474847633 6.8748368455 8.6842025626 -69.1876750580 -1.6802245160 -14.8758031632
+ 2.1370000000 6.3221455411 0.6132306937 1.0361436234 5.8146995838 -18.0347478265 6.8828984918 8.8066990266 -69.1850004234 -1.5783627550 -14.8880604768
+ 2.1380000000 6.3370497774 0.6131518510 1.0363619142 5.6747382331 -17.9217557276 6.8908348671 8.9283930571 -69.1794968549 -1.4772904756 -14.9004644290
+ 2.1390000000 6.3521129989 0.6130726959 1.0365788077 5.5345331789 -17.8085325447 6.8986523186 9.0493001707 -69.1711880648 -1.3770522488 -14.9130073655
+ 2.1400000000 6.3673265934 0.6129932175 1.0367942630 5.3941050072 -17.6951025709 6.9063649973 9.1694356328 -69.1600972628 -1.2776912775 -14.9256815944
+ 2.1410000000 6.3826819149 0.6129134045 1.0370082402 5.2534742923 -17.5814902937 6.9139947528 9.2888144386 -69.1462471345 -1.1792493830 -14.9384793901
+ 2.1420000000 6.3981703167 0.6128332458 1.0372207001 5.1126615691 -17.4677200822 6.9215627202 9.4074512648 -69.1296597949 -1.0817670240 -14.9513930352
+ 2.1430000000 6.4137831817 0.6127527304 1.0374316035 4.9716873119 -17.3538159457 6.9290821498 9.5253604224 -69.1103567430 -0.9852833157 -14.9644148600
+ 2.1440000000 6.4295119256 0.6126718475 1.0376409119 4.8305719249 -17.2398015451 6.9365588772 9.6425558426 -69.0883588447 -0.8898360208 -14.9775372448
+ 2.1450000000 6.4453479458 0.6125905863 1.0378485875 4.6893357553 -17.1257006732 6.9440059023 9.7590511236 -69.0636863643 -0.7954614873 -14.9907525510
+ 2.1460000000 6.4612826256 0.6125089359 1.0380545934 4.5479990791 -17.0115372320 6.9514433866 9.8748595157 -69.0363589479 -0.7021946430 -15.0040531241
+ 2.1470000000 6.4773073677 0.6124268856 1.0382588936 4.4065820733 -16.8973349475 6.9588909093 9.9899938734 -69.0063955804 -0.6100690214 -15.0174313364
+ 2.1480000000 6.4934136256 0.6123444249 1.0384614522 4.2651047940 -16.7831171603 6.9663604777 10.1044666080 -68.9738145441 -0.5191167895 -15.0308796287
+ 2.1490000000 6.5095929068 0.6122615434 1.0386622336 4.1235871683 -16.6689068382 6.9738568774 10.2182896757 -68.9386334047 -0.4293687469 -15.0443905121
+ 2.1500000000 6.5258367198 0.6121782309 1.0388612035 3.9820490107 -16.5547269962 6.9813916618 10.3314746340 -68.9008690497 -0.3408542723 -15.0579564951
+ 2.1510000000 6.5421365785 0.6120944772 1.0390583281 3.8405100113 -16.4406006735 6.9889832607 10.4440326309 -68.8605376766 -0.2536013250 -15.0715700846
+ 2.1520000000 6.5584840357 0.6120102722 1.0392535745 3.6989897071 -16.3265506789 6.9966496686 10.5559743579 -68.8176547542 -0.1676364786 -15.0852238299
+ 2.1530000000 6.5748707157 0.6119256062 1.0394469099 3.5575074597 -16.2125994148 7.0044014111 10.6673100006 -68.7722349833 -0.0829849575 -15.0989103684
+ 2.1540000000 6.5912883187 0.6118404695 1.0396383023 3.4160824494 -16.0987688891 7.0122417908 10.7780492297 -68.7242922876 0.0003293549 -15.1126224276
+ 2.1550000000 6.6077285652 0.6117548529 1.0398277203 3.2747336957 -15.9850810729 7.0201807530 10.8882012699 -68.6738398601 0.0822839647 -15.1263527440
+ 2.1560000000 6.6241832005 0.6116687471 1.0400151335 3.1334800484 -15.8715578784 7.0282350517 10.9977748940 -68.6208901563 0.1628577585 -15.1400940628
+ 2.1570000000 6.6406440289 0.6115821430 1.0402005122 2.9923401582 -15.7582209388 7.0364210712 11.1067783741 -68.5654548590 0.2420309618 -15.1538391844
+ 2.1580000000 6.6571029488 0.6114950319 1.0403838270 2.8513324542 -15.6450914600 7.0447477182 11.2152194308 -68.5075448415 0.3197850932 -15.1675810154
+ 2.1590000000 6.6735519566 0.6114074055 1.0405650493 2.7104751381 -15.5321902312 7.0532166262 11.3231052269 -68.4471701627 0.3961029496 -15.1813125702
+ 2.1600000000 6.6899830895 0.6113192557 1.0407441510 2.5697862123 -15.4195379254 7.0618360922 11.4304424509 -68.3843401228 0.4709686511 -15.1950268794
+ 2.1610000000 6.7063884287 0.6112305744 1.0409211053 2.4292834730 -15.3071550790 7.0706212528 11.5372373148 -68.3190632617 0.5443676252 -15.2087169884
+ 2.1620000000 6.7227601356 0.6111413542 1.0410958858 2.2889844810 -15.1950619057 7.0795868816 11.6434955045 -68.2513473261 0.6162865575 -15.2223760083
+ 2.1630000000 6.7390904889 0.6110515878 1.0412684668 2.1489065352 -15.0832781700 7.0887402533 11.7492221246 -68.1811992352 0.6867133389 -15.2359971719
+ 2.1640000000 6.7553718906 0.6109612684 1.0414388231 2.0090666695 -14.9718231942 7.0980813521 11.8544216963 -68.1086250798 0.7556370448 -15.2495738342
+ 2.1650000000 6.7715968015 0.6108703895 1.0416069308 1.8694816872 -14.8607161132 7.1076168761 11.9590982557 -68.0336301884 0.8230479773 -15.2630993706
+ 2.1660000000 6.7877577457 0.6107789452 1.0417727664 1.7301681582 -14.7499758582 7.1173603914 12.0632553563 -67.9562191303 0.8889376437 -15.2765671742
+ 2.1670000000 6.8038473477 0.6106869295 1.0419363074 1.5911423869 -14.6396209988 7.1273250702 12.1668960158 -67.8763956849 0.9532987010 -15.2899707117
+ 2.1680000000 6.8198583738 0.6105943374 1.0420975320 1.4524203820 -14.5296696308 7.1375166134 12.2700226576 -67.7941628092 1.0161248968 -15.3033035838
+ 2.1690000000 6.8357837378 0.6105011640 1.0422564192 1.3140178537 -14.4201393797 7.1479334851 12.3726371119 -67.7095226416 1.0774110433 -15.3165595266
+ 2.1700000000 6.8516164290 0.6104074052 1.0424129489 1.1759502580 -14.3110476246 7.1585808656 12.4747407297 -67.6224765786 1.1371530580 -15.3297322976
+ 2.1710000000 6.8673495149 0.6103130569 1.0425671018 1.0382327943 -14.2024114860 7.1694707714 12.5763343892 -67.5330252820 1.1953479377 -15.3428156726
+ 2.1720000000 6.8829761821 0.6102181160 1.0427188596 0.9008803714 -14.0942476903 7.1806147808 12.6774184389 -67.4411686511 1.2519936971 -15.3558035070
+ 2.1730000000 6.8984897814 0.6101225795 1.0428682046 0.7639075719 -13.9865724635 7.1920170985 12.7779926353 -67.3469057909 1.3070893046 -15.3686898014
+ 2.1740000000 6.9138838338 0.6100264454 1.0430151201 0.6273286490 -13.8794015314 7.2036748197 12.8780561457 -67.2502350209 1.3606346532 -15.3814687026
+ 2.1750000000 6.9291519469 0.6099297118 1.0431595905 0.4911575806 -13.7727503286 7.2155916783 12.9776076796 -67.1511539617 1.4126305995 -15.3941343789
+ 2.1760000000 6.9442878167 0.6098323776 1.0433016007 0.3554080686 -13.6666339913 7.2277781496 13.0766454976 -67.0496595479 1.4630789348 -15.4066810170
+ 2.1770000000 6.9592852715 0.6097344422 1.0434411368 0.2200935002 -13.5610672349 7.2402442660 13.1751673512 -66.9457480009 1.5119823198 -15.4191028873
+ 2.1780000000 6.9741383230 0.6096359055 1.0435781856 0.0852269063 -13.4560642484 7.2529928145 13.2731704144 -66.8394147976 1.5593442164 -15.4313944169
+ 2.1790000000 6.9888411711 0.6095367681 1.0437127349 -0.0491790420 -13.3516386935 7.2660196061 13.3706512889 -66.7306546840 1.6051688564 -15.4435501906
+ 2.1800000000 7.0033881071 0.6094370312 1.0438447735 -0.1831119683 -13.2478039115 7.2793269704 13.4676061525 -66.6194617720 1.6494612804 -15.4555648146
+ 2.1810000000 7.0177735133 0.6093366965 1.0439742908 -0.3165597912 -13.1445729181 7.2929238783 13.5640307716 -66.5058295575 1.6922273076 -15.4674329126
+ 2.1820000000 7.0319919117 0.6092357661 1.0441012773 -0.4495107680 -13.0419582870 7.3068189093 13.6599204361 -66.3897508932 1.7334734682 -15.4791491972
+ 2.1830000000 7.0460380214 0.6091342429 1.0442257241 -0.5819535422 -12.9399720454 7.3210134997 13.7552698836 -66.2712179576 1.7732069311 -15.4907085502
+ 2.1840000000 7.0599067624 0.6090321303 1.0443476239 -0.7138771488 -12.8386256755 7.3355021828 13.8500733064 -66.1502222712 1.8114354722 -15.5021060245
+ 2.1850000000 7.0735931441 0.6089294324 1.0444669695 -0.8452709351 -12.7379303205 7.3502859331 13.9443245197 -66.0267548063 1.8481675150 -15.5133366942
+ 2.1860000000 7.0870922621 0.6088261534 1.0445837549 -0.9761245613 -12.6378967811 7.3653723266 14.0380169766 -65.9008060081 1.8834121005 -15.5243956499
+ 2.1870000000 7.1003993534 0.6087222985 1.0446979745 -1.1064280487 -12.5385353992 7.3807686298 14.1311436972 -65.7723657682 1.9171788170 -15.5352780770
+ 2.1880000000 7.1135098610 0.6086178730 1.0448096241 -1.2361718361 -12.4398559627 7.3964749992 14.2236971841 -65.6414233913 1.9494777262 -15.5459793449
+ 2.1890000000 7.1264194360 0.6085128830 1.0449187003 -1.3653467832 -12.3418677090 7.4124846802 14.3156694305 -65.5079676155 1.9803193302 -15.5564950097
+ 2.1900000000 7.1391238113 0.6084073351 1.0450252003 -1.4939440779 -12.2445795243 7.4287973584 14.4070521108 -65.3719867336 2.0097146174 -15.5668206481
+ 2.1910000000 7.1516187973 0.6083012360 1.0451291219 -1.6219552338 -12.1479999391 7.4454193789 14.4978365986 -65.2334686187 2.0376750322 -15.5769518517
+ 2.1920000000 7.1639003432 0.6081945932 1.0452304636 -1.7493721463 -12.0521370168 7.4623568933 14.5880138878 -65.0924006958 2.0642124044 -15.5868843132
+ 2.1930000000 7.1759646096 0.6080874143 1.0453292249 -1.8761871562 -11.9569982703 7.4796088693 14.6775744975 -64.9487699067 2.0893388734 -15.5966139263
+ 2.1940000000 7.1878079706 0.6079797077 1.0454254063 -2.0023930527 -11.8625906686 7.4971672316 14.7665084819 -64.8025627319 2.1130668565 -15.6061367885
+ 2.1950000000 7.1994268723 0.6078714819 1.0455190087 -2.1279829624 -11.7689208188 7.5150304601 14.8548056450 -64.6537653259 2.1354091012 -15.6154490156
+ 2.1960000000 7.2108178282 0.6077627458 1.0456100334 -2.2529503443 -11.6759949613 7.5332038858 14.9424555622 -64.5023635454 2.1563786571 -15.6245467351
+ 2.1970000000 7.2219774877 0.6076535087 1.0456984823 -2.3772890528 -11.5838188664 7.5516927895 15.0294474920 -64.3483429189 2.1759888051 -15.6334261817
+ 2.1980000000 7.2329027172 0.6075437803 1.0457843582 -2.5009934112 -11.4923977663 7.5704950536 15.1157702677 -64.1916886071 2.1942529809 -15.6420838084
+ 2.1990000000 7.2435906039 0.6074335704 1.0458676649 -2.6240582141 -11.4017363634 7.5896012353 15.2014123078 -64.0323854281 2.2111847457 -15.6505162901
+ 2.2000000000 7.2540382981 0.6073228896 1.0459484066 -2.7464785928 -11.3118389866 7.6090087196 15.2863618605 -63.8704180056 2.2267978474 -15.6587203153
+ 2.2010000000 7.2642430086 0.6072117483 1.0460265873 -2.8682500080 -11.2227095888 7.6287220787 15.3706070276 -63.7057708001 2.2411061955 -15.6666925780
+ 2.2020000000 7.2742020801 0.6071001574 1.0461022117 -2.9893683211 -11.1343516579 7.6487459453 15.4541356638 -63.5384280749 2.2541237908 -15.6744298840
+ 2.2030000000 7.2839130841 0.6069881282 1.0461752854 -3.1098298794 -11.0467681575 7.6690772150 15.5369352542 -63.3683738518 2.2658646494 -15.6819292751
+ 2.2040000000 7.2933738242 0.6068756722 1.0462458150 -3.2296315163 -10.9599615318 7.6897050792 15.6189929260 -63.1955919377 2.2763427772 -15.6891880326
+ 2.2050000000 7.3025821607 0.6067628013 1.0463138069 -3.3487703918 -10.8739338445 7.7106259608 15.7002957240 -63.0200660880 2.2855722406 -15.6962034430
+ 2.2060000000 7.3115360072 0.6066495277 1.0463792676 -3.4672439808 -10.7886867801 7.7318439023 15.7808306369 -62.8417800394 2.2935671462 -15.7029727899
+ 2.2070000000 7.3202334174 0.6065358636 1.0464422040 -3.5850501549 -10.7042215709 7.7533630559 15.8605844820 -62.6607174708 2.3003415705 -15.7094934720
+ 2.2080000000 7.3286726865 0.6064218221 1.0465026237 -3.7021872815 -10.6205389309 7.7751794457 15.9395437677 -62.4768619543 2.3059094860 -15.7157631408
+ 2.2090000000 7.3368523577 0.6063074160 1.0465605354 -3.8186542220 -10.5376390560 7.7972810019 16.0176947066 -62.2901969823 2.3102847399 -15.7217797026
+ 2.2100000000 7.3447710275 0.6061926590 1.0466159473 -3.9344501439 -10.4555217658 7.8196633520 16.0950235222 -62.1007061464 2.3134811354 -15.7275410596
+ 2.2110000000 7.3524273427 0.6060775646 1.0466688677 -4.0495745061 -10.3741865115 7.8423301871 16.1715164767 -61.9083731702 2.3155124149 -15.7330451007
+ 2.2120000000 7.3598200980 0.6059621470 1.0467193050 -4.1640271542 -10.2936323086 7.8652852743 16.2471597389 -61.7131818647 2.3163921920 -15.7382898342
+ 2.2130000000 7.3669483477 0.6058464206 1.0467672684 -4.2778084326 -10.2138576516 7.8885239146 16.3219392332 -61.5151160734 2.3161338796 -15.7432735355
+ 2.2140000000 7.3738114116 0.6057304002 1.0468127681 -4.3909191817 -10.1348605104 7.9120330304 16.3958406535 -61.3141597018 2.3147506745 -15.7479947487
+ 2.2150000000 7.3804086605 0.6056141009 1.0468558137 -4.5033605218 -10.0566384994 7.9358076653 16.4688497996 -61.1102969080 2.3122556477 -15.7524520047
+ 2.2160000000 7.3867395134 0.6054975382 1.0468964146 -4.6151338402 -9.9791888940 7.9598512612 16.5409526024 -60.9035121362 2.3086617322 -15.7566438139
+ 2.2170000000 7.3928035474 0.6053807278 1.0469345804 -4.7262408945 -9.9025085492 7.9841671949 16.6121349768 -60.6937900640 2.3039816568 -15.7605688108
+ 2.2180000000 7.3986006175 0.6052636861 1.0469703215 -4.8366839346 -9.8265937897 8.0087502311 16.6823826611 -60.4811155453 2.2982278789 -15.7642259094
+ 2.2190000000 7.4041308597 0.6051464296 1.0470036491 -4.9464657066 -9.7514404104 8.0335867283 16.7516812318 -60.2654736406 2.2914125757 -15.7676143029
+ 2.2200000000 7.4093944563 0.6050289753 1.0470345737 -5.0555892104 -9.6770438902 8.0586713993 16.8200164603 -60.0468498167 2.2835477409 -15.7707331670
+ 2.2210000000 7.4143916306 0.6049113404 1.0470631058 -5.1640576839 -9.6033994101 8.0840074483 16.8873743454 -59.8252299852 2.2746451868 -15.7735816534
+ 2.2220000000 7.4191227659 0.6047935421 1.0470892556 -5.2718747353 -9.5305017549 8.1095978110 16.9537409243 -59.6006004348 2.2647164633 -15.7761590516
+ 2.2230000000 7.4235885315 0.6046755982 1.0471130344 -5.3790444725 -9.4583451811 8.1354369545 17.0191021093 -59.3729477723 2.2537727989 -15.7784649456
+ 2.2240000000 7.4277898800 0.6045575267 1.0471344539 -5.4855714907 -9.3869234169 8.1615112242 17.0834437295 -59.1422589637 2.2418251135 -15.7804992057
+ 2.2250000000 7.4317278047 0.6044393458 1.0471535256 -5.5914606193 -9.3162299242 8.1878152395 17.1467518872 -58.9085215312 2.2288841114 -15.7822616882
+ 2.2260000000 7.4354033369 0.6043210739 1.0471702602 -5.6967169120 -9.2462579133 8.2143519047 17.2090129770 -58.6717235843 2.2149602786 -15.7837522322
+ 2.2270000000 7.4388176716 0.6042027294 1.0471846688 -5.8013457800 -9.1770002199 8.2411236985 17.2702135141 -58.4318537577 2.2000638246 -15.7849708220
+ 2.2280000000 7.4419722904 0.6040843311 1.0471967631 -5.9053531249 -9.1084491689 8.2681250375 17.3303399699 -58.1889011531 2.1842046310 -15.7859177411
+ 2.2290000000 7.4448689585 0.6039658981 1.0472065555 -6.0087453333 -9.0405965795 8.2953427213 17.3893787892 -57.9428553707 2.1673922529 -15.7865935695
+ 2.2300000000 7.4475094743 0.6038474494 1.0472140581 -6.1115290128 -8.9734340527 8.3227714586 17.4473167578 -57.6937067099 2.1496360211 -15.7869988815
+ 2.2310000000 7.4498956658 0.6037290040 1.0472192821 -6.2137109845 -8.9069529813 8.3504138029 17.5041410189 -57.4414461982 2.1309450450 -15.7871342448
+ 2.2320000000 7.4520295196 0.6036105811 1.0472222391 -6.3152984220 -8.8411444087 8.3782718145 17.5598388975 -57.1860655278 2.1113281610 -15.7870003826
+ 2.2330000000 7.4539133012 0.6034921998 1.0472229413 -6.4162989825 -8.7759989041 8.4063400394 17.6143977382 -56.9275569976 2.0907938878 -15.7865983247
+ 2.2340000000 7.4555495504 0.6033738795 1.0472214015 -6.5167208002 -8.7115065770 8.4346059868 17.6678049220 -56.6659135432 2.0693504323 -15.7859294033
+ 2.2350000000 7.4569408313 0.6032556393 1.0472176323 -6.6165722208 -8.6476573570 8.4630645386 17.7200482288 -56.4011289330 2.0470057936 -15.7849949567
+ 2.2360000000 7.4580897283 0.6031374984 1.0472116452 -6.7158617937 -8.5844409984 8.4917178902 17.7711158530 -56.1331977950 2.0237677703 -15.7837963270
+ 2.2370000000 7.4589989747 0.6030194756 1.0472034521 -6.8145984110 -8.5218469373 8.5205678029 17.8209962288 -55.8621155529 1.9996439160 -15.7823350194
+ 2.2380000000 7.4596715712 0.6029015899 1.0471930655 -6.9127914383 -8.4598641902 8.5496090396 17.8696778669 -55.5878783672 1.9746415002 -15.7806128518
+ 2.2390000000 7.4601107817 0.6027838601 1.0471804987 -7.0104507061 -8.3984813727 8.5788297898 17.9171493704 -55.3104831624 1.9487675186 -15.7786319499
+ 2.2400000000 7.4603198860 0.6026663051 1.0471657640 -7.1075862424 -8.3376869473 8.6082250858 17.9633997937 -55.0299278181 1.9220287983 -15.7763944542
+ 2.2410000000 7.4603021759 0.6025489432 1.0471488734 -7.2042082620 -8.2774692248 8.6377968371 18.0084186585 -54.7462111939 1.8944320106 -15.7739025156
+ 2.2420000000 7.4600610804 0.6024317927 1.0471298387 -7.3003273033 -8.2178162373 8.6675467124 18.0521957817 -54.4593330654 1.8659836322 -15.7711584504
+ 2.2430000000 7.4596002877 0.6023148718 1.0471086724 -7.3959543616 -8.1587156584 8.6974696960 18.0947211054 -54.1692940610 1.8366899088 -15.7681648929
+ 2.2440000000 7.4589237422 0.6021981985 1.0470853876 -7.4911008801 -8.1001548219 8.7275543860 18.1359847097 -53.8760956854 1.8065568688 -15.7649247915
+ 2.2450000000 7.4580353971 0.6020817906 1.0470599968 -7.5857784735 -8.0421209296 8.7577959100 18.1759771768 -53.5797405083 1.7755904321 -15.7614411115
+ 2.2460000000 7.4569392104 0.6019656658 1.0470325114 -7.6799989133 -7.9846010552 8.7881960792 18.2146896083 -53.2802321884 1.7437964265 -15.7577168275
+ 2.2470000000 7.4556392692 0.6018498413 1.0470029430 -7.7737742642 -7.9275820412 8.8187566696 18.2521134507 -52.9775754059 1.7111805527 -15.7537550783
+ 2.2480000000 7.4541399174 0.6017343343 1.0469713037 -7.8671170244 -7.8710504283 8.8494728275 18.2882403146 -52.6717757931 1.6777483487 -15.7495593259
+ 2.2490000000 7.4524457559 0.6016191620 1.0469376062 -7.9600401162 -7.8149924710 8.8803332433 18.3230619843 -52.3628399532 1.6435052059 -15.7451333532
+ 2.2500000000 7.4505613883 0.6015043414 1.0469018624 -8.0525565933 -7.7593943182 8.9113331046 18.3565707956 -52.0507756520 1.6084564832 -15.7404809540
+ 2.2510000000 7.4484914161 0.6013898890 1.0468640831 -8.1446796221 -7.7042420240 8.9424743397 18.3887596535 -51.7355918385 1.5726075260 -15.7356059241
+ 2.2520000000 7.4462405661 0.6012758212 1.0468242791 -8.2364226215 -7.6495214657 8.9737589804 18.4196218505 -51.4172985725 1.5359636329 -15.7305122197
+ 2.2530000000 7.4438138266 0.6011621547 1.0467824619 -8.3277994149 -7.5952182655 9.0051822909 18.4491508716 -51.0959069471 1.4985300195 -15.7252041258
+ 2.2540000000 7.4412164485 0.6010489056 1.0467386432 -8.4188242193 -7.5413177995 9.0367328663 18.4773404018 -50.7714291034 1.4603118361 -15.7196862534
+ 2.2550000000 7.4384536785 0.6009360901 1.0466928342 -8.5095113316 -7.4878053818 9.0684059726 18.5041847228 -50.4438784271 1.4213142885 -15.7139632140
+ 2.2560000000 7.4355307533 0.6008237243 1.0466450448 -8.5998751074 -7.4346662818 9.1002038289 18.5296787301 -50.1132695662 1.3815426588 -15.7080396097
+ 2.2570000000 7.4324530339 0.6007118238 1.0465952849 -8.6899301093 -7.3818856494 9.1321288049 18.5538177390 -49.7796183511 1.3410022711 -15.7019201990
+ 2.2580000000 7.4292261483 0.6006004045 1.0465435648 -8.7796912704 -7.3294484171 9.1641762865 18.5765972767 -49.4429417086 1.2996984549 -15.6956100729
+ 2.2590000000 7.4258559937 0.6004894822 1.0464898955 -8.8691738835 -7.2773393037 9.1963347573 18.5980130876 -49.1032576733 1.2576365625 -15.6891146529
+ 2.2600000000 7.4223484524 0.6003790724 1.0464342870 -8.9583932642 -7.2255430289 9.2285996282 18.6180615507 -48.7605855900 1.2148220964 -15.6824393477
+ 2.2610000000 7.4187093855 0.6002691906 1.0463767483 -9.0473647289 -7.1740443342 9.2609734961 18.6367396941 -48.4149461273 1.1712607301 -15.6755895436
+ 2.2620000000 7.4149447743 0.6001598519 1.0463172883 -9.1361037554 -7.1228278977 9.2934590563 18.6540449873 -48.0663611899 1.1269582716 -15.6685707791
+ 2.2630000000 7.4110608695 0.6000510718 1.0462559163 -9.2246261555 -7.0718782156 9.3260518523 18.6699751232 -47.7148538242 1.0819206241 -15.6613889270
+ 2.2640000000 7.4070641912 0.5999428653 1.0461926425 -9.3129480642 -7.0211796067 9.3587404014 18.6845280222 -47.3604482275 1.0361538046 -15.6540501902
+ 2.2650000000 7.4029612287 0.5998352475 1.0461274760 -9.4010855819 -6.9707164649 9.3915203432 18.6977022664 -47.0031699540 0.9896640741 -15.6465607456
+ 2.2660000000 7.3987584331 0.5997282331 1.0460604248 -9.4890547539 -6.9204732813 9.4243946363 18.7094971115 -46.6430459252 0.9424579581 -15.6389267346
+ 2.2670000000 7.3944623664 0.5996218368 1.0459914971 -9.5768717423 -6.8704345382 9.4573662275 18.7199122662 -46.2801043327 0.8945422065 -15.6311544451
+ 2.2680000000 7.3900798542 0.5995160731 1.0459207016 -9.6645530050 -6.8205845796 9.4904308687 18.7289476671 -45.9143745385 0.8459237522 -15.6232504962
+ 2.2690000000 7.3856179820 0.5994109564 1.0458480476 -9.7521152837 -6.7709076182 9.5235773101 18.7366034830 -45.5458870809 0.7966097283 -15.6152218327
+ 2.2700000000 7.3810837837 0.5993065009 1.0457735438 -9.8395752308 -6.7213880197 9.5568014657 18.7428805602 -45.1746738822 0.7466076004 -15.6070753592
+ 2.2710000000 7.3764842333 0.5992027204 1.0456971977 -9.9269493894 -6.6720103205 9.5901065548 18.7477804319 -44.8007682550 0.6959251857 -15.5988179305
+ 2.2720000000 7.3718263991 0.5990996285 1.0456190169 -10.0142543744 -6.6227591028 9.6234956937 18.7513050886 -44.4242047978 0.6445706093 -15.5904565384
+ 2.2730000000 7.3671175983 0.5989972386 1.0455390099 -10.1015070549 -6.5736188655 9.6569648721 18.7534567476 -44.0450192900 0.5925522598 -15.5819984976
+ 2.2740000000 7.3623653913 0.5988955641 1.0454571856 -10.1887245405 -6.5245740387 9.6905031924 18.7542378574 -43.6632486937 0.5398788041 -15.5734514384
+ 2.2750000000 7.3575772623 0.5987946177 1.0453735525 -10.2759237966 -6.4756092745 9.7241068282 18.7536515504 -43.2789313621 0.4865593204 -15.5648229341
+ 2.2760000000 7.3527606109 0.5986944121 1.0452881182 -10.3631216240 -6.4267094619 9.7577791429 18.7517016510 -42.8921070409 0.4326033154 -15.5561204904
+ 2.2770000000 7.3479229095 0.5985949591 1.0452008899 -10.4503348452 -6.3778595910 9.7915233630 18.7483924400 -42.5028167577 0.3780206760 -15.5473517345
+ 2.2780000000 7.3430718592 0.5984962709 1.0451118762 -10.5375804903 -6.3290446364 9.8253357074 18.7437284186 -42.1111027115 0.3228216195 -15.5385246021
+ 2.2790000000 7.3382153838 0.5983983591 1.0450210864 -10.6248757804 -6.2802495751 9.8592056377 18.7377143125 -41.7170082709 0.2670167061 -15.5296473290
+ 2.2800000000 7.3333613050 0.5983012351 1.0449285288 -10.7122377330 -6.2314596652 9.8931295439 18.7303555316 -41.3205781803 0.2106169717 -15.5207280713
+ 2.2810000000 7.3285173344 0.5982049094 1.0448342113 -10.7996831404 -6.1826604574 9.9271108601 18.7216581776 -40.9218585578 0.1536339413 -15.5117748942
+ 2.2820000000 7.3236912329 0.5981093925 1.0447381414 -10.8872287589 -6.1338376643 9.9611528771 18.7116288027 -40.5208967785 0.0960795756 -15.5027959619
+ 2.2830000000 7.3188909686 0.5980146945 1.0446403280 -10.9748914978 -6.0849770541 9.9952519978 18.7002741693 -40.1177413580 0.0379662156 -15.4937997263
+ 2.2840000000 7.3141247626 0.5979208257 1.0445407808 -11.0626884472 -6.0360644405 10.0293979644 18.6876011001 -39.7124419224 -0.0206934687 -15.4847949441
+ 2.2850000000 7.3094007449 0.5978277970 1.0444395095 -11.1506363364 -5.9870859821 10.0635873115 18.6736173558 -39.3050494271 -0.0798862186 -15.4757902018
+ 2.2860000000 7.3047269192 0.5977356192 1.0443365230 -11.2387515232 -5.9380281996 10.0978235026 18.6583316116 -38.8956161526 -0.1395981941 -15.4667939129
+ 2.2870000000 7.3001113610 0.5976443033 1.0442318306 -11.3270503132 -5.8888778123 10.1321098754 18.6417528223 -38.4841955617 -0.1998151553 -15.4578145905
+ 2.2880000000 7.2955623350 0.5975538600 1.0441254426 -11.4155491017 -5.8396216600 10.1664429344 18.6238901395 -38.0708422031 -0.2605224535 -15.4488610080
+ 2.2890000000 7.2910882888 0.5974642999 1.0440173705 -11.5042643554 -5.7902467185 10.2008125552 18.6047529141 -37.6556117007 -0.3217050278 -15.4399421869
+ 2.2900000000 7.2866975185 0.5973756331 1.0439076247 -11.5932121944 -5.7407403481 10.2352152855 18.5843511731 -37.2385609584 -0.3833472730 -15.4310670031
+ 2.2910000000 7.2823981592 0.5972878695 1.0437962150 -11.6824083666 -5.6910903101 10.2696545322 18.5626956268 -36.8197481498 -0.4454330339 -15.4222441723
+ 2.2920000000 7.2781983482 0.5972010185 1.0436831513 -11.7718684435 -5.6412846573 10.3041336537 18.5397974167 -36.3992325897 -0.5079456726 -15.4134824425
+ 2.2930000000 7.2741063895 0.5971150897 1.0435684446 -11.8616080223 -5.5913116195 10.3386491587 18.5156678610 -35.9770746051 -0.5708681373 -15.4047907899
+ 2.2940000000 7.2701307483 0.5970300924 1.0434521069 -11.9516427071 -5.5411596134 10.3731908639 18.4903184538 -35.5533355199 -0.6341829649 -15.3961784067
+ 2.2950000000 7.2662797080 0.5969460355 1.0433341493 -12.0419876774 -5.4908175013 10.4077552592 18.4637613542 -35.1280778609 -0.6978721469 -15.3876542992
+ 2.2960000000 7.2625613587 0.5968629277 1.0432145824 -12.1326576611 -5.4402746127 10.4423457329 18.4360093919 -34.7013653439 -0.7619171297 -15.3792272708
+ 2.2970000000 7.2589837641 0.5967807773 1.0430934166 -12.2236671378 -5.3895206347 10.4769656703 18.4070758089 -34.2732627399 -0.8262988884 -15.3709061200
+ 2.2980000000 7.2555551318 0.5966995928 1.0429706635 -12.3150305497 -5.3385454766 10.5116115127 18.3769739957 -33.8438357385 -0.8909980050 -15.3626998396
+ 2.2990000000 7.2522838069 0.5966193823 1.0428463358 -12.4067622854 -5.2873392751 10.5462728795 18.3457174898 -33.4131509294 -0.9559946745 -15.3546176065
+ 2.3000000000 7.2491779175 0.5965401540 1.0427204455 -12.4988762315 -5.2358926848 10.5809461303 18.3133204758 -32.9812760107 -1.0212685718 -15.3466683688
+ 2.3010000000 7.2462453619 0.5964619153 1.0425930037 -12.5913857461 -5.1841969030 10.6156346422 18.2797977922 -32.5482797725 -1.0867988554 -15.3388608296
+ 2.3020000000 7.2434939791 0.5963846735 1.0424640215 -12.6843038699 -5.1322435477 10.6503418573 18.2451646650 -32.1142319569 -1.1525642498 -15.3312036485
+ 2.3030000000 7.2409317272 0.5963084360 1.0423335113 -12.7776435509 -5.0800244972 10.6850640758 18.2094364324 -31.6792031139 -1.2185431320 -15.3237056488
+ 2.3040000000 7.2385666766 0.5962332100 1.0422014867 -12.8714176303 -5.0275318938 10.7197905294 18.1726285413 -31.2432645794 -1.2847135438 -15.3163758081
+ 2.3050000000 7.2364066407 0.5961590025 1.0420679604 -12.9656383736 -4.9747584774 10.7545173539 18.1347570645 -30.8064886887 -1.3510530553 -15.3092228336
+ 2.3060000000 7.2344591610 0.5960858198 1.0419329442 -13.0603174441 -4.9216976102 10.7892479236 18.0958387071 -30.3689487573 -1.4175387735 -15.3022551451
+ 2.3070000000 7.2327316825 0.5960136681 1.0417964503 -13.1554661208 -4.8683431354 10.8239857436 18.0558905396 -29.9307189602 -1.4841473728 -15.2954810803
+ 2.3080000000 7.2312317463 0.5959425535 1.0416584919 -13.2510955470 -4.8146891901 10.8587268717 18.0149296932 -29.4918741258 -1.5508553115 -15.2889091155
+ 2.3090000000 7.2299669842 0.5958724823 1.0415190833 -13.3472167157 -4.7607302099 10.8934599490 17.9729733561 -29.0524897122 -1.6176388504 -15.2825478560
+ 2.3100000000 7.2289447250 0.5958034602 1.0413782378 -13.4438399687 -4.7064613079 10.9281808028 17.9300393290 -28.6126420823 -1.6844737892 -15.2764055923
+ 2.3110000000 7.2281719808 0.5957354922 1.0412359681 -13.5409749742 -4.6518782960 10.9628928159 17.8861460219 -28.1724084563 -1.7513355386 -15.2704902833
+ 2.3120000000 7.2276556318 0.5956685833 1.0410922872 -13.6386309628 -4.5969775155 10.9975995230 17.8413121679 -27.7318667577 -1.8181992209 -15.2648097718
+ 2.3130000000 7.2274026237 0.5956027382 1.0409472093 -13.7368169837 -4.5417556409 11.0322966444 17.7955565191 -27.2910954528 -1.8850397754 -15.2593720125
+ 2.3140000000 7.2274199615 0.5955379616 1.0408007497 -13.8355418925 -4.4862096862 11.0669721087 17.7488978406 -26.8501735230 -1.9518319804 -15.2541850630
+ 2.3150000000 7.2277143032 0.5954742574 1.0406529232 -13.9348138277 -4.4303374088 11.1016213856 17.7013554777 -26.4091806948 -2.0185503059 -15.2492566222
+ 2.3160000000 7.2282919445 0.5954116293 1.0405037437 -14.0346401832 -4.3741373291 11.1362478553 17.6529493628 -25.9681974170 -2.0851689293 -15.2445940108
+ 2.3170000000 7.2291590141 0.5953500801 1.0403532257 -14.1350278609 -4.3176085412 11.1708550190 17.6036997160 -25.5273046996 -2.1516618442 -15.2402043966
+ 2.3180000000 7.2303216795 0.5952896128 1.0402013846 -14.2359835402 -4.2607505062 11.2054382182 17.5536267279 -25.0865839460 -2.2180029747 -15.2360950320
+ 2.3190000000 7.2317861413 0.5952302303 1.0400482375 -14.3375136662 -4.2035630596 11.2399846863 17.5027505544 -24.6461169236 -2.2841662010 -15.2322732438
+ 2.3200000000 7.2335582089 0.5951719347 1.0398938007 -14.4396238959 -4.1460468343 11.2744895603 17.4510919120 -24.2059860033 -2.3501252048 -15.2287459502
+ 2.3210000000 7.2356432867 0.5951147274 1.0397380896 -14.5423190709 -4.0882032768 11.3089562010 17.3986720846 -23.7662741341 -2.4158534877 -15.2255196419
+ 2.3220000000 7.2380465795 0.5950586096 1.0395811203 -14.6456034868 -4.0300344418 11.3433879907 17.3455126089 -23.3270646747 -2.4813244891 -15.2226006176
+ 2.3230000000 7.2407733053 0.5950035823 1.0394229100 -14.7494811746 -3.9715427795 11.3777799305 17.2916349490 -22.8884412203 -2.5465117081 -15.2199952277
+ 2.3240000000 7.2438286892 0.5949496462 1.0392634774 -14.8539558868 -3.9127311419 11.4121187710 17.2370604934 -22.4504875732 -2.6113887307 -15.2177098626
+ 2.3250000000 7.2472175249 0.5948968015 1.0391028407 -14.9590305190 -3.8536032175 11.4463994294 17.1818111722 -22.0132879882 -2.6759290688 -15.2157504532
+ 2.3260000000 7.2509441631 0.5948450477 1.0389410170 -15.0647070861 -3.7941635445 11.4806252075 17.1259094625 -21.5769271452 -2.7401061808 -15.2141224531
+ 2.3270000000 7.2550127270 0.5947943839 1.0387780241 -15.1709870067 -3.7344172955 11.5147992581 17.0693780599 -21.1414899739 -2.8038935981 -15.2128310848
+ 2.3280000000 7.2594273284 0.5947448093 1.0386138813 -15.2778713914 -3.6743700563 11.5489163539 17.0122395506 -20.7070614789 -2.8672650512 -15.2118815851
+ 2.3290000000 7.2641920593 0.5946963225 1.0384486090 -15.3853610276 -3.6140278303 11.5829631346 16.9545164116 -20.2737267099 -2.9301944979 -15.2112791909
+ 2.3300000000 7.2693103229 0.5946489211 1.0382822266 -15.4934555190 -3.5533976356 11.6169345067 16.8962324780 -19.8415708738 -2.9926557772 -15.2110284854
+ 2.3310000000 7.2747850052 0.5946025987 1.0381147508 -15.6021539463 -3.4924872564 11.6508336262 16.8374108968 -19.4106796836 -3.0546230727 -15.2111337906
+ 2.3320000000 7.2806186076 0.5945573444 1.0379461958 -15.7114551928 -3.4313050385 11.6846632987 16.7780737162 -18.9811392648 -3.1160708837 -15.2115994444
+ 2.3330000000 7.2868133462 0.5945131462 1.0377765768 -15.8213575193 -3.3698599081 11.7184183026 16.7182437082 -18.5530355456 -3.1769738100 -15.2124296075
+ 2.3340000000 7.2933714088 0.5944699920 1.0376059103 -15.9318588140 -3.3081612109 11.7520856790 16.6579435382 -18.1264543212 -3.2373068309 -15.2136283894
+ 2.3350000000 7.3002945131 0.5944278694 1.0374342126 -16.0429560013 -3.2462191689 11.7856605198 16.5971963862 -17.7014815000 -3.2970451317 -15.2151993473
+ 2.3360000000 7.3075838988 0.5943867657 1.0372614992 -16.1546450256 -3.1840448912 11.8191460122 16.5360259484 -17.2782030714 -3.3561641288 -15.2171454726
+ 2.3370000000 7.3152405539 0.5943466680 1.0370877864 -16.2669211551 -3.1216501399 11.8525450361 16.4744560995 -16.8567049253 -3.4146396027 -15.2194694458
+ 2.3380000000 7.3232654309 0.5943075639 1.0369130920 -16.3797792732 -3.0590470826 11.8858527330 16.4125105728 -16.4370726792 -3.4724478263 -15.2221738758
+ 2.3390000000 7.3316594377 0.5942694410 1.0367374354 -16.4932138673 -2.9962482918 11.9190568745 16.3502129630 -16.0193916486 -3.5295655924 -15.2252612861
+ 2.3400000000 7.3404229961 0.5942322869 1.0365608356 -16.6072184400 -2.9332672198 11.9521529019 16.2875873447 -15.6037470856 -3.5859700444 -15.2287336206
+ 2.3410000000 7.3495560336 0.5941960886 1.0363833111 -16.7217854980 -2.8701182085 11.9851439769 16.2246582725 -15.1902241472 -3.6416387000 -15.2325922329
+ 2.3420000000 7.3590582102 0.5941608335 1.0362048808 -16.8369068577 -2.8068162431 12.0180329769 16.1614504457 -14.7789077160 -3.6965495848 -15.2368381383
+ 2.3430000000 7.3689291343 0.5941265090 1.0360255652 -16.9525739420 -2.7433766897 12.0508153502 16.0979883899 -14.3698822294 -3.7506813593 -15.2414722538
+ 2.3440000000 7.3791683557 0.5940931031 1.0358453867 -17.0687777729 -2.6798152910 12.0834794428 16.0342964578 -13.9632316496 -3.8040133453 -15.2464953863
+ 2.3450000000 7.3897749240 0.5940606038 1.0356643668 -17.1855083873 -2.6161486633 12.1160208933 15.9703994410 -13.5590396989 -3.8565253538 -15.2519077460
+ 2.3460000000 7.4007473807 0.5940289985 1.0354825265 -17.3027548271 -2.5523943043 12.1484427595 15.9063225703 -13.1573898284 -3.9081977075 -15.2577089363
+ 2.3470000000 7.4120839840 0.5939982748 1.0352998876 -17.4205054472 -2.4885703333 12.1807479410 15.8420911853 -12.7583650426 -3.9590113710 -15.2638982034
+ 2.3480000000 7.4237829312 0.5939684210 1.0351164731 -17.5387482221 -2.4246952121 12.2129320483 15.7777304103 -12.3620477281 -4.0089480780 -15.2704746808
+ 2.3490000000 7.4358423527 0.5939394256 1.0349323077 -17.6574707452 -2.3607877375 12.2449836289 15.7132651516 -11.9685196235 -4.0579903555 -15.2774373813
+ 2.3500000000 7.4482598677 0.5939112771 1.0347474155 -17.7766596375 -2.2968675624 12.2768983193 15.6487207125 -11.5778620553 -4.1061213465 -15.2847847109
+ 2.3510000000 7.4610325744 0.5938839637 1.0345618199 -17.8963005391 -2.2329552011 12.3086790796 15.5841227960 -11.1901559083 -4.1533248278 -15.2925144578
+ 2.3520000000 7.4741572773 0.5938574739 1.0343755449 -18.0163784222 -2.1690717536 12.3403288670 15.5194971740 -10.8054814531 -4.1995853378 -15.3006240430
+ 2.3530000000 7.4876307190 0.5938317967 1.0341886160 -18.1368779143 -2.1052386100 12.3718432715 15.4548693523 -10.4239181724 -4.2448883050 -15.3091107747
+ 2.3540000000 7.5014495775 0.5938069215 1.0340010599 -18.2577833022 -2.0414774421 12.4032106385 15.3902645641 -10.0455447315 -4.2892200682 -15.3179718438
+ 2.3550000000 7.5156101045 0.5937828387 1.0338129035 -18.3790779351 -1.9778107114 12.4344264471 15.3257083387 -9.6704392942 -4.3325675742 -15.3272038274
+ 2.3560000000 7.5301082607 0.5937595425 1.0336241754 -18.5007440229 -1.9142616853 12.4654936374 15.2612270743 -9.2986791798 -4.3749186096 -15.3368025465
+ 2.3570000000 7.5449397674 0.5937370283 1.0334349050 -18.6227630615 -1.8508541716 12.4964152163 15.1968474352 -8.9303407756 -4.4162619661 -15.3467634017
+ 2.3580000000 7.5601003092 0.5937152918 1.0332451232 -18.7451163190 -1.7876121781 12.5271865505 15.1325955599 -8.5654996312 -4.4565873365 -15.3570817321
+ 2.3590000000 7.5755854891 0.5936943292 1.0330548620 -18.8677847937 -1.7245599309 12.5577954548 15.0684972162 -8.2042303317 -4.4958854156 -15.3677527874
+ 2.3600000000 7.5913903581 0.5936741362 1.0328641526 -18.9907485786 -1.6617224374 12.5882370855 15.0045784561 -7.8466067479 -4.5341477020 -15.3787712153
+ 2.3610000000 7.6075094077 0.5936547080 1.0326730249 -19.1139868551 -1.5991254855 12.6185142548 14.9408656209 -7.4927020100 -4.5713665069 -15.3901310522
+ 2.3620000000 7.6239368132 0.5936360396 1.0324815092 -19.2374782353 -1.5367953348 12.6486298082 14.8773849918 -7.1425883342 -4.6075350798 -15.4018259903
+ 2.3630000000 7.6406666861 0.5936181264 1.0322896367 -19.3612011191 -1.4747583988 12.6785787719 14.8141624292 -6.7963368456 -4.6426477351 -15.4138496532
+ 2.3640000000 7.6576930747 0.5936009640 1.0320974399 -19.4851337033 -1.4130412322 12.7083484576 14.7512233668 -6.4540175521 -4.6766998630 -15.4261955950
+ 2.3650000000 7.6750094807 0.5935845476 1.0319049503 -19.6092533210 -1.3516711087 12.7379337854 14.6885934886 -6.1156996024 -4.7096877161 -15.4388567731
+ 2.3660000000 7.6926088542 0.5935688720 1.0317121981 -19.7335364383 -1.2906760158 12.7673375558 14.6262987333 -5.7814512622 -4.7416084128 -15.4518255408
+ 2.3670000000 7.7104838478 0.5935539319 1.0315192138 -19.8579590145 -1.2300843325 12.7965625469 14.5643649322 -5.4513397388 -4.7724600613 -15.4650939249
+ 2.3680000000 7.7286270746 0.5935397222 1.0313260287 -19.9824968712 -1.1699245056 12.8256036420 14.5028174418 -5.1254310053 -4.8022418827 -15.4786539086
+ 2.3690000000 7.7470311093 0.5935262385 1.0311326756 -20.1071257014 -1.1102250367 12.8544479920 14.4416811402 -4.8037897779 -4.8309542150 -15.4924974301
+ 2.3700000000 7.7656879957 0.5935134757 1.0309391860 -20.2318203906 -1.0510150663 12.8830905119 14.3809811209 -4.4864797791 -4.8585982885 -15.5066158450
+ 2.3710000000 7.7845892433 0.5935014284 1.0307455902 -20.3565550176 -0.9923243652 12.9115340965 14.3207426959 -4.1735637161 -4.8851762238 -15.5209999210
+ 2.3720000000 7.8037260905 0.5934900911 1.0305519183 -20.4813032297 -0.9341830035 12.9397815579 14.2609910238 -3.8651031049 -4.9106911525 -15.5356401254
+ 2.3730000000 7.8230897655 0.5934794589 1.0303582019 -20.6060386196 -0.8766210230 12.9678278532 14.2017507393 -3.5611580985 -4.9351473353 -15.5505269106
+ 2.3740000000 7.8426714878 0.5934695273 1.0301644734 -20.7307347357 -0.8196684222 12.9956602974 14.1430459515 -3.2617874665 -4.9585501579 -15.5656507138
+ 2.3750000000 7.8624619703 0.5934602912 1.0299707639 -20.8553643924 -0.7633557433 13.0232739707 14.0849009472 -2.9670488614 -4.9809058988 -15.5810014137
+ 2.3760000000 7.8824514184 0.5934517455 1.0297771033 -20.9798996736 -0.7077140625 13.0506719252 14.0273401933 -2.6769987994 -5.0022217207 -15.5965683280
+ 2.3770000000 7.9026297973 0.5934438848 1.0295835215 -21.1043123190 -0.6527746550 13.0778571506 13.9703879587 -2.3916924866 -5.0225057870 -15.6123405063
+ 2.3780000000 7.9229870970 0.5934367047 1.0293900490 -21.2285741085 -0.5985686594 13.1048248343 13.9140679416 -2.1111836496 -5.0417673727 -15.6283070190
+ 2.3790000000 7.9435133352 0.5934302007 1.0291967178 -21.3526568755 -0.5451270589 13.1315625620 13.8584032674 -1.8355245184 -5.0600168556 -15.6444569590
+ 2.3800000000 7.9641980557 0.5934243685 1.0290035580 -21.4765318084 -0.4924812761 13.1580656210 13.8034171980 -1.5647660939 -5.0772654749 -15.6607788955
+ 2.3810000000 7.9850303274 0.5934192032 1.0288105986 -21.6001694556 -0.4406631643 13.1843372914 13.7491331355 -1.2989581320 -5.0935253174 -15.6772608724
+ 2.3820000000 8.0059990145 0.5934147003 1.0286178683 -21.7235401174 -0.3897046699 13.2103809512 13.6955742424 -1.0381489738 -5.1088094274 -15.6938907034
+ 2.3830000000 8.0270930509 0.5934108556 1.0284253964 -21.8466142466 -0.3396374785 13.2361920533 13.6427630583 -0.7823853754 -5.1231319133 -15.7106562706
+ 2.3840000000 8.0483014447 0.5934076658 1.0282332134 -21.9693624647 -0.2904929917 13.2617582250 13.5907214959 -0.5317124930 -5.1365079334 -15.7275455287
+ 2.3850000000 8.0696127683 0.5934051271 1.0280413479 -22.0917548476 -0.2423029423 13.2870748896 13.5394715637 -0.2861741555 -5.1489534454 -15.7445459509
+ 2.3860000000 8.0910151566 0.5934032357 1.0278498273 -22.2137609294 -0.1950993903 13.3121456955 13.4890353728 -0.0458128524 -5.1604851854 -15.7616445261
+ 2.3870000000 8.1124965824 0.5934019878 1.0276586782 -22.3353501029 -0.1489143772 13.3369746064 13.4394347513 0.1893304344 -5.1711207720 -15.7788280595
+ 2.3880000000 8.1340451445 0.5934013806 1.0274679283 -22.4564920429 -0.1037795413 13.3615572564 13.3906908443 0.4192164026 -5.1808788125 -15.7960834854
+ 2.3890000000 8.1556490767 0.5934014115 1.0272776056 -22.5771567273 -0.0597260877 13.3858809221 13.3428241057 0.6438074445 -5.1897788825 -15.8133978753
+ 2.3900000000 8.1772962185 0.5934020784 1.0270877368 -22.6973136917 -0.0167854482 13.4099410599 13.2958550484 0.8630673625 -5.1978412632 -15.8307578652
+ 2.3910000000 8.1989740131 0.5934033784 1.0268983467 -22.8169320314 0.0250107178 13.4337418702 13.2498042530 1.0769613778 -5.2050869139 -15.8481496521
+ 2.3920000000 8.2206697926 0.5934053093 1.0267094595 -22.9359808174 0.0656308871 13.4572880532 13.2046919719 1.2854562989 -5.2115375727 -15.8655593043
+ 2.3930000000 8.2423710834 0.5934078695 1.0265211002 -23.0544295464 0.1050441003 13.4805753127 13.1605377055 1.4885206983 -5.2172158635 -15.8829730918
+ 2.3940000000 8.2640656188 0.5934110585 1.0263332944 -23.1722481664 0.1432199960 13.5035902331 13.1173601934 1.6861249252 -5.2221452704 -15.9003774978
+ 2.3950000000 8.2857407814 0.5934148752 1.0261460657 -23.2894062858 0.1801280832 13.5263282553 13.0751782020 1.8782408053 -5.2263498598 -15.9177586174
+ 2.3960000000 8.3073836007 0.5934193188 1.0259594361 -23.4058731751 0.2157377364 13.5487943075 13.0340105358 2.0648416457 -5.2298542469 -15.9351021549
+ 2.3970000000 8.3289810534 0.5934243888 1.0257734271 -23.5216182054 0.2500185919 13.5709938787 12.9938756224 2.2459024057 -5.2326836969 -15.9523937479
+ 2.3980000000 8.3505203870 0.5934300854 1.0255880606 -23.6366113252 0.2829410195 13.5929226832 12.9547910675 2.4213998787 -5.2348642321 -15.9696193163
+ 2.3990000000 8.3719891318 0.5934364098 1.0254033590 -23.7508230857 0.3144761585 13.6145665344 12.9167736461 2.5913127007 -5.2364226019 -15.9867650730
+ 2.4000000000 8.3933745122 0.5934433633 1.0252193431 -23.8642238017 0.3445951081 13.6359209267 12.8798401333 2.7556210326 -5.2373859890 -16.0038168929
+ 2.4010000000 8.4146634451 0.5934509467 1.0250360319 -23.9767835554 0.3732689225 13.6569916247 12.8440073142 2.9143065609 -5.2377819717 -16.0207603114
+ 2.4020000000 8.4358428586 0.5934591616 1.0248534435 -24.0884726622 0.4004690500 13.6777848441 12.8092915462 3.0673526738 -5.2376386268 -16.0375808668
+ 2.4030000000 8.4569000267 0.5934680104 1.0246715971 -24.1992621648 0.4261678392 13.6982963614 12.7757083005 3.2147446437 -5.2369846363 -16.0542644599
+ 2.4040000000 8.4778225795 0.5934774963 1.0244905120 -24.3091238561 0.4503385712 13.7185114930 12.7432721561 3.3564696316 -5.2358492518 -16.0707973641
+ 2.4050000000 8.4985978877 0.5934876226 1.0243102059 -24.4180294012 0.4729545749 13.7384259624 12.7119976653 3.4925163523 -5.2342619886 -16.0871655689
+ 2.4060000000 8.5192130626 0.5934983923 1.0241306948 -24.5259503451 0.4939892260 13.7580463561 12.6818993600 3.6228750741 -5.2322525860 -16.1033547822
+ 2.4070000000 8.5396552916 0.5935098090 1.0239519942 -24.6328586044 0.5134164291 13.7773794781 12.6529912937 3.7475377977 -5.2298511117 -16.1193507893
+ 2.4080000000 8.5599121757 0.5935218770 1.0237741201 -24.7387269650 0.5312111397 13.7964213224 12.6252865797 3.8664984361 -5.2270880654 -16.1351398141
+ 2.4090000000 8.5799717356 0.5935346016 1.0235970891 -24.8435291015 0.5473493874 13.8151572239 12.5987973909 3.9797528132 -5.2239943386 -16.1507085263
+ 2.4100000000 8.5998217814 0.5935479880 1.0234209162 -24.9472386784 0.5618073423 13.8335833397 12.5735358410 4.0872983209 -5.2206009039 -16.1660433745
+ 2.4110000000 8.6194499159 0.5935620411 1.0232456147 -25.0498293643 0.5745613211 13.8517069516 12.5495139872 4.1891339160 -5.2169387734 -16.1811305910
+ 2.4120000000 8.6388438782 0.5935767661 1.0230711975 -25.1512753377 0.5855883022 13.8695353278 12.5267433595 4.2852603008 -5.2130391043 -16.1959565608
+ 2.4130000000 8.6579918779 0.5935921691 1.0228976781 -25.2515517792 0.5948664379 13.8870648811 12.5052345059 4.3756800961 -5.2089332979 -16.2105081780
+ 2.4140000000 8.6768825960 0.5936082571 1.0227250706 -25.3506348842 0.6023750650 13.9042814746 12.4849969967 4.4603978356 -5.2046529566 -16.2247728491
+ 2.4150000000 8.6955045551 0.5936250366 1.0225533875 -25.4485009667 0.6080937644 13.9211818486 12.4660403034 4.5394196210 -5.2002295744 -16.2387378291
+ 2.4160000000 8.7138461239 0.5936425140 1.0223826398 -25.5451264757 0.6120023753 13.9377738259 12.4483737993 4.6127531174 -5.1956944959 -16.2523902287
+ 2.4170000000 8.7318958619 0.5936606957 1.0222128380 -25.6404885042 0.6140815216 13.9540650893 12.4320062874 4.6804077305 -5.1910790202 -16.2657173829
+ 2.4180000000 8.7496428450 0.5936795890 1.0220439934 -25.7345652678 0.6143130918 13.9700526284 12.4169455553 4.7423947729 -5.1864144958 -16.2787072007
+ 2.4190000000 8.7670766634 0.5936992017 1.0218761178 -25.8273361137 0.6126802382 13.9857231197 12.4031983827 4.7987274539 -5.1817322770 -16.2913481655
+ 2.4200000000 8.7841868030 0.5937195415 1.0217092216 -25.9187806383 0.6091664724 14.0010739343 12.3907714077 4.8494205390 -5.1770634200 -16.3036286815
+ 2.4210000000 8.8009626497 0.5937406153 1.0215433136 -26.0088787032 0.6037556858 14.0161133374 12.3796711277 4.8944903424 -5.1724386429 -16.3155370804
+ 2.4220000000 8.8173938283 0.5937624302 1.0213784021 -26.0976109352 0.5964326610 14.0308494804 12.3699034339 4.9339548981 -5.1678884268 -16.3270619845
+ 2.4230000000 8.8334705200 0.5937849941 1.0212144963 -26.1849591937 0.5871835082 14.0452799926 12.3614731742 4.9678341205 -5.1634431100 -16.3381926496
+ 2.4240000000 8.8491834599 0.5938083151 1.0210516057 -26.2709065755 0.5759956564 14.0593923360 12.3543841616 4.9961497915 -5.1591328448 -16.3489189652
+ 2.4250000000 8.8645233323 0.5938324011 1.0208897386 -26.3554365483 0.5628570160 14.0731844533 12.3486400282 5.0189252244 -5.1549872938 -16.3592308096
+ 2.4260000000 8.8794807743 0.5938572594 1.0207289016 -26.4385329613 0.5477559989 14.0866650645 12.3442442293 5.0361852526 -5.1510356057 -16.3691180542
+ 2.4270000000 8.8940467053 0.5938828971 1.0205691009 -26.5201805305 0.5306819946 14.0998429572 12.3411995884 5.0479563926 -5.1473065319 -16.3785709179
+ 2.4280000000 8.9082126404 0.5939093221 1.0204103432 -26.6003653019 0.5116257656 14.1127163722 12.3395078618 5.0542670072 -5.1438284236 -16.3875803087
+ 2.4290000000 8.9219706898 0.5939365426 1.0202526361 -26.6790746530 0.4905794361 14.1252732421 12.3391697446 5.0551472882 -5.1406292439 -16.3961378242
+ 2.4300000000 8.9353129634 0.5939645660 1.0200959852 -26.7562964290 0.4675357209 14.1375119681 12.3401857190 5.0506288973 -5.1377366532 -16.4042351130
+ 2.4310000000 8.9482315757 0.5939933998 1.0199403948 -26.8320189476 0.4424879548 14.1494418755 12.3425560786 5.0407449997 -5.1351772100 -16.4118638621
+ 2.4320000000 8.9607189581 0.5940230511 1.0197858685 -26.9062314802 0.4154305374 14.1610726135 12.3462804848 5.0255304762 -5.1329755993 -16.4190161356
+ 2.4330000000 8.9727681756 0.5940535270 1.0196324111 -26.9789246916 0.3863592088 14.1724029087 12.3513574449 5.0050217679 -5.1311596401 -16.4256847940
+ 2.4340000000 8.9843729708 0.5940848355 1.0194800272 -27.0500906303 0.3552710968 14.1834207091 12.3577844135 4.9792570352 -5.1297576546 -16.4318634416
+ 2.4350000000 8.9955271154 0.5941169864 1.0193287182 -27.1197219857 0.3221643529 14.1941250174 12.3655588869 4.9482770601 -5.1287793063 -16.4375455109
+ 2.4360000000 9.0062241263 0.5941499837 1.0191784868 -27.1878120968 0.2870377165 14.2045261447 12.3746777691 4.9121235243 -5.1282352023 -16.4427246619
+ 2.4370000000 9.0164574657 0.5941838192 1.0190293441 -27.2543552790 0.2498902718 14.2146344012 12.3851363431 4.8708366928 -5.1281671983 -16.4473956343
+ 2.4380000000 9.0262213165 0.5942184873 1.0188813003 -27.3193473557 0.2107227119 14.2244488603 12.3969288967 4.8244596037 -5.1286123168 -16.4515538243
+ 2.4390000000 9.0355109323 0.5942539933 1.0187343589 -27.3827856311 0.1695378048 14.2339576894 12.4100494036 4.7730400169 -5.1295839743 -16.4551948630
+ 2.4400000000 9.0443218301 0.5942903439 1.0185885216 -27.4446678329 0.1263389528 14.2431603756 12.4244918073 4.7166262019 -5.1310985061 -16.4583145309
+ 2.4410000000 9.0526496088 0.5943275441 1.0184437902 -27.5049921649 0.0811301083 14.2520682995 12.4402498043 4.6552665921 -5.1331771190 -16.4609088410
+ 2.4420000000 9.0604902928 0.5943655996 1.0183001658 -27.5637578706 0.0339164021 14.2606934692 12.4573165189 4.5890114722 -5.1358376785 -16.4629742009
+ 2.4430000000 9.0678406971 0.5944045172 1.0181576505 -27.6209656769 -0.0152955252 14.2690357495 12.4756840219 4.5179130582 -5.1390978081 -16.4645078074
+ 2.4440000000 9.0746984273 0.5944443049 1.0180162472 -27.6766177703 -0.0664975572 14.2770828245 12.4953433181 4.4420252714 -5.1429761793 -16.4655076722
+ 2.4450000000 9.0810612480 0.5944849708 1.0178759577 -27.7307168916 -0.1196807814 14.2848344940 12.5162853208 4.3614032607 -5.1474890344 -16.4659718979
+ 2.4460000000 9.0869270843 0.5945265235 1.0177367827 -27.7832663167 -0.1748355122 14.2923033022 12.5385008841 4.2761033415 -5.1526501522 -16.4658986643
+ 2.4470000000 9.0922943601 0.5945689726 1.0175987228 -27.8342703216 -0.2319509486 14.2995022995 12.5619803248 4.1861831903 -5.1584725113 -16.4652865988
+ 2.4480000000 9.0971623565 0.5946123291 1.0174617800 -27.8837346566 -0.2910147535 14.3064316422 12.5867129261 4.0917023283 -5.1649693497 -16.4641351438
+ 2.4490000000 9.1015312174 0.5946566053 1.0173259576 -27.9316665317 -0.3520130377 14.3130786374 12.6126869526 3.9927221588 -5.1721539583 -16.4624445473
+ 2.4500000000 9.1054012794 0.5947018143 1.0171912582 -27.9780736910 -0.4149311379 14.3194433649 12.6398906366 3.8893051220 -5.1800373621 -16.4602151462
+ 2.4510000000 9.1087730604 0.5947479697 1.0170576832 -28.0229643959 -0.4797536574 14.3255392414 12.6683121991 3.7815145822 -5.1886283792 -16.4574473581
+ 2.4520000000 9.1116476162 0.5947950863 1.0169252348 -28.0663478930 -0.5464640940 14.3313800211 12.6979393694 3.6694151538 -5.1979348761 -16.4541420489
+ 2.4530000000 9.1140269173 0.5948431806 1.0167939167 -28.1082348803 -0.6150443672 14.3369659347 12.7287588800 3.5530733840 -5.2079647595 -16.4503008964
+ 2.4540000000 9.1159138438 0.5948922710 1.0166637347 -28.1486374905 -0.6854748035 14.3422838277 12.7607564746 3.4325577963 -5.2187258181 -16.4459263812
+ 2.4550000000 9.1173114662 0.5949423763 1.0165346939 -28.1875683700 -0.7577350207 14.3473338130 12.7939179054 3.3079376895 -5.2302237484 -16.4410210728
+ 2.4560000000 9.1182230220 0.5949935159 1.0164067991 -28.2250406656 -0.8318039790 14.3521297691 12.8282289457 3.1792829993 -5.2424621180 -16.4355876232
+ 2.4570000000 9.1186522903 0.5950457101 1.0162800556 -28.2610684892 -0.9076595638 14.3566857369 12.8636749032 3.0466647823 -5.2554433068 -16.4296291315
+ 2.4580000000 9.1186039875 0.5950989812 1.0161544713 -28.2956673697 -0.9852780651 14.3610017438 12.9002401060 2.9101561317 -5.2691698127 -16.4231495031
+ 2.4590000000 9.1180837457 0.5951533532 1.0160300566 -28.3288542357 -1.0646341705 14.3650640317 12.9379079010 2.7698322179 -5.2836442058 -16.4161534427
+ 2.4600000000 9.1170973448 0.5952088503 1.0159068213 -28.3606465102 -1.1457019594 14.3688724569 12.9766616642 2.6257686587 -5.2988669503 -16.4086457443
+ 2.4610000000 9.1156506768 0.5952654964 1.0157847750 -28.3910621045 -1.2284549573 14.3724409313 13.0164848010 2.4780413703 -5.3148361892 -16.4006312869
+ 2.4620000000 9.1137501389 0.5953233164 1.0156639285 -28.4201198728 -1.3128656657 14.3757833814 13.0573602519 2.3267272648 -5.3315485508 -16.3921153940
+ 2.4630000000 9.1114030392 0.5953823367 1.0155442953 -28.4478400421 -1.3989050132 14.3788993744 13.0992699703 2.1719053759 -5.3490013083 -16.3831041908
+ 2.4640000000 9.1086175599 0.5954425847 1.0154258919 -28.4742441935 -1.4865423631 14.3817744253 13.1421949143 2.0136568788 -5.3671925020 -16.3736045975
+ 2.4650000000 9.1054019499 0.5955040875 1.0153087344 -28.4993543855 -1.5757465903 14.3844079045 13.1861160708 1.8520630337 -5.3861176522 -16.3636236216
+ 2.4660000000 9.1017644805 0.5955668715 1.0151928383 -28.5231931526 -1.6664861344 14.3868134469 13.2310144443 1.6872050548 -5.4057693581 -16.3531683547
+ 2.4670000000 9.0977138524 0.5956309628 1.0150782205 -28.5457839450 -1.7587284833 14.3890046301 13.2768705498 1.5191650436 -5.4261384120 -16.3422463282
+ 2.4680000000 9.0932596011 0.5956963886 1.0149649008 -28.5671515286 -1.8524396245 14.3909804507 13.3236638912 1.3480272429 -5.4472172606 -16.3308658679
+ 2.4690000000 9.0884120448 0.5957631764 1.0148529021 -28.5873219620 -1.9475840693 14.3927256827 13.3713729552 1.1738780118 -5.4690002733 -16.3190360870
+ 2.4700000000 9.0831814621 0.5958313523 1.0147422467 -28.6063217597 -2.0441259666 14.3942391529 13.4199762420 0.9968034573 -5.4914784483 -16.3067661762
+ 2.4710000000 9.0775780452 0.5959009410 1.0146329557 -28.6241778924 -2.1420291506 14.3955341620 13.4694522443 0.8168893480 -5.5146388667 -16.2940654004
+ 2.4720000000 9.0716123112 0.5959719664 1.0145250513 -28.6409182048 -2.2412565998 14.3966239993 13.5197789299 0.6342222499 -5.5384666269 -16.2809434522
+ 2.4730000000 9.0652954925 0.5960444520 1.0144185584 -28.6565717806 -2.3417699151 14.3975072022 13.5709332347 0.4488907814 -5.5629498787 -16.2674108036
+ 2.4740000000 9.0586394770 0.5961184208 1.0143135051 -28.6711689132 -2.4435293582 14.3981679161 13.6228910664 0.2609855287 -5.5880801822 -16.2534786963
+ 2.4750000000 9.0516560013 0.5961938939 1.0142099176 -28.6847403171 -2.5464949495 14.3986045663 13.6756283267 0.0705965749 -5.6138445325 -16.2391584277
+ 2.4760000000 9.0443566098 0.5962708900 1.0141078208 -28.6973171248 -2.6506265106 14.3988303639 13.7291208867 -0.1221865234 -5.6402247303 -16.2244613449
+ 2.4770000000 9.0367530563 0.5963494265 1.0140072394 -28.7089312756 -2.7558831272 14.3988587166 13.7833440688 -0.3172734927 -5.6672005619 -16.2093991970
+ 2.4780000000 9.0288576692 0.5964295193 1.0139082009 -28.7196158474 -2.8622226681 14.3986880124 13.8382721664 -0.5145722236 -5.6947564932 -16.1939844854
+ 2.4790000000 9.0206832909 0.5965111830 1.0138107347 -28.7294050212 -2.9696018323 14.3983019070 13.8938784642 -0.7139889134 -5.7228820543 -16.1782304487
+ 2.4800000000 9.0122425196 0.5965944294 1.0137148680 -28.7383333392 -3.0779771895 14.3976987213 13.9501362344 -0.9154303857 -5.7515608102 -16.1621503425
+ 2.4810000000 9.0035476803 0.5966792684 1.0136206253 -28.7464356937 -3.1873052229 14.3968921130 14.0070187165 -1.1188040511 -5.7807697303 -16.1457574289
+ 2.4820000000 8.9946112025 0.5967657074 1.0135280304 -28.7537476821 -3.2975418221 14.3958962890 14.0644986137 -1.3240166883 -5.8104839244 -16.1290653275
+ 2.4830000000 8.9854459547 0.5968537521 1.0134371090 -28.7603059155 -3.4086418381 14.3947098748 14.1225476446 -1.5309735676 -5.8406848339 -16.1120883662
+ 2.4840000000 8.9760651938 0.5969434057 1.0133478876 -28.7661479760 -3.5205591276 14.3933160548 14.1811365831 -1.7395786336 -5.8713605545 -16.0948415604
+ 2.4850000000 8.9664818749 0.5970346691 1.0132603897 -28.7713117123 -3.6332475288 14.3917133711 14.2402362155 -1.9497364478 -5.9024918059 -16.0773398832
+ 2.4860000000 8.9567086363 0.5971275413 1.0131746354 -28.7758352138 -3.7466609116 14.3899166270 14.2998173357 -2.1613521030 -5.9340513868 -16.0595982472
+ 2.4870000000 8.9467581444 0.5972220188 1.0130906433 -28.7797571334 -3.8607527134 14.3879416233 14.3598502690 -2.3743301652 -5.9660105739 -16.0416318547
+ 2.4880000000 8.9366434017 0.5973180959 1.0130084328 -28.7831169887 -3.9754755026 14.3857875467 14.4203044501 -2.5885740820 -5.9983484240 -16.0234565549
+ 2.4890000000 8.9263777130 0.5974157644 1.0129280233 -28.7859551146 -4.0907810105 14.3834369196 14.4811484803 -2.8039863761 -6.0310519555 -16.0050888164
+ 2.4900000000 8.9159740636 0.5975150144 1.0128494306 -28.7883119736 -4.2066210738 14.3808887612 14.5423510467 -3.0204700779 -6.0640996108 -15.9865449824
+ 2.4910000000 8.9054451167 0.5976158343 1.0127726665 -28.7902281130 -4.3229476978 14.3781597354 14.6038809385 -3.2379286257 -6.0974608690 -15.9678412438
+ 2.4920000000 8.8948035248 0.5977182111 1.0126977412 -28.7917444656 -4.4397126273 14.3752679254 14.6657066031 -3.4562650642 -6.1311041689 -15.9489939913
+ 2.4930000000 8.8840622217 0.5978221292 1.0126246645 -28.7929026591 -4.5568668780 14.3722132406 14.7277957373 -3.6753817067 -6.1650067872 -15.9300201833
+ 2.4940000000 8.8732344081 0.5979275708 1.0125534455 -28.7937449668 -4.6743607503 14.3689772187 14.7901153564 -3.8951803076 -6.1991548137 -15.9109373132
+ 2.4950000000 8.8623329768 0.5980345176 1.0124840898 -28.7943136060 -4.7921448015 14.3655595892 14.8526326878 -4.1155629855 -6.2335249568 -15.8917626428
+ 2.4960000000 8.8513705201 0.5981429505 1.0124165990 -28.7946506850 -4.9101699229 14.3619794224 14.9153152030 -4.3364321399 -6.2680843806 -15.8725131709
+ 2.4970000000 8.8403596180 0.5982528494 1.0123509730 -28.7947984991 -5.0283869075 14.3582571769 14.9781301991 -4.5576899373 -6.3027998105 -15.8532059934
+ 2.4980000000 8.8293131181 0.5983641926 1.0122872106 -28.7947998431 -5.1467459469 14.3543938807 15.0410444038 -4.7792381312 -6.3376473255 -15.8338586740
+ 2.4990000000 8.8182441367 0.5984769566 1.0122253100 -28.7946979669 -5.2651966084 14.3503705118 15.1040240447 -5.0009781991 -6.3726120814 -15.8144892103
+ 2.4990000000 8.8182441367 0.5984769566 1.0122253100 -28.7946979669 -5.2651966084 14.3503705118 15.1040240447 -5.0009781991 -6.3726120814 -15.8144892102
diff --git a/Bindings/Python/tutorials/resources/Tutorial 7/sliding_mass.png b/Bindings/Python/tutorials/resources/Tutorial 7/sliding_mass.png
new file mode 100644
index 0000000000..0dc3dea845
Binary files /dev/null and b/Bindings/Python/tutorials/resources/Tutorial 7/sliding_mass.png differ
diff --git a/Bindings/Python/tutorials/resources/Tutorial 8/images/device_optimization.png b/Bindings/Python/tutorials/resources/Tutorial 8/images/device_optimization.png
new file mode 100644
index 0000000000..1ce61420fa
Binary files /dev/null and b/Bindings/Python/tutorials/resources/Tutorial 8/images/device_optimization.png differ
diff --git a/Bindings/Python/tutorials/resources/Tutorial 8/images/model.png b/Bindings/Python/tutorials/resources/Tutorial 8/images/model.png
new file mode 100644
index 0000000000..96c11fcf2b
Binary files /dev/null and b/Bindings/Python/tutorials/resources/Tutorial 8/images/model.png differ
diff --git a/Bindings/Python/tutorials/resources/Tutorial 8/images/muscle_synergies.png b/Bindings/Python/tutorials/resources/Tutorial 8/images/muscle_synergies.png
new file mode 100644
index 0000000000..706216c458
Binary files /dev/null and b/Bindings/Python/tutorials/resources/Tutorial 8/images/muscle_synergies.png differ
diff --git a/Bindings/Python/tutorials/resources/Tutorial 8/images/squat_to_stand.png b/Bindings/Python/tutorials/resources/Tutorial 8/images/squat_to_stand.png
new file mode 100644
index 0000000000..ff4e5bb587
Binary files /dev/null and b/Bindings/Python/tutorials/resources/Tutorial 8/images/squat_to_stand.png differ
diff --git a/Bindings/Python/tutorials/resources/Tutorial 8/ipopt.opt b/Bindings/Python/tutorials/resources/Tutorial 8/ipopt.opt
new file mode 100644
index 0000000000..8f5f49c985
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 8/ipopt.opt
@@ -0,0 +1,2 @@
+output_file opensim.log
+file_append yes
\ No newline at end of file
diff --git a/Bindings/Python/tutorials/resources/Tutorial 8/squatToStand_3dof9musc.osim b/Bindings/Python/tutorials/resources/Tutorial 8/squatToStand_3dof9musc.osim
new file mode 100644
index 0000000000..51595a9bbe
--- /dev/null
+++ b/Bindings/Python/tutorials/resources/Tutorial 8/squatToStand_3dof9musc.osim
@@ -0,0 +1,2730 @@
+
+
+
+
+
+ true
+ true
+ -1
+ 1
+ false
+ false
+
+
+
+ 100
+ 20
+
+
+
+ true
+
+ -Inf
+
+ Inf
+
+ Unassigned
+
+ 300
+
+
+
+ true
+
+ -Inf
+
+ Inf
+
+
+
+ 0 0 0
+
+ false
+
+ -1 -0 -0
+
+ true
+
+ 1000
+
+
+
+ true
+
+ -Inf
+
+ Inf
+
+ Unassigned
+
+ Unassigned
+
+ true
+
+ -1 -0 -0
+
+ 1
+
+
+
+ true
+
+ 0.01
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0.80000000000000004 0.10000000000000001 0.10000000000000001
+
+
+
+ 1
+
+ 546
+
+ 0.053499999999999999
+
+ 0.078
+
+ 0
+
+ 10
+
+
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+
+
+
+
+
+
+
+
+ 0 -9.8066499999999994 0
+
+ Rajagopal 2016 model reduced to 3 DOFS and 9 muscles, using max isometric forces from Carmichael Ong's "gait8dof18musc."
+
+
+
+ meters
+
+ N
+
+
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+
+
+
+ ..
+
+ 1 1 1
+
+
+
+ 1
+
+ 1 1 1
+
+
+ r_pelvis.vtp
+
+
+
+ ..
+
+ 1 1 1
+
+
+
+ 1
+
+ 1 1 1
+
+
+ l_pelvis.vtp
+
+
+
+ ..
+
+ 1 1 1
+
+
+
+ 1
+
+ 1 1 1
+
+
+ sacrum.vtp
+
+
+
+
+
+
+
+ true
+
+ -0.59999999999999998 0.45000000000000001 0
+
+ -0.076999999999999999 -0.099000000000000005 0.060999999999999999
+
+ -x
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.040000000000000001
+
+ 0.14999999999999999
+
+
+
+ true
+
+ -0.75 0.39000000000000001 0
+
+ -0.080000000000000002 -0.083000000000000004 0.068000000000000005
+
+ all
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.040000000000000001
+
+ 0.10000000000000001
+
+
+
+ true
+
+ -0.10000000000000001 0 0
+
+ -0.083000000000000004 -0.087999999999999995 0.068000000000000005
+
+ all
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.040000000000000001
+
+ 0.10000000000000001
+
+
+
+ true
+
+ 0.59999999999999998 -0.45000000000000001 0
+
+ -0.076999999999999999 -0.099000000000000005 -0.060999999999999999
+
+ -x
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.040000000000000001
+
+ 0.14999999999999999
+
+
+
+ true
+
+ 0.75 -0.39000000000000001 0
+
+ -0.080000000000000002 -0.083000000000000004 -0.068000000000000005
+
+ all
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.040000000000000001
+
+ 0.10000000000000001
+
+
+
+ true
+
+ 0.10000000000000001 0 0
+
+ -0.083000000000000004 -0.087999999999999995 -0.068000000000000005
+
+ all
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.040000000000000001
+
+ 0.10000000000000001
+
+
+
+ true
+
+ -0.25 -0.27000000000000002 0.10000000000000001
+
+ -0.073999999999999996 -0.059999999999999998 0.065600000000000006
+
+ -y
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.050000000000000003
+
+ 0.10000000000000001
+
+
+
+ true
+
+ 0.25 0.27000000000000002 0.10000000000000001
+
+ -0.073999999999999996 -0.059999999999999998 -0.065600000000000006
+
+ -y
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.050000000000000003
+
+ 0.10000000000000001
+
+
+
+ true
+
+ -0.32000000000000001 -0.23999999999999999 0.90000000000000002
+
+ -0.070999999999999994 -0.065000000000000002 0.075600000000000001
+
+ -y
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.054899999999999997
+
+ 0.10000000000000001
+
+
+
+ true
+
+ 0.32000000000000001 0.23999999999999999 0.90000000000000002
+
+ -0.070999999999999994 -0.065000000000000002 -0.075600000000000001
+
+ -y
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.054899999999999997
+
+ 0.10000000000000001
+
+
+
+
+
+ 11.776999999999999
+
+ -0.070699999999999999 0 0
+
+ 0.1028 0.087099999999999997 0.0579 0 0 0
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+
+
+
+ ..
+
+ 1 1 1
+
+
+
+ 1
+
+ 1 1 1
+
+
+ femur_r.vtp
+
+
+
+
+
+
+
+ true
+
+ 0 0 0
+
+ 0.0050000000000000001 -0.40999999999999998 0
+
+ all
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.025000000000000001
+
+ 0.10000000000000001
+
+
+
+ true
+
+ -0.062336599999999999 0.050760100000000002 0
+
+ 0.0035882800000000001 -0.40273199999999998 0.0020911100000000002
+
+ all
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.025000000000000001
+
+ 0.10000000000000001
+
+
+
+ true
+
+ 1.66157 0.186644 0
+
+ 0.014643400000000001 -0.112595 0.023365
+
+ all
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.016500000000000001
+
+ 0.070000000000000007
+
+
+
+ true
+
+ 1.77711 0.136489 0
+
+ 0.030732700000000002 -0.231909 0.015113700000000001
+
+ all
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.0201
+
+ 0.10000000000000001
+
+
+
+ true
+
+ 1.6112599999999999 0.18656 0
+
+ 0.0051829900000000002 -0.072894799999999996 0.025402999999999998
+
+ all
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.021100000000000001
+
+ 0.070000000000000007
+
+
+
+ true
+
+ 1.6113900000000001 0.13655999999999999 0
+
+ 0.023012500000000002 -0.16071099999999999 0.0205842
+
+ all
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.021399999999999999
+
+ 0.12
+
+
+
+ true
+
+ 1.7118800000000001 0.186636 0
+
+ 0.031606500000000003 -0.26073600000000002 0.0093646000000000007
+
+ all
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.0218
+
+ 0.20000000000000001
+
+
+
+ true
+
+ 1.7111499999999999 -0.46336300000000002 0
+
+ -0.0226511 -0.37683100000000003 -0.0031543700000000001
+
+ all
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.040000000000000001
+
+ 0.23999999999999999
+
+
+
+ true
+
+ 1.8129500000000001 0.27634399999999998 0
+
+ 0.0060857300000000001 -0.084502900000000006 0.030440499999999999
+
+ all
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.014999999999999999
+
+ 0.050000000000000003
+
+
+
+
+
+ 9.3013999999999992
+
+ 0 -0.17000000000000001 0
+
+ 0.13389999999999999 0.035099999999999999 0.14119999999999999 0 0 0
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+
+
+
+ ..
+
+ 1 1 1
+
+
+
+ 1
+
+ 1 1 1
+
+
+ tibia_r.vtp
+
+
+
+ ..
+
+ 1 1 1
+
+
+
+ 1
+
+ 1 1 1
+
+
+ r_fibula.vtp
+
+
+
+
+
+
+
+ true
+
+ 2.9672299999999998 -0.279725 -1.4781200000000001
+
+ -0.0074000000000000003 -0.073999999999999996 -0.0033
+
+ -y
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.055
+
+ 0.10000000000000001
+
+
+
+ true
+
+ 2.9672299999999998 0.027972500000000001 -1.4781200000000001
+
+ -0.0074000000000000003 -0.073999999999999996 -0.0033
+
+ -y
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.055
+
+ 0.10000000000000001
+
+
+
+ true
+
+ 0 -0.40000000000000002 0
+
+ -0.0030000000000000001 -0.02 0
+
+ all
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.035999999999999997
+
+ 0.10000000000000001
+
+
+
+ true
+
+ 0 -0.10000000000000001 0
+
+ -0.001 -0.02 0
+
+ all
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.035200000000000002
+
+ 0.10000000000000001
+
+
+
+ true
+
+ 0 -0.20000000000000001 0
+
+ -0.002 -0.020500000000000001 0
+
+ all
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.042500000000000003
+
+ 0.10000000000000001
+
+
+
+ true
+
+ 0 0 0
+
+ -0.058000000000000003 -0.059999999999999998 0
+
+ y
+
+
+
+ false
+
+ 0.5
+
+ 0 1 1
+
+
+
+ 3
+
+
+
+ 0.029999999999999999
+
+ 0.14999999999999999
+
+
+
+
+
+ 3.7075
+
+ 0 -0.1867 0
+
+ 0.0504 0.0051000000000000004 0.0511 0 0 0
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+
+
+
+ ..
+
+ 1 1 1
+
+
+
+ 1
+
+ 1 1 1
+
+
+ r_patella.vtp
+
+
+
+
+
+
+
+
+ 0.086199999999999999
+
+ 0.0018 0.0264 0
+
+ 2.8700000000000001e-06 1.311e-05 1.311e-05 0 0 0
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+
+
+
+ ..
+
+ 1 1 1
+
+
+
+ false
+
+ 1
+
+ 1 1 1
+
+
+ r_talus.vtp
+
+
+
+
+
+
+
+
+ 0.10000000000000001
+
+ 0 0 0
+
+ 0.001 0.001 0.001 0 0 0
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+
+
+
+ ..
+
+ 1 1 1
+
+
+
+ 1
+
+ 1 1 1
+
+
+ r_foot.vtp
+
+
+
+
+
+
+
+
+ 1.25
+
+ 0.10000000000000001 0.029999999999999999 0
+
+ 0.0014 0.0038999999999999998 0.0041000000000000003 0 0 0
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+
+
+
+ ..
+
+ 1 1 1
+
+
+
+ 1
+
+ 1 1 1
+
+
+ r_bofoot.vtp
+
+
+
+
+
+
+
+
+ 0.21659999999999999
+
+ 0.034599999999999999 0.0060000000000000001 -0.017500000000000002
+
+ 0.0001 0.00020000000000000001 0.001 0 0 0
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+
+
+
+ ..
+
+ 1 1 1
+
+
+
+ 1
+
+ 1 1 1
+
+
+ hat_spine.vtp
+
+
+
+ ..
+
+ 1 1 1
+
+
+
+ 1
+
+ 1 1 1
+
+
+ hat_jaw.vtp
+
+
+
+ ..
+
+ 1 1 1
+
+
+
+ 1
+
+ 1 1 1
+
+
+ hat_skull.vtp
+
+
+
+ ..
+
+ 1 1 1
+
+
+
+ 1
+
+ 1 1 1
+
+
+ hat_ribs_scap.vtp
+
+
+
+
+
+
+
+
+ 26.826599999999999
+
+ -0.029999999999999999 0.32000000000000001 0
+
+ 1.4744999999999999 0.75549999999999995 1.4314 0 0 0
+
+
+
+
+
+
+
+
+ ground_offset
+ calcn_r_offset
+
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+ /bodyset/calcn_r
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+ /ground
+
+ -0.11504646000000002 0.005134800000000099 0.083914739999999988
+
+ 0 0 0
+
+
+
+
+
+ tibia_r_offset
+
+ femur_r_offset
+
+
+
+
+ 0
+
+ 0
+
+ -2.09439999999999980 0
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+ /bodyset/femur_r
+
+ -0.00809 -0.40795999999999999 -0.0027499999999999998
+
+ -1.5708 1.5708 1.5708
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+ /bodyset/tibia_r
+
+ -0.0080895399999999992 -0.0035347999999999998 -0.00148474
+
+ -1.5708 1.5708 1.5708
+
+
+
+
+
+
+
+ knee_angle_r
+
+ 1 0 0
+
+
+ 1 0
+
+
+
+
+
+
+ 0 0 1
+
+
+ 0
+
+
+
+
+
+
+ 0 1 0
+
+
+ 0
+
+
+
+
+
+ knee_angle_r
+
+ 0 1 0
+
+
+ 0 0.174533 0.349066 0.523599 0.698132 0.872665 1.0472 1.22173 1.39626 1.5708 1.74533 1.91986 2.0944
+ 0 0.000479 0.000835 0.001086 0.001251 0.001346 0.001391 0.001403 0.0014 0.0014 0.001421 0.001481 0.001599
+
+
+
+
+ knee_angle_r
+
+ 0 0 1
+
+
+ 0 0.174533 0.349066 0.523599 0.698132 0.872665 1.0472 1.22173 1.39626 1.5708 1.74533 1.91986 2.0944
+ 0 0.000988 0.001899 0.002734 0.003492 0.004173 0.004777 0.005305 0.005756 0.00613 0.006427 0.006648 0.006792
+
+
+
+
+
+
+ 1 0 0
+
+
+ 0
+
+
+
+
+
+
+ femur_r_offset
+
+ patella_r_offset
+
+
+
+
+ 0
+
+ 0
+
+ -5 5
+
+ false
+
+ false
+
+
+
+ false
+
+
+
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+ /bodyset/femur_r
+
+ -0.00809 -0.40795999999999999 -0.0027499999999999998
+
+ 0 0 0
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+ /bodyset/patella_r
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+
+
+ knee_angle_r_beta
+
+ 0 0 1
+
+
+ 0 0.174533 0.349066 0.523599 0.698132 0.872665 1.0472 1.22173 1.39626 1.5708 1.74533 1.91986 2.0944
+ 0.00113686 -0.00629212 -0.105582 -0.253683 -0.414245 -0.579047 -0.747244 -0.91799 -1.09044 -1.26379 -1.43763 -1.61186 -1.78634
+
+
+
+
+
+
+ 0 1 0
+
+
+ 0
+
+
+
+
+
+
+ 1 0 0
+
+
+ 0
+
+
+
+
+
+ knee_angle_r_beta
+
+ 1 0 0
+
+
+ 0 0.174533 0.349066 0.523599 0.698132 0.872665 1.0472 1.22173 1.39626 1.5708 1.74533 1.91986 2.0944
+ 0.0524 0.0488 0.0437 0.0371 0.0296 0.0216 0.0136 0.0057 -0.0019 -0.0088 -0.0148 -0.0196 -0.0227
+
+
+
+
+ knee_angle_r_beta
+
+ 0 1 0
+
+
+ 0 0.174533 0.349066 0.523599 0.698132 0.872665 1.0472 1.22173 1.39626 1.5708 1.74533 1.91986 2.0944
+ -0.0108 -0.019 -0.0263 -0.0322 -0.0367 -0.0395 -0.0408 -0.0404 -0.0384 -0.0349 -0.0301 -0.0245 -0.0187
+
+
+
+
+
+
+ 0 0 1
+
+
+ 0.0027499999999999998
+
+
+
+
+
+
+ talus_r_offset
+
+ tibia_r_offset
+
+
+
+
+ 0
+
+ 0
+
+ -1.05 0.69813170000000002
+
+ true
+
+ false
+
+
+
+ false
+
+
+
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+ /bodyset/tibia_r
+
+ -0.01 -0.40000000000000002 0
+
+ 0 -0.105208 0.0186622
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+ /bodyset/talus_r
+
+ 0 0 0
+
+ 0 -0.105208 0.0186622
+
+
+
+
+
+ pelvis_offset
+
+ torso_offset
+
+
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+ /bodyset/pelvis
+
+ -0.1007 0.081500000000000003 0
+
+ 0 0 0
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+ /bodyset/torso
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+
+ calcn_r_offset
+
+ talus_r_offset
+
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+ /bodyset/talus_r
+
+ -0.048770000000000001 -0.041950000000000001 0.00792
+
+ -1.7681899999999999 0.906223 1.8196000000000001
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+ /bodyset/calcn_r
+
+ 0 0 0
+
+ -1.7681899999999999 0.906223 1.8196000000000001
+
+
+
+
+
+ calcn_r_offset
+
+ toes_r_offset
+
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+ /bodyset/calcn_r
+
+ 0.17879999999999999 -0.002 0.00108
+
+ -3.1415899999999999 0.61990100000000004 0
+
+
+
+
+
+ ..
+
+ 0.20000000000000001 0.20000000000000001 0.20000000000000001
+
+
+ /bodyset/toes_r
+
+ 0 0 0
+
+ -3.1415899999999999 0.61990100000000004 0
+
+
+
+
+
+ femur_r_offset
+
+ pelvis_offset
+
+
+
+
+ 0
+
+ 0
+
+ -2.0943951 0.52359878
+
+ true
+
+ false
+
+
+
+ false
+
+
+
+
+
+
+ ../../../bodyset/pelvis
+
+ -0.056276 -0.078490000000000004 0.077259999999999995
+
+ 0 0 0
+
+
+
+ ../../../bodyset/femur_r
+
+ 0 0 0
+
+ 0 0 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+
+
+
+ -1 0
+
+
+
+ knee_angle_r
+
+ knee_angle_r_beta
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /bodyset/femur_r
+
+ 0.0050000000000000001 -0.21110000000000001 0.023400000000000001
+
+
+
+ /bodyset/tibia_r
+
+ -0.030099999999999998 -0.0419 0.031800000000000002
+
+
+
+
+
+
+
+
+
+ BF_at_gastroc_r
+
+ hybrid
+
+ -1 -1
+
+
+
+
+
+
+
+ 0.80000000000000004 0.10000000000000001 0.10000000000000001
+
+
+
+ 557.11475409835998
+
+ 0.1103
+
+ 0.105817218589115
+
+ 0.26422317000000001
+
+ true
+
+ 0.01
+
+ 0.01
+
+ 0.01
+
+
+
+ 0.25
+
+ 0.77000000000000002
+
+ 1.8999999999999999
+
+ 0.75
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.14999999999999999
+
+ 1.3999999999999999
+
+
+
+
+ 0
+
+ 0.69999999999999996
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /bodyset/femur_r
+
+ 0.0080000000000000002 -0.37880000000000003 -0.020799999999999999
+
+
+
+ /bodyset/calcn_r
+
+ 0.0044000000000000003 0.031 -0.0053
+
+
+
+
+
+
+
+
+
+ GasMed_at_shank_r
+
+ hybrid
+
+ -1 -1
+
+
+
+ Gastroc_at_condyles_r
+
+ hybrid
+
+ -1 -1
+
+
+
+
+
+
+
+ 0.80000000000000004 0.10000000000000001 0.10000000000000001
+
+
+
+ 4690.57377
+
+ 0.050999999999999997
+
+ 0.39871633262642903
+
+ 0.16568155000000001
+
+ false
+
+ 0.01
+
+ 0.01
+
+ 0.01
+
+
+
+ 0.25
+
+ 0.77000000000000002
+
+ 1.8999999999999999
+
+ 0.75
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.14999999999999999
+
+ 1.3999999999999999
+
+
+
+
+ 0
+
+ 0.69999999999999996
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /bodyset/pelvis
+
+ -0.13170000000000001 0.0086999999999999994 0.046199999999999998
+
+
+
+ /bodyset/pelvis
+
+ -0.13439999999999999 -0.060900000000000003 0.081299999999999997
+
+
+
+ /bodyset/femur_r
+
+ -0.044999999999999998 -0.058400000000000001 0.0252
+
+
+
+ /bodyset/femur_r
+
+ -0.015599999999999999 -0.1016 0.0419
+
+
+
+
+
+
+
+
+
+ Gmax2_at_pelvis_r
+
+ hybrid
+
+ -1 -1
+
+
+
+
+
+
+
+ 0.80000000000000004 0.10000000000000001 0.10000000000000001
+
+
+
+ 3337.583607
+
+ 0.157
+
+ 0.067887151179264096
+
+ 0.36738206000000001
+
+ true
+
+ 0.01
+
+ 0.01
+
+ 0.01
+
+
+
+ 0.25
+
+ 0.77000000000000002
+
+ 1.8999999999999999
+
+ 0.75
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.14999999999999999
+
+ 1.3999999999999999
+
+
+
+
+ 0
+
+ 0.69999999999999996
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /bodyset/pelvis
+
+ -0.060499999999999998 0.0309 0.0843
+
+
+
+ /bodyset/pelvis
+
+ -0.0135 -0.0557 0.075600000000000001
+
+
+
+ /bodyset/femur_r
+
+ -0.0023 -0.056500000000000002 0.013899999999999999
+
+
+
+ /bodyset/femur_r
+
+ -0.012200000000000001 -0.063700000000000007 0.019599999999999999
+
+
+
+
+
+
+
+
+
+ IL_at_brim_r
+
+ hybrid
+
+ 2 3
+
+
+
+
+
+
+
+ 0.80000000000000004 0.10000000000000001 0.10000000000000001
+
+
+
+ 2697.3442620000001
+
+ 0.1169
+
+ 0.096120708398325802
+
+ 0.27991397000000001
+
+ true
+
+ 0.01
+
+ 0.01
+
+ 0.01
+
+
+
+ 0.25
+
+ 0.77000000000000002
+
+ 1.8999999999999999
+
+ 0.75
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.14999999999999999
+
+ 1.3999999999999999
+
+
+
+
+ 0
+
+ 0.69999999999999996
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /bodyset/pelvis
+
+ -0.024 -0.038800000000000001 0.093299999999999994
+
+
+
+ /bodyset/patella_r
+
+ 0.01 0.049000000000000002 0.00069999999999999999
+
+
+
+ /bodyset/patella_r
+
+ 0.0121 0.043700000000000003 -0.001
+
+
+
+ /bodyset/patella_r
+
+ 0.0050000000000000001 0.00247 3.0000000000000001e-05
+
+
+
+ /bodyset/tibia_r
+
+ 0.032599999999999997 -0.063119999999999996 -0.00046999999999999999
+
+
+
+
+
+
+
+
+
+ KnExt_at_fem_r
+
+ hybrid
+
+ -1 -1
+
+
+
+
+
+
+
+ 0.80000000000000004 0.10000000000000001 0.10000000000000001
+
+
+
+ 2191.7409836065599
+
+ 0.075899999999999995
+
+ 0.448493537399412
+
+ 0.21701490000000001
+
+ false
+
+ 0.01
+
+ 0.01
+
+ 0.01
+
+
+
+ 0.25
+
+ 0.77000000000000002
+
+ 1.8999999999999999
+
+ 0.75
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.14999999999999999
+
+ 1.3999999999999999
+
+
+
+
+ 0
+
+ 0.69999999999999996
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /bodyset/pelvis
+
+ -0.098699999999999996 -0.114 0.061400000000000003
+
+
+
+ /bodyset/tibia_r
+
+ -0.029000000000000001 -0.041700000000000001 -0.019599999999999999
+
+
+
+
+
+
+
+
+
+ SM_at_condyles_r
+
+ hybrid
+
+ -1 -1
+
+
+
+
+
+
+
+ 0.80000000000000004 0.10000000000000001 0.10000000000000001
+
+
+
+ 4105.4655739999998
+
+ 0.096000000000000002
+
+ 0.30669999999999997
+
+ 0.22389999999999999
+
+ false
+
+ 0.01
+
+ 0.01
+
+ 0.01
+
+
+
+ 0.25
+
+ 0.77000000000000002
+
+ 1.8999999999999999
+
+ 0.75
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.14999999999999999
+
+ 1.3999999999999999
+
+
+
+
+ 0
+
+ 0.69999999999999996
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /bodyset/tibia_r
+
+ -0.0076 -0.091600000000000001 0.0097999999999999997
+
+
+
+ /bodyset/calcn_r
+
+ 0.0044000000000000003 0.031 -0.0053
+
+
+
+
+
+
+
+
+
+
+
+
+ 0.80000000000000004 0.10000000000000001 0.10000000000000001
+
+
+
+ 7924.9967210000004
+
+ 0.043999999999999997
+
+ 0.27675587237597599
+
+ 0.38142888000000003
+
+ false
+
+ 0.01
+
+ 0.01
+
+ 0.01
+
+
+
+ 0.25
+
+ 0.77000000000000002
+
+ 1.8999999999999999
+
+ 0.75
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.14999999999999999
+
+ 1.3999999999999999
+
+
+
+
+ 0
+
+ 0.69999999999999996
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /bodyset/tibia_r
+
+ 0.0154 -0.13120000000000001 0.016199999999999999
+
+
+
+ /bodyset/tibia_r
+
+ 0.025100000000000001 -0.19059999999999999 0.012800000000000001
+
+
+
+ /bodyset/tibia_r
+
+ 0.023300000000000001 -0.3659 -0.0132
+
+
+
+ /bodyset/calcn_r
+
+ 0.1166 0.0178 -0.030499999999999999
+
+
+
+
+
+
+
+
+
+
+
+
+ 0.80000000000000004 0.10000000000000001 0.10000000000000001
+
+
+
+ 2116.818162
+
+ 0.0683
+
+ 0.24046102640936701
+
+ 0.19518281000000001
+
+ false
+
+ 0.01
+
+ 0.01
+
+ 0.01
+
+
+
+ 0.25
+
+ 0.77000000000000002
+
+ 1.8999999999999999
+
+ 0.75
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.14999999999999999
+
+ 1.3999999999999999
+
+
+
+
+ 0
+
+ 0.69999999999999996
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /bodyset/femur_r
+
+ 0.029000000000000001 -0.19239999999999999 0.031
+
+
+
+ /bodyset/femur_r
+
+ 0.033500000000000002 -0.2084 0.028500000000000001
+
+
+
+ /bodyset/patella_r
+
+ 0.0057999999999999996 0.048000000000000001 -0.00059999999999999995
+
+
+
+ /bodyset/patella_r
+
+ 0.0050000000000000001 0.00247 -0.00038999999999999999
+
+
+
+ /bodyset/tibia_r
+
+ 0.032570000000000002 -0.063200000000000006 0.00042999999999999999
+
+
+
+
+
+
+
+
+
+ KnExt_at_fem_r
+
+ hybrid
+
+ -1 -1
+
+
+
+
+
+
+
+ 0.80000000000000004 0.10000000000000001 0.10000000000000001
+
+
+
+ 9593.95082
+
+ 0.129299999999999999
+
+ 0.17221067034576301
+
+ 0.063099730000000007
+
+ false
+
+ 0.01
+
+ 0.01
+
+ 0.01
+
+
+
+ 0.25
+
+ 0.77000000000000002
+
+ 1.8999999999999999
+
+ 0.75
+
+ 0
+
+
+
+
+ 0
+
+ 0.25
+
+ 5
+
+ 0
+
+ 0.14999999999999999
+
+ 1.3999999999999999
+
+
+
+
+ 0
+
+ 0.69999999999999996
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e4f43602c9..95ecfc75f7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -23,6 +23,8 @@ v4.6
- Added an option to record a full `StatesTrajectory` (via `Manager::setRecordStatesTrajectory`).
- Support for user-specified time step sequences (e.g., `setUseSpecifiedDT`, `useContactDT`, etc.) has been removed.
- Convenience methods for a few advanced `SimTK::Integrator` settings have been added (e.g., `Manager::setIntegratorFinalTime`).
+- Added a suite of Jupyter notebooks containing OpenSim API Python tutorials. (#4124)
+
v4.5.2