{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Ball and stick 1: Basic cell" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This is the first part of a several page tutorial that will ultimately build a ring network of mutlicompartment neurons running on a parallel machine.\n", "\n", "Best software engineering practice is to carefully design both the model and code. A well-designed system is easier to debug, maintain, and extend.\n", "\n", "This tutorial will take a functional bottom-up approach, building key components and refactoring as needed for a better software design instead of describing a complex design and filling in the pieces.\n", "\n", "This part of the tutorial builds a two-compartment neuron consisting of a soma and dendrite. This representation is known as a ball-and-stick model. After building the cell, we will attach some instrumentation to it to simulate and monitor its dynamics." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Load NEURON" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We of course begin by loading NEURON's main submodule h." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:43.762014Z", "iopub.status.busy": "2025-05-23T00:18:43.761869Z", "iopub.status.idle": "2025-05-23T00:18:44.053456Z", "shell.execute_reply": "2025-05-23T00:18:44.053041Z" } }, "outputs": [], "source": [ "from neuron import h" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As good practice, we'll load some unit definitions:" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:44.055874Z", "iopub.status.busy": "2025-05-23T00:18:44.055644Z", "iopub.status.idle": "2025-05-23T00:18:44.060627Z", "shell.execute_reply": "2025-05-23T00:18:44.060258Z" } }, "outputs": [], "source": [ "from neuron.units import ms, mV, µm" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'll load the standard run library to give us high-level simulation control functions (e.g. running a simulation for a given period of time):" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:44.063000Z", "iopub.status.busy": "2025-05-23T00:18:44.062368Z", "iopub.status.idle": "2025-05-23T00:18:44.073715Z", "shell.execute_reply": "2025-05-23T00:18:44.073347Z" } }, "outputs": [ { "data": { "text/plain": [ "1.0" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "h.load_file(\"stdrun.hoc\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If we're running in Jupyter, we should allow interactive graphics inline so that we can explore our PlotShapes interactively; skip this line if you're not using Jupyter (it'll cause a syntax error):" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:44.104849Z", "iopub.status.busy": "2025-05-23T00:18:44.104526Z", "iopub.status.idle": "2025-05-23T00:18:47.165453Z", "shell.execute_reply": "2025-05-23T00:18:47.165045Z" } }, "outputs": [], "source": [ "%matplotlib notebook" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Defining the cell morphology" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Create the sections" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A ball-and-stick cell by definition consists of two parts: the soma (ball) and a dendrite (stick). We could define two Sections at the top level as in the previous tutorial, but that wouldn't give us an easy way to create multiple cells. Instead, let's define a BallAndStick neuron class. The basic boilerplate for defining any class in Python looks like:" ] }, { "cell_type": "code", "execution_count": 5, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.167351Z", "iopub.status.busy": "2025-05-23T00:18:47.167096Z", "iopub.status.idle": "2025-05-23T00:18:47.170043Z", "shell.execute_reply": "2025-05-23T00:18:47.169697Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self):\n", " \"\"\"anything that should be done every time one of these is created goes here\"\"\"" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In our case in particular, every time we say that there is a BallAndStick cell, we should create the soma and the dendrite sections:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.171495Z", "iopub.status.busy": "2025-05-23T00:18:47.171181Z", "iopub.status.idle": "2025-05-23T00:18:47.174109Z", "shell.execute_reply": "2025-05-23T00:18:47.173784Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self):\n", " self.soma = h.Section(name=\"soma\", cell=self)\n", " self.dend = h.Section(name=\"dend\", cell=self)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Any variables that describe properties of the cell must get stored as attributes of self. This is why we write self.soma instead of soma. Temporary variables, on the other hand, need not be prefixed with self and will simply stop existing when the initialization function ends.\n", "\n", "You will also note that we have introduced a new keyword argument for Section, namely the cell attribute. This will always be set to self (i.e. the current cell) to allow each Section to know what cell it belongs to." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Recall that we can check the topology via:" ] }, { "cell_type": "code", "execution_count": 7, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.175640Z", "iopub.status.busy": "2025-05-23T00:18:47.175374Z", "iopub.status.idle": "2025-05-23T00:18:47.179667Z", "shell.execute_reply": "2025-05-23T00:18:47.179336Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "h.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "No sections were displayed. Why?\n", "\n", "The explanation is that we haven't actually created any such cells yet; we've only defined a rule for them. Let's go ahead and create our first cell:" ] }, { "cell_type": "code", "execution_count": 8, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.181163Z", "iopub.status.busy": "2025-05-23T00:18:47.180915Z", "iopub.status.idle": "2025-05-23T00:18:47.183579Z", "shell.execute_reply": "2025-05-23T00:18:47.183247Z" } }, "outputs": [], "source": [ "my_cell = BallAndStick()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We again check the topology and see that the sections have in fact been created:" ] }, { "cell_type": "code", "execution_count": 9, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.185054Z", "iopub.status.busy": "2025-05-23T00:18:47.184723Z", "iopub.status.idle": "2025-05-23T00:18:47.188864Z", "shell.execute_reply": "2025-05-23T00:18:47.188545Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "|-| <__main__.BallAndStick object at 0x719aa47158e0>.soma(0-1)\n", "|-| <__main__.BallAndStick object at 0x719aa47158e0>.dend(0-1)\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "h.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Clearly there is a soma and a dendrite, but the cell identifier before each is not very friendly.\n", "\n", "We can specify how the cell displays using the `__repr__` method:" ] }, { "cell_type": "code", "execution_count": 10, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.190397Z", "iopub.status.busy": "2025-05-23T00:18:47.190133Z", "iopub.status.idle": "2025-05-23T00:18:47.193074Z", "shell.execute_reply": "2025-05-23T00:18:47.192746Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self):\n", " self.soma = h.Section(name=\"soma\", cell=self)\n", " self.dend = h.Section(name=\"dend\", cell=self)\n", "\n", " def __repr__(self):\n", " return \"BallAndStick\"" ] }, { "cell_type": "code", "execution_count": 11, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.194560Z", "iopub.status.busy": "2025-05-23T00:18:47.194217Z", "iopub.status.idle": "2025-05-23T00:18:47.198157Z", "shell.execute_reply": "2025-05-23T00:18:47.197836Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "|-| <__main__.BallAndStick object at 0x719aa47158e0>.soma(0-1)\n", "|-| <__main__.BallAndStick object at 0x719aa47158e0>.dend(0-1)\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "h.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Our sections display based on the rule they were created with, not the new rule, so we need to recreate the cell:" ] }, { "cell_type": "code", "execution_count": 12, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.199605Z", "iopub.status.busy": "2025-05-23T00:18:47.199296Z", "iopub.status.idle": "2025-05-23T00:18:47.201871Z", "shell.execute_reply": "2025-05-23T00:18:47.201496Z" } }, "outputs": [], "source": [ "my_cell = BallAndStick()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now we see something friendlier:" ] }, { "cell_type": "code", "execution_count": 13, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.203501Z", "iopub.status.busy": "2025-05-23T00:18:47.203102Z", "iopub.status.idle": "2025-05-23T00:18:47.206964Z", "shell.execute_reply": "2025-05-23T00:18:47.206649Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "|-| BallAndStick.soma(0-1)\n", "|-| BallAndStick.dend(0-1)\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "h.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "There's a problem though; do you see it?\n", "\n", "Every cell using this rule would print out the same cell identifier. So if we create a second cell:" ] }, { "cell_type": "code", "execution_count": 14, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.208449Z", "iopub.status.busy": "2025-05-23T00:18:47.208103Z", "iopub.status.idle": "2025-05-23T00:18:47.210203Z", "shell.execute_reply": "2025-05-23T00:18:47.209845Z" } }, "outputs": [], "source": [ "my_other_cell = BallAndStick()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "and look at the topology:" ] }, { "cell_type": "code", "execution_count": 15, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.211641Z", "iopub.status.busy": "2025-05-23T00:18:47.211431Z", "iopub.status.idle": "2025-05-23T00:18:47.215045Z", "shell.execute_reply": "2025-05-23T00:18:47.214721Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "|-| BallAndStick.soma(0-1)\n", "|-| BallAndStick.dend(0-1)\n", "|-| BallAndStick.soma(0-1)\n", "|-| BallAndStick.dend(0-1)\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "h.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "There is no way to tell the two somas apart and see which goes with which cell. To fix this, we'll pass in an identifier gid when we create the cell and have `__repr__` incorporate that into the name:" ] }, { "cell_type": "code", "execution_count": 16, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.216635Z", "iopub.status.busy": "2025-05-23T00:18:47.216328Z", "iopub.status.idle": "2025-05-23T00:18:47.219505Z", "shell.execute_reply": "2025-05-23T00:18:47.219192Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self, gid):\n", " self._gid = gid\n", " self.soma = h.Section(name=\"soma\", cell=self)\n", " self.dend = h.Section(name=\"dend\", cell=self)\n", "\n", " def __repr__(self):\n", " return \"BallAndStick[{}]\".format(self._gid)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Important: the cell name (returned by `__repr__`) will be read when the Section is created, so any and all data that function needs -- here the `gid` -- must be stored before creating any Section objects." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now let's create our two cells:" ] }, { "cell_type": "code", "execution_count": 17, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.221002Z", "iopub.status.busy": "2025-05-23T00:18:47.220761Z", "iopub.status.idle": "2025-05-23T00:18:47.223307Z", "shell.execute_reply": "2025-05-23T00:18:47.222993Z" } }, "outputs": [], "source": [ "my_cell = BallAndStick(0)\n", "my_other_cell = BallAndStick(1)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now when we look at the topology, we can tell the Sections belonging to the two cells apart:" ] }, { "cell_type": "code", "execution_count": 18, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.224709Z", "iopub.status.busy": "2025-05-23T00:18:47.224482Z", "iopub.status.idle": "2025-05-23T00:18:47.227395Z", "shell.execute_reply": "2025-05-23T00:18:47.227108Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "|-| BallAndStick[0].soma(0-1)\n", "|-| BallAndStick[0].dend(0-1)\n", "|-| BallAndStick[1].soma(0-1)\n", "|-| BallAndStick[1].dend(0-1)\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 18, "metadata": {}, "output_type": "execute_result" } ], "source": [ "h.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can tell which sections are the soma and which are dendrites. We can see which go with cell 0 and which go with cell 1, but there is nothing indicating that the dendrite is connected to the soma. This is because we have not told NEURON about any such relationships, so let's do so:" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Connect the sections" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We attach `self.dend` to the `self.soma` using the `connect` method:" ] }, { "cell_type": "code", "execution_count": 19, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.228904Z", "iopub.status.busy": "2025-05-23T00:18:47.228584Z", "iopub.status.idle": "2025-05-23T00:18:47.231608Z", "shell.execute_reply": "2025-05-23T00:18:47.231285Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self, gid):\n", " self._gid = gid\n", " self.soma = h.Section(name=\"soma\", cell=self)\n", " self.dend = h.Section(name=\"dend\", cell=self)\n", " self.dend.connect(self.soma)\n", "\n", " def __repr__(self):\n", " return \"BallAndStick[{}]\".format(self._gid)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As before, we must recreate the cells now that we've changed the rule:" ] }, { "cell_type": "code", "execution_count": 20, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.233221Z", "iopub.status.busy": "2025-05-23T00:18:47.232874Z", "iopub.status.idle": "2025-05-23T00:18:47.235425Z", "shell.execute_reply": "2025-05-23T00:18:47.235099Z" } }, "outputs": [], "source": [ "my_cell = BallAndStick(0)\n", "my_other_cell = BallAndStick(1)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Note that this is not equivalent to attaching the `soma` to the `dend`; instead it means that the dendrite begins where the soma ends. We can see that in the topology:" ] }, { "cell_type": "code", "execution_count": 21, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.236833Z", "iopub.status.busy": "2025-05-23T00:18:47.236595Z", "iopub.status.idle": "2025-05-23T00:18:47.239887Z", "shell.execute_reply": "2025-05-23T00:18:47.239512Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "|-| BallAndStick[0].soma(0-1)\n", " `| BallAndStick[0].dend(0-1)\n", "|-| BallAndStick[1].soma(0-1)\n", " `| BallAndStick[1].dend(0-1)\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 21, "metadata": {}, "output_type": "execute_result" } ], "source": [ "h.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For now, we can get rid of `my_other_cell`:" ] }, { "cell_type": "code", "execution_count": 22, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.241422Z", "iopub.status.busy": "2025-05-23T00:18:47.241063Z", "iopub.status.idle": "2025-05-23T00:18:47.243431Z", "shell.execute_reply": "2025-05-23T00:18:47.243106Z" } }, "outputs": [], "source": [ "del my_other_cell" ] }, { "cell_type": "code", "execution_count": 23, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.244852Z", "iopub.status.busy": "2025-05-23T00:18:47.244607Z", "iopub.status.idle": "2025-05-23T00:18:47.248174Z", "shell.execute_reply": "2025-05-23T00:18:47.247855Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "|-| BallAndStick[0].soma(0-1)\n", " `| BallAndStick[0].dend(0-1)\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 23, "metadata": {}, "output_type": "execute_result" } ], "source": [ "h.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A `soma` can have many dendrites attached to it, but any dendrite only begins at one specific location." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "What if we didn't want to attach the dendrite to the end of the soma (position 1)? We could explicitly specify the connection location via, e.g. `self.dend.connect(self.soma(0.5))` which would mean the dendrite was attached to the center of the soma. (Recall: segments are described using normalized positions.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The 1 end of the soma is said to be the parent of the `dend` section." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Define stylized geometry" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's set the length and the width for both sections. We'll make the soma have length and diameter of 12.6157 microns, the dendrite have length 200 microns and diameter 1 micron." ] }, { "cell_type": "code", "execution_count": 24, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.249942Z", "iopub.status.busy": "2025-05-23T00:18:47.249665Z", "iopub.status.idle": "2025-05-23T00:18:47.253345Z", "shell.execute_reply": "2025-05-23T00:18:47.253032Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self, gid):\n", " self._gid = gid\n", " self.soma = h.Section(name=\"soma\", cell=self)\n", " self.dend = h.Section(name=\"dend\", cell=self)\n", " self.dend.connect(self.soma)\n", " self.soma.L = self.soma.diam = 12.6157 * µm\n", " self.dend.L = 200 * µm\n", " self.dend.diam = 1 * µm\n", "\n", " def __repr__(self):\n", " return \"BallAndStick[{}]\".format(self._gid)\n", "\n", "\n", "my_cell = BallAndStick(0)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If you're wondering why that number was chosen for the soma length and diameter: it is because it makes the surface area (which doesn't include end faces) approximately 500 μm2:" ] }, { "cell_type": "code", "execution_count": 25, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.254812Z", "iopub.status.busy": "2025-05-23T00:18:47.254480Z", "iopub.status.idle": "2025-05-23T00:18:47.257224Z", "shell.execute_reply": "2025-05-23T00:18:47.256880Z" } }, "outputs": [ { "data": { "text/plain": [ "500.00296377255506" ] }, "execution_count": 25, "metadata": {}, "output_type": "execute_result" } ], "source": [ "my_cell.soma(0.5).area()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "(NEURON only returns areas of segments which is why we asked for the center `soma` segment; since there is only one segment, the area here is the same as the whole Section area.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Note that the surface area of a cylinder with equal length and diameter\n", "$$\n", "\\pi d \\ell = \\pi d^2 = 4 \\pi \\left (\\frac{d}{2} \\right) ^2 = 4 \\pi r^2\n", "$$\n", "is the same as the surface area of a sphere with the same diameter." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "That is, if we're only interested in electrophysiology modeling, we can substitute a cylindrical soma with equal length and diameter for a spherical soma with the same diameter, as we've done here. (The volume, however, is of course different. So this substitution does not work if we're modeling diffusion or accumulation of ions.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For the rest of this tutorial page, we'll focus solely on one cell." ] }, { "cell_type": "code", "execution_count": 26, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.258667Z", "iopub.status.busy": "2025-05-23T00:18:47.258528Z", "iopub.status.idle": "2025-05-23T00:18:47.261532Z", "shell.execute_reply": "2025-05-23T00:18:47.261154Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "|-| BallAndStick[0].soma(0-1)\n", " `| BallAndStick[0].dend(0-1)\n", "\n" ] }, { "data": { "text/plain": [ "1.0" ] }, "execution_count": 26, "metadata": {}, "output_type": "execute_result" } ], "source": [ "h.topology()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now it is time to see what the cell looks like:" ] }, { "cell_type": "code", "execution_count": 27, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.263122Z", "iopub.status.busy": "2025-05-23T00:18:47.262839Z", "iopub.status.idle": "2025-05-23T00:18:47.294207Z", "shell.execute_reply": "2025-05-23T00:18:47.293899Z" } }, "outputs": [ { "data": { "application/javascript": [ "/* Put everything inside the global mpl namespace */\n", "/* global mpl */\n", "window.mpl = {};\n", "\n", "mpl.get_websocket_type = function () {\n", " if (typeof WebSocket !== 'undefined') {\n", " return WebSocket;\n", " } else if (typeof MozWebSocket !== 'undefined') {\n", " return MozWebSocket;\n", " } else {\n", " alert(\n", " 'Your browser does not have WebSocket support. ' +\n", " 'Please try Chrome, Safari or Firefox ≥ 6. ' +\n", " 'Firefox 4 and 5 are also supported but you ' +\n", " 'have to enable WebSockets in about:config.'\n", " );\n", " }\n", "};\n", "\n", "mpl.figure = function (figure_id, websocket, ondownload, parent_element) {\n", " this.id = figure_id;\n", "\n", " this.ws = websocket;\n", "\n", " this.supports_binary = this.ws.binaryType !== undefined;\n", "\n", " if (!this.supports_binary) {\n", " var warnings = document.getElementById('mpl-warnings');\n", " if (warnings) {\n", " warnings.style.display = 'block';\n", " warnings.textContent =\n", " 'This browser does not support binary websocket messages. ' +\n", " 'Performance may be slow.';\n", " }\n", " }\n", "\n", " this.imageObj = new Image();\n", "\n", " this.context = undefined;\n", " this.message = undefined;\n", " this.canvas = undefined;\n", " this.rubberband_canvas = undefined;\n", " this.rubberband_context = undefined;\n", " this.format_dropdown = undefined;\n", "\n", " this.image_mode = 'full';\n", "\n", " this.root = document.createElement('div');\n", " this.root.setAttribute('style', 'display: inline-block');\n", " this._root_extra_style(this.root);\n", "\n", " parent_element.appendChild(this.root);\n", "\n", " this._init_header(this);\n", " this._init_canvas(this);\n", " this._init_toolbar(this);\n", "\n", " var fig = this;\n", "\n", " this.waiting = false;\n", "\n", " this.ws.onopen = function () {\n", " fig.send_message('supports_binary', { value: fig.supports_binary });\n", " fig.send_message('send_image_mode', {});\n", " if (fig.ratio !== 1) {\n", " fig.send_message('set_device_pixel_ratio', {\n", " device_pixel_ratio: fig.ratio,\n", " });\n", " }\n", " fig.send_message('refresh', {});\n", " };\n", "\n", " this.imageObj.onload = function () {\n", " if (fig.image_mode === 'full') {\n", " // Full images could contain transparency (where diff images\n", " // almost always do), so we need to clear the canvas so that\n", " // there is no ghosting.\n", " fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);\n", " }\n", " fig.context.drawImage(fig.imageObj, 0, 0);\n", " };\n", "\n", " this.imageObj.onunload = function () {\n", " fig.ws.close();\n", " };\n", "\n", " this.ws.onmessage = this._make_on_message_function(this);\n", "\n", " this.ondownload = ondownload;\n", "};\n", "\n", "mpl.figure.prototype._init_header = function () {\n", " var titlebar = document.createElement('div');\n", " titlebar.classList =\n", " 'ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix';\n", " var titletext = document.createElement('div');\n", " titletext.classList = 'ui-dialog-title';\n", " titletext.setAttribute(\n", " 'style',\n", " 'width: 100%; text-align: center; padding: 3px;'\n", " );\n", " titlebar.appendChild(titletext);\n", " this.root.appendChild(titlebar);\n", " this.header = titletext;\n", "};\n", "\n", "mpl.figure.prototype._canvas_extra_style = function (_canvas_div) {};\n", "\n", "mpl.figure.prototype._root_extra_style = function (_canvas_div) {};\n", "\n", "mpl.figure.prototype._init_canvas = function () {\n", " var fig = this;\n", "\n", " var canvas_div = (this.canvas_div = document.createElement('div'));\n", " canvas_div.setAttribute('tabindex', '0');\n", " canvas_div.setAttribute(\n", " 'style',\n", " 'border: 1px solid #ddd;' +\n", " 'box-sizing: content-box;' +\n", " 'clear: both;' +\n", " 'min-height: 1px;' +\n", " 'min-width: 1px;' +\n", " 'outline: 0;' +\n", " 'overflow: hidden;' +\n", " 'position: relative;' +\n", " 'resize: both;' +\n", " 'z-index: 2;'\n", " );\n", "\n", " function on_keyboard_event_closure(name) {\n", " return function (event) {\n", " return fig.key_event(event, name);\n", " };\n", " }\n", "\n", " canvas_div.addEventListener(\n", " 'keydown',\n", " on_keyboard_event_closure('key_press')\n", " );\n", " canvas_div.addEventListener(\n", " 'keyup',\n", " on_keyboard_event_closure('key_release')\n", " );\n", "\n", " this._canvas_extra_style(canvas_div);\n", " this.root.appendChild(canvas_div);\n", "\n", " var canvas = (this.canvas = document.createElement('canvas'));\n", " canvas.classList.add('mpl-canvas');\n", " canvas.setAttribute(\n", " 'style',\n", " 'box-sizing: content-box;' +\n", " 'pointer-events: none;' +\n", " 'position: relative;' +\n", " 'z-index: 0;'\n", " );\n", "\n", " this.context = canvas.getContext('2d');\n", "\n", " var backingStore =\n", " this.context.backingStorePixelRatio ||\n", " this.context.webkitBackingStorePixelRatio ||\n", " this.context.mozBackingStorePixelRatio ||\n", " this.context.msBackingStorePixelRatio ||\n", " this.context.oBackingStorePixelRatio ||\n", " this.context.backingStorePixelRatio ||\n", " 1;\n", "\n", " this.ratio = (window.devicePixelRatio || 1) / backingStore;\n", "\n", " var rubberband_canvas = (this.rubberband_canvas = document.createElement(\n", " 'canvas'\n", " ));\n", " rubberband_canvas.setAttribute(\n", " 'style',\n", " 'box-sizing: content-box;' +\n", " 'left: 0;' +\n", " 'pointer-events: none;' +\n", " 'position: absolute;' +\n", " 'top: 0;' +\n", " 'z-index: 1;'\n", " );\n", "\n", " // Apply a ponyfill if ResizeObserver is not implemented by browser.\n", " if (this.ResizeObserver === undefined) {\n", " if (window.ResizeObserver !== undefined) {\n", " this.ResizeObserver = window.ResizeObserver;\n", " } else {\n", " var obs = _JSXTOOLS_RESIZE_OBSERVER({});\n", " this.ResizeObserver = obs.ResizeObserver;\n", " }\n", " }\n", "\n", " this.resizeObserverInstance = new this.ResizeObserver(function (entries) {\n", " // There's no need to resize if the WebSocket is not connected:\n", " // - If it is still connecting, then we will get an initial resize from\n", " // Python once it connects.\n", " // - If it has disconnected, then resizing will clear the canvas and\n", " // never get anything back to refill it, so better to not resize and\n", " // keep something visible.\n", " if (fig.ws.readyState != 1) {\n", " return;\n", " }\n", " var nentries = entries.length;\n", " for (var i = 0; i < nentries; i++) {\n", " var entry = entries[i];\n", " var width, height;\n", " if (entry.contentBoxSize) {\n", " if (entry.contentBoxSize instanceof Array) {\n", " // Chrome 84 implements new version of spec.\n", " width = entry.contentBoxSize[0].inlineSize;\n", " height = entry.contentBoxSize[0].blockSize;\n", " } else {\n", " // Firefox implements old version of spec.\n", " width = entry.contentBoxSize.inlineSize;\n", " height = entry.contentBoxSize.blockSize;\n", " }\n", " } else {\n", " // Chrome <84 implements even older version of spec.\n", " width = entry.contentRect.width;\n", " height = entry.contentRect.height;\n", " }\n", "\n", " // Keep the size of the canvas and rubber band canvas in sync with\n", " // the canvas container.\n", " if (entry.devicePixelContentBoxSize) {\n", " // Chrome 84 implements new version of spec.\n", " canvas.setAttribute(\n", " 'width',\n", " entry.devicePixelContentBoxSize[0].inlineSize\n", " );\n", " canvas.setAttribute(\n", " 'height',\n", " entry.devicePixelContentBoxSize[0].blockSize\n", " );\n", " } else {\n", " canvas.setAttribute('width', width * fig.ratio);\n", " canvas.setAttribute('height', height * fig.ratio);\n", " }\n", " /* This rescales the canvas back to display pixels, so that it\n", " * appears correct on HiDPI screens. */\n", " canvas.style.width = width + 'px';\n", " canvas.style.height = height + 'px';\n", "\n", " rubberband_canvas.setAttribute('width', width);\n", " rubberband_canvas.setAttribute('height', height);\n", "\n", " // And update the size in Python. We ignore the initial 0/0 size\n", " // that occurs as the element is placed into the DOM, which should\n", " // otherwise not happen due to the minimum size styling.\n", " if (width != 0 && height != 0) {\n", " fig.request_resize(width, height);\n", " }\n", " }\n", " });\n", " this.resizeObserverInstance.observe(canvas_div);\n", "\n", " function on_mouse_event_closure(name) {\n", " /* User Agent sniffing is bad, but WebKit is busted:\n", " * https://bugs.webkit.org/show_bug.cgi?id=144526\n", " * https://bugs.webkit.org/show_bug.cgi?id=181818\n", " * The worst that happens here is that they get an extra browser\n", " * selection when dragging, if this check fails to catch them.\n", " */\n", " var UA = navigator.userAgent;\n", " var isWebKit = /AppleWebKit/.test(UA) && !/Chrome/.test(UA);\n", " if(isWebKit) {\n", " return function (event) {\n", " /* This prevents the web browser from automatically changing to\n", " * the text insertion cursor when the button is pressed. We\n", " * want to control all of the cursor setting manually through\n", " * the 'cursor' event from matplotlib */\n", " event.preventDefault()\n", " return fig.mouse_event(event, name);\n", " };\n", " } else {\n", " return function (event) {\n", " return fig.mouse_event(event, name);\n", " };\n", " }\n", " }\n", "\n", " canvas_div.addEventListener(\n", " 'mousedown',\n", " on_mouse_event_closure('button_press')\n", " );\n", " canvas_div.addEventListener(\n", " 'mouseup',\n", " on_mouse_event_closure('button_release')\n", " );\n", " canvas_div.addEventListener(\n", " 'dblclick',\n", " on_mouse_event_closure('dblclick')\n", " );\n", " // Throttle sequential mouse events to 1 every 20ms.\n", " canvas_div.addEventListener(\n", " 'mousemove',\n", " on_mouse_event_closure('motion_notify')\n", " );\n", "\n", " canvas_div.addEventListener(\n", " 'mouseenter',\n", " on_mouse_event_closure('figure_enter')\n", " );\n", " canvas_div.addEventListener(\n", " 'mouseleave',\n", " on_mouse_event_closure('figure_leave')\n", " );\n", "\n", " canvas_div.addEventListener('wheel', function (event) {\n", " if (event.deltaY < 0) {\n", " event.step = 1;\n", " } else {\n", " event.step = -1;\n", " }\n", " on_mouse_event_closure('scroll')(event);\n", " });\n", "\n", " canvas_div.appendChild(canvas);\n", " canvas_div.appendChild(rubberband_canvas);\n", "\n", " this.rubberband_context = rubberband_canvas.getContext('2d');\n", " this.rubberband_context.strokeStyle = '#000000';\n", "\n", " this._resize_canvas = function (width, height, forward) {\n", " if (forward) {\n", " canvas_div.style.width = width + 'px';\n", " canvas_div.style.height = height + 'px';\n", " }\n", " };\n", "\n", " // Disable right mouse context menu.\n", " canvas_div.addEventListener('contextmenu', function (_e) {\n", " event.preventDefault();\n", " return false;\n", " });\n", "\n", " function set_focus() {\n", " canvas.focus();\n", " canvas_div.focus();\n", " }\n", "\n", " window.setTimeout(set_focus, 100);\n", "};\n", "\n", "mpl.figure.prototype._init_toolbar = function () {\n", " var fig = this;\n", "\n", " var toolbar = document.createElement('div');\n", " toolbar.classList = 'mpl-toolbar';\n", " this.root.appendChild(toolbar);\n", "\n", " function on_click_closure(name) {\n", " return function (_event) {\n", " return fig.toolbar_button_onclick(name);\n", " };\n", " }\n", "\n", " function on_mouseover_closure(tooltip) {\n", " return function (event) {\n", " if (!event.currentTarget.disabled) {\n", " return fig.toolbar_button_onmouseover(tooltip);\n", " }\n", " };\n", " }\n", "\n", " fig.buttons = {};\n", " var buttonGroup = document.createElement('div');\n", " buttonGroup.classList = 'mpl-button-group';\n", " for (var toolbar_ind in mpl.toolbar_items) {\n", " var name = mpl.toolbar_items[toolbar_ind][0];\n", " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n", " var image = mpl.toolbar_items[toolbar_ind][2];\n", " var method_name = mpl.toolbar_items[toolbar_ind][3];\n", "\n", " if (!name) {\n", " /* Instead of a spacer, we start a new button group. */\n", " if (buttonGroup.hasChildNodes()) {\n", " toolbar.appendChild(buttonGroup);\n", " }\n", " buttonGroup = document.createElement('div');\n", " buttonGroup.classList = 'mpl-button-group';\n", " continue;\n", " }\n", "\n", " var button = (fig.buttons[name] = document.createElement('button'));\n", " button.classList = 'mpl-widget';\n", " button.setAttribute('role', 'button');\n", " button.setAttribute('aria-disabled', 'false');\n", " button.addEventListener('click', on_click_closure(method_name));\n", " button.addEventListener('mouseover', on_mouseover_closure(tooltip));\n", "\n", " var icon_img = document.createElement('img');\n", " icon_img.src = '_images/' + image + '.png';\n", " icon_img.srcset = '_images/' + image + '_large.png 2x';\n", " icon_img.alt = tooltip;\n", " button.appendChild(icon_img);\n", "\n", " buttonGroup.appendChild(button);\n", " }\n", "\n", " if (buttonGroup.hasChildNodes()) {\n", " toolbar.appendChild(buttonGroup);\n", " }\n", "\n", " var fmt_picker = document.createElement('select');\n", " fmt_picker.classList = 'mpl-widget';\n", " toolbar.appendChild(fmt_picker);\n", " this.format_dropdown = fmt_picker;\n", "\n", " for (var ind in mpl.extensions) {\n", " var fmt = mpl.extensions[ind];\n", " var option = document.createElement('option');\n", " option.selected = fmt === mpl.default_extension;\n", " option.innerHTML = fmt;\n", " fmt_picker.appendChild(option);\n", " }\n", "\n", " var status_bar = document.createElement('span');\n", " status_bar.classList = 'mpl-message';\n", " toolbar.appendChild(status_bar);\n", " this.message = status_bar;\n", "};\n", "\n", "mpl.figure.prototype.request_resize = function (x_pixels, y_pixels) {\n", " // Request matplotlib to resize the figure. Matplotlib will then trigger a resize in the client,\n", " // which will in turn request a refresh of the image.\n", " this.send_message('resize', { width: x_pixels, height: y_pixels });\n", "};\n", "\n", "mpl.figure.prototype.send_message = function (type, properties) {\n", " properties['type'] = type;\n", " properties['figure_id'] = this.id;\n", " this.ws.send(JSON.stringify(properties));\n", "};\n", "\n", "mpl.figure.prototype.send_draw_message = function () {\n", " if (!this.waiting) {\n", " this.waiting = true;\n", " this.ws.send(JSON.stringify({ type: 'draw', figure_id: this.id }));\n", " }\n", "};\n", "\n", "mpl.figure.prototype.handle_save = function (fig, _msg) {\n", " var format_dropdown = fig.format_dropdown;\n", " var format = format_dropdown.options[format_dropdown.selectedIndex].value;\n", " fig.ondownload(fig, format);\n", "};\n", "\n", "mpl.figure.prototype.handle_resize = function (fig, msg) {\n", " var size = msg['size'];\n", " if (size[0] !== fig.canvas.width || size[1] !== fig.canvas.height) {\n", " fig._resize_canvas(size[0], size[1], msg['forward']);\n", " fig.send_message('refresh', {});\n", " }\n", "};\n", "\n", "mpl.figure.prototype.handle_rubberband = function (fig, msg) {\n", " var x0 = msg['x0'] / fig.ratio;\n", " var y0 = (fig.canvas.height - msg['y0']) / fig.ratio;\n", " var x1 = msg['x1'] / fig.ratio;\n", " var y1 = (fig.canvas.height - msg['y1']) / fig.ratio;\n", " x0 = Math.floor(x0) + 0.5;\n", " y0 = Math.floor(y0) + 0.5;\n", " x1 = Math.floor(x1) + 0.5;\n", " y1 = Math.floor(y1) + 0.5;\n", " var min_x = Math.min(x0, x1);\n", " var min_y = Math.min(y0, y1);\n", " var width = Math.abs(x1 - x0);\n", " var height = Math.abs(y1 - y0);\n", "\n", " fig.rubberband_context.clearRect(\n", " 0,\n", " 0,\n", " fig.canvas.width / fig.ratio,\n", " fig.canvas.height / fig.ratio\n", " );\n", "\n", " fig.rubberband_context.strokeRect(min_x, min_y, width, height);\n", "};\n", "\n", "mpl.figure.prototype.handle_figure_label = function (fig, msg) {\n", " // Updates the figure title.\n", " fig.header.textContent = msg['label'];\n", "};\n", "\n", "mpl.figure.prototype.handle_cursor = function (fig, msg) {\n", " fig.canvas_div.style.cursor = msg['cursor'];\n", "};\n", "\n", "mpl.figure.prototype.handle_message = function (fig, msg) {\n", " fig.message.textContent = msg['message'];\n", "};\n", "\n", "mpl.figure.prototype.handle_draw = function (fig, _msg) {\n", " // Request the server to send over a new figure.\n", " fig.send_draw_message();\n", "};\n", "\n", "mpl.figure.prototype.handle_image_mode = function (fig, msg) {\n", " fig.image_mode = msg['mode'];\n", "};\n", "\n", "mpl.figure.prototype.handle_history_buttons = function (fig, msg) {\n", " for (var key in msg) {\n", " if (!(key in fig.buttons)) {\n", " continue;\n", " }\n", " fig.buttons[key].disabled = !msg[key];\n", " fig.buttons[key].setAttribute('aria-disabled', !msg[key]);\n", " }\n", "};\n", "\n", "mpl.figure.prototype.handle_navigate_mode = function (fig, msg) {\n", " if (msg['mode'] === 'PAN') {\n", " fig.buttons['Pan'].classList.add('active');\n", " fig.buttons['Zoom'].classList.remove('active');\n", " } else if (msg['mode'] === 'ZOOM') {\n", " fig.buttons['Pan'].classList.remove('active');\n", " fig.buttons['Zoom'].classList.add('active');\n", " } else {\n", " fig.buttons['Pan'].classList.remove('active');\n", " fig.buttons['Zoom'].classList.remove('active');\n", " }\n", "};\n", "\n", "mpl.figure.prototype.updated_canvas_event = function () {\n", " // Called whenever the canvas gets updated.\n", " this.send_message('ack', {});\n", "};\n", "\n", "// A function to construct a web socket function for onmessage handling.\n", "// Called in the figure constructor.\n", "mpl.figure.prototype._make_on_message_function = function (fig) {\n", " return function socket_on_message(evt) {\n", " if (evt.data instanceof Blob) {\n", " var img = evt.data;\n", " if (img.type !== 'image/png') {\n", " /* FIXME: We get \"Resource interpreted as Image but\n", " * transferred with MIME type text/plain:\" errors on\n", " * Chrome. But how to set the MIME type? It doesn't seem\n", " * to be part of the websocket stream */\n", " img.type = 'image/png';\n", " }\n", "\n", " /* Free the memory for the previous frames */\n", " if (fig.imageObj.src) {\n", " (window.URL || window.webkitURL).revokeObjectURL(\n", " fig.imageObj.src\n", " );\n", " }\n", "\n", " fig.imageObj.src = (window.URL || window.webkitURL).createObjectURL(\n", " img\n", " );\n", " fig.updated_canvas_event();\n", " fig.waiting = false;\n", " return;\n", " } else if (\n", " typeof evt.data === 'string' &&\n", " evt.data.slice(0, 21) === 'data:image/png;base64'\n", " ) {\n", " fig.imageObj.src = evt.data;\n", " fig.updated_canvas_event();\n", " fig.waiting = false;\n", " return;\n", " }\n", "\n", " var msg = JSON.parse(evt.data);\n", " var msg_type = msg['type'];\n", "\n", " // Call the \"handle_{type}\" callback, which takes\n", " // the figure and JSON message as its only arguments.\n", " try {\n", " var callback = fig['handle_' + msg_type];\n", " } catch (e) {\n", " console.log(\n", " \"No handler for the '\" + msg_type + \"' message type: \",\n", " msg\n", " );\n", " return;\n", " }\n", "\n", " if (callback) {\n", " try {\n", " // console.log(\"Handling '\" + msg_type + \"' message: \", msg);\n", " callback(fig, msg);\n", " } catch (e) {\n", " console.log(\n", " \"Exception inside the 'handler_\" + msg_type + \"' callback:\",\n", " e,\n", " e.stack,\n", " msg\n", " );\n", " }\n", " }\n", " };\n", "};\n", "\n", "function getModifiers(event) {\n", " var mods = [];\n", " if (event.ctrlKey) {\n", " mods.push('ctrl');\n", " }\n", " if (event.altKey) {\n", " mods.push('alt');\n", " }\n", " if (event.shiftKey) {\n", " mods.push('shift');\n", " }\n", " if (event.metaKey) {\n", " mods.push('meta');\n", " }\n", " return mods;\n", "}\n", "\n", "/*\n", " * return a copy of an object with only non-object keys\n", " * we need this to avoid circular references\n", " * https://stackoverflow.com/a/24161582/3208463\n", " */\n", "function simpleKeys(original) {\n", " return Object.keys(original).reduce(function (obj, key) {\n", " if (typeof original[key] !== 'object') {\n", " obj[key] = original[key];\n", " }\n", " return obj;\n", " }, {});\n", "}\n", "\n", "mpl.figure.prototype.mouse_event = function (event, name) {\n", " if (name === 'button_press') {\n", " this.canvas.focus();\n", " this.canvas_div.focus();\n", " }\n", "\n", " // from https://stackoverflow.com/q/1114465\n", " var boundingRect = this.canvas.getBoundingClientRect();\n", " var x = (event.clientX - boundingRect.left) * this.ratio;\n", " var y = (event.clientY - boundingRect.top) * this.ratio;\n", "\n", " this.send_message(name, {\n", " x: x,\n", " y: y,\n", " button: event.button,\n", " step: event.step,\n", " buttons: event.buttons,\n", " modifiers: getModifiers(event),\n", " guiEvent: simpleKeys(event),\n", " });\n", "\n", " return false;\n", "};\n", "\n", "mpl.figure.prototype._key_event_extra = function (_event, _name) {\n", " // Handle any extra behaviour associated with a key event\n", "};\n", "\n", "mpl.figure.prototype.key_event = function (event, name) {\n", " // Prevent repeat events\n", " if (name === 'key_press') {\n", " if (event.key === this._key) {\n", " return;\n", " } else {\n", " this._key = event.key;\n", " }\n", " }\n", " if (name === 'key_release') {\n", " this._key = null;\n", " }\n", "\n", " var value = '';\n", " if (event.ctrlKey && event.key !== 'Control') {\n", " value += 'ctrl+';\n", " }\n", " else if (event.altKey && event.key !== 'Alt') {\n", " value += 'alt+';\n", " }\n", " else if (event.shiftKey && event.key !== 'Shift') {\n", " value += 'shift+';\n", " }\n", "\n", " value += 'k' + event.key;\n", "\n", " this._key_event_extra(event, name);\n", "\n", " this.send_message(name, { key: value, guiEvent: simpleKeys(event) });\n", " return false;\n", "};\n", "\n", "mpl.figure.prototype.toolbar_button_onclick = function (name) {\n", " if (name === 'download') {\n", " this.handle_save(this, null);\n", " } else {\n", " this.send_message('toolbar_button', { name: name });\n", " }\n", "};\n", "\n", "mpl.figure.prototype.toolbar_button_onmouseover = function (tooltip) {\n", " this.message.textContent = tooltip;\n", "};\n", "\n", "///////////////// REMAINING CONTENT GENERATED BY embed_js.py /////////////////\n", "// prettier-ignore\n", "var _JSXTOOLS_RESIZE_OBSERVER=function(A){var t,i=new WeakMap,n=new WeakMap,a=new WeakMap,r=new WeakMap,o=new Set;function s(e){if(!(this instanceof s))throw new TypeError(\"Constructor requires 'new' operator\");i.set(this,e)}function h(){throw new TypeError(\"Function is not a constructor\")}function c(e,t,i,n){e=0 in arguments?Number(arguments[0]):0,t=1 in arguments?Number(arguments[1]):0,i=2 in arguments?Number(arguments[2]):0,n=3 in arguments?Number(arguments[3]):0,this.right=(this.x=this.left=e)+(this.width=i),this.bottom=(this.y=this.top=t)+(this.height=n),Object.freeze(this)}function d(){t=requestAnimationFrame(d);var s=new WeakMap,p=new Set;o.forEach((function(t){r.get(t).forEach((function(i){var r=t instanceof window.SVGElement,o=a.get(t),d=r?0:parseFloat(o.paddingTop),f=r?0:parseFloat(o.paddingRight),l=r?0:parseFloat(o.paddingBottom),u=r?0:parseFloat(o.paddingLeft),g=r?0:parseFloat(o.borderTopWidth),m=r?0:parseFloat(o.borderRightWidth),w=r?0:parseFloat(o.borderBottomWidth),b=u+f,F=d+l,v=(r?0:parseFloat(o.borderLeftWidth))+m,W=g+w,y=r?0:t.offsetHeight-W-t.clientHeight,E=r?0:t.offsetWidth-v-t.clientWidth,R=b+v,z=F+W,M=r?t.width:parseFloat(o.width)-R-E,O=r?t.height:parseFloat(o.height)-z-y;if(n.has(t)){var k=n.get(t);if(k[0]===M&&k[1]===O)return}n.set(t,[M,O]);var S=Object.create(h.prototype);S.target=t,S.contentRect=new c(u,d,M,O),s.has(i)||(s.set(i,[]),p.add(i)),s.get(i).push(S)}))})),p.forEach((function(e){i.get(e).call(e,s.get(e),e)}))}return s.prototype.observe=function(i){if(i instanceof window.Element){r.has(i)||(r.set(i,new Set),o.add(i),a.set(i,window.getComputedStyle(i)));var n=r.get(i);n.has(this)||n.add(this),cancelAnimationFrame(t),t=requestAnimationFrame(d)}},s.prototype.unobserve=function(i){if(i instanceof window.Element&&r.has(i)){var n=r.get(i);n.has(this)&&(n.delete(this),n.size||(r.delete(i),o.delete(i))),n.size||r.delete(i),o.size||cancelAnimationFrame(t)}},A.DOMRectReadOnly=c,A.ResizeObserver=s,A.ResizeObserverEntry=h,A}; // eslint-disable-line\n", "mpl.toolbar_items = [[\"Home\", \"Reset original view\", \"fa fa-home\", \"home\"], [\"Back\", \"Back to previous view\", \"fa fa-arrow-left\", \"back\"], [\"Forward\", \"Forward to next view\", \"fa fa-arrow-right\", \"forward\"], [\"\", \"\", \"\", \"\"], [\"Pan\", \"Left button pans, Right button zooms\\nx/y fixes axis, CTRL fixes aspect\", \"fa fa-arrows\", \"pan\"], [\"Zoom\", \"Zoom to rectangle\\nx/y fixes axis\", \"fa fa-square-o\", \"zoom\"], [\"\", \"\", \"\", \"\"], [\"Download\", \"Download plot\", \"fa fa-floppy-o\", \"download\"]];\n", "\n", "mpl.extensions = [\"eps\", \"jpeg\", \"pgf\", \"pdf\", \"png\", \"ps\", \"raw\", \"svg\", \"tif\", \"webp\"];\n", "\n", "mpl.default_extension = \"png\";/* global mpl */\n", "\n", "var comm_websocket_adapter = function (comm) {\n", " // Create a \"websocket\"-like object which calls the given IPython comm\n", " // object with the appropriate methods. Currently this is a non binary\n", " // socket, so there is still some room for performance tuning.\n", " var ws = {};\n", "\n", " ws.binaryType = comm.kernel.ws.binaryType;\n", " ws.readyState = comm.kernel.ws.readyState;\n", " function updateReadyState(_event) {\n", " if (comm.kernel.ws) {\n", " ws.readyState = comm.kernel.ws.readyState;\n", " } else {\n", " ws.readyState = 3; // Closed state.\n", " }\n", " }\n", " comm.kernel.ws.addEventListener('open', updateReadyState);\n", " comm.kernel.ws.addEventListener('close', updateReadyState);\n", " comm.kernel.ws.addEventListener('error', updateReadyState);\n", "\n", " ws.close = function () {\n", " comm.close();\n", " };\n", " ws.send = function (m) {\n", " //console.log('sending', m);\n", " comm.send(m);\n", " };\n", " // Register the callback with on_msg.\n", " comm.on_msg(function (msg) {\n", " //console.log('receiving', msg['content']['data'], msg);\n", " var data = msg['content']['data'];\n", " if (data['blob'] !== undefined) {\n", " data = {\n", " data: new Blob(msg['buffers'], { type: data['blob'] }),\n", " };\n", " }\n", " // Pass the mpl event to the overridden (by mpl) onmessage function.\n", " ws.onmessage(data);\n", " });\n", " return ws;\n", "};\n", "\n", "mpl.mpl_figure_comm = function (comm, msg) {\n", " // This is the function which gets called when the mpl process\n", " // starts-up an IPython Comm through the \"matplotlib\" channel.\n", "\n", " var id = msg.content.data.id;\n", " // Get hold of the div created by the display call when the Comm\n", " // socket was opened in Python.\n", " var element = document.getElementById(id);\n", " var ws_proxy = comm_websocket_adapter(comm);\n", "\n", " function ondownload(figure, _format) {\n", " window.open(figure.canvas.toDataURL());\n", " }\n", "\n", " var fig = new mpl.figure(id, ws_proxy, ondownload, element);\n", "\n", " // Call onopen now - mpl needs it, as it is assuming we've passed it a real\n", " // web socket which is closed, not our websocket->open comm proxy.\n", " ws_proxy.onopen();\n", "\n", " fig.parent_element = element;\n", " fig.cell_info = mpl.find_output_cell(\"
\");\n", " if (!fig.cell_info) {\n", " console.error('Failed to find cell for figure', id, fig);\n", " return;\n", " }\n", " fig.cell_info[0].output_area.element.on(\n", " 'cleared',\n", " { fig: fig },\n", " fig._remove_fig_handler\n", " );\n", "};\n", "\n", "mpl.figure.prototype.handle_close = function (fig, msg) {\n", " var width = fig.canvas.width / fig.ratio;\n", " fig.cell_info[0].output_area.element.off(\n", " 'cleared',\n", " fig._remove_fig_handler\n", " );\n", " fig.resizeObserverInstance.unobserve(fig.canvas_div);\n", "\n", " // Update the output cell to use the data from the current canvas.\n", " fig.push_to_output();\n", " var dataURL = fig.canvas.toDataURL();\n", " // Re-enable the keyboard manager in IPython - without this line, in FF,\n", " // the notebook keyboard shortcuts fail.\n", " IPython.keyboard_manager.enable();\n", " fig.parent_element.innerHTML =\n", " '';\n", " fig.close_ws(fig, msg);\n", "};\n", "\n", "mpl.figure.prototype.close_ws = function (fig, msg) {\n", " fig.send_message('closing', msg);\n", " // fig.ws.close()\n", "};\n", "\n", "mpl.figure.prototype.push_to_output = function (_remove_interactive) {\n", " // Turn the data on the canvas into data in the output cell.\n", " var width = this.canvas.width / this.ratio;\n", " var dataURL = this.canvas.toDataURL();\n", " this.cell_info[1]['text/html'] =\n", " '';\n", "};\n", "\n", "mpl.figure.prototype.updated_canvas_event = function () {\n", " // Tell IPython that the notebook contents must change.\n", " IPython.notebook.set_dirty(true);\n", " this.send_message('ack', {});\n", " var fig = this;\n", " // Wait a second, then push the new image to the DOM so\n", " // that it is saved nicely (might be nice to debounce this).\n", " setTimeout(function () {\n", " fig.push_to_output();\n", " }, 1000);\n", "};\n", "\n", "mpl.figure.prototype._init_toolbar = function () {\n", " var fig = this;\n", "\n", " var toolbar = document.createElement('div');\n", " toolbar.classList = 'btn-toolbar';\n", " this.root.appendChild(toolbar);\n", "\n", " function on_click_closure(name) {\n", " return function (_event) {\n", " return fig.toolbar_button_onclick(name);\n", " };\n", " }\n", "\n", " function on_mouseover_closure(tooltip) {\n", " return function (event) {\n", " if (!event.currentTarget.disabled) {\n", " return fig.toolbar_button_onmouseover(tooltip);\n", " }\n", " };\n", " }\n", "\n", " fig.buttons = {};\n", " var buttonGroup = document.createElement('div');\n", " buttonGroup.classList = 'btn-group';\n", " var button;\n", " for (var toolbar_ind in mpl.toolbar_items) {\n", " var name = mpl.toolbar_items[toolbar_ind][0];\n", " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n", " var image = mpl.toolbar_items[toolbar_ind][2];\n", " var method_name = mpl.toolbar_items[toolbar_ind][3];\n", "\n", " if (!name) {\n", " /* Instead of a spacer, we start a new button group. */\n", " if (buttonGroup.hasChildNodes()) {\n", " toolbar.appendChild(buttonGroup);\n", " }\n", " buttonGroup = document.createElement('div');\n", " buttonGroup.classList = 'btn-group';\n", " continue;\n", " }\n", "\n", " button = fig.buttons[name] = document.createElement('button');\n", " button.classList = 'btn btn-default';\n", " button.href = '#';\n", " button.title = name;\n", " button.innerHTML = '';\n", " button.addEventListener('click', on_click_closure(method_name));\n", " button.addEventListener('mouseover', on_mouseover_closure(tooltip));\n", " buttonGroup.appendChild(button);\n", " }\n", "\n", " if (buttonGroup.hasChildNodes()) {\n", " toolbar.appendChild(buttonGroup);\n", " }\n", "\n", " // Add the status bar.\n", " var status_bar = document.createElement('span');\n", " status_bar.classList = 'mpl-message pull-right';\n", " toolbar.appendChild(status_bar);\n", " this.message = status_bar;\n", "\n", " // Add the close button to the window.\n", " var buttongrp = document.createElement('div');\n", " buttongrp.classList = 'btn-group inline pull-right';\n", " button = document.createElement('button');\n", " button.classList = 'btn btn-mini btn-primary';\n", " button.href = '#';\n", " button.title = 'Stop Interaction';\n", " button.innerHTML = '';\n", " button.addEventListener('click', function (_evt) {\n", " fig.handle_close(fig, {});\n", " });\n", " button.addEventListener(\n", " 'mouseover',\n", " on_mouseover_closure('Stop Interaction')\n", " );\n", " buttongrp.appendChild(button);\n", " var titlebar = this.root.querySelector('.ui-dialog-titlebar');\n", " titlebar.insertBefore(buttongrp, titlebar.firstChild);\n", "};\n", "\n", "mpl.figure.prototype._remove_fig_handler = function (event) {\n", " var fig = event.data.fig;\n", " if (event.target !== this) {\n", " // Ignore bubbled events from children.\n", " return;\n", " }\n", " fig.close_ws(fig, {});\n", "};\n", "\n", "mpl.figure.prototype._root_extra_style = function (el) {\n", " el.style.boxSizing = 'content-box'; // override notebook setting of border-box.\n", "};\n", "\n", "mpl.figure.prototype._canvas_extra_style = function (el) {\n", " // this is important to make the div 'focusable\n", " el.setAttribute('tabindex', 0);\n", " // reach out to IPython and tell the keyboard manager to turn it's self\n", " // off when our div gets focus\n", "\n", " // location in version 3\n", " if (IPython.notebook.keyboard_manager) {\n", " IPython.notebook.keyboard_manager.register_events(el);\n", " } else {\n", " // location in version 2\n", " IPython.keyboard_manager.register_events(el);\n", " }\n", "};\n", "\n", "mpl.figure.prototype._key_event_extra = function (event, _name) {\n", " // Check for shift+enter\n", " if (event.shiftKey && event.which === 13) {\n", " this.canvas_div.blur();\n", " // select the cell after this one\n", " var index = IPython.notebook.find_cell_index(this.cell_info[0]);\n", " IPython.notebook.select(index + 1);\n", " }\n", "};\n", "\n", "mpl.figure.prototype.handle_save = function (fig, _msg) {\n", " fig.ondownload(fig, null);\n", "};\n", "\n", "mpl.find_output_cell = function (html_output) {\n", " // Return the cell and output element which can be found *uniquely* in the notebook.\n", " // Note - this is a bit hacky, but it is done because the \"notebook_saving.Notebook\"\n", " // IPython event is triggered only after the cells have been serialised, which for\n", " // our purposes (turning an active figure into a static one), is too late.\n", " var cells = IPython.notebook.get_cells();\n", " var ncells = cells.length;\n", " for (var i = 0; i < ncells; i++) {\n", " var cell = cells[i];\n", " if (cell.cell_type === 'code') {\n", " for (var j = 0; j < cell.output_area.outputs.length; j++) {\n", " var data = cell.output_area.outputs[j];\n", " if (data.data) {\n", " // IPython >= 3 moved mimebundle to data attribute of output\n", " data = data.data;\n", " }\n", " if (data['text/html'] === html_output) {\n", " return [cell, data, j];\n", " }\n", " }\n", " }\n", " }\n", "};\n", "\n", "// Register the function which deals with the matplotlib target/channel.\n", "// The kernel may be null if the page has been refreshed.\n", "if (IPython.notebook.kernel !== null) {\n", " IPython.notebook.kernel.comm_manager.register_target(\n", " 'matplotlib',\n", " mpl.mpl_figure_comm\n", " );\n", "}\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/plain": [ "" ] }, "execution_count": 27, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import matplotlib.pyplot as plt\n", "\n", "h.PlotShape(False).plot(plt)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can also make an interactive shape plot in a separate window using NEURON's built-in graphics, via:" ] }, { "cell_type": "code", "execution_count": 28, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.295673Z", "iopub.status.busy": "2025-05-23T00:18:47.295363Z", "iopub.status.idle": "2025-05-23T00:18:47.300457Z", "shell.execute_reply": "2025-05-23T00:18:47.300122Z" } }, "outputs": [], "source": [ "# enable NEURON's graphics\n", "from neuron import gui\n", "\n", "# here: True means show using NEURON's GUI; False means do not do so, at least not at first\n", "ps = h.PlotShape(True)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Either way, you will notice that this looks like a line instead of a ball and stick. Why? It's because NEURON by default does not display diameters. This behavior is useful when we need to see the structure of small dendrites, and in NEURON 7.7, it's the only supported option for Jupyter notebooks with h.PlotShape (although gui2.PlotShape provides similar functionality)... but when using NEURON's built-in graphics, we can use the show method to show diamters via:" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Why does this look like a line instead of a ball and stick? It's because NEURON by default does not display diameters. This behavior is useful when we need to see the structure of small dendrites, but for now, let's show the diameters:" ] }, { "cell_type": "code", "execution_count": 29, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.301830Z", "iopub.status.busy": "2025-05-23T00:18:47.301570Z", "iopub.status.idle": "2025-05-23T00:18:47.304770Z", "shell.execute_reply": "2025-05-23T00:18:47.304245Z" } }, "outputs": [ { "data": { "text/plain": [ "1.0" ] }, "execution_count": 29, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ps = h.PlotShape(True)\n", "ps.show(0)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In Jupyter, we can rotate images by clicking and dragging; we can zoom by right-clicking and dragging. When using NEURON's built-in graphics which appear in separate windows, right-click and select \"3D Rotate\", then drag to rotate. For this simple morphology, there is not anything else more to see." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "(Note: If you want to build your own visualization tool using matplotlib, mayavi, etc, ensure 3D points exist with `h.define_shape()`, then loop over all the sections with `h.allsec()` and read the morphology using `sec.x3d(i)` etc and `sec.diam3d(i)` for `i` in 0, .., `sec.n3d() - 1`. Less efficiently, the (x, y, z; diam) values for a whole section may be read by `sec.psection()['morphology']['pt3d']`.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Specify biophysics" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Our cell needs biophysical mechanisms in the membrane. We start by setting axial resistance and membrane capacitance. (Recall: NEURON's default axial resistance is appropriate for squid but low for mammalian models.)" ] }, { "cell_type": "code", "execution_count": 30, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.306089Z", "iopub.status.busy": "2025-05-23T00:18:47.305959Z", "iopub.status.idle": "2025-05-23T00:18:47.310573Z", "shell.execute_reply": "2025-05-23T00:18:47.310249Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self, gid):\n", " self._gid = gid\n", " self.soma = h.Section(name=\"soma\", cell=self)\n", " self.dend = h.Section(name=\"dend\", cell=self)\n", " self.dend.connect(self.soma)\n", " self.all = self.soma.wholetree() # <-- NEW\n", " self.soma.L = self.soma.diam = 12.6157 * µm\n", " self.dend.L = 200 * µm\n", " self.dend.diam = 1 * µm\n", " for sec in self.all: # <-- NEW\n", " sec.Ra = 100 # Axial resistance in Ohm * cm # <-- NEW\n", " sec.cm = 1 # Membrane capacitance in micro Farads / cm^2 # <-- NEW\n", "\n", " def __repr__(self):\n", " return \"BallAndStick[{}]\".format(self._gid)\n", "\n", "\n", "my_cell = BallAndStick(0)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We've added a new variable `self.all` which is a list of all the sections in the cell. The wholetree method of a Section returns a list of all the sections it is attached to -- i.e. the corresponding neuron. This will help us iterate over them to -- in this case -- specify axial resistance and membrane capacitance, but can also be used for any other biophysics." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This is getting a little complicated. Let's split `__init__` into several functions:" ] }, { "cell_type": "code", "execution_count": 31, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.312702Z", "iopub.status.busy": "2025-05-23T00:18:47.311951Z", "iopub.status.idle": "2025-05-23T00:18:47.317056Z", "shell.execute_reply": "2025-05-23T00:18:47.316733Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self, gid):\n", " self._gid = gid\n", " self._setup_morphology()\n", " self._setup_biophysics()\n", "\n", " def _setup_morphology(self):\n", " self.soma = h.Section(name=\"soma\", cell=self)\n", " self.dend = h.Section(name=\"dend\", cell=self)\n", " self.all = [self.soma, self.dend]\n", " self.dend.connect(self.soma)\n", " self.soma.L = self.soma.diam = 12.6157 * µm\n", " self.dend.L = 200 * µm\n", " self.dend.diam = 1\n", "\n", " def _setup_biophysics(self):\n", " for sec in self.all:\n", " sec.Ra = 100 # Axial resistance in Ohm * cm\n", " sec.cm = 1 # Membrane capacitance in micro Farads / cm^2\n", "\n", " def __repr__(self):\n", " return \"BallAndStick[{}]\".format(self._gid)\n", "\n", "\n", "my_cell = BallAndStick(0)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "It may not seem like we gained a lot by doing this, but it makes the code a little more self-documenting (e.g. we can see at a glance which parts have to do with defining the morphology) and it divides it into pieces that could be reused in other cells." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'll put Hodgkin-Huxley (`hh`) kinetics in the soma and specify some parameters:" ] }, { "cell_type": "code", "execution_count": 32, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.319241Z", "iopub.status.busy": "2025-05-23T00:18:47.318666Z", "iopub.status.idle": "2025-05-23T00:18:47.324168Z", "shell.execute_reply": "2025-05-23T00:18:47.323885Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self, gid):\n", " self._gid = gid\n", " self._setup_morphology()\n", " self._setup_biophysics()\n", "\n", " def _setup_morphology(self):\n", " self.soma = h.Section(name=\"soma\", cell=self)\n", " self.dend = h.Section(name=\"dend\", cell=self)\n", " self.dend.connect(self.soma)\n", " self.all = self.soma.wholetree()\n", " self.soma.L = self.soma.diam = 12.6157 * µm\n", " self.dend.L = 200 * µm\n", " self.dend.diam = 1 * µm\n", "\n", " def _setup_biophysics(self):\n", " for sec in self.all:\n", " sec.Ra = 100 # Axial resistance in Ohm * cm\n", " sec.cm = 1 # Membrane capacitance in micro Farads / cm^2\n", " self.soma.insert(\"hh\") # <-- NEW\n", " for seg in self.soma: # <-- NEW\n", " seg.hh.gnabar = (\n", " 0.12 # Sodium conductance in S/cm2 # <-- NEW\n", " )\n", " seg.hh.gkbar = (\n", " 0.036 # Potassium conductance in S/cm2 # <-- NEW\n", " )\n", " seg.hh.gl = 0.0003 # Leak conductance in S/cm2 # <-- NEW\n", " seg.hh.el = (\n", " -54.3 * mV\n", " ) # Reversal potential # <-- NEW\n", "\n", " def __repr__(self):\n", " return \"BallAndStick[{}]\".format(self._gid)\n", "\n", "\n", "my_cell = BallAndStick(0)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "(Note: here we loop over all segments in the soma, even though we only defined one segment. This gives us more general code, that will still work if we change the number of segments later. Always write your model implementations to be independent of the discretization.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Finally, let's insert a passive (leak) current in the dendrite:" ] }, { "cell_type": "code", "execution_count": 33, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.325920Z", "iopub.status.busy": "2025-05-23T00:18:47.325779Z", "iopub.status.idle": "2025-05-23T00:18:47.366677Z", "shell.execute_reply": "2025-05-23T00:18:47.366313Z" } }, "outputs": [], "source": [ "class BallAndStick:\n", " def __init__(self, gid):\n", " self._gid = gid\n", " self._setup_morphology()\n", " self._setup_biophysics()\n", "\n", " def _setup_morphology(self):\n", " self.soma = h.Section(name=\"soma\", cell=self)\n", " self.dend = h.Section(name=\"dend\", cell=self)\n", " self.dend.connect(self.soma)\n", " self.all = self.soma.wholetree()\n", " self.soma.L = self.soma.diam = 12.6157 * µm\n", " self.dend.L = 200 * µm\n", " self.dend.diam = 1 * µm\n", "\n", " def _setup_biophysics(self):\n", " for sec in self.all:\n", " sec.Ra = 100 # Axial resistance in Ohm * cm\n", " sec.cm = 1 # Membrane capacitance in micro Farads / cm^2\n", " self.soma.insert(\"hh\")\n", " for seg in self.soma:\n", " seg.hh.gnabar = 0.12 # Sodium conductance in S/cm2\n", " seg.hh.gkbar = 0.036 # Potassium conductance in S/cm2\n", " seg.hh.gl = 0.0003 # Leak conductance in S/cm2\n", " seg.hh.el = -54.3 * mV # Reversal potential\n", " # Insert passive current in the dendrite # <-- NEW\n", " self.dend.insert(\"pas\") # <-- NEW\n", " for seg in self.dend: # <-- NEW\n", " seg.pas.g = 0.001 # Passive conductance in S/cm2 # <-- NEW\n", " seg.pas.e = -65 * mV # Leak reversal potential # <-- NEW\n", "\n", " def __repr__(self):\n", " return \"BallAndStick[{}]\".format(self._gid)\n", "\n", "\n", "my_cell = BallAndStick(0)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If we weren't sure about the units for a given mechanism’s parameter, use units(). Pass in a string with the paramater name, an underscore, and then the mechanism name. e.g." ] }, { "cell_type": "code", "execution_count": 34, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.369005Z", "iopub.status.busy": "2025-05-23T00:18:47.368418Z", "iopub.status.idle": "2025-05-23T00:18:47.372568Z", "shell.execute_reply": "2025-05-23T00:18:47.372241Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "S/cm2\n" ] } ], "source": [ "print(h.units(\"gnabar_hh\"))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can use `psection` to see what is present where:" ] }, { "cell_type": "code", "execution_count": 35, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.374196Z", "iopub.status.busy": "2025-05-23T00:18:47.374056Z", "iopub.status.idle": "2025-05-23T00:18:47.390709Z", "shell.execute_reply": "2025-05-23T00:18:47.390348Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "BallAndStick[0].soma: hh" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "BallAndStick[0].dend: pas\n" ] } ], "source": [ "for sec in h.allsec():\n", " print(\"%s: %s\" % (sec, \", \".join(sec.psection()[\"density_mechs\"].keys())))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "(A quick aside about `psection`: it's great for quickly getting information when interactively exploring a model because it provides a lot of data in one pass; for the same reason, however, other solutions that only extract specific desired information are more efficient for automatic explorations.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Instrumentation" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We have now created our neuron. Let's stimulate it and visualize its dynamics." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Stimulation" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'll inject a current pulse into the distal (1) end of the dendrite starting 5 ms after the simulation starts, with a duration of 1 ms, and an amplitude of 0.1 nA. First, let's define and position the current clamp object:" ] }, { "cell_type": "code", "execution_count": 36, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.392463Z", "iopub.status.busy": "2025-05-23T00:18:47.392302Z", "iopub.status.idle": "2025-05-23T00:18:47.395124Z", "shell.execute_reply": "2025-05-23T00:18:47.394812Z" } }, "outputs": [], "source": [ "stim = h.IClamp(my_cell.dend(1))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If we want, we can check the segment the current clamp is inserted into:" ] }, { "cell_type": "code", "execution_count": 37, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.396666Z", "iopub.status.busy": "2025-05-23T00:18:47.396415Z", "iopub.status.idle": "2025-05-23T00:18:47.400315Z", "shell.execute_reply": "2025-05-23T00:18:47.400006Z" } }, "outputs": [ { "data": { "text/plain": [ "BallAndStick[0].dend(1)" ] }, "execution_count": 37, "metadata": {}, "output_type": "execute_result" } ], "source": [ "stim.get_segment()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Recall that if we forget what the names of the attributes are, we can check the `dir`. Here we do that and ignore Python-created attributes:" ] }, { "cell_type": "code", "execution_count": 38, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.401612Z", "iopub.status.busy": "2025-05-23T00:18:47.401479Z", "iopub.status.idle": "2025-05-23T00:18:47.403996Z", "shell.execute_reply": "2025-05-23T00:18:47.403703Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "amp, baseattr, delay, dur, get_loc, get_segment, has_loc, hname, hocobjptr, i, loc, same\n" ] } ], "source": [ "print(\", \".join(item for item in dir(stim) if not item.startswith(\"__\")))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The parameters we need to set for a current clamp are `delay` (measured in ms), `dur` (measured in ms), and `amp` (in nA):" ] }, { "cell_type": "code", "execution_count": 39, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.405402Z", "iopub.status.busy": "2025-05-23T00:18:47.405069Z", "iopub.status.idle": "2025-05-23T00:18:47.407441Z", "shell.execute_reply": "2025-05-23T00:18:47.407139Z" } }, "outputs": [], "source": [ "stim.delay = 5\n", "stim.dur = 1\n", "stim.amp = 0.1" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Recording" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'll start out recording the membrane potential at the center of the soma and the time in two NEURON Vectors:" ] }, { "cell_type": "code", "execution_count": 40, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.408833Z", "iopub.status.busy": "2025-05-23T00:18:47.408603Z", "iopub.status.idle": "2025-05-23T00:18:47.411519Z", "shell.execute_reply": "2025-05-23T00:18:47.411185Z" } }, "outputs": [], "source": [ "soma_v = h.Vector().record(my_cell.soma(0.5)._ref_v)\n", "t = h.Vector().record(h._ref_t)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Run the simulation" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We initialize membrane potential everywhere to -65 mV:" ] }, { "cell_type": "code", "execution_count": 41, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.413088Z", "iopub.status.busy": "2025-05-23T00:18:47.412772Z", "iopub.status.idle": "2025-05-23T00:18:47.416114Z", "shell.execute_reply": "2025-05-23T00:18:47.415821Z" } }, "outputs": [ { "data": { "text/plain": [ "1.0" ] }, "execution_count": 41, "metadata": {}, "output_type": "execute_result" } ], "source": [ "h.finitialize(-65 * mV)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now we run until time 25 ms:" ] }, { "cell_type": "code", "execution_count": 42, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.417493Z", "iopub.status.busy": "2025-05-23T00:18:47.417342Z", "iopub.status.idle": "2025-05-23T00:18:47.421811Z", "shell.execute_reply": "2025-05-23T00:18:47.421518Z" } }, "outputs": [ { "data": { "text/plain": [ "0.0" ] }, "execution_count": 42, "metadata": {}, "output_type": "execute_result" } ], "source": [ "h.continuerun(25 * ms)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Plot the results" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As in the scripting neuron basics part of the tutorial, we initialize `bokeh` graphics:" ] }, { "cell_type": "code", "execution_count": 43, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.423152Z", "iopub.status.busy": "2025-05-23T00:18:47.422938Z", "iopub.status.idle": "2025-05-23T00:18:47.742514Z", "shell.execute_reply": "2025-05-23T00:18:47.742143Z" } }, "outputs": [ { "data": { "text/html": [ " \n", "
\n", " \n", " Loading BokehJS ...\n", "
\n" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "'use strict';\n", "(function(root) {\n", " function now() {\n", " return new Date();\n", " }\n", "\n", " const force = true;\n", "\n", " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", " root._bokeh_onload_callbacks = [];\n", " root._bokeh_is_loading = undefined;\n", " }\n", "\n", "const JS_MIME_TYPE = 'application/javascript';\n", " const HTML_MIME_TYPE = 'text/html';\n", " const EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", " const CLASS_NAME = 'output_bokeh rendered_html';\n", "\n", " /**\n", " * Render data to the DOM node\n", " */\n", " function render(props, node) {\n", " const script = document.createElement(\"script\");\n", " node.appendChild(script);\n", " }\n", "\n", " /**\n", " * Handle when an output is cleared or removed\n", " */\n", " function handleClearOutput(event, handle) {\n", " function drop(id) {\n", " const view = Bokeh.index.get_by_id(id)\n", " if (view != null) {\n", " view.model.document.clear()\n", " Bokeh.index.delete(view)\n", " }\n", " }\n", "\n", " const cell = handle.cell;\n", "\n", " const id = cell.output_area._bokeh_element_id;\n", " const server_id = cell.output_area._bokeh_server_id;\n", "\n", " // Clean up Bokeh references\n", " if (id != null) {\n", " drop(id)\n", " }\n", "\n", " if (server_id !== undefined) {\n", " // Clean up Bokeh references\n", " const cmd_clean = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", " cell.notebook.kernel.execute(cmd_clean, {\n", " iopub: {\n", " output: function(msg) {\n", " const id = msg.content.text.trim()\n", " drop(id)\n", " }\n", " }\n", " });\n", " // Destroy server and session\n", " const cmd_destroy = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", " cell.notebook.kernel.execute(cmd_destroy);\n", " }\n", " }\n", "\n", " /**\n", " * Handle when a new output is added\n", " */\n", " function handleAddOutput(event, handle) {\n", " const output_area = handle.output_area;\n", " const output = handle.output;\n", "\n", " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", " if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n", " return\n", " }\n", "\n", " const toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", "\n", " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", " // store reference to embed id on output_area\n", " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", " }\n", " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", " const bk_div = document.createElement(\"div\");\n", " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", " const script_attrs = bk_div.children[0].attributes;\n", " for (let i = 0; i < script_attrs.length; i++) {\n", " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n", " }\n", " // store reference to server id on output_area\n", " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", " }\n", " }\n", "\n", " function register_renderer(events, OutputArea) {\n", "\n", " function append_mime(data, metadata, element) {\n", " // create a DOM node to render to\n", " const toinsert = this.create_output_subarea(\n", " metadata,\n", " CLASS_NAME,\n", " EXEC_MIME_TYPE\n", " );\n", " this.keyboard_manager.register_events(toinsert);\n", " // Render to node\n", " const props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", " render(props, toinsert[toinsert.length - 1]);\n", " element.append(toinsert);\n", " return toinsert\n", " }\n", "\n", " /* Handle when an output is cleared or removed */\n", " events.on('clear_output.CodeCell', handleClearOutput);\n", " events.on('delete.Cell', handleClearOutput);\n", "\n", " /* Handle when a new output is added */\n", " events.on('output_added.OutputArea', handleAddOutput);\n", "\n", " /**\n", " * Register the mime type and append_mime function with output_area\n", " */\n", " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", " /* Is output safe? */\n", " safe: true,\n", " /* Index of renderer in `output_area.display_order` */\n", " index: 0\n", " });\n", " }\n", "\n", " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", " if (root.Jupyter !== undefined) {\n", " const events = require('base/js/events');\n", " const OutputArea = require('notebook/js/outputarea').OutputArea;\n", "\n", " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", " register_renderer(events, OutputArea);\n", " }\n", " }\n", " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", " root._bokeh_timeout = Date.now() + 5000;\n", " root._bokeh_failed_load = false;\n", " }\n", "\n", " const NB_LOAD_WARNING = {'data': {'text/html':\n", " \"
\\n\"+\n", " \"

\\n\"+\n", " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", " \"

\\n\"+\n", " \"
    \\n\"+\n", " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", " \"
\\n\"+\n", " \"\\n\"+\n", " \"from bokeh.resources import INLINE\\n\"+\n", " \"output_notebook(resources=INLINE)\\n\"+\n", " \"\\n\"+\n", " \"
\"}};\n", "\n", " function display_loaded(error = null) {\n", " const el = document.getElementById(\"ae187e57-b2c7-41ec-bb3a-1be5fd40c000\");\n", " if (el != null) {\n", " const html = (() => {\n", " if (typeof root.Bokeh === \"undefined\") {\n", " if (error == null) {\n", " return \"BokehJS is loading ...\";\n", " } else {\n", " return \"BokehJS failed to load.\";\n", " }\n", " } else {\n", " const prefix = `BokehJS ${root.Bokeh.version}`;\n", " if (error == null) {\n", " return `${prefix} successfully loaded.`;\n", " } else {\n", " return `${prefix} encountered errors while loading and may not function as expected.`;\n", " }\n", " }\n", " })();\n", " el.innerHTML = html;\n", "\n", " if (error != null) {\n", " const wrapper = document.createElement(\"div\");\n", " wrapper.style.overflow = \"auto\";\n", " wrapper.style.height = \"5em\";\n", " wrapper.style.resize = \"vertical\";\n", " const content = document.createElement(\"div\");\n", " content.style.fontFamily = \"monospace\";\n", " content.style.whiteSpace = \"pre-wrap\";\n", " content.style.backgroundColor = \"rgb(255, 221, 221)\";\n", " content.textContent = error.stack ?? error.toString();\n", " wrapper.append(content);\n", " el.append(wrapper);\n", " }\n", " } else if (Date.now() < root._bokeh_timeout) {\n", " setTimeout(() => display_loaded(error), 100);\n", " }\n", " }\n", "\n", " function run_callbacks() {\n", " try {\n", " root._bokeh_onload_callbacks.forEach(function(callback) {\n", " if (callback != null)\n", " callback();\n", " });\n", " } finally {\n", " delete root._bokeh_onload_callbacks\n", " }\n", " console.debug(\"Bokeh: all callbacks have finished\");\n", " }\n", "\n", " function load_libs(css_urls, js_urls, callback) {\n", " if (css_urls == null) css_urls = [];\n", " if (js_urls == null) js_urls = [];\n", "\n", " root._bokeh_onload_callbacks.push(callback);\n", " if (root._bokeh_is_loading > 0) {\n", " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", " return null;\n", " }\n", " if (js_urls == null || js_urls.length === 0) {\n", " run_callbacks();\n", " return null;\n", " }\n", " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", "\n", " function on_load() {\n", " root._bokeh_is_loading--;\n", " if (root._bokeh_is_loading === 0) {\n", " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", " run_callbacks()\n", " }\n", " }\n", "\n", " function on_error(url) {\n", " console.error(\"failed to load \" + url);\n", " }\n", "\n", " for (let i = 0; i < css_urls.length; i++) {\n", " const url = css_urls[i];\n", " const element = document.createElement(\"link\");\n", " element.onload = on_load;\n", " element.onerror = on_error.bind(null, url);\n", " element.rel = \"stylesheet\";\n", " element.type = \"text/css\";\n", " element.href = url;\n", " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", " document.body.appendChild(element);\n", " }\n", "\n", " for (let i = 0; i < js_urls.length; i++) {\n", " const url = js_urls[i];\n", " const element = document.createElement('script');\n", " element.onload = on_load;\n", " element.onerror = on_error.bind(null, url);\n", " element.async = false;\n", " element.src = url;\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " document.head.appendChild(element);\n", " }\n", " };\n", "\n", " function inject_raw_css(css) {\n", " const element = document.createElement(\"style\");\n", " element.appendChild(document.createTextNode(css));\n", " document.body.appendChild(element);\n", " }\n", "\n", " const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.7.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.7.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.7.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.7.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.7.3.min.js\"];\n", " const css_urls = [];\n", "\n", " const inline_js = [ function(Bokeh) {\n", " Bokeh.set_log_level(\"info\");\n", " },\n", "function(Bokeh) {\n", " }\n", " ];\n", "\n", " function run_inline_js() {\n", " if (root.Bokeh !== undefined || force === true) {\n", " try {\n", " for (let i = 0; i < inline_js.length; i++) {\n", " inline_js[i].call(root, root.Bokeh);\n", " }\n", "\n", " } catch (error) {display_loaded(error);throw error;\n", " }if (force === true) {\n", " display_loaded();\n", " }} else if (Date.now() < root._bokeh_timeout) {\n", " setTimeout(run_inline_js, 100);\n", " } else if (!root._bokeh_failed_load) {\n", " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", " root._bokeh_failed_load = true;\n", " } else if (force !== true) {\n", " const cell = $(document.getElementById(\"ae187e57-b2c7-41ec-bb3a-1be5fd40c000\")).parents('.cell').data().cell;\n", " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", " }\n", " }\n", "\n", " if (root._bokeh_is_loading === 0) {\n", " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", " run_inline_js();\n", " } else {\n", " load_libs(css_urls, js_urls, function() {\n", " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", " run_inline_js();\n", " });\n", " }\n", "}(window));" ], "application/vnd.bokehjs_load.v0+json": "'use strict';\n(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n const NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded(error = null) {\n const el = document.getElementById(\"ae187e57-b2c7-41ec-bb3a-1be5fd40c000\");\n if (el != null) {\n const html = (() => {\n if (typeof root.Bokeh === \"undefined\") {\n if (error == null) {\n return \"BokehJS is loading ...\";\n } else {\n return \"BokehJS failed to load.\";\n }\n } else {\n const prefix = `BokehJS ${root.Bokeh.version}`;\n if (error == null) {\n return `${prefix} successfully loaded.`;\n } else {\n return `${prefix} encountered errors while loading and may not function as expected.`;\n }\n }\n })();\n el.innerHTML = html;\n\n if (error != null) {\n const wrapper = document.createElement(\"div\");\n wrapper.style.overflow = \"auto\";\n wrapper.style.height = \"5em\";\n wrapper.style.resize = \"vertical\";\n const content = document.createElement(\"div\");\n content.style.fontFamily = \"monospace\";\n content.style.whiteSpace = \"pre-wrap\";\n content.style.backgroundColor = \"rgb(255, 221, 221)\";\n content.textContent = error.stack ?? error.toString();\n wrapper.append(content);\n el.append(wrapper);\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(() => display_loaded(error), 100);\n }\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.7.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.7.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.7.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.7.3.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.7.3.min.js\"];\n const css_urls = [];\n\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {\n }\n ];\n\n function run_inline_js() {\n if (root.Bokeh !== undefined || force === true) {\n try {\n for (let i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n\n } catch (error) {display_loaded(error);throw error;\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n const cell = $(document.getElementById(\"ae187e57-b2c7-41ec-bb3a-1be5fd40c000\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" }, "metadata": {}, "output_type": "display_data" } ], "source": [ "from bokeh.io import output_notebook\n", "import bokeh.plotting as plt\n", "\n", "output_notebook()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "(If you prefer to use `matplotlib` graphics, you can adapt the code below using the examples in the scripting neuron basics part of the tutorial.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now we plot membrane potential vs time:" ] }, { "cell_type": "code", "execution_count": 44, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:47.744108Z", "iopub.status.busy": "2025-05-23T00:18:47.743864Z", "iopub.status.idle": "2025-05-23T00:18:48.030524Z", "shell.execute_reply": "2025-05-23T00:18:48.030086Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "
\n" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "(function(root) {\n", " function embed_document(root) {\n", " const docs_json = {\"0b9d693a-9293-4a28-92d6-88690756094b\":{\"version\":\"3.7.3\",\"title\":\"Bokeh Application\",\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"p1003\",\"attributes\":{\"x_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1004\"},\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1005\"},\"x_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1012\"},\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1013\"},\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"p1010\"},\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1043\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1037\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1038\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1039\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.99859895156952,-64.99794940680333,-64.9973300246924,-64.99673830824379,-64.99617201809848,-64.99562914432974,-64.99510788141654,-64.9946066060273,-64.99412385729227,-64.99365831927994,-64.99320880542628,-64.99277424469419,-64.99235366926698,-64.99194620360169,-64.99155105468868,-64.99116750338113,-64.99079489667402,-64.99043264082597,-64.99008019522934,-64.98973706694485,-64.98940280582678,-64.98907700017278,-64.98875927284017,-64.98844927777704,-64.9881466969224,-64.98785123743474,-64.98756262921283,-64.98728062267692,-64.98700498678193,-64.98673550723724,-64.98647198491092,-64.98621423439829,-64.98596208273723,-64.9857153682545,-64.98547393952902,-64.98523765445972,-64.98500637942695,-64.98477998853737,-64.98455836294382,-64.98434139023209,-64.98412896386783,-64.98392098269719,-64.98371735049578,-64.983517975561,-64.98332277034311,-64.98313165111144,-64.98294453765189,-64.98276135299274,-64.98258202315591,-64.9824064769311,-64.98223464567062,-64.98206646310275,-64.9819018651621,-64.9817407898349,-64.98158317701817,-64.9814289683912,-64.98127810729832,-64.98113053864175,-64.98098620878365,-64.98084506545659,-64.98070705768147,-64.9805721356924,-64.98044025086774,-64.98031135566687,-64.98018540357205,-64.98006234903502,-64.97994214742788,-64.97982475499778,-64.97971012882525,-64.97959822678573,-64.97948900751403,-64.97938243037156,-64.97927845541591,-64.9791770433728,-64.97907815561007,-64.97898175411346,-64.9788878014643,-64.97879626081858,-64.9787070958877,-64.97862027092032,-64.9785357506856,-64.97845350045755,-64.97837348600032,-64.97829567355454,-64.9782200298245,-64.97814652196608,-64.97807511757554,-64.9780057846789,-64.97793849172193,-64.97787320756085,-64.97780990145338,-64.97774854305051,-64.97768910238845,-64.9776315498813,-64.97757585631382,-64.97752199283481,-64.97746993095068,-64.97741964251931,-64.97737109974432,-64.97732427516951,-64.97727914167352,-64.97723567246483,-64.97719384107685,-64.9771536213633,-64.97711498749368,-64.977077913949,-64.97704237551761,-64.9770083472912,-64.97697580466092,-64.97694472331361,-64.97691507922819,-64.97688684867218,-64.97686000819819,-64.97683453464067,-64.97681040511269,-64.97678759700268,-64.97676608797151,-64.97674585594939,-64.97672687913294,-64.97670913598238,-64.97669260521867,-64.97667726582083,-64.97666309702313,-64.9766500783126,-64.97663818942627,-64.97662741034874,-64.97661772130961,-64.97660910278103,-64.97660153547525,-64.97659500034226,-64.97658947856735,-64.97658495156888,-64.97658140099591,-64.97657880872596,-64.97657715686276,-64.97657642773403,-64.9765766038893,-64.97657766809775,-64.97657960334604,-64.97658239283625,-64.97658601998371,-64.976590468415,-64.97659572196584,-64.97660176467907,-64.97660858080268,-64.9766161547877,-64.9766244712864,-64.97663351515013,-64.97664327142752,-64.97665372536251,-64.97666486239241,-64.97667666814606,-64.97668912844189,-64.97670222928612,-64.97671595687085,-64.97673029757227,-64.97674523794883,-64.97676076473941,-64.97677686486156,-64.97679352540973,-64.97681073365345,-64.97682847703564,-64.97684674317082,-64.97686551984347,-64.97688479500621,-64.97690455677817,-64.97692479344329,-64.97694549344864,-64.97696664540278,-64.97698823807407,-64.97701026038908,-64.97703270143091,-64.97705555043765,-64.97707879680073,-64.97710243006331,-64.97712643991879,-64.97715081620915,-64.97717554892344,-64.97720062819626,-64.97722604430616,-64.97725178767422,-64.97727784886246,-64.97730421857236,-64.97733088764339,-64.97735784705155,-64.97738508790788,-64.97741260145702,-64.97744037907576,-64.97746841227163,-64.97749669268147,-64.97752521207002,-64.97755396232851,-64.97758293547331,-64.97761212364452,-64.97764151910464,-64.97767111423715,-64.97770090154528,-64.97773087365056,-64.97776102329156,-64.96377575299333,-64.93722489610923,-64.89942031307282,-64.85154955699335,-64.79468805406842,-64.7298099590049,-64.65779783637619,-64.57945130602313,-64.49549477637399,-64.4065843752726,-64.31331417436029,-64.21622179067661,-64.115793438099,-64.0124684915526,-63.906643618520135,-63.7986765251539,-63.68888935810343,-63.57757179788921,-63.46498387514588,-63.35135853721196,-63.23690398925533,-63.121805831306155,-63.00622901014661,-62.89031960291725,-62.77420644748919,-62.65800263307671,-62.541806863189095,-62.42570470181358,-62.309769712658024,-62.19406450034135,-62.078641661584555,-61.96354465371079,-61.848808587096904,-61.73446094762147,-61.62052225461599,-61.50700665934015,-61.39392248856167,-61.281272737421254,-61.16905551539881,-61.057264448863954,-60.959891057872014,-60.875474451469664,-60.80270434662071,-60.7404068050336,-60.68753121788307,-60.64313839749274,-60.60638966750949,-60.57653686564709,-60.5529131885332,-60.53492481863429,-60.522043280190935,-60.513798475699794,-60.50977235755304,-60.509593191586276,-60.51293037090767,-60.519489739769085,-60.52900938857618,-60.541255882527935,-60.55602088788196,-60.57311816147809,-60.59238087091323,-60.6136592146227,-60.636818313059294,-60.66173634413641,-60.688302898085304,-60.71641752883826,-60.74598848096346,-60.77693157302287,-60.809169219984,-60.84262957897892,-60.87724580425999,-60.91295539864774,-60.94969965010041,-60.987423143257345,-61.02607333692296,-61.06560019946885,-61.105955895043216,-61.147094514296874,-61.18897184406821,-61.23154517112436,-61.27477311563756,-61.318615490591874,-61.3630331837719,-61.407988059388025,-61.453442876748035,-61.499361223696845,-61.545707462820914,-61.59244668865458,-61.63954469433705,-61.686967946354095,-61.73468356616134,-61.782659317628635,-61.83086359937064,-61.879265441138955,-61.9278345035485,-61.976541080496546,-62.025356103708845,-62.0742511489146,-62.12319844321193,-62.17217087323897,-62.22114199381332,-62.27008603674587,-62.318977919573086,-62.367793253986974,-62.416508353773395,-62.46510024209765,-62.51354665800247,-62.56182606200671,-62.6099176407146,-62.65780131036471,-62.705457719265404,-62.7528682490795,-62.80001501493526,-62.84688086435394,-62.893449374995576,-62.939704851235355,-62.985632319591986,-63.031217523037704,-63.0764469142266,-63.12130764768415,-63.16578757100591,-63.209875215117826,-63.253559783654026,-63.296831141510744,-63.339679802637164,-63.38209691712542,-63.42407425766269,-63.46560420540872,-63.50667973536205,-63.54729440127723,-63.58744232019458,-63.627118156642595,-63.66631710657123,-63.70503488107261,-63.74326768994333,-63.78101222514014,-63.81826564417846,-63.855025553520356,-63.89128999199589,-63.927057414299185,-63.96232667459739,-63.99709701028826,-64.03136802593895,-64.06513967743615,-64.09841225637466,-64.13118637470905,-64.16346294969041,-64.19524318910773,-64.22652857685081,-64.25732085880985,-64.28762202912398,-64.31743431678957,-64.34676017263664,-64.37560225668032,-64.40396342585235,-64.43184672211585,-64.45925536096554,-64.48619272031388,-64.5126623297623,-64.53866786025586,-64.56421311411822,-64.58930201546329,-64.61393860097867,-64.63812701107548,-64.66187148139848,-64.68517633468961,-64.70804597299798,-64.73048487022824,-64.7524975650197,-64.77408865394747,-64.7952627850374,-64.8160246515855,-64.83637898627352,-64.8563305555711,-64.87588415441577,-64.89504460116143,-64.91381673278634,-64.9322054003516,-64.95021546470102,-64.96785179239353,-64.9851192518595,-65.00202270977209,-65.0185670276255,-65.03475705851142,-65.05059764408604,-65.06609361171923,-65.08124977181843,-65.0960709153198,-65.11056181133905,-65.12472720497512,-65.13857181525968,-65.15210033324597,-65.16531742023027,-65.17822770610007,-65.19083578780287,-65.20314622792962,-65.21516355340758,-65.22689225429697,-65.2383367826864,-65.24950155168207,-65.26039093448601,-65.27100926355878,-65.28136082986236,-65.2914498821789,-65.30128062650134,-65.31085722549224,-65.32018379800694,-65.32926441867762,-65.33810311755498,-65.34670387980417,-65.35507064545213,-65.36320730918331,-65.37111772018089,-65.37880568201112,-65.38627495254798,-65.39352924393594,-65.40057222258848,-65.40740750922009,-65.41403867890992,-65.42046926119482,-65.42670274019017,-65.43274255473641,-65.43859209856998,-65.44425472051668,-65.4497337247061,-65.45503237080577,-65.46015387427339,-65.46510140662613,-65.46987809572555,-65.47448702607704,-65.47893123914277,-65.48321373366683,-65.48733746601194,-65.49130535050642,-65.49512025980081,-65.49878502523309,-65.50230243720182,-65.50567524554647,-65.50890615993409,-65.5119978502517,-65.51495294700396,-65.5177740417151,-65.520463687335,-65.52302439864853,-65.52545865268789,-65.52776888914727,-65.52995751079958,-65.53202688391464,-65.53397933867859,-65.53581716961406,-65.53754263600071,-65.53915796229596,-65.54066533855543,-65.54206692085292,-65.54336483169958,-65.54456116046205,-65.54565796377939,-65.54665726597837,-65.54756105948724,-65.54837130524744,-65.54908993312334,-65.54971884230966,-65.55025990173648,-65.5507149504718,-65.55108579812126,-65.55137422522517,-65.55158198365254,-65.55171079699207,-65.55176236094012,-65.55173834368527,-65.55164038628976,-65.55147010306742,-65.55122908195821,-65.55091888489929,-65.55054104819243,-65.55009708286786,-65.54958847504454,-65.54901668628656,-65.54838315395601,-65.54768929156194,-65.54693648910563,-65.54612611342205,-65.54525950851742,-65.54433799590309,-65.54336287492548,-65.54233542309213,-65.54125689639405,-65.54012852962411,-65.53895153669163,-65.53772711093309,-65.5364564254191,-65.53514063325744,-65.53378086789235,-65.53237824340005,-65.5309338547804,-65.52944877824491,-65.5279240715009,-65.526360774032,-65.52475990737494,-65.5231224753927,-65.5214494645439,-65.51974184414874,-65.51800056665112,-65.51622656787745,-65.51442076729168,-65.51258406824698,-65.51071735823385,-65.50882150912483,-65.50689737741577,-65.5049458044637,-65.5029676167214,-65.50096362596858,-65.49893462953982,-65.49688141054921,-65.49480473811188,-65.49270536756218,-65.49058404066886,-65.48844148584706,-65.48627841836719,-65.48409554056086,-65.48189354202373,-65.47967309981539,-65.47743487865634,-65.47517953112201,-65.47290769783395,-65.47062000764818,-65.46831707784075,-65.4659995142905,-65.46366791165912,-65.46132285356852,-65.45896491277554,-65.45659465134403,-65.45421262081435,-65.45181936237023,-65.44941540700329,-65.44700127567491,-65.4445774794757,-65.44214451978256,-65.43970288841335,-65.43725306777918,-65.43479553103442,-65.4323307422244,-65.42985915643078,-65.42738121991488,-65.4248973702586,-65.42240803650336,-65.4199136392867,-65.41741459097706,-65.4149112958062,-65.4124041499998,-65.4098935419059,-65.40737985212147,-65.4048634536169,-65.40234471185873,-65.39982398493034,-65.39730162365082,-65.39477797169204,-65.39225336569383,-65.3897281353775,-65.38720260365741,-65.38467708675103,-65.38215189428706,-65.37962732941213,-65.37710368889562,-65.37458126323294,-65.37206033674725,-65.3695411876895,-65.36702408833705,-65.36450930509055,-65.36199709856957,-65.35948772370655,-65.35698142983935,-65.35447846080238,-65.35197905501629,-65.34948344557625,-65.34699186033893,-65.34450452200802,-65.3420216482185,-65.3395434516196,-65.33707013995638,-65.33460191615016,-65.33213897837766,-65.32968152014881,-65.32722973038354,-65.32478379348721,-65.32234388942499,-65.31991019379494,-65.31748287790015,-65.31506210881956,-65.31264804947784,-65.31024085871412,-65.30784069134961,-65.30544769825426,-65.30306202641232,-65.30068381898697,-65.29831321538381,-65.29595035131352,-65.29359535885341,-65.29124836650817,-65.28890949926952,-65.28657887867509,-65.28425662286627,-65.28194284664524,-65.27963766153108,-65.2773411758151,-65.27505349461512,-65.2727747199292,-65.27050495068828,-65.26824428280815,-65.26599280924063,-65.26375062002384,-65.26151780233188,-65.25929444052359,-65.25708061619065,-65.2548764082049,-65.25268189276494,-65.25049714344209,-65.24832223122552,-65.24615722456676,-65.24400218942358,-65.2418571893031,-65.23972228530431,-65.2375975361599,-65.23548299827748,-65.23337872578017,-65.2312847705466,-65.22920118225018,-65.22712800839795,-65.22506529436873,-65.2230130834507,-65.22097141687837,-65.21894033386918,-65.21691987165927,-65.21491006553893,-65.21291094888738,-65.2109225532071,-65.2089449081576,-65.20697804158874,-65.20502197957342,-65.20307674643992,-65.20114236480366,-65.19921885559855,-65.19730623810776,-65.19540452999416,-65.19351374733023,-65.19163390462748,-65.18976501486551,-65.18790708952064,-65.18606013859394,-65.18422417063914,-65.1823991927898,-65.18058521078632,-65.17878222900235,-65.17699025047102,-65.17520927691055,-65.17343930874965,-65.17168034515244,-65.16993238404304,-65.16819542212977,-65.16646945492904,-65.16475447678879,-65.16305048091165,-65.16135745937778,-65.15967540316724,-65.15800430218219,-65.15634414526862,-65.15469492023784,-65.15305661388764,-65.15142921202309,-65.14981269947704,-65.14820706013037,-65.14661227693188,-65.14502833191787,-65.14345520623154,-65.1418928801419,-65.14034133306261,-65.1388005435704,-65.13727048942326,-65.13575114757838,-65.13424249420976,-65.13274450472562,-65.13125715378553,-65.12978041531721,-65.12831426253325,-65.1268586679474,-65.12541360339071,-65.12397904002742,-65.12255494837056,-65.1211412982974,-65.1197380590646,-65.11834519932316,-65.11696268713314,-65.11559048997817,-65.1142285747797,-65.11287690791109,-65.11153545521144,-65.11020418199925,-65.10888305308588,-65.10757203278871,-65.10627108494425,-65.10498017292095,-65.10369925963178,-65.10242830754677,-65.10116727870522,-65.09991613472775,-65.09867483682824,-65.09744334582548,-65.09622162215474,-65.0950096258791,-65.0938073167006,-65.09261465397131,-65.09143159670406,-65.09025810358318,-65.08909413297502,-65.0879396429382,-65.08679459123385,-65.08565893533564,-65.0845326324396,-65.08341563947384,-65.08230791310811,-65.08120940976323,-65.08012008562031,-65.07903989662988,-65.07796879852087,-65.07690674680943,-65.0758536968076,-65.07480960363188,-65.07377442221163,-65.07274810729736,-65.07173061346884,-65.0707218951432,-65.06972190658267,-65.0687306019025,-65.06774793507847,-65.06677385995445,-65.06580833024978,-65.06485129956653,-65.06390272139662,-65.06296254912888,-65.06203073605597,-65.06110723538112,-65.06019200022484,-65.05928498363153,-65.05838613857587,-65.05749541796922,-65.05661277466585,-65.05573816146908,-65.0548715311373,-65.05401283638987,-65.05316202991307,-65.05231906436566,-65.05148389238462,-65.05065646659067,-65.04983673959363,-65.04902466399784,-65.04822019240736,-65.04742327743112,-65.046633871688,-65.04585192781177,-65.04507739845597,-65.04431023629874,-65.04355039404744,-65.04279782444334,-65.04205248026612,-65.04131431433832,-65.0405832795297,-65.03985932876151,-65.03914241501072,-65.03843249131411,-65.03772951077234,-65.03703342655389,-65.03634419189896,-65.03566176012329,-65.03498608462186,-65.03431711887261,-65.03365481643996,-65.03299913097842,-65.03235001623597,-65.03170742605742,-65.03107131438779,-65.03044163527551,-65.02981834287557,-65.02920139145269,-65.02859073538428,-65.0279863291635,-65.02738812740209,-65.0267960848333,-65.02621015631459,-65.02563029683046,-65.025056461495,-65.02448860555457,-65.02392668439032,-65.02337065352069,-65.02282046860383,-65.02227608543996,-65.0217374599737,-65.02120454829637,-65.0206773066481,-65.02015569142009,-65.01963965915661,-65.01912916655715,-65.01862417047832,-65.01812462793586,-65.01763049610649,-65.01714173232979,-65.01665829410999,-65.01618013911767,-65.0157072251915,-65.01523951033994,-65.01477695274272,-65.01431951075253,-65.01386714289643,-65.01341980787738,-65.01297746457567,-65.01254007205027,-65.01210758954018,-65.01167997646571,-65.01125719242981,-65.01083919721918,-65.01042595080553,-65.01001741334666,-65.00961354518759,-65.00921430686158,-65.0088196590912,-65.00842956278927,-65.0080439790598,-65.00766286919894,-65.0072861946958,-65.00691391723329,-65.00654599868899,-65.00618240113585,-65.00582308684288,-65.00546801827598,-65.00511715809847,-65.00477046917183,-65.00442791455622,-65.00408945751107,-65.00375506149567,-65.00342469016961,-65.00309830739327,-65.00277587722832,-65.00245736393805,-65.00214273198785,-65.0018319460455,-65.00152497098155,-65.0012217718696,-65.00092231398656,-65.00062656281297,-65.00033448403315,-65.00004604353545,-64.99976120741239,-64.99947994196084,-64.99920221368211,-64.99892798928208,-64.99865723567127,-64.9983899199649,-64.99812600948287,-64.99786547174986,-64.99760827449522,-64.997354385653,-64.99710377336184,-64.99685640596496,-64.99661225200998,-64.99637128024887,-64.99613345963775,-64.99589875933677,-64.99566714870991,-64.99543859732482,-64.99521307495252,-64.99499055156726,-64.9947709973462,-64.99455438266915,-64.99434067811832,-64.99412985447798,-64.99392188273411,-64.99371673407416,-64.99351437988655,-64.99331479176044,-64.99311794148525,-64.99292380105031,-64.9927323426444,-64.99254353865537,-64.99235736166965,-64.99217378447182,-64.9919927800441,-64.99181432156593,-64.99163838241337,-64.9914649361587,-64.99129395656983,-64.99112541760975,-64.99095929343602,-64.99079555840018,-64.9906341870472,-64.99047515411489,-64.99031843453326,-64.990164003424,-64.99001183609978,-64.98986190806369,-64.98971419500853,-64.98956867281625,-64.98942531755719,-64.98928410548952,-64.98914501305848,-64.98900801689574,-64.98887309381871,-64.98874022082983,-64.98860937511581,-64.98848053404701,-64.98835367517664,-64.98822877624005,-64.98810581515399,-64.98798477001586,-64.98786561910295,-64.9877483408717,-64.98763291395692,-64.98751931717098,-64.98740752950309,-64.98729753011847,-64.98718929835758,-64.9870828137353,-64.98697805594016,-64.9868750048335,-64.98677364044865,-64.98667394299015,-64.98657589283289,-64.9864794705213,-64.98638465676852,-64.98629143245553,-64.98619977863035,-64.98610967650718,-64.98602110746556,-64.98593405304948,-64.98584849496656,-64.98576441508719,-64.98568179544365,-64.98560061822927,-64.98552086579753,-64.98544252066121,-64.9853655654915,-64.98528998311717,-64.98521575652362,-64.98514286885204,-64.98507130339856,-64.98500104361328,-64.98493207309947,-64.98486437561264,-64.98479793505966,-64.98473273549784,-64.9846687611341,-64.98460599632402,-64.98454442557097,-64.98448403352523,-64.98442480498308,-64.98436672488587,-64.98430977831919,-64.9842539505119,-64.9841992268353,-64.98414559280221,-64.98409303406603,-64.98404153641992,-64.98399108579582,-64.98394166826361,-64.98389327003018,-64.98384587743857,-64.98379947696702,-64.98375405522815,-64.98370959896796,-64.98366609506503,-64.9836235305296,-64.98358189250263,-64.98354116825497,-64.98350134518644,-64.98346241082496,-64.98342435282561,-64.98338715896982,-64.9833508171644,-64.98331531544076,-64.98328064195391,-64.98324678498166,-64.98321373292372,-64.9831814743008,-64.98314999775378,-64.98311929204279,-64.98308934604636,-64.98306014876054,-64.98303168929806,-64.98300395688743,-64.98297694087209,-64.98295063070955,-64.98292501597055,-64.98290008633815,-64.98287583160692,-64.9828522416821,-64.98282930657871,-64.98280701642074,-64.98278536144025,-64.98276433197663,-64.98274391847563,-64.98272411148866,-64.98270490167187]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1044\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1045\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1040\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b4\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1041\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1042\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b4\",\"line_alpha\":0.2,\"line_width\":2}}}}],\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"p1011\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"PanTool\",\"id\":\"p1024\"},{\"type\":\"object\",\"name\":\"WheelZoomTool\",\"id\":\"p1025\",\"attributes\":{\"renderers\":\"auto\"}},{\"type\":\"object\",\"name\":\"BoxZoomTool\",\"id\":\"p1026\",\"attributes\":{\"dimensions\":\"both\",\"overlay\":{\"type\":\"object\",\"name\":\"BoxAnnotation\",\"id\":\"p1027\",\"attributes\":{\"syncable\":false,\"line_color\":\"black\",\"line_alpha\":1.0,\"line_width\":2,\"line_dash\":[4,4],\"fill_color\":\"lightgrey\",\"fill_alpha\":0.5,\"level\":\"overlay\",\"visible\":false,\"left\":{\"type\":\"number\",\"value\":\"nan\"},\"right\":{\"type\":\"number\",\"value\":\"nan\"},\"top\":{\"type\":\"number\",\"value\":\"nan\"},\"bottom\":{\"type\":\"number\",\"value\":\"nan\"},\"left_units\":\"canvas\",\"right_units\":\"canvas\",\"top_units\":\"canvas\",\"bottom_units\":\"canvas\",\"handles\":{\"type\":\"object\",\"name\":\"BoxInteractionHandles\",\"id\":\"p1033\",\"attributes\":{\"all\":{\"type\":\"object\",\"name\":\"AreaVisuals\",\"id\":\"p1032\",\"attributes\":{\"fill_color\":\"white\",\"hover_fill_color\":\"lightgray\"}}}}}}}},{\"type\":\"object\",\"name\":\"SaveTool\",\"id\":\"p1034\"},{\"type\":\"object\",\"name\":\"ResetTool\",\"id\":\"p1035\"},{\"type\":\"object\",\"name\":\"HelpTool\",\"id\":\"p1036\"}]}},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1019\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1020\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1021\"},\"axis_label\":\"v (mV)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1022\"}}}],\"below\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1014\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1015\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1016\"},\"axis_label\":\"t (ms)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1017\"}}}],\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1018\",\"attributes\":{\"axis\":{\"id\":\"p1014\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1023\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"p1019\"}}}]}}]}};\n", " const render_items = [{\"docid\":\"0b9d693a-9293-4a28-92d6-88690756094b\",\"roots\":{\"p1003\":\"ac1a518b-aa32-4414-a6db-1231b13045cc\"},\"root_ids\":[\"p1003\"]}];\n", " void root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", " }\n", " if (root.Bokeh !== undefined) {\n", " embed_document(root);\n", " } else {\n", " let attempts = 0;\n", " const timer = setInterval(function(root) {\n", " if (root.Bokeh !== undefined) {\n", " clearInterval(timer);\n", " embed_document(root);\n", " } else {\n", " attempts++;\n", " if (attempts > 100) {\n", " clearInterval(timer);\n", " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", " }\n", " }\n", " }, 10, root)\n", " }\n", "})(window);" ], "application/vnd.bokehjs_exec.v0+json": "" }, "metadata": { "application/vnd.bokehjs_exec.v0+json": { "id": "p1003" } }, "output_type": "display_data" } ], "source": [ "f = plt.figure(x_axis_label=\"t (ms)\", y_axis_label=\"v (mV)\")\n", "f.line(t, soma_v, line_width=2)\n", "plt.show(f)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We have a cell that responds to input, so that's good, let's explore the role of some parameters to see what they do and see if we can get an action potential." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Simulation studies" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Role of current amplitude" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's do a set of simulations, plotted in the same figure, where we vary the amplitude of the current in a `for` loop:" ] }, { "cell_type": "code", "execution_count": 45, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:48.032195Z", "iopub.status.busy": "2025-05-23T00:18:48.031934Z", "iopub.status.idle": "2025-05-23T00:18:48.110421Z", "shell.execute_reply": "2025-05-23T00:18:48.110088Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "
\n" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "(function(root) {\n", " function embed_document(root) {\n", " const docs_json = {\"805486ba-d88e-47c0-8cf3-fc3c5894463e\":{\"version\":\"3.7.3\",\"title\":\"Bokeh Application\",\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"p1046\",\"attributes\":{\"x_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1047\"},\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1048\"},\"x_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1055\"},\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1056\"},\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"p1053\"},\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1086\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1080\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1081\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1082\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.99859895156952,-64.99794940680333,-64.9973300246924,-64.99673830824379,-64.99617201809848,-64.99562914432974,-64.99510788141654,-64.9946066060273,-64.99412385729227,-64.99365831927994,-64.99320880542628,-64.99277424469419,-64.99235366926698,-64.99194620360169,-64.99155105468868,-64.99116750338113,-64.99079489667402,-64.99043264082597,-64.99008019522934,-64.98973706694485,-64.98940280582678,-64.98907700017278,-64.98875927284017,-64.98844927777704,-64.9881466969224,-64.98785123743474,-64.98756262921283,-64.98728062267692,-64.98700498678193,-64.98673550723724,-64.98647198491092,-64.98621423439829,-64.98596208273723,-64.9857153682545,-64.98547393952902,-64.98523765445972,-64.98500637942695,-64.98477998853737,-64.98455836294382,-64.98434139023209,-64.98412896386783,-64.98392098269719,-64.98371735049578,-64.983517975561,-64.98332277034311,-64.98313165111144,-64.98294453765189,-64.98276135299274,-64.98258202315591,-64.9824064769311,-64.98223464567062,-64.98206646310275,-64.9819018651621,-64.9817407898349,-64.98158317701817,-64.9814289683912,-64.98127810729832,-64.98113053864175,-64.98098620878365,-64.98084506545659,-64.98070705768147,-64.9805721356924,-64.98044025086774,-64.98031135566687,-64.98018540357205,-64.98006234903502,-64.97994214742788,-64.97982475499778,-64.97971012882525,-64.97959822678573,-64.97948900751403,-64.97938243037156,-64.97927845541591,-64.9791770433728,-64.97907815561007,-64.97898175411346,-64.9788878014643,-64.97879626081858,-64.9787070958877,-64.97862027092032,-64.9785357506856,-64.97845350045755,-64.97837348600032,-64.97829567355454,-64.9782200298245,-64.97814652196608,-64.97807511757554,-64.9780057846789,-64.97793849172193,-64.97787320756085,-64.97780990145338,-64.97774854305051,-64.97768910238845,-64.9776315498813,-64.97757585631382,-64.97752199283481,-64.97746993095068,-64.97741964251931,-64.97737109974432,-64.97732427516951,-64.97727914167352,-64.97723567246483,-64.97719384107685,-64.9771536213633,-64.97711498749368,-64.977077913949,-64.97704237551761,-64.9770083472912,-64.97697580466092,-64.97694472331361,-64.97691507922819,-64.97688684867218,-64.97686000819819,-64.97683453464067,-64.97681040511269,-64.97678759700268,-64.97676608797151,-64.97674585594939,-64.97672687913294,-64.97670913598238,-64.97669260521867,-64.97667726582083,-64.97666309702313,-64.9766500783126,-64.97663818942627,-64.97662741034874,-64.97661772130961,-64.97660910278103,-64.97660153547525,-64.97659500034226,-64.97658947856735,-64.97658495156888,-64.97658140099591,-64.97657880872596,-64.97657715686276,-64.97657642773403,-64.9765766038893,-64.97657766809775,-64.97657960334604,-64.97658239283625,-64.97658601998371,-64.976590468415,-64.97659572196584,-64.97660176467907,-64.97660858080268,-64.9766161547877,-64.9766244712864,-64.97663351515013,-64.97664327142752,-64.97665372536251,-64.97666486239241,-64.97667666814606,-64.97668912844189,-64.97670222928612,-64.97671595687085,-64.97673029757227,-64.97674523794883,-64.97676076473941,-64.97677686486156,-64.97679352540973,-64.97681073365345,-64.97682847703564,-64.97684674317082,-64.97686551984347,-64.97688479500621,-64.97690455677817,-64.97692479344329,-64.97694549344864,-64.97696664540278,-64.97698823807407,-64.97701026038908,-64.97703270143091,-64.97705555043765,-64.97707879680073,-64.97710243006331,-64.97712643991879,-64.97715081620915,-64.97717554892344,-64.97720062819626,-64.97722604430616,-64.97725178767422,-64.97727784886246,-64.97730421857236,-64.97733088764339,-64.97735784705155,-64.97738508790788,-64.97741260145702,-64.97744037907576,-64.97746841227163,-64.97749669268147,-64.97752521207002,-64.97755396232851,-64.97758293547331,-64.97761212364452,-64.97764151910464,-64.97767111423715,-64.97770090154528,-64.97773087365056,-64.97776102329156,-64.96727965057563,-64.94737412762133,-64.91902834585258,-64.88313297313306,-64.84049460719982,-64.79184394473866,-64.73784307703974,-64.67909201312307,-64.6161345206837,-64.54946336489766,-64.47952501547067,-64.4067238835162,-64.33142614199687,-64.25396317654904,-64.17463470748156,-64.09371161851911,-64.01143852335758,-63.92803609722707,-63.84370319733029,-63.75861879316533,-63.67294372528138,-63.58682230889622,-63.50038379697215,-63.41374371575953,-63.32700508443663,-63.24025952927051,-63.153588301668634,-63.067063208564264,-62.9807474627609,-62.894696460137055,-62.80895848996941,-62.72357538405921,-62.63858310983373,-62.55401231213507,-62.469888807994515,-62.38623403831801,-62.303065480070806,-62.22039702224402,-62.13823930860835,-62.056600050008036,-61.985988830117535,-61.92532238965766,-61.873626918761836,-61.830027425077574,-61.793738082322356,-61.76405345377157,-61.740340505050625,-61.722031334937206,-61.70861656324328,-61.69963932239838,-61.69468980493874,-61.69340032333466,-61.69544084190157,-61.70051494325248,-61.70835619407835,-61.71872487713706,-61.731405058285475,-61.746201959262486,-61.76293960875585,-61.78145874607608,-61.80161495352037,-61.82327699523338,-61.84632534205255,-61.87065086345301,-61.89615366927249,-61.92274208539143,-61.95033174896004,-61.9788448100991,-62.00820922824934,-62.03835815250639,-62.069229376352226,-62.1007648581833,-62.132910299940974,-62.165614776976184,-62.19883041303024,-62.232512094893096,-62.26661722191266,-62.301105486079514,-62.33593867890534,-62.37108052175498,-62.40649651668621,-62.44215381520226,-62.47802110263397,-62.51406849614511,-62.550267454599606,-62.58659069874598,-62.62301214036595,-62.65950681920302,-62.696050846635785,-62.732621355191895,-62.769196453113864,-62.80575518328948,-62.84227748594862,-62.878744164606566,-62.915136854802434,-62.95143799524175,-62.987630801004755,-63.023699238528366,-63.059628002109996,-63.09540249171701,-63.131008791916344,-63.16643365176578,-63.201664465532055,-63.236689254121316,-63.27149664712537,-63.30607586540255,-63.3404167041257,-63.37450951624107,-63.408345196292125,-63.44191516457096,-63.47521135156718,-63.50822618269075,-63.54095256325023,-63.573383863672944,-63.60551390495686,-63.63733694434753,-63.66884766123592,-63.70004114327507,-63.73091287271531,-63.76145871295906,-63.79167489533732,-63.82155800611066,-63.85110497369809,-63.880313056137574,-63.909179828781944,-63.937703172234265,-63.96588126052625,-63.99371254954354,-64.02119576570098,-64.04832989487109,-64.07511417156815,-64.10154806839026,-64.12763128572107,-64.15336374169242,-64.17874556240885,-64.20377707243428,-64.22845878554068,-64.25279139571835,-64.27677576844664,-64.30041293222388,-64.32370407035445,-64.34665051299108,-64.3692537294295,-64.39151532065284,-64.41343701212233,-64.43502064681083,-64.45626817847558,-64.47718166516599,-64.49776326296228,-64.51801521994065,-64.5379398703603,-64.55753962906766,-64.57681698611292,-64.59577450157396,-64.61441480058271,-64.63274056854868,-64.65075454657479,-64.66845952706002,-64.68585834948404,-64.70295389636836,-64.71974908940908,-64.73624688577588,-64.75245027457235,-64.76836227345247,-64.78398592538827,-64.7993242955839,-64.81438046853098,-64.82915754520066,-64.84365864036754,-64.85788688006106,-64.87184539913959,-64.88553733898294,-64.89896584529902,-64.91213406604021,-64.92504514942567,-64.93770224206523,-64.9501084871812,-64.96226702292421,-64.97418098077945,-64.9858534840596,-64.99728764648114,-65.00848657082058,-65.01945334764741,-65.03019105413055,-65.04070275291524,-65.05099149106749,-65.06106029908325,-65.07091218995939,-65.08055015832399,-65.08997717962335,-65.09919620936316,-65.10821018240154,-65.11702201229161,-65.1256345906714,-65.13405078669886,-65.14227344653023,-65.15030539283931,-65.15814942437629,-65.16580831556382,-65.17328481612897,-65.18058165076906,-65.18770151885008,-65.19464709413585,-65.20142102454663,-65.20802593194571,-65.21446441195253,-65.22073903378114,-65.22685234010265,-65.23280684693053,-65.23860504352756,-65.24424939233334,-65.24974232891134,-65.25508626191436,-65.26028357306758,-65.26533661716817,-65.27024772210059,-65.27501918886676,-65.27965329163023,-65.28415227777361,-65.28851836796859,-65.29275375625761,-65.29686061014677,-65.30084107070913,-65.30469725269793,-65.30843124466901,-65.31204510911188,-65.31554088258903,-65.31892057588277,-65.32218617414928,-65.32533963707925,-65.32838289906478,-65.33131786937203,-65.33414643231929,-65.33687044745993,-65.3394917497701,-65.34201214984057,-65.34443343407253,-65.34675736487699,-65.34898568087745,-65.35112009711558,-65.3531623052596,-65.35511397381512,-65.35697674833818,-65.35875225165026,-65.36044208405498,-65.36204782355638,-65.36357102607843,-65.36501322568573,-65.36637593480508,-65.36766064444782,-65.36886882443278,-65.37000192360956,-65.37106137008224,-65.37204857143306,-65.37296491494615,-65.37381176783123,-65.37459047744687,-65.37530237152356,-65.37594875838614,-65.37653092717582,-65.37705014807138,-65.37750767250965,-65.37790473340522,-65.37824254536909,-65.37852230492639,-65.37874519073301,-65.37891236379107,-65.3790249676632,-65.37908412868552,-65.37909095617937,-65.37904654266156,-65.3789519640533,-65.37880827988762,-65.3786165335153,-65.3783777523092,-65.37809294786716,-65.37776311621307,-65.37738923799652,-65.37697227869063,-65.37651318878822,-65.37601290399638,-65.3754723454291,-65.37489241979831,-65.37427401960312,-65.37361802331718,-65.37292529557438,-65.37219668735266,-65.37143303615599,-65.37063516619462,-65.36980388856333,-65.36894000141804,-65.36804429015044,-65.36711752756082,-65.3661604740291,-65.36517387768389,-65.36415847456986,-65.36311498881318,-65.36204413278512,-65.36094660726384,-65.35982310159439,-65.35867429384673,-65.35750085097217,-65.35630342895776,-65.35508267297905,-65.35383921755096,-65.35257368667688,-65.35128669399602,-65.34997884292899,-65.34865072682156,-65.34730292908677,-65.34593602334519,-65.3445505735636,-65.34314713419181,-65.34172625029791,-65.3402884577017,-65.3388342831066,-65.33736424422976,-65.3358788499306,-65.3343786003377,-65.3328639869741,-65.33133549288092,-65.32979359273948,-65.32823875299174,-65.32667143195931,-65.32509207996081,-65.32350113942775,-65.32189904501885,-65.32028622373292,-65.31866309502017,-65.31703007089217,-65.31538755603023,-65.31373594789243,-65.31207563681913,-65.31040700613724,-65.30873043226288,-65.30704628480281,-65.30535492665449,-65.3036567141047,-65.30195199692693,-65.30024111847737,-65.29852441578967,-65.29680221966838,-65.29507485478108,-65.29334263974934,-65.29160588723836,-65.28986490404542,-65.2881199911871,-65.28637144398536,-65.28461955215232,-65.28286459987402,-65.28110686589288,-65.27934662358913,-65.2775841410611,-65.27581968120431,-65.27405350178958,-65.27228585554,-65.27051699020684,-65.26874714864438,-65.26697656888373,-65.26520548420565,-65.26343412321228,-65.2616627098979,-65.25989146371879,-65.25812059966192,-65.25635032831289,-65.25458085592278,-65.2528123844741,-65.25104511174585,-65.24927923137766,-65.24751493293292,-65.24575240196123,-65.24399182005979,-65.24223336493402,-65.2404772104573,-65.23872352672984,-65.23697248013681,-65.23522423340559,-65.23347894566216,-65.23173677248683,-65.22999786596908,-65.22826237476164,-65.22653044413387,-65.22480221602429,-65.22307782909246,-65.22135741877008,-65.21964111731138,-65.21792905384278,-65.21622135441189,-65.21451814203576,-65.21281953674854,-65.21112565564836,-65.2094366129436,-65.20775251999855,-65.20607348537831,-65.20439961489316,-65.2027310116423,-65.20106777605686,-65.19941000594245,-65.19775779652102,-65.19611124047212,-65.19447042797366,-65.19283544674197,-65.19120638207144,-65.18958331687347,-65.18796633171492,-65.18635550485605,-65.18475091228788,-65.18315262776902,-65.18156072286202,-65.17997526696915,-65.17839632736774,-65.17682396924496,-65.17525825573216,-65.17369924793864,-65.17214700498509,-65.1706015840364,-65.16906304033411,-65.16753142722835,-65.16600679620937,-65.16448919693856,-65.16297867727913,-65.16147528332625,-65.15997905943685,-65.15849004825894,-65.15700829076054,-65.15553382625822,-65.15406669244521,-65.15260692541911,-65.1511545597092,-65.14970962830346,-65.14827216267506,-65.14684219280856,-65.14541974722576,-65.1440048530111,-65.14259753583681,-65.14119781998762,-65.13980572838514,-65.13842128261194,-65.13704450293521,-65.13567540833016,-65.13431401650305,-65.13296034391392,-65.13161440579896,-65.13027621619257,-65.12894578794918,-65.12762313276465,-65.12630826119747,-65.12500118268956,-65.12370190558687,-65.12241043715963,-65.12112678362232,-65.11985095015336,-65.11858294091459,-65.1173227590703,-65.1160704068062,-65.11482588534797,-65.1135891949796,-65.11236033506147,-65.1111393040482,-65.10992609950614,-65.1087207181308,-65.10752315576379,-65.10633340740975,-65.10515146725288,-65.10397732867331,-65.1028109842632,-65.10165242584264,-65.10050164447533,-65.09935863048393,-65.0982233734654,-65.09709586230589,-65.09597608519556,-65.09486402964313,-65.0937596824903,-65.09266302992582,-65.09157405749947,-65.09049275013585,-65.08941909214785,-65.08835306725005,-65.08729465857189,-65.08624384867062,-65.08520061954407,-65.08416495264326,-65.08313682888485,-65.0821162286633,-65.08110313186296,-65.08009751786996,-65.07909936558391,-65.07810865342942,-65.07712535936749,-65.07614946090663,-65.07518093511403,-65.07421975862633,-65.07326590766031,-65.07231935802356,-65.07138008512474,-65.07044806398395,-65.06952326924268,-65.0686056751739,-65.06769525569173,-65.06679198436116,-65.06589583440751,-65.06500677872582,-65.06412478989003,-65.06324984016213,-65.062381901501,-65.06152094557132,-65.06066694375215,-65.05981986714558,-65.05897968658502,-65.05814637264359,-65.05731989564221,-65.05650022565767,-65.05568733253051,-65.05488118587282,-65.0540817550759,-65.05328900931784,-65.05250291757089,-65.05172344860884,-65.05095057101416,-65.0501842531851,-65.04942446334272,-65.04867116953768,-65.04792433965707,-65.04718394143099,-65.04644994243911,-65.04572231011716,-65.0450010117632,-65.04428601454391,-65.04357728550067,-65.04287479155565,-65.04217849951768,-65.04148837608814,-65.04080438786671,-65.04012650135698,-65.03945468297202,-65.03878889903986,-65.03812911580883,-65.03747529945288,-65.03682741607676,-65.03618543172112,-65.03554931236754,-65.03491902394344,-65.034294532327,-65.03367580335183,-65.03306280281176,-65.03245549646533,-65.03185385004045,-65.03125782923871,-65.03066739973985,-65.030082527206,-65.02950317728593,-65.02892931561912,-65.02836090783993,-65.02779791958149,-65.0272403164797,-65.02668806417705,-65.02614112832637,-65.02559947459459,-65.02506306866633,-65.02453187624751,-65.02400586306885,-65.02348499488932,-65.02296923749945,-65.02245855672474,-65.02195291842882,-65.0214522885167,-65.02095663293784,-65.02046591768925,-65.01998010881846,-65.01949917242649,-65.01902307467071,-65.01855178176767,-65.01808525999586,-65.01762347569844,-65.0171663952859,-65.01671398523862,-65.01626621210946,-65.0158230425262,-65.01538444319402,-65.01495038089791,-65.01452082250495,-65.01409573496659,-65.01367508532094,-65.0132588406949,-65.01284696830633,-65.01243943546613,-65.01203620958026,-65.01163725815175,-65.01124254878266,-65.01085204917594,-65.0104657271373,-65.01008355057706,-65.00970548751188,-65.00933150606646,-65.00896157447528,-65.00859566108419,-65.00823373435202,-65.00787576285215,-65.00752171527402,-65.0071715604246,-65.00682526722981,-65.00648280473597,-65.00614414211107,-65.00580924864619,-65.00547809375671,-65.00515064698361,-65.00482687799465,-65.00450675658553,-65.00419025268108,-65.00387733633633,-65.00356797773759,-65.00326214720347,-65.00295981518593,-65.00266095227121,-65.00236552918079,-65.00207351677227,-65.00178488604028,-65.00149960811731,-65.00121765427453,-65.00093899592257,-65.00066360461227,-65.00039145203543,-65.00012251002548,-64.99985675055815,-64.99959414575214,-64.9993346678697,-64.99907828931724,-64.99882498264589,-64.998574720552,-64.99832747587772,-64.9980832216114,-64.9978419308881,-64.99760357699002,-64.99736813334688,-64.99713557353634,-64.99690587128434,-64.99667900046543,-64.99645493510315,-64.9962336493702,-64.99601511758884,-64.99579931423109,-64.99558621391893,-64.99537579142452,-64.99516802167044,-64.9949628797298,-64.99476034082637,-64.9945603803348,-64.99436297378062,-64.9941680968404,-64.99397572534178,-64.99378583526355,-64.99359840273567,-64.9934134040393,-64.99323081560678,-64.9930506140216,-64.99287277601842,-64.99269727848294,-64.99252409845192,-64.99235321311303,-64.99218459980477,-64.99201823601635,-64.9918540993876,-64.99169216770875,-64.99153241892034,-64.99137483111302,-64.99121938252736,-64.99106605155366,-64.9909148167317,-64.99076565675058,-64.99061855044842,-64.99047347681213,-64.99033041497714,-64.99018934422712,-64.99005024399371,-64.98991309385617,-64.98977787354116,-64.98964456292228,-64.98951314201987,-64.98938359100059,-64.98925589017705,-64.9891300200075,-64.98900596109542,-64.98888369418914,-64.98876320018144,-64.98864446010913,-64.98852745515268,-64.98841216663574,-64.98829857602476,-64.9881866649285,-64.98807641509762,-64.9879678084242,-64.98786082694127,-64.98775545282234,-64.98765166838095,-64.98754945607013,-64.98744879848194,-64.98734967834693,-64.9872520785337,-64.9871559820483,-64.98706137203374,-64.9869682317695,-64.9868765446709,-64.98678629428869,-64.98669746430836,-64.9866100385497,-64.98652400096616,-64.98643933564433,-64.98635602680338,-64.98627405879442,-64.98619341610001,-64.9861140833335,-64.9860360452385,-64.98595928668823,-64.98588379268494,-64.98580954835937,-64.98573653897004,-64.98566474990271,-64.98559416666974,-64.98552477490949,-64.98545656038569,-64.9853895089868,-64.9853236067254,-64.98525883973757,-64.98519519428223,-64.98513265674052,-64.98507121361517,-64.98501085152982,-64.98495155722843,-64.98489331757459,-64.98483611955088,-64.98477995025824,-64.9847247969153,-64.98467064685772,-64.98461748753756,-64.98456530652258,-64.98451409149563,-64.98446383025393,-64.98441451070848,-64.98436612088331,-64.9843186489149,-64.98427208305145,-64.98422641165226,-64.98418162318701,-64.98413770623515,-64.98409464948517,-64.984052441734,-64.98401107188626,-64.98397052895366,-64.98393080205427,-64.98389188041192,-64.98385375335542,-64.983816410318,-64.98377984083658,-64.9837440345511,-64.98370898120385,-64.98367467063882,-64.983641092801,-64.98360823773572,-64.983576095588,-64.98354465660186,-64.98351391111963,-64.98348384958129,-64.98345446252385,-64.98342574058064,-64.98339767448064,-64.98337025504782,-64.98334347320048,-64.9833173199506,-64.98329178640316,-64.98326686375545,-64.98324254329647,-64.98321881640625,-64.98319567455516,-64.98317310930328,-64.98315111229975,-64.98312967528211,-64.98310879007565,-64.98308844859272,-64.98306864283217,-64.9830493648786,-64.98303060690178,-64.98301236115601,-64.98299461997944,-64.98297737579342,-64.98296062110195,-64.98294434849093,-64.98292855062759,-64.98291322025985,-64.98289835021568,-64.98288393340248,-64.98286996280643,-64.98285643149191,-64.98284333260084,-64.98283065935206,-64.98281840504076,-64.98280656303778,-64.9827951267891,-64.98278408981514,-64.98277344571018]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1087\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1088\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1083\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1084\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1085\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1097\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1091\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1092\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1093\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.99859895156952,-64.99794940680333,-64.9973300246924,-64.99673830824379,-64.99617201809848,-64.99562914432974,-64.99510788141654,-64.9946066060273,-64.99412385729227,-64.99365831927994,-64.99320880542628,-64.99277424469419,-64.99235366926698,-64.99194620360169,-64.99155105468868,-64.99116750338113,-64.99079489667402,-64.99043264082597,-64.99008019522934,-64.98973706694485,-64.98940280582678,-64.98907700017278,-64.98875927284017,-64.98844927777704,-64.9881466969224,-64.98785123743474,-64.98756262921283,-64.98728062267692,-64.98700498678193,-64.98673550723724,-64.98647198491092,-64.98621423439829,-64.98596208273723,-64.9857153682545,-64.98547393952902,-64.98523765445972,-64.98500637942695,-64.98477998853737,-64.98455836294382,-64.98434139023209,-64.98412896386783,-64.98392098269719,-64.98371735049578,-64.983517975561,-64.98332277034311,-64.98313165111144,-64.98294453765189,-64.98276135299274,-64.98258202315591,-64.9824064769311,-64.98223464567062,-64.98206646310275,-64.9819018651621,-64.9817407898349,-64.98158317701817,-64.9814289683912,-64.98127810729832,-64.98113053864175,-64.98098620878365,-64.98084506545659,-64.98070705768147,-64.9805721356924,-64.98044025086774,-64.98031135566687,-64.98018540357205,-64.98006234903502,-64.97994214742788,-64.97982475499778,-64.97971012882525,-64.97959822678573,-64.97948900751403,-64.97938243037156,-64.97927845541591,-64.9791770433728,-64.97907815561007,-64.97898175411346,-64.9788878014643,-64.97879626081858,-64.9787070958877,-64.97862027092032,-64.9785357506856,-64.97845350045755,-64.97837348600032,-64.97829567355454,-64.9782200298245,-64.97814652196608,-64.97807511757554,-64.9780057846789,-64.97793849172193,-64.97787320756085,-64.97780990145338,-64.97774854305051,-64.97768910238845,-64.9776315498813,-64.97757585631382,-64.97752199283481,-64.97746993095068,-64.97741964251931,-64.97737109974432,-64.97732427516951,-64.97727914167352,-64.97723567246483,-64.97719384107685,-64.9771536213633,-64.97711498749368,-64.977077913949,-64.97704237551761,-64.9770083472912,-64.97697580466092,-64.97694472331361,-64.97691507922819,-64.97688684867218,-64.97686000819819,-64.97683453464067,-64.97681040511269,-64.97678759700268,-64.97676608797151,-64.97674585594939,-64.97672687913294,-64.97670913598238,-64.97669260521867,-64.97667726582083,-64.97666309702313,-64.9766500783126,-64.97663818942627,-64.97662741034874,-64.97661772130961,-64.97660910278103,-64.97660153547525,-64.97659500034226,-64.97658947856735,-64.97658495156888,-64.97658140099591,-64.97657880872596,-64.97657715686276,-64.97657642773403,-64.9765766038893,-64.97657766809775,-64.97657960334604,-64.97658239283625,-64.97658601998371,-64.976590468415,-64.97659572196584,-64.97660176467907,-64.97660858080268,-64.9766161547877,-64.9766244712864,-64.97663351515013,-64.97664327142752,-64.97665372536251,-64.97666486239241,-64.97667666814606,-64.97668912844189,-64.97670222928612,-64.97671595687085,-64.97673029757227,-64.97674523794883,-64.97676076473941,-64.97677686486156,-64.97679352540973,-64.97681073365345,-64.97682847703564,-64.97684674317082,-64.97686551984347,-64.97688479500621,-64.97690455677817,-64.97692479344329,-64.97694549344864,-64.97696664540278,-64.97698823807407,-64.97701026038908,-64.97703270143091,-64.97705555043765,-64.97707879680073,-64.97710243006331,-64.97712643991879,-64.97715081620915,-64.97717554892344,-64.97720062819626,-64.97722604430616,-64.97725178767422,-64.97727784886246,-64.97730421857236,-64.97733088764339,-64.97735784705155,-64.97738508790788,-64.97741260145702,-64.97744037907576,-64.97746841227163,-64.97749669268147,-64.97752521207002,-64.97755396232851,-64.97758293547331,-64.97761212364452,-64.97764151910464,-64.97767111423715,-64.97770090154528,-64.97773087365056,-64.97776102329156,-64.9567679578287,-64.91692643536271,-64.86020425869032,-64.788382741909,-64.7030749083033,-64.60574166261647,-64.49770617249526,-64.38016667619338,-64.25420791162831,-64.12081133882731,-63.98086430557468,-63.835168285689704,-63.68444630125668,-63.52934962437645,-63.370463840497166,-63.208314343892745,-63.04337132613861,-62.87605431022821,-62.706736276043095,-62.53574741702283,-62.363378562895434,-62.18988429907259,-62.015485809657626,-61.84037346785449,-61.66470919481588,-61.48862860555957,-61.31224295845519,-61.13564092289376,-60.95889017806003,-60.78203885420079,-60.60511682639417,-60.428136869552546,-60.25109568221384,-60.073974785576176,-59.89674130319129,-59.719348625738476,-59.541736964337886,-59.36383379491516,-59.18555419518456,-59.00680107485908,-58.84845358632289,-58.708226232875816,-58.58407369352416,-58.47416956582869,-58.376886772255624,-58.290779406069106,-58.214565866186085,-58.14711317965242,-58.087422442018706,-58.03461532482352,-57.98792160939725,-57.94666771016774,-57.910266150773836,-57.87820595421213,-57.85004390514534,-57.82539663921818,-57.80393351130286,-57.785370192358265,-57.7694629431945,-57.7560035129312,-57.74481461028407,-57.73574589691961,-57.72867045386433,-57.72348167421087,-57.72009053800051,-57.71842322805705,-57.718419048593674,-57.72002861151899,-57.723212258455135,-57.7279386894892,-57.73418377256377,-57.74192951013997,-57.75116314231626,-57.761876367945064,-57.77406466745336,-57.787726713042545,-57.80286385372355,-57.81947966424335,-57.83757954838973,-57.85717038843434,-57.878260233602965,-57.90085802145887,-57.92497332696343,-57.95061613474989,-57.97779663082301,-58.00652501048971,-58.03681129984454,-58.068665188586536,-58.10209587234054,-58.13711190300184,-58.173721045926015,-58.21193014305067,-58.251744981267514,-58.2931701655666,-58.336208996652374,-58.38086335288698,-58.42713357655251,-58.475018364542436,-58.524514663695484,-58.57561757107326,-58.62832023955801,-58.68261378920922,-58.738487224867846,-58.79592736053566,-58.85491875108466,-58.91544363186758,-58.97748186680582,-59.04101090552562,-59.10600575009688,-59.17243893190207,-59.24028049912538,-59.30949801530472,-59.380056569331984,-59.45191879722041,-59.52504491588267,-59.59939276908035,-59.674917885615294,-59.75157354973721,-59.82931088364125,-59.908078941824776,-59.98782481696625,-60.06849375688213,-60.150029292011844,-60.23237337277752,-60.315466516066145,-60.399247959988664,-60.483655825984975,-60.5686272872667,-60.6540987425234,-60.74000599376249,-60.82628442711059,-60.91286919537467,-60.999695401145345,-61.08669827922361,-61.17381337716432,-61.260976732756646,-61.34812504730163,-61.43519585359963,-61.52212767762535,-61.608860192943354,-61.695334367001955,-61.781492598536126,-61.86727884540935,-61.95263874232849,-62.03751970797279,-62.121871041187035,-62.20564400599724,-62.28879190531423,-62.37127014329409,-62.45303627642382,-62.534050053493964,-62.61427344470704,-62.69367066025001,-62.77220815873033,-62.84985464593769,-62.92658106444749,-63.002360574626636,-63.07716852763799,-63.15098243106675,-63.22378190781034,-63.29554864888369,-63.36626636079454,-63.43592070813925,-63.50449925205884,-63.57199138517919,-63.63838826363787,-63.70368273677525,-63.76786927503844,-63.83094389661546,-63.892904093283114,-63.953748755917246,-64.01347810007763,-64.0720935920437,-64.12959787564047,-64.1859947001586,-64.24128884963693,-64.2954860737424,-64.3485930204493,-64.40061717068926,-64.45156677511385,-64.50145079308462,-64.55027883397997,-64.59806110088493,-64.64480833670834,-64.6905317727529,-64.7352430797459,-64.7789543213226,-64.82167790994119,-64.86342656519524,-64.90421327448009,-64.94405125595988,-64.98295392377511,-65.02093485542385,-65.05800776124511,-65.09418645592895,-65.12948483197478,-65.16391683501743,-65.19749644093936,-65.23023763468682,-65.26215439070774,-65.29326065492995,-65.32357032819932,-65.35309725109867,-65.38185519007057,-65.4098578247687,-65.4371187365652,-65.46365139814344,-65.48946916410864,-65.51458526255125,-65.53901278750075,-65.56276469221042,-65.58585378321631,-65.60829271511649,-65.63009398601947,-65.65126993361316,-65.67183273180866,-65.69179438791559,-65.71116674030822,-65.72996145654396,-65.74819003189845,-65.76586378828307,-65.78299387351366,-65.79959126090053,-65.81566674913226,-65.83123096242747,-65.84629435093045,-65.86086719132837,-65.87495958766914,-65.88858147236068,-65.90174260733359,-65.91445258535062,-65.92672083144758,-65.93855660449148,-65.94996899884258,-65.96096694610843,-65.97155921697865,-65.98175442313001,-65.99156101919257,-66.00098730476796,-66.01004142649192,-66.01873138013383,-66.02706501272631,-66.03505002471904,-66.042693972151,-66.05000426883605,-66.05698818855733,-66.06365286726606,-66.07000530528111,-66.07605236948571,-66.08180079551819,-66.08725718995404,-66.09242803247658,-66.09731967803395,-66.10193835898068,-66.10629018720142,-66.11038115621592,-66.1142171432632,-66.11780391136402,-66.12114711136043,-66.12425228393137,-66.12712486158361,-66.12977017061716,-66.13219343306474,-66.13439976860461,-66.13639419644645,-66.13818163718994,-66.13976691465587,-66.14115475768929,-66.14234980193503,-66.1433565915851,-66.14417958109829,-66.14482313689163,-66.14529153900426,-66.14558898273327,-66.14571958024214,-66.1456873621416,-66.14549627904331,-66.14515020308654,-66.14465292943794,-66.14400817776493,-66.14321959368276,-66.14229075017565,-66.14122514899223,-66.14002622201573,-66.13869733260904,-66.13724177693516,-66.13566278525332,-66.13396352319104,-66.13214709299258,-66.13021653474408,-66.12817482757568,-66.12602489084118,-66.12376958527535,-66.12141171412938,-66.11895402428478,-66.11639920734619,-66.1137499007133,-66.11100868863227,-66.10817810322708,-66.10526062551112,-66.10225868637933,-66.0991746675812,-66.09601090267508,-66.09276967796409,-66.08945323341386,-66.0860637635526,-66.08260341835366,-66.07907430410097,-66.0754784842378,-66.07181798019887,-66.0680947722263,-66.06431080016978,-66.06046796427103,-66.05656812593301,-66.05261310847413,-66.04860469786773,-66.04454464346706,-66.0404346587162,-66.03627642184692,-66.03207157656212,-66.02782173270563,-66.02352846691916,-66.01919332328613,-66.01481781396312,-66.01040341979876,-66.0059515909406,-66.00146374743,-65.99694127978542,-65.99238554957425,-65.9877978899734,-65.98317960631887,-65.97853197664466,-65.97385625221092,-65.96915365802188,-65.96442539333357,-65.95967263215157,-65.95489652371896,-65.95009819299479,-65.94527874112308,-65.9404392458926,-65.93558076218777,-65.9307043224305,-65.92581093701357,-65.92090159472538,-65.91597726316645,-65.9110388891577,-65.9060873991407,-65.90112369957023,-65.896148677299,-65.89116319995483,-65.88616811631059,-65.88116425664673,-65.87615243310685,-65.87113344004622,-65.86610805437353,-65.86107703588594,-65.85604112759765,-65.8510010560619,-65.84595753168685,-65.84091124904519,-65.83586288717777,-65.83081310989122,-65.82576256604989,-65.820711889862,-65.81566170116024,-65.81061260567697,-65.80556519531397,-65.80052004840704,-65.79547772998532,-65.79043879202575,-65.78540377370246,-65.78037320163132,-65.77534759010986,-65.77032744135239,-65.76531324572069,-65.76030548195014,-65.75530461737155,-65.75031110812863,-65.74532539939133,-65.740347925565,-65.73537911049554,-65.73041936767058,-65.72546910041682,-65.72052870209349,-65.7155985562822,-65.71067903697305,-65.70577050874714,-65.70087332695572,-65.69598783789573,-65.69111437898208,-65.68625327891661,-65.68140485785379,-65.67656942756328,-65.67174729158936,-65.66693874540732,-65.66214407657692,-65.6573635648928,-65.65259748253217,-65.64784609419958,-65.64310965726901,-65.6383884219232,-65.63368263129041,-65.62899252157852,-65.6243183222066,-65.61966025593405,-65.6150185389872,-65.61039338118363,-65.60578498605405,-65.60119355096194,-65.59661926722093,-65.59206232020993,-65.58752288948617,-65.58300114889605,-65.57849726668395,-65.57401140559904,-65.56954372299995,-65.56509437095767,-65.5606634963564,-65.55625124099257,-65.55185774167201,-65.54748313030532,-65.54312753400146,-65.53879107515958,-65.5344738715592,-65.5301760364487,-65.52589767863213,-65.52163890255451,-65.51739980838548,-65.51318049210141,-65.50898104556607,-65.50480155660976,-65.50064210910699,-65.49650278305275,-65.49238365463741,-65.48828479632022,-65.48420627690145,-65.48014816159329,-65.47611051208938,-65.4720933866331,-65.4680968400847,-65.46412092398705,-65.4601656866304,-65.45623117311581,-65.45231742541748,-65.448424482444,-65.4445523800985,-65.44070115133765,-65.43687082622966,-65.43306143201123,-65.42927299314346,-65.4255055313668,-65.42175906575501,-65.41803361276816,-65.41432918630461,-65.41064579775225,-65.40698345603865,-65.40334216768039,-65.3997219368316,-65.39612276533147,-65.3925446527511,-65.38898759643943,-65.3854515915684,-65.38193663117725,-65.37844270621618,-65.3749698055891,-65.37151791619578,-65.36808702297313,-65.36467710893582,-65.36128815521627,-65.35792014110382,-65.35457304408327,-65.35124683987283,-65.3479415024613,-65.34465700414466,-65.34139331556212,-65.33815040573131,-65.33492824208321,-65.33172679049615,-65.32854601532945,-65.32538587945642,-65.32224634429674,-65.31912736984842,-65.31602891471907,-65.31295093615677,-65.30989339008033,-65.30685623110911,-65.30383941259223,-65.30084288663741,-65.29786660413929,-65.2949105148072,-65.29197456719258,-65.28905870871586,-65.2861628856929,-65.28328704336107,-65.28043112590474,-65.27759507648051,-65.27477883724191,-65.27198234936378,-65.26920555306614,-65.26644838763775,-65.26371079145925,-65.2609927020259,-65.25829405597003,-65.25561478908298,-65.25295483633683,-65.25031413190561,-65.24769260918637,-65.24509020081967,-65.24250683870994,-65.23994245404539,-65.2373969773176,-65.23487033834087,-65.23236246627116,-65.22987328962476,-65.22740273629672,-65.22495073357882,-65.22251720817744,-65.22010208623098,-65.21770529332713,-65.21532675451974,-65.2129663943455,-65.21062413684032,-65.20829990555545,-65.2059936235733,-65.20370521352314,-65.20143459759632,-65.19918169756147,-65.19694643477933,-65.19472873021734,-65.19252850446404,-65.19034567774324,-65.18818016992792,-65.18603190055393,-65.18390078883345,-65.1817867536683,-65.17968971366292,-65.17760958713724,-65.1755462921393,-65.17349974645768,-65.1714698676337,-65.16945657297346,-65.16745977955966,-65.16547940426325,-65.16351536375487,-65.1615675745161,-65.15963595285056,-65.15772041489483,-65.15582087662908,-65.15393725388773,-65.15206946236977,-65.15021741764895,-65.14838103518387,-65.14656023032782,-65.14475491833846,-65.14296501438747,-65.14119043356983,-65.13943109091313,-65.13768690138666,-65.1359577799103,-65.13424364136337,-65.13254440059319,-65.13085997242366,-65.12919027166359,-65.12753521311487,-65.1258947115806,-65.124268681873,-65.12265703882127,-65.1210596972792,-65.11947657213271,-65.11790757830735,-65.11635263077551,-65.11481164456359,-65.11328453475906,-65.11177121651738,-65.1102716050688,-65.10878561572503,-65.10731316388575,-65.10585416504517,-65.10440853479828,-65.10297618884708,-65.1015570430067,-65.1001510132114,-65.0987580155205,-65.09737796612409,-65.09601078134874,-65.09465637766313,-65.09331467168344,-65.09198558017881,-65.09066902007653,-65.08936490846727,-65.08807316261017,-65.08679369993774,-65.08552643806085,-65.08427129477347,-65.08302818805737,-65.08179703608675,-65.08057775723276,-65.0793702700679,-65.07817449337041,-65.07699034612851,-65.07581774754455,-65.07465661703912,-65.07350687425507,-65.0723684390614,-65.07124123155712,-65.070125172075,-65.06902018118524,-65.0679261796991,-65.06684308867241,-65.06577082940903,-65.0647093234642,-65.06365849264786,-65.06261825902786,-65.06158854493313,-65.06056927295674,-65.05956036595892,-65.05856174706999,-65.05757333969323,-65.05659506750774,-65.05562685447106,-65.05466862482193,-65.05372030308284,-65.05278181406261,-65.05185308285884,-65.05093403486029,-65.05002459574925,-65.04912469150385,-65.04823424840023,-65.04735319301476,-65.04648145222606,-65.04561895321714,-65.0447656234773,-65.04392139080412,-65.04308618330526,-65.04225992940037,-65.04144255782275,-65.0406339976211,-65.03983417816119,-65.0390430291274,-65.03826048052433,-65.03748646267822,-65.03672090623843,-65.03596374217884,-65.03521490179914,-65.03447431672618,-65.03374191891514,-65.0330176406508,-65.0323014145486,-65.0315931735558,-65.03089285095251,-65.03020038035268,-65.02951569570506,-65.02883873129413,-65.02816942174097,-65.02750770200407,-65.02685350738011,-65.02620677350473,-65.02556743635317,-65.024935432241,-65.02431069782467,-65.02369317010215,-65.0230827864134,-65.0224794844409,-65.02188320221009,-65.02129387808985,-65.02071145079279,-65.02013585937564,-65.01956704323959,-65.0190049421305,-65.01844949613916,-65.0179006457015,-65.01735833159877,-65.01682249495762,-65.01629307725025,-65.01577002029445,-65.01525326625364,-65.01474275763684,-65.0142384372987,-65.01374024843938,-65.01324813460445,-65.01276203968484,-65.0122819079166,-65.01180768388076,-65.0113393125031,-65.0108767390539,-65.01041990914771,-65.00996876874302,-65.0095232641419,-65.00908334198971,-65.00864894927469,-65.00822003332755,-65.00779654182105,-65.00737842276955,-65.00696562452848,-65.00655809579389,-65.0061557856019,-65.00575864332815,-65.00536661868718,-65.0049796617319,-65.0045977228529,-65.00422075277788,-65.00384870257088,-65.00348152363168,-65.00311916769505,-65.00276158683003,-65.00240873343917,-65.00206056025776,-65.00171702035307,-65.00137806712347,-65.00104365429767,-65.00071373593386,-65.0003882664188,-65.00006720046697,-64.99975049311969,-64.99943809974415,-64.99912997603253,-64.998826078001,-64.99852636198877,-64.99823078465711,-64.99793930298837,-64.99765187428491,-64.99736845616815,-64.99708900657743,-64.99681348376902,-64.99654184631504,-64.99627405310235,-64.9960100633315,-64.99574983651551,-64.99549333247889,-64.99524051135637,-64.99499133359184,-64.99474575993716,-64.99450375145095,-64.99426526949748,-64.99403027574537,-64.99379873216651,-64.99357060103475,-64.99334584492468,-64.99312442671044,-64.99290630956443,-64.99269145695608,-64.99247983265055,-64.99227140070748,-64.99206612547974,-64.99186397161206,-64.9916649040398,-64.99146888798757,-64.991275888968,-64.99108587278039,-64.9908988055093,-64.99071465352334,-64.99053338347372,-64.99035496229297,-64.99017935719354,-64.99000653566647,-64.98983646547998,-64.98966911467814,-64.98950445157945,-64.98934244477552,-64.98918306312957,-64.98902627577517,-64.98887205211473,-64.98872036181815,-64.9885711748214,-64.98842446132511,-64.98828019179317,-64.98813833695127,-64.9879988677855,-64.98786175554099,-64.98772697172036,-64.98759448808238,-64.9874642766405,-64.9873363096614,-64.98721055966362,-64.98708699941604,-64.98696560193646,-64.98684634049022,-64.98672918858864,-64.98661411998768,-64.98650110868644,-64.9863901289257,-64.98628115518652,-64.98617416218873,-64.98606912488954,-64.98596601848202,-64.98586481839371,-64.98576550028514,-64.9856680400484,-64.98557241380563,-64.98547859790764,-64.98538656893243,-64.98529630368373,-64.98520777918955,-64.98512097270077,-64.98503586168964,-64.98495242384836,-64.98487063708765,-64.98479047953528,-64.98471192953463,-64.98463496564327]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1098\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1099\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1094\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1095\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1096\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1107\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1101\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1102\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1103\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.99859895156952,-64.99794940680333,-64.9973300246924,-64.99673830824379,-64.99617201809848,-64.99562914432974,-64.99510788141654,-64.9946066060273,-64.99412385729227,-64.99365831927994,-64.99320880542628,-64.99277424469419,-64.99235366926698,-64.99194620360169,-64.99155105468868,-64.99116750338113,-64.99079489667402,-64.99043264082597,-64.99008019522934,-64.98973706694485,-64.98940280582678,-64.98907700017278,-64.98875927284017,-64.98844927777704,-64.9881466969224,-64.98785123743474,-64.98756262921283,-64.98728062267692,-64.98700498678193,-64.98673550723724,-64.98647198491092,-64.98621423439829,-64.98596208273723,-64.9857153682545,-64.98547393952902,-64.98523765445972,-64.98500637942695,-64.98477998853737,-64.98455836294382,-64.98434139023209,-64.98412896386783,-64.98392098269719,-64.98371735049578,-64.983517975561,-64.98332277034311,-64.98313165111144,-64.98294453765189,-64.98276135299274,-64.98258202315591,-64.9824064769311,-64.98223464567062,-64.98206646310275,-64.9819018651621,-64.9817407898349,-64.98158317701817,-64.9814289683912,-64.98127810729832,-64.98113053864175,-64.98098620878365,-64.98084506545659,-64.98070705768147,-64.9805721356924,-64.98044025086774,-64.98031135566687,-64.98018540357205,-64.98006234903502,-64.97994214742788,-64.97982475499778,-64.97971012882525,-64.97959822678573,-64.97948900751403,-64.97938243037156,-64.97927845541591,-64.9791770433728,-64.97907815561007,-64.97898175411346,-64.9788878014643,-64.97879626081858,-64.9787070958877,-64.97862027092032,-64.9785357506856,-64.97845350045755,-64.97837348600032,-64.97829567355454,-64.9782200298245,-64.97814652196608,-64.97807511757554,-64.9780057846789,-64.97793849172193,-64.97787320756085,-64.97780990145338,-64.97774854305051,-64.97768910238845,-64.9776315498813,-64.97757585631382,-64.97752199283481,-64.97746993095068,-64.97741964251931,-64.97737109974432,-64.97732427516951,-64.97727914167352,-64.97723567246483,-64.97719384107685,-64.9771536213633,-64.97711498749368,-64.977077913949,-64.97704237551761,-64.9770083472912,-64.97697580466092,-64.97694472331361,-64.97691507922819,-64.97688684867218,-64.97686000819819,-64.97683453464067,-64.97681040511269,-64.97678759700268,-64.97676608797151,-64.97674585594939,-64.97672687913294,-64.97670913598238,-64.97669260521867,-64.97667726582083,-64.97666309702313,-64.9766500783126,-64.97663818942627,-64.97662741034874,-64.97661772130961,-64.97660910278103,-64.97660153547525,-64.97659500034226,-64.97658947856735,-64.97658495156888,-64.97658140099591,-64.97657880872596,-64.97657715686276,-64.97657642773403,-64.9765766038893,-64.97657766809775,-64.97657960334604,-64.97658239283625,-64.97658601998371,-64.976590468415,-64.97659572196584,-64.97660176467907,-64.97660858080268,-64.9766161547877,-64.9766244712864,-64.97663351515013,-64.97664327142752,-64.97665372536251,-64.97666486239241,-64.97667666814606,-64.97668912844189,-64.97670222928612,-64.97671595687085,-64.97673029757227,-64.97674523794883,-64.97676076473941,-64.97677686486156,-64.97679352540973,-64.97681073365345,-64.97682847703564,-64.97684674317082,-64.97686551984347,-64.97688479500621,-64.97690455677817,-64.97692479344329,-64.97694549344864,-64.97696664540278,-64.97698823807407,-64.97701026038908,-64.97703270143091,-64.97705555043765,-64.97707879680073,-64.97710243006331,-64.97712643991879,-64.97715081620915,-64.97717554892344,-64.97720062819626,-64.97722604430616,-64.97725178767422,-64.97727784886246,-64.97730421857236,-64.97733088764339,-64.97735784705155,-64.97738508790788,-64.97741260145702,-64.97744037907576,-64.97746841227163,-64.97749669268147,-64.97752521207002,-64.97755396232851,-64.97758293547331,-64.97761212364452,-64.97764151910464,-64.97767111423715,-64.97770090154528,-64.97773087365056,-64.97776102329156,-64.94625626508177,-64.88647874993819,-64.80138020506338,-64.69363256218897,-64.56565508986664,-64.41963839934259,-64.25756569266282,-64.08123159774385,-63.89225890022225,-63.69211344351245,-63.48211743103698,-63.26346133031693,-63.0372145484601,-62.80433502271039,-62.56567784784832,-62.322003043887285,-62.07398255215658,-61.82220653498133,-61.56718904328782,-61.30937310717456,-61.049135296453194,-60.7867897910944,-60.52259199518301,-60.25674172220101,-59.98938597406033,-59.720621331163755,-59.45049596576564,-59.17901128592526,-58.90612321229169,-58.63174308472368,-58.355738190218894,-58.07793189767792,-57.79810337851558,-57.51598688488508,-57.23127054909656,-56.94359465844289,-56.65254934879344,-56.3576716476081,-56.05844178200487,-55.754278649614314,-55.47596893055844,-55.21956305002009,-54.981481974209274,-54.758484215646,-54.54763444398348,-54.34627326380595,-54.151987911931805,-53.96258375049577,-53.77605650402942,-53.59056522124825,-53.40440594525297,-53.21598605735667,-53.023799225984725,-52.82640084766243,-52.62238381510319,-52.41035438954346,-52.188907891185806,-51.95660385217883,-51.7119401991655,-51.45332594418086,-51.17905175958926,-50.887257689636705,-50.57589710150555,-50.24269579432105,-49.88510495525325,-49.50024636523864,-49.08484789773688,-48.63516690416323,-48.14689851800256,-47.615065212674565,-47.033883092514046,-46.396599363527706,-45.69529421870285,-44.920639016805666,-44.06160124659796,-43.10508561459401,-42.035500222717324,-40.834238279438125,-39.47907109874642,-37.94346084883183,-36.19582780020799,-34.19885702167076,-31.909020019228567,-29.276642018129163,-26.24709668010472,-22.764082928502575,-18.776405269035163,-14.250020347628361,-9.186657419997784,-3.6477896066355546,2.2229562759084036,8.192933876659069,13.964452578335152,19.232271204014683,23.75435163720455,27.4021622772015,30.168531976747765,32.13785657338573,33.44122960517476,34.21763494944141,34.59048550131998,34.65850665610069,34.49574021017847,34.15567088636921,33.67628817768469,33.08457647799317,32.39997321603589,31.636832824090703,30.806103494812323,29.9164379715367,28.974918952843062,27.98753017638388,26.959462535215835,25.89531403702166,24.799221586640176,23.674948911563195,22.525946176695307,21.355391253214542,20.166219061412253,18.961143148116864,17.742672209717167,16.513123333678028,15.274633118995549,14.029167432842502,12.77853029343459,11.524372190954077,10.268198039901325,9.011374876692699,7.755139364154171,6.500605129770557,5.248769942254119,4.000522716575353,2.7566503286788535,1.5178442154266838,0.284706731879101,-0.9422427644246076,-2.1625621343081285,-3.3758810167723627,-4.581895763608761,-5.78036478668494,-6.971104358326607,-8.153984907827345,-9.328927859804363,-10.495903062642068,-11.654926857189235,-12.806060836764424,-13.949411349249171,-15.085129789585608,-16.213413726467742,-17.334508899407012,-18.448712111763577,-19.556375031396072,-20.657908892833454,-21.753790074268128,-22.84456649842561,-23.930864779725127,-25.013398010838248,-26.092974050181013,-27.170504137658593,-28.247011628153146,-29.323640588753808,-30.401663953213408,-31.482490860837036,-32.567672720008765,-33.6589074203308,-34.75804096165652,-35.86706556051045,-36.988113022522704,-38.123441820252935,-39.27541588037971,-40.44647255921394,-41.63907668145423,-42.85565686708999,-44.09851974603895,-45.36973718798594,-46.67100156817204,-48.00344467323853,-49.36741758528465,-50.762232362997686,-52.185872241364436,-53.63468598676396,-55.1030941493952,-56.58334947799033,-58.06540829286739,-59.53697951686716,-60.98381654605193,-62.39029676274268,-63.74028967455345,-65.01825059247315,-66.21040707969244,-67.30585461773437,-68.29737106973097,-69.18180804906874,-69.96000938736852,-70.63631057728767,-71.21775215739089,-71.71317217461706,-72.13232786303587,-72.48515134695121,-72.78119040908844,-73.02923990813484,-73.23713992550186,-73.41170312897678,-73.55873204568067,-73.68309194698001,-73.78881279369986,-73.87920156668868,-73.9569530077345,-74.02425189533491,-74.08286354571554,-74.13421153884318,-74.17944304475013,-74.21948285621903,-74.25507754715146,-74.28683123649205,-74.31523435752452,-74.3406866839565,-74.36351569153086,-74.38399116208616,-74.40233677906276,-74.4187393250212,-74.43335597411965,-74.44632007469053,-74.45774573697007,-74.46773147619336,-74.47636310920669,-74.48371606120539,-74.4898572062084,-74.49484633875775,-74.49873735370159,-74.501579194654,-74.50341661891515,-74.50429081655261,-74.50423991341093,-74.50329938157299,-74.50150237588186,-74.49888001126102,-74.49546159252004,-74.49127480592668,-74.48634587992632,-74.48069972088851,-74.47436002857191,-74.46734939505819,-74.45968939015866,-74.45140063570446,-74.44250287065968,-74.43301500862052,-74.42295518896438,-74.41234082267286,-74.40118863366077,-74.38951469628974,-74.37733446962123,-74.36466282886427,-74.35151409439302,-74.33790205864472,-74.32384001115533,-74.30934076194845,-74.29441666345748,-74.27907963113333,-74.26334116286631,-74.24721235733224,-74.23070393135671,-74.2138262363788,-74.19658927408464,-74.17900271127257,-74.16107589400357,-74.1428178610852,-74.1242373569314,-74.10534284383624,-74.08614251369599,-74.0666442992106,-74.04685588459272,-74.02678471581032,-74.00643801038652,-73.98582276677868,-73.96494577335716,-73.94381361700242,-73.9224326913385,-73.90080920461914,-73.87894918728213,-73.85685849918673,-73.83454283654757,-73.81200773857847,-73.78925859385825,-73.7663006464304,-73.74313900164768,-73.71977863177227,-73.69622438134151,-73.67248097230883,-73.64855300896922,-73.62444498267767,-73.60016127636933,-73.575706168889,-73.55108383913799,-73.52629837004538,-73.50135375237092,-73.47625388834612,-73.45100259516016,-73.42560360829661,-73.40006058472713,-73.37437710596755,-73.3485566810022,-73.32260274908121,-73.29651868239644,-73.27030778864022,-73.24397331345216,-73.21751844275806,-73.19094630500548,-73.1642599732999,-73.1374624674456,-73.11055675589502,-73.08354575761018,-73.05643234383986,-73.02921933981577,-73.00190952637105,-72.9745056414843,-72.94701038175198,-72.91942640379227,-72.89175632558309,-72.864002727737,-72.83616815471555,-72.8082551159856,-72.78026608711995,-72.7522035108447,-72.72406979803537,-72.69586732866422,-72.66759845270043,-72.63926549096553,-72.61087073594564,-72.58241645256265,-72.55390487890587,-72.52533822692594,-72.49671868309277,-72.46804840901882,-72.43932954204949,-72.41056419582192,-72.38175446079366,-72.35290240474262,-72.32401007323952,-72.29507949009408,-72.2661126577763,-72.23711155781385,-72.20807815116667,-72.17901437858008,-72.14992216091713,-72.12080339947141,-72.09165997626123,-72.06249375430596,-72.03330657788571,-72.00410027278484,-71.97487664652039,-71.94563748855614,-71.91638457050308,-71.88711964630689,-71.8578444524233,-71.82856070798198,-71.79927011493949,-71.76997435822204,-71.7406751058586,-71.71137400910489,-71.68207270255891,-71.6527728042685,-71.6234759158313,-71.59418362248789,-71.56489749320822,-71.53561908077208,-71.50634992184385,-71.47709153704207,-71.44784543100407,-71.4186130924462,-71.3893959942199,-71.36019559336405,-71.3310133311538,-71.30185063314633,-71.27270890922378,-71.24358955363358,-71.21449394502659,-71.18542344649316,-71.15637940559749,-71.12736315441039,-71.09837600954081,-71.06941927216629,-71.04049422806236,-71.0116021476315,-70.9827442859314,-70.95392188270294,-70.92513616239798,-70.89638833420715,-70.86767959208777,-70.83901111479194,-70.81038406589516,-70.78179959382533,-70.75325883189241,-70.72476289831887,-70.69631289627088,-70.66790991389045,-70.6395550243286,-70.61124928577956,-70.58299374151619,-70.55478941992655,-70.52663733455185,-70.49853848412565,-70.4704938526145,-70.44250440926004,-70.41457110862254,-70.386694890626,-70.35887668060477,-70.33111738935176,-70.30341791316829,-70.27577913391549,-70.24820191906747,-70.22068712176598,-70.1932355808769,-70.1658481210483,-70.13852555277022,-70.1112686724361,-70.08407826240594,-70.05695509107109,-70.02989991292068,-70.0029134686098,-69.97599648502919,-69.94914967537666,-69.92237373923012,-69.89566936262216,-69.86903721811619,-69.84247796488421,-69.81599224878603,-69.78958070245007,-69.76324394535553,-69.73698258391613,-69.71079721156521,-69.68468840884219,-69.65865674348046,-69.63270277049656,-69.60682703228066,-69.58103005868826,-69.55531236713318,-69.52967446268174,-69.504116838148,-69.4786399741902,-69.45324433940831,-69.4279303904425,-69.40269857207268,-69.37754931731908,-69.35248304754359,-69.32750017255212,-69.30260109069779,-69.27778618898485,-69.25305584317341,-69.22841041788499,-69.20385026670857,-69.17937573230748,-69.15498714652676,-69.1306848305012,-69.10646909476378,-69.08234023935479,-69.0582985539312,-69.03434431787656,-69.01047780041132,-68.9866992607034,-68.96300894797906,-68.93940710163409,-68.91589395134524,-68.89246971718177,-68.86913460971721,-68.84588883014125,-68.82273257037168,-68.7996660131664,-68.77668933223543,-68.75380269235298,-68.73100624946932,-68.70830015082278,-68.68568453505144,-68.66315953230477,-68.64072526435515,-68.61838184470905,-68.59612937871808,-68.57396796368977,-68.55189768899801,-68.52991863619323,-68.5080308791122,-68.48623448398747,-68.46452950955644,-68.44291600716994,-68.42139402090046,-68.39996358764986,-68.37862473725654,-68.35737749260223,-68.33622186971807,-68.31515787789034,-68.29418551976542,-68.27330479145427,-68.25251568263624,-68.2318181766623,-68.21121225065755,-68.19069787562313,-68.17027501653739,-68.1499436324564,-68.12970367661369,-68.10955509651933,-68.08949783405822,-68.06953182558762,-68.04965700203388,-68.02987328898853,-68.01018060680332,-67.99057887068473,-67.97106799078746,-67.95164787230718,-67.93231841557241,-67.9130795161356,-67.89393106486328,-67.87487294802546,-67.855905047384,-67.83702724028026,-67.8182393997218,-67.79954139446814,-67.7809330891157,-67.76241434418186,-67.74398501618798,-67.72564495774166,-67.70739401761804,-67.68923204084014,-67.67115886875831,-67.65317433912881,-67.63527828619137,-67.61747054074591,-67.5997509302283,-67.58211927878519,-67.5645754073479,-67.54711913370546,-67.52975027257662,-67.51246863568099,-67.49527403180927,-67.47816626689252,-67.4611451440705,-67.44421046375918,-67.42736202371718,-67.41059961911148,-67.39392304258202,-67.37733208430556,-67.36082653205858,-67.34440617127916,-67.32807078512819,-67.31182015454948,-67.2956540583291,-67.27957227315379,-67.26357457366846,-67.24766073253292,-67.2318305204776,-67.21608370635853,-67.20042005721137,-67.18483933830464,-67.16934131319208,-67.15392574376415,-67.13859239029875,-67.12334101151107,-67.1081713646026,-67.09308320530936,-67.07807628794932,-67.063150365469,-67.04830518948926,-67.03354051035032,-67.01885607715604,-67.00425163781736,-66.98972693909495,-66.97528172664121,-66.96091574504143,-66.94662873785425,-66.93242044765135,-66.9182906160564,-66.90423898378333,-66.89026529067392,-66.87636927573458,-66.86255067717245,-66.84880923243097,-66.83514467822451,-66.82155675057255,-66.80804518483309,-66.7946097157354,-66.78125007741215,-66.76796600343087,-66.75475722682485,-66.74162348012328,-66.72856449538094,-66.71558000420711,-66.70266973779404,-66.68983342694469,-66.67707080209998,-66.66438159336543,-66.65176553053725,-66.6392223431278,-66.62675176039058,-66.61435351134466,-66.60202732479854,-66.58977292937352,-66.57759005352654,-66.56547842557242,-66.55343777370582,-66.54146782602243,-66.52956831053984,-66.51773895521795,-66.50597948797873,-66.49428963672575,-66.48266912936305,-66.47111769381365,-66.45963505803768,-66.44822095004989,-66.43687509793695,-66.42559722987417,-66.41438707414189,-66.40324435914137,-66.39216881341042,-66.38116016563855,-66.37021814468169,-66.35934247957667,-66.34853289955521,-66.33778913405757,-66.32711091274591,-66.31649796551716,-66.30595002251573,-66.29546681414574,-66.28504807108295,-66.27469352428642,-66.26440290500976,-66.25417594481218,-66.24401237556913,-66.23391192948272,-66.22387433909176,-66.21389933728165,-66.2039866572938,-66.19413603273499,-66.18434719758626,-66.17461988621169,-66.1649538333668,-66.15534877420679,-66.14580444429451,-66.13632057960818,-66.12689691654882,-66.11753319194753,-66.10822914307256,-66.09898450763606,-66.08979902380068,-66.08067243018597,-66.07160446587453,-66.06259487041801,-66.05364338384288,-66.04474974665601,-66.03591369985008,-66.02713498490884,-66.01841334381206,-66.00974851904049,-66.00114025358053,-65.9925882909288,-65.98409237509647,-65.97565225061352,-65.96726766253282,-65.95893835643405,-65.95066407842748,-65.94244457515762,-65.93427959380675,-65.92616888209825,-65.91811218829993,-65.91010926122709,-65.90215985024555,-65.89426370527455,-65.88642057678953,-65.87863021582477,-65.87089237397599,-65.86320680340278,-65.85557325683094,-65.8479914875548,-65.84046124943931,-65.83298229692221,-65.82555438501592,-65.8181772693095,-65.81085070597045,-65.80357445174646,-65.79634826396706,-65.78917190054523,-65.78204511997889,-65.77496768135238,-65.76793934433782,-65.76095986919645,-65.7540290167799,-65.7471465485313,-65.74031222648655,-65.73352581327532,-65.72678707212211,-65.72009576684725,-65.71345166186781,-65.70685452219851,-65.70030411345256,-65.69380020184248,-65.68734255418082,-65.68093093788093,-65.67456512095765,-65.66824487202794,-65.66196996031151,-65.65574015563142,-65.64955522841461,-65.64341494969248,-65.63731909110136,-65.63126742488299,-65.62525972388501,-65.61929576156133,-65.61337531197262,-65.60749814978664,-65.60166405027864,-65.59587278933174,-65.59012414343722,-65.5844178896949,-65.57875380581342,-65.57313167011051,-65.56755126151337,-65.56201235955888,-65.55651474439385,-65.55105819677536,-65.54564249807093,-65.54026743025884,-65.53493277592827,-65.52963831827965,-65.52438384112482,-65.51916912888726,-65.51399396660233,-65.50885813991749,-65.50376143509253,-65.49870363899976,-65.49368453912423,-65.488703923564,-65.4837615810303,-65.47885730084776,-65.4739908729547,-65.46916208790326,-65.46437073685966,-65.45961661160449,-65.45489950453286,-65.4502192086547,-65.44557551759495,-65.44096822559386,-65.43639712750722,-65.4318620188066,-65.42736269557963,-65.42289895453028,-65.41847059297912,-65.41407740886359,-65.40971920073832,-65.4053957677754,-65.40110690976466,-65.39685242711401,-65.39263212084974,-65.38844579261684,-65.38429324467933,-65.38017427992058,-65.37608870184367,-65.37203631457172,-65.36801692284823,-65.36403033203749,-65.3600763481249,-65.35615477771739,-65.35226542804374,-65.34840810695499,-65.34458262292489,-65.34078878505021,-65.33702640305121,-65.33329528727205,-65.32959524868116,-65.32592609887172,-65.32228765006207,-65.31867971509614,-65.31510210744389,-65.31155464120178,-65.30803713109319,-65.3045493924689,-65.30109124130755,-65.29766249421607,-65.29426296843022,-65.29089248181499,-65.28755085286512,-65.28423790070558,-65.28095344509202,-65.2776973064113,-65.27446930568195,-65.27126926455466,-65.2680970053128,-65.26495235087287,-65.26183512478507,-65.25874515123368,-65.25568225503771,-65.25264626165125,-65.24963699716406,-65.24665428830204,-65.24369796242773,-65.24076784754082,-65.23786377227862,-65.23498556591655,-65.23213305836867,-65.22930608018818,-65.22650446256782,-65.22372803734044,-65.22097663697944]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1108\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1109\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1104\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1105\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1106\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1117\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1111\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1112\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1113\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.99859895156952,-64.99794940680333,-64.9973300246924,-64.99673830824379,-64.99617201809848,-64.99562914432974,-64.99510788141654,-64.9946066060273,-64.99412385729227,-64.99365831927994,-64.99320880542628,-64.99277424469419,-64.99235366926698,-64.99194620360169,-64.99155105468868,-64.99116750338113,-64.99079489667402,-64.99043264082597,-64.99008019522934,-64.98973706694485,-64.98940280582678,-64.98907700017278,-64.98875927284017,-64.98844927777704,-64.9881466969224,-64.98785123743474,-64.98756262921283,-64.98728062267692,-64.98700498678193,-64.98673550723724,-64.98647198491092,-64.98621423439829,-64.98596208273723,-64.9857153682545,-64.98547393952902,-64.98523765445972,-64.98500637942695,-64.98477998853737,-64.98455836294382,-64.98434139023209,-64.98412896386783,-64.98392098269719,-64.98371735049578,-64.983517975561,-64.98332277034311,-64.98313165111144,-64.98294453765189,-64.98276135299274,-64.98258202315591,-64.9824064769311,-64.98223464567062,-64.98206646310275,-64.9819018651621,-64.9817407898349,-64.98158317701817,-64.9814289683912,-64.98127810729832,-64.98113053864175,-64.98098620878365,-64.98084506545659,-64.98070705768147,-64.9805721356924,-64.98044025086774,-64.98031135566687,-64.98018540357205,-64.98006234903502,-64.97994214742788,-64.97982475499778,-64.97971012882525,-64.97959822678573,-64.97948900751403,-64.97938243037156,-64.97927845541591,-64.9791770433728,-64.97907815561007,-64.97898175411346,-64.9788878014643,-64.97879626081858,-64.9787070958877,-64.97862027092032,-64.9785357506856,-64.97845350045755,-64.97837348600032,-64.97829567355454,-64.9782200298245,-64.97814652196608,-64.97807511757554,-64.9780057846789,-64.97793849172193,-64.97787320756085,-64.97780990145338,-64.97774854305051,-64.97768910238845,-64.9776315498813,-64.97757585631382,-64.97752199283481,-64.97746993095068,-64.97741964251931,-64.97737109974432,-64.97732427516951,-64.97727914167352,-64.97723567246483,-64.97719384107685,-64.9771536213633,-64.97711498749368,-64.977077913949,-64.97704237551761,-64.9770083472912,-64.97697580466092,-64.97694472331361,-64.97691507922819,-64.97688684867218,-64.97686000819819,-64.97683453464067,-64.97681040511269,-64.97678759700268,-64.97676608797151,-64.97674585594939,-64.97672687913294,-64.97670913598238,-64.97669260521867,-64.97667726582083,-64.97666309702313,-64.9766500783126,-64.97663818942627,-64.97662741034874,-64.97661772130961,-64.97660910278103,-64.97660153547525,-64.97659500034226,-64.97658947856735,-64.97658495156888,-64.97658140099591,-64.97657880872596,-64.97657715686276,-64.97657642773403,-64.9765766038893,-64.97657766809775,-64.97657960334604,-64.97658239283625,-64.97658601998371,-64.976590468415,-64.97659572196584,-64.97660176467907,-64.97660858080268,-64.9766161547877,-64.9766244712864,-64.97663351515013,-64.97664327142752,-64.97665372536251,-64.97666486239241,-64.97667666814606,-64.97668912844189,-64.97670222928612,-64.97671595687085,-64.97673029757227,-64.97674523794883,-64.97676076473941,-64.97677686486156,-64.97679352540973,-64.97681073365345,-64.97682847703564,-64.97684674317082,-64.97686551984347,-64.97688479500621,-64.97690455677817,-64.97692479344329,-64.97694549344864,-64.97696664540278,-64.97698823807407,-64.97701026038908,-64.97703270143091,-64.97705555043765,-64.97707879680073,-64.97710243006331,-64.97712643991879,-64.97715081620915,-64.97717554892344,-64.97720062819626,-64.97722604430616,-64.97725178767422,-64.97727784886246,-64.97730421857236,-64.97733088764339,-64.97735784705155,-64.97738508790788,-64.97741260145702,-64.97744037907576,-64.97746841227163,-64.97749669268147,-64.97752521207002,-64.97755396232851,-64.97758293547331,-64.97761212364452,-64.97764151910464,-64.97767111423715,-64.97770090154528,-64.97773087365056,-64.97776102329156,-64.93574457233484,-64.85603107134953,-64.7425561849794,-64.59888243382579,-64.42823515001812,-64.2335341433277,-64.01742158735108,-63.78228660553825,-63.53028698675557,-63.263368403368204,-62.983281449297074,-62.69159676504926,-62.38971847282316,-62.07889610755887,-61.760235198634824,-61.43470663089454,-61.10315489183886,-60.76630529320368,-60.424770238920985,-60.07905459690366,-59.729560218573944,-59.37658963702781,-59.02034896170885,-58.66094997400927,-58.29841141388766,-57.93265943194693,-57.56352716396737,-57.190753365087225,-56.813980018014625,-56.432748803052206,-56.04649628633946,-55.654547645346994,-55.25610870574274,-54.85025600933105,-54.4359245663318,-54.01189286360922,-53.57676459946282,-53.12894648996217,-52.66662133474284,-52.187715332933706,-51.731668972552356,-51.29149036637782,-50.860539913925415,-50.4324556134965,-50.00107263438687,-49.56033494549257,-49.104196865813094,-48.62651222149463,-48.12090837031101,-47.58064168700881,-46.99843018515454,-46.366257774701616,-45.675143218399896,-44.914865179471356,-44.07363293631904,-43.13769060078945,-42.09084150449501,-40.9138798070514,-39.58392024856878,-38.07362787485458,-36.35037388485424,-34.37539250391297,-32.103105179148066,-29.480940653131384,-26.45025164966562,-22.949350943529865,-18.920254305653504,-14.321220458573212,-9.14689670437361,-3.455288511886385,2.6056964294503313,8.788153079416178,14.769246724340578,20.21596432384039,24.866211680914404,28.585931546920133,31.376184552018287,33.33696849987077,34.61537132893462,35.36258689586046,35.70942917647042,35.758059372414074,35.58337940749597,35.23836211173165,34.75991586860555,34.173821879399426,33.49840091121786,32.747051237216276,31.929933894795134,31.055065570406178,30.129019006538627,29.157370225139104,28.144984632346116,27.09620110514066,26.014951452175527,24.90483879143735,23.769189690186472,22.611089480083635,21.433406760745424,20.238810963302814,19.02978548311428,17.808638014519932,16.577509150653036,15.338379936807073,14.093078817983017,12.843288255954475,11.590551181173613,10.336277371493665,9.081749801024001,7.8281309711542475,6.57646921519072,5.327704955732241,4.082676886365044,2.8421280450694546,1.6067117444893815,0.37699732316870205,-0.8465243187575682,-2.0634354364984775,-3.2733864480407213,-4.476091271007403,-5.67132302958227,-6.858910174086132,-8.038733058082906,-9.210721020447771,-10.374850022004335,-11.531140888406826,-12.679658211814393,-13.820509963696313,-14.95384786919075,-16.07986858897131,-17.19881574788528,-18.310982839352405,-19.416717021442707,-20.516423803633867,-21.61057260323371,-22.699703127111906,-23.784432508347336,-24.86546309869277,-25.943590786653317,-27.01971367721496,-28.094840931946266,-29.170101525165048,-30.246752620544502,-31.326187207331532,-32.40994055080164,-33.499694898262945,-34.59728173012739,-35.704680642969635,-36.824013685207554,-37.95753362286099,-39.107604182351025,-40.276669794860766,-41.46721175952998,-42.68168707984854,-43.92244557342514,-45.191620329938814,-46.49098639737174,-47.82178302564809,-49.18449634060599,-50.57860255443983,-52.00227743352294,-53.452086383977345,-54.92268146198746,-56.406546268651226,-57.89384486127425,-59.372442074597615,-60.82816324365488,-62.24534348254105,-63.60767496224928,-64.89929695493396,-66.1060012713213,-67.21636951148272,-68.22264486557155,-69.12118438387701,-69.91242847766351,-70.60043162513509,-71.1920838771391,-71.69619141379782,-72.12257342140288,-72.48128804575325,-72.7820448298543,-73.03381300554926,-73.2446030813561,-73.42138389320351,-73.57009462214545,-73.69571604971397,-73.80237319080464,-73.89344960089198,-73.97170065810323,-74.03935848164521,-74.09822491159237,-74.14975142033704,-74.19510628764236,-74.23523015180223,-74.27088138819563,-74.3026728373665,-74.33110132617298,-74.35657127398377,-74.3794134980082,-74.39990015427722,-74.4182565873684,-74.43467071866982,-74.44930048124179,-74.4622797081557,-74.47372279839887,-74.48372841746132,-74.49238243599783,-74.49976026713412,-74.50592872900741,-74.51094753226145,-74.51487047102172,-74.51774637918379,-74.51961990071833,-74.52053211237329,-74.52052102904102,-74.5196220156808,-74.51786812467361,-74.51529037354197,-74.51191797486207,-74.50777852775028,-74.50289817837621,-74.49730175543235,-74.49101288528627,-74.4840540905896,-74.47644687536288,-74.46821179897718,-74.45936854097728,-74.44993595831315,-74.43993213624424,-74.42937443394082,-74.41827952561357,-74.40666343784842,-74.39454158370019,-74.38192879399838,-74.36883934623874,-74.3552869913692,-74.34128497872639,-74.3268460793364,-74.31198260775884,-74.29670644262505,-74.2810290459984,-74.26496148166524,-74.24851443245026,-74.23169821663629,-74.21452280355861,-74.19699782843482,-74.17913260648363,-74.16093614638015,-74.14241716308977,-74.12358409011856,-74.10444509121395,-74.0850080715468,-74.06528068840268,-74.04527036140824,-74.02498428231608,-74.00442942437017,-73.98361255127182,-73.96254022576514,-73.94121881785962,-73.91965451270609,-73.89785331814174,-73.87582107191866,-73.8535634486296,-73.83108596634399,-73.8083939929666,-73.78549275233034,-73.76238733003444,-73.7390826790385,-73.7155836250225,-73.69189487152231,-73.66802100484983,-73.64396649880665,-73.61973571919931,-73.59533292816442,-73.5707622883111,-73.54602786668809,-73.52113363858264,-73.49608349115772,-73.47088122693421,-73.44553056712397,-73.42003515482001,-73.39439855804923,-73.36862427269322,-73.34271572528253,-73.31667627566915,-73.29050921958233,-73.26421779107216,-73.23780516484547,-73.21127445849841,-73.1846287346496,-73.15787100297814,-73.13100422216989,-73.10403130177616,-73.07695510398786,-73.04977844532881,-73.02250409827144,-72.99513479277776,-72.96767321776902,-72.94012202252661,-72.91248381802716,-72.88476117821455,-72.8569566412113,-72.82907271047195,-72.8011118558807,-72.77307651479582,-72.74496909304271,-72.71679196585816,-72.68854747878756,-72.66023794853706,-72.63186566378292,-72.60343288593933,-72.57494184988695,-72.5463947646637,-72.5177938141193,-72.48914115753539,-72.46043893021253,-72.43168924402575,-72.40289418794978,-72.37405582855565,-72.34517621047965,-72.3162573568661,-72.28730126978515,-72.25830993062654,-72.2292853004708,-72.20022932043867,-72.17114391201983,-72.14203097738215,-72.11289239966212,-72.08373004323755,-72.0545457539835,-72.02534135951207,-71.99611866939702,-71.96687947538413,-71.93762555158773,-71.90835865467446,-71.87908052403476,-71.84979288194289,-71.82049743370595,-71.79119586780284,-71.76188985601334,-71.73258105353831,-71.70327109911123,-71.67396161510177,-71.64465420761192,-71.61535046656506,-71.5860519657885,-71.55676026308996,-71.52747690032838,-71.49820340347952,-71.46894128269663,-71.4396920323667,-71.41045713116259,-71.38123804209144,-71.35203621253955,-71.32285307431418,-71.2936900436826,-71.2645485214085,-71.23542989278617,-71.20633552767278,-71.17726678051876,-71.1482249903968,-71.11921148102948,-71.0902275608159,-71.06127452285737,-71.0323536449825,-71.00346618977177,-70.97461340458173,-70.94579652156918,-70.9170167577152,-70.88827531484947,-70.85957337967474,-70.83091212379189,-70.8022927037253,-70.77371626094912,-70.74518392191409,-70.7166967980754,-70.68825598592136,-70.65986256700316,-70.63151760796579,-70.60322216058013,-70.57497726177627,-70.54678393367819,-70.51864318363982,-70.49055600428257,-70.46252337353421,-70.4345462546695,-70.40662559635217,-70.3787623326786,-70.35095738322313,-70.32321165308498,-70.29552603293689,-70.26790139907538,-70.2403386134728,-70.21283852383104,-70.18540196363696,-70.15802975221958,-70.13072269480892,-70.10348158259674,-70.07630719279874,-70.04920028871868,-70.02216161981417,-69.99519192176406,-69.96829191653758,-69.94146231246516,-69.91470380431083,-69.88801707334626,-69.86140278742648,-69.83486160106705,-69.80839415552288,-69.78200107886852,-69.75568298608002,-69.72944047911815,-69.70327414701319,-69.677184565951,-69.65117229936052,-69.62523789800271,-69.59938190006058,-69.57360483123068,-69.54790720481576,-69.52228952181862,-69.49675227103712,-69.47129592916038,-69.44592096086593,-69.42062781891808,-69.39541694426713,-69.37028876614968,-69.34524370218985,-69.32028215850127,-69.29540452979009,-69.27061119945868,-69.24590253971019,-69.22127891165371,-69.19674066541032,-69.17228814021958,-69.14792166454677,-69.12364155619066,-69.0994481223918,-69.07534165994133,-69.05132245529018,-69.0273907846588,-69.0035469141472,-68.97979109984522,-68.95612358794337,-68.93254461484366,-68.90905440727084,-68.88565318238372,-68.86234114788668,-68.83911850214137,-68.81598543427837,-68.79294212430901,-68.7699887432371,-68.74712545317077,-68.72435240743413,-68.70166975067893,-68.67907761899612,-68.65657614002714,-68.63416543307522,-68.6118456092163,-68.58961677140985,-68.56747901460929,-68.54543242587228,-68.52347708447054,-68.50161306199944,-68.47984042248707,-68.45815922250316,-68.43656951126727,-68.41507133075677,-68.39366471581428,-68.37234969425455,-68.3511262869709,-68.3299945080411,-68.3089543648327,-68.28800585810778,-68.26714898212705,-68.24638372475343,-68.22571006755489,-68.20512798590674,-68.18463744909317,-68.16423842040813,-68.14393085725548,-68.12371471124852,-68.10358992830865,-68.08355644876336,-68.06361420744349,-68.04376313377962,-68.02400315189776,-68.00433418071422,-67.98475613402964,-67.96526892062222,-67.94587244434018,-67.92656660419328,-67.90735129444353,-67.8882264046951,-67.8691918199833,-67.8502474208627,-67.83139308349442,-67.81262867973246,-67.79395407720921,-67.77536913942002,-67.7568737258069,-67.73846769184127,-67.72015088910588,-67.70192316537575,-67.68378436469818,-67.66573432747197,-67.6477728905255,-67.62989988719417,-67.61211514739662,-67.59441849771028,-67.5768097614458,-67.55928875872071,-67.54185530653204,-67.52450921882809,-67.50725030657921,-67.49007837784772,-67.47299323785687,-67.45599468905891,-67.43908253120219,-67.4222565613974,-67.40551657418288,-67.388862361589,-67.37229371320164,-67.3558104162248,-67.33941225554226,-67.32309901377837,-67.30687047135797,-67.29072640656534,-67.2746665956024,-67.2586908126459,-67.2427988299038,-67.22699041767083,-67.21126534438304,-67.19562337667162,-67.18006427941589,-67.1645878157953,-67.14919374734076,-67.13388183398497,-67.11865183411209,-67.10350350460642,-67.08843660090044,-67.0734508770219,-67.05854608564019,-67.04372197811186,-67.02897830452544,-67.01431481374537,-66.99973125345528,-66.98522737020035,-66.9708029094291,-66.95645761553426,-66.94219123189303,-66.92800350090653,-66.91389416403848,-66.89986296185334,-66.88590963405355,-66.87203391951613,-66.85823555632862,-66.84451428182435,-66.83086983261688,-66.81730194463401,-66.80381035315088,-66.79039479282261,-66.77705499771618,-66.7637907013417,-66.75060163668311,-66.73748753622813,-66.72444813199769,-66.71148315557475,-66.69859233813253,-66.68577541046206,-66.67303210299926,-66.6603621458514,-66.64776526882297,-66.63524120144103,-66.62278967298002,-66.61041041248596,-66.5981031488002,-66.5858676105826,-66.57370352633419,-66.56161062441933,-66.5495886330874,-66.53763728049391,-66.52575629472125,-66.5139454037988,-66.50220433572274,-66.49053281847527,-66.47893058004344,-66.46739734843752,-66.45593285170887,-66.4445368179675,-66.43320897539911,-66.42194905228169,-66.4107567770018,-66.3996318780704,-66.38857408413824,-66.37758312401097,-66.36665872666374,-66.35580062125551,-66.34500853714297,-66.33428220389408,-66.32362135130126,-66.31302570939427,-66.30249500845271,-66.29202897901817,-66.2816273519061,-66.2712898582173,-66.2610162293492,-66.25080619700664,-66.24065949321256,-66.23057585031826,-66.2205550010134,-66.2105966783357,-66.20070061568047,-66.19086654680966,-66.1810942058608,-66.17138332735568,-66.16173364620869,-66.15214489773494,-66.1426168176582,-66.13314914211847,-66.12374160767946,-66.11439395133574,-66.1051059105197,-66.09587722310829,-66.08670762742956,-66.07759686226898,-66.06854466687551,-66.0595507809676,-66.05061494473883,-66.04173689886349,-66.03291638450193,-66.0241531433057,-66.01544691742257,-66.00679744950133,-65.99820448269651,-65.98966776067277,-65.98118702760934,-65.97276202820412,-65.96439250767777,-65.9560782117776,-65.94781888678125,-65.93961427950036,-65.93146413728405,-65.92336820802221,-65.91532624014876,-65.90733798264473,-65.89940318504127,-65.89152159742241,-65.88369297042796,-65.87591705525601,-65.86819360366555,-65.86052236797885,-65.85290310108381,-65.84533555643623,-65.83781948806187,-65.8303546505586,-65.8229407990983,-65.81557768942875,-65.80826507787546,-65.80100272134337,-65.79379037731847,-65.78662780386946,-65.77951475964916,-65.77245100389597,-65.76543629643527,-65.75847039768071,-65.75155306863545,-65.74468407089333,-65.73786316664005,-65.73109011865421,-65.72436469030832,-65.71768664556984,-65.71105574900206,-65.70447176576499,-65.69793446161621,-65.69144360291166,-65.68499895660642,-65.6786002902554,-65.67224737201407,-65.66593997063906,-65.6596778554888,-65.65346079652413,-65.64728856430885,-65.64116093001023,-65.63507766539952,-65.62903854285246,-65.6230433353497,-65.61709181647727,-65.61118376042695,-65.60531894199673,-65.59949713659111,-65.59371812022152,-65.58798166950666,-65.5822875616728,-65.57663557455412,-65.571025486593,-65.56545707684035,-65.55993012495584,-65.55444441120824,-65.54899971647562,-65.54359582224565,-65.53823251061586,-65.53290956429385,-65.52762676659756,-65.52238390145551,-65.51718075340703,-65.51201710760249,-65.50689274980353,-65.50180746638327,-65.4967610443266,-65.49175327123035,-65.48678393530354,-65.4818528253676,-65.47695973085662,-65.47210444181759,-65.46728674891061,-65.46250644340913,-65.45776331720022,-65.45305716278479,-65.44838777327786,-65.4437549424088,-65.43915846452161,-65.43459813457515,-65.43007374814346,-65.42558510141598,-65.42113199119787,-65.41671421491029,-65.41233157059067,-65.40798385689304,-65.40367087308834,-65.3993924190647,-65.39514829532776,-65.39093830300105,-65.38676224382625,-65.3826199201636,-65.37851113499218,-65.3744356919103,-65.37039339513589,-65.36638404950678,-65.36240746048114,-65.35846343413787,-65.35455177717695,-65.35067229691985,-65.34682480130995,-65.34300909891289,-65.33922499891705,-65.33547231113393,-65.3317508459986,-65.32806041457012,-65.32440082853196,-65.3207719001925,-65.31717344248541,-65.31360526897015,-65.31006719383242,-65.30655903188463,-65.30308059856635,-65.2996317099448,-65.29621218271534,-65.29282183420189,-65.28946048235753,-65.28612794576487,-65.28282404363664,-65.27954859581611,-65.27630142277762,-65.27308234562712,-65.26989118610257,-65.26672776657458,-65.26359191004678,-65.26048344015646,-65.25740218117497,-65.25434795800828,-65.25132059619749,-65.24831992191932,-65.24534576198664,-65.24239794384897,-65.23947629559298,-65.23658064594301,-65.23371082426156,-65.23086666054982,-65.22804798544813,-65.2252546302365,-65.22248642683513,-65.21974320780485,-65.21702480634765,-65.21433105630713,-65.21166179216901,-65.20901684906158,-65.20639606275621,-65.20379926966774,-65.20122630685502,-65.1986770120213,-65.19615122351475,-65.19364878032879,-65.19116952210261,-65.18871328912158,-65.18627992231764,-65.18386926326971,-65.18148115420415,-65.17911543799507,-65.17677195816474,-65.17445055888399]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1118\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1119\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1114\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1115\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1116\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.2,\"line_width\":2}}}}],\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"p1054\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"PanTool\",\"id\":\"p1067\"},{\"type\":\"object\",\"name\":\"WheelZoomTool\",\"id\":\"p1068\",\"attributes\":{\"renderers\":\"auto\"}},{\"type\":\"object\",\"name\":\"BoxZoomTool\",\"id\":\"p1069\",\"attributes\":{\"dimensions\":\"both\",\"overlay\":{\"type\":\"object\",\"name\":\"BoxAnnotation\",\"id\":\"p1070\",\"attributes\":{\"syncable\":false,\"line_color\":\"black\",\"line_alpha\":1.0,\"line_width\":2,\"line_dash\":[4,4],\"fill_color\":\"lightgrey\",\"fill_alpha\":0.5,\"level\":\"overlay\",\"visible\":false,\"left\":{\"type\":\"number\",\"value\":\"nan\"},\"right\":{\"type\":\"number\",\"value\":\"nan\"},\"top\":{\"type\":\"number\",\"value\":\"nan\"},\"bottom\":{\"type\":\"number\",\"value\":\"nan\"},\"left_units\":\"canvas\",\"right_units\":\"canvas\",\"top_units\":\"canvas\",\"bottom_units\":\"canvas\",\"handles\":{\"type\":\"object\",\"name\":\"BoxInteractionHandles\",\"id\":\"p1076\",\"attributes\":{\"all\":{\"type\":\"object\",\"name\":\"AreaVisuals\",\"id\":\"p1075\",\"attributes\":{\"fill_color\":\"white\",\"hover_fill_color\":\"lightgray\"}}}}}}}},{\"type\":\"object\",\"name\":\"SaveTool\",\"id\":\"p1077\"},{\"type\":\"object\",\"name\":\"ResetTool\",\"id\":\"p1078\"},{\"type\":\"object\",\"name\":\"HelpTool\",\"id\":\"p1079\"}]}},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1062\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1063\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1064\"},\"axis_label\":\"v (mV)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1065\"}}}],\"below\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1057\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1058\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1059\"},\"axis_label\":\"t (ms)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1060\"}}}],\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1061\",\"attributes\":{\"axis\":{\"id\":\"p1057\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1066\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"p1062\"}}},{\"type\":\"object\",\"name\":\"Legend\",\"id\":\"p1089\",\"attributes\":{\"items\":[{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1090\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.075\"},\"renderers\":[{\"id\":\"p1086\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1100\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.15\"},\"renderers\":[{\"id\":\"p1097\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1110\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.225\"},\"renderers\":[{\"id\":\"p1107\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1120\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.3\"},\"renderers\":[{\"id\":\"p1117\"}]}}]}}]}}]}};\n", " const render_items = [{\"docid\":\"805486ba-d88e-47c0-8cf3-fc3c5894463e\",\"roots\":{\"p1046\":\"cdc79f7f-6ac6-4331-b4d6-fe7ba6cab97a\"},\"root_ids\":[\"p1046\"]}];\n", " void root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", " }\n", " if (root.Bokeh !== undefined) {\n", " embed_document(root);\n", " } else {\n", " let attempts = 0;\n", " const timer = setInterval(function(root) {\n", " if (root.Bokeh !== undefined) {\n", " clearInterval(timer);\n", " embed_document(root);\n", " } else {\n", " attempts++;\n", " if (attempts > 100) {\n", " clearInterval(timer);\n", " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", " }\n", " }\n", " }, 10, root)\n", " }\n", "})(window);" ], "application/vnd.bokehjs_exec.v0+json": "" }, "metadata": { "application/vnd.bokehjs_exec.v0+json": { "id": "p1046" } }, "output_type": "display_data" } ], "source": [ "f = plt.figure(x_axis_label=\"t (ms)\", y_axis_label=\"v (mV)\")\n", "amps = [0.075 * i for i in range(1, 5)]\n", "colors = [\"green\", \"blue\", \"red\", \"black\"]\n", "for amp, color in zip(amps, colors):\n", " stim.amp = amp\n", " h.finitialize(-65 * mV)\n", " h.continuerun(25 * ms)\n", " f.line(t, list(soma_v), line_width=2, legend_label=\"amp=%g\" % amp, color=color)\n", "plt.show(f)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The `for` loop syntax as used here is looping over amplitude, color pairs. The only potential \"gotcha\" here is the need to make a copy of the values by passing in `list(soma_v)` instead of `soma_v`. If this copying was omitted, only the last set of values would be plotted." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Plotting both the dendrite and the soma" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "To plot the dendrite potential, we need to record it in a NEURON Vector:" ] }, { "cell_type": "code", "execution_count": 46, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:48.111937Z", "iopub.status.busy": "2025-05-23T00:18:48.111747Z", "iopub.status.idle": "2025-05-23T00:18:48.114807Z", "shell.execute_reply": "2025-05-23T00:18:48.114455Z" } }, "outputs": [], "source": [ "dend_v = h.Vector().record(my_cell.dend(0.5)._ref_v)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Note that we do not need to reassign the existing time and soma membrane potential recording vectors." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The running and plotting code is very similar to the above; the only difference is one additional call to the `line` method to plot the `dend_v` using a dashed line without a separate legend entry:" ] }, { "cell_type": "code", "execution_count": 47, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:48.116557Z", "iopub.status.busy": "2025-05-23T00:18:48.116233Z", "iopub.status.idle": "2025-05-23T00:18:48.226267Z", "shell.execute_reply": "2025-05-23T00:18:48.225905Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "
\n" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "(function(root) {\n", " function embed_document(root) {\n", " const docs_json = {\"9e071597-a02b-447c-b43b-89833a813fa1\":{\"version\":\"3.7.3\",\"title\":\"Bokeh Application\",\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"p1121\",\"attributes\":{\"x_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1122\"},\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1123\"},\"x_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1130\"},\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1131\"},\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"p1128\"},\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1161\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1155\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1156\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1157\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.99859895156952,-64.99794940680333,-64.9973300246924,-64.99673830824379,-64.99617201809848,-64.99562914432974,-64.99510788141654,-64.9946066060273,-64.99412385729227,-64.99365831927994,-64.99320880542628,-64.99277424469419,-64.99235366926698,-64.99194620360169,-64.99155105468868,-64.99116750338113,-64.99079489667402,-64.99043264082597,-64.99008019522934,-64.98973706694485,-64.98940280582678,-64.98907700017278,-64.98875927284017,-64.98844927777704,-64.9881466969224,-64.98785123743474,-64.98756262921283,-64.98728062267692,-64.98700498678193,-64.98673550723724,-64.98647198491092,-64.98621423439829,-64.98596208273723,-64.9857153682545,-64.98547393952902,-64.98523765445972,-64.98500637942695,-64.98477998853737,-64.98455836294382,-64.98434139023209,-64.98412896386783,-64.98392098269719,-64.98371735049578,-64.983517975561,-64.98332277034311,-64.98313165111144,-64.98294453765189,-64.98276135299274,-64.98258202315591,-64.9824064769311,-64.98223464567062,-64.98206646310275,-64.9819018651621,-64.9817407898349,-64.98158317701817,-64.9814289683912,-64.98127810729832,-64.98113053864175,-64.98098620878365,-64.98084506545659,-64.98070705768147,-64.9805721356924,-64.98044025086774,-64.98031135566687,-64.98018540357205,-64.98006234903502,-64.97994214742788,-64.97982475499778,-64.97971012882525,-64.97959822678573,-64.97948900751403,-64.97938243037156,-64.97927845541591,-64.9791770433728,-64.97907815561007,-64.97898175411346,-64.9788878014643,-64.97879626081858,-64.9787070958877,-64.97862027092032,-64.9785357506856,-64.97845350045755,-64.97837348600032,-64.97829567355454,-64.9782200298245,-64.97814652196608,-64.97807511757554,-64.9780057846789,-64.97793849172193,-64.97787320756085,-64.97780990145338,-64.97774854305051,-64.97768910238845,-64.9776315498813,-64.97757585631382,-64.97752199283481,-64.97746993095068,-64.97741964251931,-64.97737109974432,-64.97732427516951,-64.97727914167352,-64.97723567246483,-64.97719384107685,-64.9771536213633,-64.97711498749368,-64.977077913949,-64.97704237551761,-64.9770083472912,-64.97697580466092,-64.97694472331361,-64.97691507922819,-64.97688684867218,-64.97686000819819,-64.97683453464067,-64.97681040511269,-64.97678759700268,-64.97676608797151,-64.97674585594939,-64.97672687913294,-64.97670913598238,-64.97669260521867,-64.97667726582083,-64.97666309702313,-64.9766500783126,-64.97663818942627,-64.97662741034874,-64.97661772130961,-64.97660910278103,-64.97660153547525,-64.97659500034226,-64.97658947856735,-64.97658495156888,-64.97658140099591,-64.97657880872596,-64.97657715686276,-64.97657642773403,-64.9765766038893,-64.97657766809775,-64.97657960334604,-64.97658239283625,-64.97658601998371,-64.976590468415,-64.97659572196584,-64.97660176467907,-64.97660858080268,-64.9766161547877,-64.9766244712864,-64.97663351515013,-64.97664327142752,-64.97665372536251,-64.97666486239241,-64.97667666814606,-64.97668912844189,-64.97670222928612,-64.97671595687085,-64.97673029757227,-64.97674523794883,-64.97676076473941,-64.97677686486156,-64.97679352540973,-64.97681073365345,-64.97682847703564,-64.97684674317082,-64.97686551984347,-64.97688479500621,-64.97690455677817,-64.97692479344329,-64.97694549344864,-64.97696664540278,-64.97698823807407,-64.97701026038908,-64.97703270143091,-64.97705555043765,-64.97707879680073,-64.97710243006331,-64.97712643991879,-64.97715081620915,-64.97717554892344,-64.97720062819626,-64.97722604430616,-64.97725178767422,-64.97727784886246,-64.97730421857236,-64.97733088764339,-64.97735784705155,-64.97738508790788,-64.97741260145702,-64.97744037907576,-64.97746841227163,-64.97749669268147,-64.97752521207002,-64.97755396232851,-64.97758293547331,-64.97761212364452,-64.97764151910464,-64.97767111423715,-64.97770090154528,-64.97773087365056,-64.97776102329156,-64.96727965057563,-64.94737412762133,-64.91902834585258,-64.88313297313306,-64.84049460719982,-64.79184394473866,-64.73784307703974,-64.67909201312307,-64.6161345206837,-64.54946336489766,-64.47952501547067,-64.4067238835162,-64.33142614199687,-64.25396317654904,-64.17463470748156,-64.09371161851911,-64.01143852335758,-63.92803609722707,-63.84370319733029,-63.75861879316533,-63.67294372528138,-63.58682230889622,-63.50038379697215,-63.41374371575953,-63.32700508443663,-63.24025952927051,-63.153588301668634,-63.067063208564264,-62.9807474627609,-62.894696460137055,-62.80895848996941,-62.72357538405921,-62.63858310983373,-62.55401231213507,-62.469888807994515,-62.38623403831801,-62.303065480070806,-62.22039702224402,-62.13823930860835,-62.056600050008036,-61.985988830117535,-61.92532238965766,-61.873626918761836,-61.830027425077574,-61.793738082322356,-61.76405345377157,-61.740340505050625,-61.722031334937206,-61.70861656324328,-61.69963932239838,-61.69468980493874,-61.69340032333466,-61.69544084190157,-61.70051494325248,-61.70835619407835,-61.71872487713706,-61.731405058285475,-61.746201959262486,-61.76293960875585,-61.78145874607608,-61.80161495352037,-61.82327699523338,-61.84632534205255,-61.87065086345301,-61.89615366927249,-61.92274208539143,-61.95033174896004,-61.9788448100991,-62.00820922824934,-62.03835815250639,-62.069229376352226,-62.1007648581833,-62.132910299940974,-62.165614776976184,-62.19883041303024,-62.232512094893096,-62.26661722191266,-62.301105486079514,-62.33593867890534,-62.37108052175498,-62.40649651668621,-62.44215381520226,-62.47802110263397,-62.51406849614511,-62.550267454599606,-62.58659069874598,-62.62301214036595,-62.65950681920302,-62.696050846635785,-62.732621355191895,-62.769196453113864,-62.80575518328948,-62.84227748594862,-62.878744164606566,-62.915136854802434,-62.95143799524175,-62.987630801004755,-63.023699238528366,-63.059628002109996,-63.09540249171701,-63.131008791916344,-63.16643365176578,-63.201664465532055,-63.236689254121316,-63.27149664712537,-63.30607586540255,-63.3404167041257,-63.37450951624107,-63.408345196292125,-63.44191516457096,-63.47521135156718,-63.50822618269075,-63.54095256325023,-63.573383863672944,-63.60551390495686,-63.63733694434753,-63.66884766123592,-63.70004114327507,-63.73091287271531,-63.76145871295906,-63.79167489533732,-63.82155800611066,-63.85110497369809,-63.880313056137574,-63.909179828781944,-63.937703172234265,-63.96588126052625,-63.99371254954354,-64.02119576570098,-64.04832989487109,-64.07511417156815,-64.10154806839026,-64.12763128572107,-64.15336374169242,-64.17874556240885,-64.20377707243428,-64.22845878554068,-64.25279139571835,-64.27677576844664,-64.30041293222388,-64.32370407035445,-64.34665051299108,-64.3692537294295,-64.39151532065284,-64.41343701212233,-64.43502064681083,-64.45626817847558,-64.47718166516599,-64.49776326296228,-64.51801521994065,-64.5379398703603,-64.55753962906766,-64.57681698611292,-64.59577450157396,-64.61441480058271,-64.63274056854868,-64.65075454657479,-64.66845952706002,-64.68585834948404,-64.70295389636836,-64.71974908940908,-64.73624688577588,-64.75245027457235,-64.76836227345247,-64.78398592538827,-64.7993242955839,-64.81438046853098,-64.82915754520066,-64.84365864036754,-64.85788688006106,-64.87184539913959,-64.88553733898294,-64.89896584529902,-64.91213406604021,-64.92504514942567,-64.93770224206523,-64.9501084871812,-64.96226702292421,-64.97418098077945,-64.9858534840596,-64.99728764648114,-65.00848657082058,-65.01945334764741,-65.03019105413055,-65.04070275291524,-65.05099149106749,-65.06106029908325,-65.07091218995939,-65.08055015832399,-65.08997717962335,-65.09919620936316,-65.10821018240154,-65.11702201229161,-65.1256345906714,-65.13405078669886,-65.14227344653023,-65.15030539283931,-65.15814942437629,-65.16580831556382,-65.17328481612897,-65.18058165076906,-65.18770151885008,-65.19464709413585,-65.20142102454663,-65.20802593194571,-65.21446441195253,-65.22073903378114,-65.22685234010265,-65.23280684693053,-65.23860504352756,-65.24424939233334,-65.24974232891134,-65.25508626191436,-65.26028357306758,-65.26533661716817,-65.27024772210059,-65.27501918886676,-65.27965329163023,-65.28415227777361,-65.28851836796859,-65.29275375625761,-65.29686061014677,-65.30084107070913,-65.30469725269793,-65.30843124466901,-65.31204510911188,-65.31554088258903,-65.31892057588277,-65.32218617414928,-65.32533963707925,-65.32838289906478,-65.33131786937203,-65.33414643231929,-65.33687044745993,-65.3394917497701,-65.34201214984057,-65.34443343407253,-65.34675736487699,-65.34898568087745,-65.35112009711558,-65.3531623052596,-65.35511397381512,-65.35697674833818,-65.35875225165026,-65.36044208405498,-65.36204782355638,-65.36357102607843,-65.36501322568573,-65.36637593480508,-65.36766064444782,-65.36886882443278,-65.37000192360956,-65.37106137008224,-65.37204857143306,-65.37296491494615,-65.37381176783123,-65.37459047744687,-65.37530237152356,-65.37594875838614,-65.37653092717582,-65.37705014807138,-65.37750767250965,-65.37790473340522,-65.37824254536909,-65.37852230492639,-65.37874519073301,-65.37891236379107,-65.3790249676632,-65.37908412868552,-65.37909095617937,-65.37904654266156,-65.3789519640533,-65.37880827988762,-65.3786165335153,-65.3783777523092,-65.37809294786716,-65.37776311621307,-65.37738923799652,-65.37697227869063,-65.37651318878822,-65.37601290399638,-65.3754723454291,-65.37489241979831,-65.37427401960312,-65.37361802331718,-65.37292529557438,-65.37219668735266,-65.37143303615599,-65.37063516619462,-65.36980388856333,-65.36894000141804,-65.36804429015044,-65.36711752756082,-65.3661604740291,-65.36517387768389,-65.36415847456986,-65.36311498881318,-65.36204413278512,-65.36094660726384,-65.35982310159439,-65.35867429384673,-65.35750085097217,-65.35630342895776,-65.35508267297905,-65.35383921755096,-65.35257368667688,-65.35128669399602,-65.34997884292899,-65.34865072682156,-65.34730292908677,-65.34593602334519,-65.3445505735636,-65.34314713419181,-65.34172625029791,-65.3402884577017,-65.3388342831066,-65.33736424422976,-65.3358788499306,-65.3343786003377,-65.3328639869741,-65.33133549288092,-65.32979359273948,-65.32823875299174,-65.32667143195931,-65.32509207996081,-65.32350113942775,-65.32189904501885,-65.32028622373292,-65.31866309502017,-65.31703007089217,-65.31538755603023,-65.31373594789243,-65.31207563681913,-65.31040700613724,-65.30873043226288,-65.30704628480281,-65.30535492665449,-65.3036567141047,-65.30195199692693,-65.30024111847737,-65.29852441578967,-65.29680221966838,-65.29507485478108,-65.29334263974934,-65.29160588723836,-65.28986490404542,-65.2881199911871,-65.28637144398536,-65.28461955215232,-65.28286459987402,-65.28110686589288,-65.27934662358913,-65.2775841410611,-65.27581968120431,-65.27405350178958,-65.27228585554,-65.27051699020684,-65.26874714864438,-65.26697656888373,-65.26520548420565,-65.26343412321228,-65.2616627098979,-65.25989146371879,-65.25812059966192,-65.25635032831289,-65.25458085592278,-65.2528123844741,-65.25104511174585,-65.24927923137766,-65.24751493293292,-65.24575240196123,-65.24399182005979,-65.24223336493402,-65.2404772104573,-65.23872352672984,-65.23697248013681,-65.23522423340559,-65.23347894566216,-65.23173677248683,-65.22999786596908,-65.22826237476164,-65.22653044413387,-65.22480221602429,-65.22307782909246,-65.22135741877008,-65.21964111731138,-65.21792905384278,-65.21622135441189,-65.21451814203576,-65.21281953674854,-65.21112565564836,-65.2094366129436,-65.20775251999855,-65.20607348537831,-65.20439961489316,-65.2027310116423,-65.20106777605686,-65.19941000594245,-65.19775779652102,-65.19611124047212,-65.19447042797366,-65.19283544674197,-65.19120638207144,-65.18958331687347,-65.18796633171492,-65.18635550485605,-65.18475091228788,-65.18315262776902,-65.18156072286202,-65.17997526696915,-65.17839632736774,-65.17682396924496,-65.17525825573216,-65.17369924793864,-65.17214700498509,-65.1706015840364,-65.16906304033411,-65.16753142722835,-65.16600679620937,-65.16448919693856,-65.16297867727913,-65.16147528332625,-65.15997905943685,-65.15849004825894,-65.15700829076054,-65.15553382625822,-65.15406669244521,-65.15260692541911,-65.1511545597092,-65.14970962830346,-65.14827216267506,-65.14684219280856,-65.14541974722576,-65.1440048530111,-65.14259753583681,-65.14119781998762,-65.13980572838514,-65.13842128261194,-65.13704450293521,-65.13567540833016,-65.13431401650305,-65.13296034391392,-65.13161440579896,-65.13027621619257,-65.12894578794918,-65.12762313276465,-65.12630826119747,-65.12500118268956,-65.12370190558687,-65.12241043715963,-65.12112678362232,-65.11985095015336,-65.11858294091459,-65.1173227590703,-65.1160704068062,-65.11482588534797,-65.1135891949796,-65.11236033506147,-65.1111393040482,-65.10992609950614,-65.1087207181308,-65.10752315576379,-65.10633340740975,-65.10515146725288,-65.10397732867331,-65.1028109842632,-65.10165242584264,-65.10050164447533,-65.09935863048393,-65.0982233734654,-65.09709586230589,-65.09597608519556,-65.09486402964313,-65.0937596824903,-65.09266302992582,-65.09157405749947,-65.09049275013585,-65.08941909214785,-65.08835306725005,-65.08729465857189,-65.08624384867062,-65.08520061954407,-65.08416495264326,-65.08313682888485,-65.0821162286633,-65.08110313186296,-65.08009751786996,-65.07909936558391,-65.07810865342942,-65.07712535936749,-65.07614946090663,-65.07518093511403,-65.07421975862633,-65.07326590766031,-65.07231935802356,-65.07138008512474,-65.07044806398395,-65.06952326924268,-65.0686056751739,-65.06769525569173,-65.06679198436116,-65.06589583440751,-65.06500677872582,-65.06412478989003,-65.06324984016213,-65.062381901501,-65.06152094557132,-65.06066694375215,-65.05981986714558,-65.05897968658502,-65.05814637264359,-65.05731989564221,-65.05650022565767,-65.05568733253051,-65.05488118587282,-65.0540817550759,-65.05328900931784,-65.05250291757089,-65.05172344860884,-65.05095057101416,-65.0501842531851,-65.04942446334272,-65.04867116953768,-65.04792433965707,-65.04718394143099,-65.04644994243911,-65.04572231011716,-65.0450010117632,-65.04428601454391,-65.04357728550067,-65.04287479155565,-65.04217849951768,-65.04148837608814,-65.04080438786671,-65.04012650135698,-65.03945468297202,-65.03878889903986,-65.03812911580883,-65.03747529945288,-65.03682741607676,-65.03618543172112,-65.03554931236754,-65.03491902394344,-65.034294532327,-65.03367580335183,-65.03306280281176,-65.03245549646533,-65.03185385004045,-65.03125782923871,-65.03066739973985,-65.030082527206,-65.02950317728593,-65.02892931561912,-65.02836090783993,-65.02779791958149,-65.0272403164797,-65.02668806417705,-65.02614112832637,-65.02559947459459,-65.02506306866633,-65.02453187624751,-65.02400586306885,-65.02348499488932,-65.02296923749945,-65.02245855672474,-65.02195291842882,-65.0214522885167,-65.02095663293784,-65.02046591768925,-65.01998010881846,-65.01949917242649,-65.01902307467071,-65.01855178176767,-65.01808525999586,-65.01762347569844,-65.0171663952859,-65.01671398523862,-65.01626621210946,-65.0158230425262,-65.01538444319402,-65.01495038089791,-65.01452082250495,-65.01409573496659,-65.01367508532094,-65.0132588406949,-65.01284696830633,-65.01243943546613,-65.01203620958026,-65.01163725815175,-65.01124254878266,-65.01085204917594,-65.0104657271373,-65.01008355057706,-65.00970548751188,-65.00933150606646,-65.00896157447528,-65.00859566108419,-65.00823373435202,-65.00787576285215,-65.00752171527402,-65.0071715604246,-65.00682526722981,-65.00648280473597,-65.00614414211107,-65.00580924864619,-65.00547809375671,-65.00515064698361,-65.00482687799465,-65.00450675658553,-65.00419025268108,-65.00387733633633,-65.00356797773759,-65.00326214720347,-65.00295981518593,-65.00266095227121,-65.00236552918079,-65.00207351677227,-65.00178488604028,-65.00149960811731,-65.00121765427453,-65.00093899592257,-65.00066360461227,-65.00039145203543,-65.00012251002548,-64.99985675055815,-64.99959414575214,-64.9993346678697,-64.99907828931724,-64.99882498264589,-64.998574720552,-64.99832747587772,-64.9980832216114,-64.9978419308881,-64.99760357699002,-64.99736813334688,-64.99713557353634,-64.99690587128434,-64.99667900046543,-64.99645493510315,-64.9962336493702,-64.99601511758884,-64.99579931423109,-64.99558621391893,-64.99537579142452,-64.99516802167044,-64.9949628797298,-64.99476034082637,-64.9945603803348,-64.99436297378062,-64.9941680968404,-64.99397572534178,-64.99378583526355,-64.99359840273567,-64.9934134040393,-64.99323081560678,-64.9930506140216,-64.99287277601842,-64.99269727848294,-64.99252409845192,-64.99235321311303,-64.99218459980477,-64.99201823601635,-64.9918540993876,-64.99169216770875,-64.99153241892034,-64.99137483111302,-64.99121938252736,-64.99106605155366,-64.9909148167317,-64.99076565675058,-64.99061855044842,-64.99047347681213,-64.99033041497714,-64.99018934422712,-64.99005024399371,-64.98991309385617,-64.98977787354116,-64.98964456292228,-64.98951314201987,-64.98938359100059,-64.98925589017705,-64.9891300200075,-64.98900596109542,-64.98888369418914,-64.98876320018144,-64.98864446010913,-64.98852745515268,-64.98841216663574,-64.98829857602476,-64.9881866649285,-64.98807641509762,-64.9879678084242,-64.98786082694127,-64.98775545282234,-64.98765166838095,-64.98754945607013,-64.98744879848194,-64.98734967834693,-64.9872520785337,-64.9871559820483,-64.98706137203374,-64.9869682317695,-64.9868765446709,-64.98678629428869,-64.98669746430836,-64.9866100385497,-64.98652400096616,-64.98643933564433,-64.98635602680338,-64.98627405879442,-64.98619341610001,-64.9861140833335,-64.9860360452385,-64.98595928668823,-64.98588379268494,-64.98580954835937,-64.98573653897004,-64.98566474990271,-64.98559416666974,-64.98552477490949,-64.98545656038569,-64.9853895089868,-64.9853236067254,-64.98525883973757,-64.98519519428223,-64.98513265674052,-64.98507121361517,-64.98501085152982,-64.98495155722843,-64.98489331757459,-64.98483611955088,-64.98477995025824,-64.9847247969153,-64.98467064685772,-64.98461748753756,-64.98456530652258,-64.98451409149563,-64.98446383025393,-64.98441451070848,-64.98436612088331,-64.9843186489149,-64.98427208305145,-64.98422641165226,-64.98418162318701,-64.98413770623515,-64.98409464948517,-64.984052441734,-64.98401107188626,-64.98397052895366,-64.98393080205427,-64.98389188041192,-64.98385375335542,-64.983816410318,-64.98377984083658,-64.9837440345511,-64.98370898120385,-64.98367467063882,-64.983641092801,-64.98360823773572,-64.983576095588,-64.98354465660186,-64.98351391111963,-64.98348384958129,-64.98345446252385,-64.98342574058064,-64.98339767448064,-64.98337025504782,-64.98334347320048,-64.9833173199506,-64.98329178640316,-64.98326686375545,-64.98324254329647,-64.98321881640625,-64.98319567455516,-64.98317310930328,-64.98315111229975,-64.98312967528211,-64.98310879007565,-64.98308844859272,-64.98306864283217,-64.9830493648786,-64.98303060690178,-64.98301236115601,-64.98299461997944,-64.98297737579342,-64.98296062110195,-64.98294434849093,-64.98292855062759,-64.98291322025985,-64.98289835021568,-64.98288393340248,-64.98286996280643,-64.98285643149191,-64.98284333260084,-64.98283065935206,-64.98281840504076,-64.98280656303778,-64.9827951267891,-64.98278408981514,-64.98277344571018]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1162\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1163\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1158\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1159\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1160\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1172\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1166\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1167\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1168\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99997874916157,-64.99993844542642,-64.99988107768425,-64.99980844652296,-64.99972218281401,-64.99962376436807,-64.9995145308698,-64.99939569727732,-64.99926836585125,-64.99913353695976,-64.99899211879017,-64.99884493608293,-64.99869273799125,-64.99853620515829,-64.99837595609382,-64.99821255292329,-64.99804650657433,-64.99787828145885,-64.99770829970237,-64.99753694496685,-64.99736456590843,-64.99719147930682,-64.99701797289947,-64.99684430794994,-64.99667072157698,-64.99649742886784,-64.99632462479723,-64.99615248597061,-64.99598117220926,-64.99581082799196,-64.99564158376748,-64.99547355714982,-64.99530685400761,-64.99514156945739,-64.99497778877,-64.994815588198,-64.99465503573143,-64.9944961917886,-64.99433910984773,-64.99418383702482,-64.99403041460269,-64.99387887851545,-64.99372925979235,-64.99358158496477,-64.99343587643945,-64.99329215284085,-64.99315042932555,-64.99301071787083,-64.99287302753986,-64.99273736472541,-64.9926037333739,-64.99247213519136,-64.99234256983308,-64.99221503507799,-64.99208952698925,-64.99196604006214,-64.9918445673602,-64.99172510064076,-64.99160763047051,-64.9914921463321,-64.99137863672239,-64.99126708924301,-64.99115749068393,-64.99104982710053,-64.99094408388461,-64.99084024583009,-64.99073829719339,-64.99063822174936,-64.99054000284278,-64.99044362343584,-64.9903490661521,-64.99025631331698,-64.99016534699503,-64.9900761490245,-64.98998870104913,-64.98990298454746,-64.98981898085992,-64.98973667121383,-64.9896560367464,-64.98957705852588,-64.98949971757125,-64.98942399487014,-64.98934987139546,-64.9892773281207,-64.98920634603395,-64.98913690615088,-64.98906898952656,-64.98900257726648,-64.98893765053649,-64.98887419057203,-64.98881217868662,-64.98875159627947,-64.98869242484263,-64.9886346459674,-64.98857824135025,-64.98852319279817,-64.98846948223351,-64.98841709169851,-64.9883660033592,-64.98831619950913,-64.98826766257258,-64.98822037510752,-64.98817431980825,-64.98812947950776,-64.9880858371798,-64.98804337594072,-64.98800207905113,-64.98796192991725,-64.98792291209219,-64.98788500927692,-64.98784820532121,-64.9878124842243,-64.98777783013549,-64.98774422735457,-64.98771166033217,-64.98768011366994,-64.98764957212067,-64.98762002058831,-64.98759144412784,-64.98756382794518,-64.98753715739689,-64.98751141798986,-64.987486595381,-64.98746267537672,-64.9874396439325,-64.98741748715236,-64.9873961912882,-64.98737574273923,-64.9873561280513,-64.98733733391619,-64.98731934717081,-64.98730215479654,-64.98728574391833,-64.98727010180396,-64.98725521586312,-64.98724107364659,-64.98722766284536,-64.98721497128967,-64.98720298694816,-64.98719169792689,-64.98718109246839,-64.98717115895073,-64.98716188588654,-64.987153261922,-64.98714527583591,-64.98713791653866,-64.98713117307122,-64.98712503460418,-64.9871194904367,-64.9871145299955,-64.98711014283387,-64.98710631863064,-64.98710304718912,-64.98710031843616,-64.98709812242105,-64.98709644931454,-64.98709528940779,-64.98709463311138,-64.98709447095429,-64.98709479358283,-64.98709559175967,-64.9870968563628,-64.98709857838455,-64.98710074893054,-64.98710335921871,-64.98710640057824,-64.98710986444867,-64.98711374237878,-64.98711802602568,-64.98712270715377,-64.98712777763379,-64.9871332294418,-64.98713905465823,-64.9871452454669,-64.98715179415404,-64.98715869310735,-64.98716593481497,-64.98717351186464,-64.98718141694266,-64.98718964283297,-64.98719818241622,-64.98720702866882,-64.98721617466202,-64.98722561356098,-64.98723533862385,-64.98724534320085,-64.98725562073341,-64.98726616475317,-64.98727696888116,-64.98728802682693,-64.98729933238756,-64.98731087944688,-64.98732266197452,-64.9873346740251,-64.98734690973734,-64.9873593633332,-64.98737202911701,-64.98738490147467,-64.98739797487276,-64.98741124385774,-64.70458694663756,-64.43623246547925,-64.18132776323928,-63.93893345394877,-63.70818402234978,-63.48828164604217,-63.27849056232443,-63.0781319278807,-62.886579124897665,-62.70325347203421,-62.52762030296161,-62.35918537899855,-62.19749160573687,-62.042116026541144,-61.89266706845584,-61.74878201840798,-61.61012470968954,-61.476383400574036,-61.34726882859323,-61.22251242549895,-61.10186467928044,-60.985093630819456,-60.87198349385809,-60.76233338794204,-60.65595617489641,-60.552677390202,-60.45233426137709,-60.354774806139375,-60.25985700373327,-60.167448033363925,-60.07742357418687,-59.989667161766164,-59.9040695963375,-59.82052839860038,-59.73894730911847,-59.65923582773187,-59.58130878968271,-59.50508597542827,-59.43049175136568,-59.357454738921525,-59.56874505399908,-59.76699139177045,-59.95315356842524,-60.12811441893744,-60.29268653283774,-60.44761837179048,-60.59359982523333,-60.73126725523379,-60.86120807719109,-60.98396491895079,-61.10003939721933,-61.20989554680685,-61.31396293514459,-61.41263949168506,-61.5062940791756,-61.59526883137913,-61.67988127958605,-61.760426288205124,-61.837177817828646,-61.910390532428515,-61.980301265745574,-62.0471303604762,-62.11108289252934,-62.17234979141496,-62.23110886672403,-62.28752574966155,-62.34175475769111,-62.393939689533646,-62.44421455702769,-62.49270425969681,-62.53952520727468,-62.584785894904854,-62.62858743525316,-62.671024051342116,-62.71218353353295,-62.75214766373755,-62.79099260963585,-62.82878929139985,-62.86560372318063,-62.90149733139556,-62.93652725165758,-62.970746606013314,-63.004204762000846,-63.03694757489793,-63.06901761440647,-63.10045437690706,-63.13129448431701,-63.161571870495195,-63.19131795605623,-63.220561812383934,-63.24933031556838,-63.277648290932305,-63.30553864875917,-63.33302251178741,-63.360119334991964,-63.386847018134716,-63.413222011530095,-63.43925941543943,-63.464973073478355,-63.4903756603946,-63.51547876454904,-63.540292965410536,-63.564827906354374,-63.58909236303552,-63.61309430759046,-63.63684096890561,-63.66033888917542,-63.683593976960005,-63.70661155693935,-63.72939641654978,-63.75195284967739,-63.77428469757327,-63.79639538714609,-63.81828796677864,-63.8399651398072,-63.86142929579473,-63.88268253972194,-63.9037267192135,-63.924563449910515,-63.945194139094475,-63.96562000766228,-63.985842110546834,-64.00586135567264,-64.0256785215313,-64.04529427345743,-64.064709178681,-64.08392372022885,-64.10293830974355,-64.12175329928488,-64.14036899217557,-64.1587856529496,-64.17700351645873,-64.19502279618938,-64.21284369184006,-64.23046639620617,-64.24789110141677,-64.26511800456586,-64.2821473127779,-64.29897924774534,-64.31561404977427,-64.33205198137162,-64.34829333040608,-64.3643384128728,-64.38018757529048,-64.3958411967575,-64.41129969069266,-64.4265635062842,-64.4416331296697,-64.45650908486797,-64.4711919344829,-64.48568228019782,-64.49998076307813,-64.51408806369855,-64.52800490211058,-64.54173203766453,-64.5552702686998,-64.56862043211608,-64.5817834028373,-64.59476009317953,-64.60755145213295,-64.62015846456787,-64.63258215037334,-64.64482356353717,-64.65688379117472,-64.66876395251383,-64.68046519784255,-64.69198870742584,-64.70333569039681,-64.71450738362799,-64.72550505058717,-64.73632998018256,-64.74698348560106,-64.75746690314364,-64.76778159106098,-64.77792892839278,-64.7879103138132,-64.79772716448531,-64.80738091492668,-64.81687301588825,-64.8262049332483,-64.83537814692325,-64.8443941497966,-64.85325444666762,-64.86196055322051,-64.87051399501536,-64.87891630650154,-64.88716903005441,-64.89527371503576,-64.90323191687857,-64.9110451961965,-64.91871511791828,-64.92624325044737,-64.93363116484683,-64.94088043404962,-64.94799263209417,-64.95496933338529,-64.96181211198018,-64.96852254089937,-64.97510219146251,-64.98155263264852,-64.98787543047999,-64.99407214743144,-65.00014434186106,-65.00609356746554,-65.01192137275768,-65.01762930056624,-65.02321888755763,-65.02869166377906,-65.03404915222255,-65.03929286840948,-65.04442431999499,-65.04944500639206,-65.05435641841441,-65.05916003793801,-65.06385733758059,-65.06844978039861,-65.07293881960133,-65.0773258982814,-65.0816124491614,-65.08579989435609,-65.08988964514961,-65.09388310178738,-65.09778165328208,-65.10158667723331,-65.10529953966052,-65.10892159484864,-65.11245418520612,-65.11589864113483,-65.11925628091146,-65.12252841057993,-65.1257163238546,-65.12882130203359,-65.13184461392203,-65.13478751576487,-65.13765125118874,-65.14043705115262,-65.1431461339069,-65.14577970496053,-65.14833895705596,-65.15082507015137,-65.15323921141018,-65.1555825351972,-65.15785618308138,-65.16006128384473,-65.1621989534972,-65.16427029529721,-65.16627639977757,-65.16821834477653,-65.17009719547382,-65.17191400443122,-65.17366981163765,-65.17536564455847,-65.17700251818867,-65.17858143510998,-65.18010338555142,-65.18156934745339,-65.1829802865348,-65.18433715636334,-65.18564089842853,-65.18689244221744,-65.18809270529295,-65.18924259337435,-65.19034300042016,-65.19139480871297,-65.19239888894624,-65.19335610031288,-65.19426729059546,-65.19513329625799,-65.19595494253906,-65.19673304354637,-65.19746840235236,-65.19816181109093,-65.19881405105522,-65.19942589279624,-65.19999809622222,-65.20053141069876,-65.20102657514958,-65.20148431815777,-65.20190535806753,-65.20229040308632,-65.20264015138723,-65.20295529121172,-65.20323650097245,-65.20348444935628,-65.2036997954273,-65.20388318872986,-65.2040352693916,-65.2041566682263,-65.20424800683669,-65.20430989771693,-65.20434294435492,-65.20434774133442,-65.20432487443662,-65.20427492074161,-65.20419844872926,-65.20409601837977,-65.20396818127375,-65.20381548069177,-65.20363845171345,-65.20343762131596,-65.20321350847196,-65.20296662424701,-65.20269747189624,-65.2024065469605,-65.20209433736181,-65.20176132349812,-65.20140797833741,-65.20103476751112,-65.20064214940673,-65.20023057525977,-65.19980048924496,-65.1993523285667,-65.19888652354868,-65.1984034977228,-65.19790366791725,-65.19738744434386,-65.1968552306846,-65.1963074241773,-65.19574441570052,-65.19516658985764,-65.19457432506015,-65.19396799361006,-65.19334796178156,-65.19271458990174,-65.19206823243063,-65.19140923804024,-65.1907379496929,-65.19005470471875,-65.18935983489233,-65.1886536665084,-65.18793652045692,-65.18720871229718,-65.18647055233113,-65.1857223456759,-65.18496439233544,-65.18419698727139,-65.18342042047314,-65.18263497702705,-65.18184093718487,-65.18103857643139,-65.18022816555124,-65.1794099706949,-65.17858425344401,-65.17775127087576,-65.17691127562657,-65.176064515955,-65.17521123580394,-65.17435167486187,-65.17348606862353,-65.17261464844981,-65.17173764162676,-65.17085527142409,-65.16996775715268,-65.16907531422159,-65.16817815419418,-65.16727648484363,-65.16637051020767,-65.16546043064267,-65.16454644287695,-65.16362874006356,-65.16270751183217,-65.16178294434044,-65.1608552203247,-65.15992451914987,-65.15899101685883,-65.15805488622112,-65.15711629678097,-65.1561754149047,-65.1552324038275,-65.15428742369963,-65.15334063163192,-65.15239218174074,-65.1514422251923,-65.15049091024645,-65.14953838229978,-65.14858478392826,-65.14763025492917,-65.14667493236259,-65.14571895059227,-65.14476244132594,-65.14380553365508,-65.14284835409417,-65.14189102661939,-65.1409336727068,-65.13997641136996,-65.1390193591971,-65.13806263038778,-65.13710633678892,-65.13615058793052,-65.13519549106078,-65.13424115118077,-65.13328767107859,-65.13233515136308,-65.1313836904971,-65.13043338483028,-65.12948432863138,-65.12853661412015,-65.12759033149884,-65.12664556898314,-65.12570241283277,-65.12476094738169,-65.12382125506777,-65.12288341646214,-65.12194751029816,-65.12101361349981,-65.12008180120995,-65.11915214681791,-65.11822472198695,-65.11729959668114,-65.11637683919194,-65.11545651616447,-65.1145386926233,-65.11362343199792,-65.11271079614794,-65.11180084538779,-65.11089363851119,-65.1099892328152,-65.109087684124,-65.10818904681234,-65.10729337382854,-65.1064007167173,-65.10551112564218,-65.10462464940765,-65.103741335481,-65.10286123001379,-65.10198437786306,-65.1011108226123,-65.10024060659202,-65.09937377090012,-65.09851035542187,-65.09765039884972,-65.09679393870283,-65.09594101134618,-65.09509165200959,-65.09424589480635,-65.09340377275166,-65.09256531778078,-65.09173056076692,-65.09089953153887,-65.09007225889845,-65.08924877063758,-65.08842909355529,-65.08761325347432,-65.08680127525757,-65.08599318282435,-65.08518899916629,-65.08438874636315,-65.08359244559831,-65.08280011717413,-65.082011780527,-65.08122745424224,-65.08044715606879,-65.07967090293364,-65.07889871095614,-65.078130595462,-65.0773665709972,-65.07660665134165,-65.07585084952265,-65.07509917782819,-65.07435164782001,-65.07360827034654,-65.07286905555564,-65.07213401290713,-65.07140315118514,-65.07067647851032,-65.06995400235189,-65.06923572953946,-65.0685216662747,-65.06781181814291,-65.06710619012435,-65.06640478660539,-65.06570761138963,-65.0650146677087,-65.06432595823303,-65.06364148508241,-65.06296124983642,-65.06228525354466,-65.06161349673692,-65.06094597943317,-65.06028270115335,-65.05962366092714,-65.05896885730344,-65.05831828835986,-65.05767195171197,-65.05702984452248,-65.05639196351025,-65.05575830495921,-65.05512886472712,-65.05450363825419,-65.0538826205716,-65.05326580630995,-65.0526531897075,-65.05204476461829,-65.05144052452025,-65.05084046252307,-65.05024457137606,-65.04965284347577,-65.04906527087364,-65.04848184528348,-65.04790255808877,-65.04732740034997,-65.04675636281169,-65.0461894359097,-65.04562660977788,-65.0450678742551,-65.04451321889192,-65.04396263295729,-65.04341610544505,-65.0428736250804,-65.04233518032628,-65.0418007593896,-65.04127035022746,-65.04074394055318,-65.04022151784233,-65.03970306933857,-65.0391885820596,-65.03867804280272,-65.03817143815061,-65.03766875447683,-65.03716997795125,-65.03667509454557,-65.03618409003853,-65.03569695002116,-65.03521365990197,-65.034734204912,-65.03425857010981,-65.03378674038646,-65.03331870047029,-65.03285443493172,-65.032393928188,-65.03193716450777,-65.03148412801563,-65.03103480269671,-65.03058917240098,-65.03014722084768,-65.02970893162957,-65.02927428821715,-65.02884327396283,-65.028415872105,-65.02799206577207,-65.02757183798641,-65.02715517166828,-65.02674204963964,-65.02633245462789,-65.0259263692697,-65.02552377611454,-65.02512465762837,-65.02472899619711,-65.02433677413019,-65.02394797366392,-65.02356257696489,-65.02318056613328,-65.02280192320613,-65.02242663016054,-65.02205466891684,-65.02168602134167,-65.02132066925104,-65.02095859441336,-65.02059977855237,-65.02024420335,-65.01989185044934,-65.0195427014573,-65.01919673794747,-65.01885394146281,-65.01851429351828,-65.0181777756035,-65.0178443691853,-65.01751405571024,-65.01718681660711,-65.01686263328939,-65.01654148715761,-65.01622335960172,-65.01590823200343,-65.01559608573841,-65.0152869021786,-65.01498066269437,-65.01467734865665,-65.0143769414391,-65.0140794224201,-65.01378477298486,-65.01349297452741,-65.01320400845248,-65.01291785617752,-65.01263449913455,-65.01235391877199,-65.01207609655651,-65.0118010139748,-65.01152865253529,-65.01125899376989,-65.01099201923567,-65.0107277105165,-65.01046604922465,-65.01020701700237,-65.00995059552348,-65.00969676649481,-65.00944551165777,-65.00919681278977,-65.00895065170559,-65.00870701025887,-65.00846587034344,-65.00822721389461,-65.00799102289054,-65.00775727935347,-65.00752596535105,-65.00729706299745,-65.00707055445466,-65.00684642193359,-65.00662464769526,-65.00640521405191,-65.00618810336805,-65.00597329806155,-65.00576078060473,-65.00555053352531,-65.00534253940741,-65.00513678089256,-65.0049332406806,-65.00473190153065,-65.00453274626193,-65.00433575775472,-65.00414091895114,-65.00394821285603,-65.00375762253776,-65.00356913112897,-65.00338272182738,-65.00319837789651,-65.0030160826664,-65.00283581953437,-65.00265757196561,-65.00248132349392,-65.00230705772232,-65.00213475832368,-65.00196440904132,-65.00179599368963,-65.00162949615458,-65.00146490039432,-65.00130219043972,-65.0011413503948,-65.00098236443735,-65.00082521681931,-65.00066989186729,-65.00051637398299,-65.00036464764366,-65.00021469740247,-65.00006650788893,-64.9999200638093,-64.99977534994692,-64.99963235116255,-64.99949105239476,-64.99935143866023,-64.99921349505402,-64.99907720674993,-64.99894255900071,-64.99880953713838,-64.99867812657446,-64.9985483128002,-64.99842008138681,-64.9982934179857,-64.99816830832864,-64.99804473822797,-64.99792269357677,-64.99780216034898,-64.99768312459966,-64.99756557246499,-64.99744949016252,-64.99733486399118,-64.99722168033148,-64.9971099256455,-64.99699958647707,-64.9968906494518,-64.99678310127712,-64.99667692874235,-64.99657211871876,-64.99646865815956,-64.99636653409995,-64.99626573365713,-64.99616624403026,-64.99606805250055,-64.9959711464311,-64.995875513267,-64.99578114053523,-64.99568801584464,-64.99559612688589,-64.99550546143136,-64.99541600733518,-64.99532775253302,-64.99524068504208,-64.99515479296099,-64.99507006446973,-64.99498648782948,-64.99490405138252,-64.99482274355212,-64.99474255284241,-64.99466346783821,-64.99458547720494,-64.99450856968842,-64.99443273411477,-64.99435795939019,-64.99428423450081,-64.99421154851255,-64.9941398905709,-64.99406924990076,-64.99399961580619,-64.99393097767029,-64.99386332495494,-64.99379664720065,-64.99373093402627,-64.99366617512884,-64.99360236028329,-64.9935394793423,-64.993477522236,-64.99341647897177,-64.99335633963395,-64.99329709438366,-64.99323873345848,-64.99318124717225,-64.99312462591476,-64.99306886015152,-64.99301394042348,-64.99295985734675,-64.99290660161235,-64.99285416398588,-64.99280253530732,-64.99275170649064,-64.99270166852358,-64.99265241246736,-64.99260392945634,-64.99255621069773,-64.99250924747132,-64.99246303112915,-64.99241755309521,-64.9923728048651,-64.99232877800576,-64.99228546415513,-64.99224285502183,-64.99220094238484,-64.99215971809319,-64.99211917406562,-64.99207930229024,-64.9920400948242,-64.99200154379344,-64.99196364139219,-64.99192637988281,-64.99188975159534,-64.99185374892718,-64.99181836434279,-64.99178359037329,-64.99174941961616,-64.99171584473486,-64.9916828584585,-64.99165045358153,-64.9916186229633,-64.99158735952778,-64.99155665626319,-64.9915265062216,-64.99149690251868,-64.99146783833324,-64.99143930690691,-64.99141130154382,-64.99138381561018,-64.99135684253395,-64.9913303758045,-64.9913044089722,-64.99127893564811,-64.9912539495036,-64.99122944426996,-64.99120541373807,-64.99118185175804,-64.99115875223883,-64.99113610914789,-64.99111391651078,-64.99109216841086,-64.99107085898885,-64.99104998244255,-64.99102953302639,-64.99100950505114,-64.99098989288348,-64.99097069094569,-64.99095189371525,-64.99093349572452,-64.99091549156032,-64.99089787586358,-64.99088064332902,-64.99086378870474,-64.99084730679189,-64.99083119244426,-64.99081544056799,-64.99080004612112,-64.99078500411332,-64.99077030960547,-64.99075595770931,-64.9907419435871,-64.99072826245124,-64.99071490956392,-64.99070188023677,-64.99068916983049,-64.9906767737545,-64.99066468746659,-64.99065290647255,-64.99064142632584,-64.99063024262722]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1173\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1174\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1169\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_width\":2,\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1170\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.1,\"line_width\":2,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1171\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.2,\"line_width\":2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1181\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1175\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1176\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1177\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.99859895156952,-64.99794940680333,-64.9973300246924,-64.99673830824379,-64.99617201809848,-64.99562914432974,-64.99510788141654,-64.9946066060273,-64.99412385729227,-64.99365831927994,-64.99320880542628,-64.99277424469419,-64.99235366926698,-64.99194620360169,-64.99155105468868,-64.99116750338113,-64.99079489667402,-64.99043264082597,-64.99008019522934,-64.98973706694485,-64.98940280582678,-64.98907700017278,-64.98875927284017,-64.98844927777704,-64.9881466969224,-64.98785123743474,-64.98756262921283,-64.98728062267692,-64.98700498678193,-64.98673550723724,-64.98647198491092,-64.98621423439829,-64.98596208273723,-64.9857153682545,-64.98547393952902,-64.98523765445972,-64.98500637942695,-64.98477998853737,-64.98455836294382,-64.98434139023209,-64.98412896386783,-64.98392098269719,-64.98371735049578,-64.983517975561,-64.98332277034311,-64.98313165111144,-64.98294453765189,-64.98276135299274,-64.98258202315591,-64.9824064769311,-64.98223464567062,-64.98206646310275,-64.9819018651621,-64.9817407898349,-64.98158317701817,-64.9814289683912,-64.98127810729832,-64.98113053864175,-64.98098620878365,-64.98084506545659,-64.98070705768147,-64.9805721356924,-64.98044025086774,-64.98031135566687,-64.98018540357205,-64.98006234903502,-64.97994214742788,-64.97982475499778,-64.97971012882525,-64.97959822678573,-64.97948900751403,-64.97938243037156,-64.97927845541591,-64.9791770433728,-64.97907815561007,-64.97898175411346,-64.9788878014643,-64.97879626081858,-64.9787070958877,-64.97862027092032,-64.9785357506856,-64.97845350045755,-64.97837348600032,-64.97829567355454,-64.9782200298245,-64.97814652196608,-64.97807511757554,-64.9780057846789,-64.97793849172193,-64.97787320756085,-64.97780990145338,-64.97774854305051,-64.97768910238845,-64.9776315498813,-64.97757585631382,-64.97752199283481,-64.97746993095068,-64.97741964251931,-64.97737109974432,-64.97732427516951,-64.97727914167352,-64.97723567246483,-64.97719384107685,-64.9771536213633,-64.97711498749368,-64.977077913949,-64.97704237551761,-64.9770083472912,-64.97697580466092,-64.97694472331361,-64.97691507922819,-64.97688684867218,-64.97686000819819,-64.97683453464067,-64.97681040511269,-64.97678759700268,-64.97676608797151,-64.97674585594939,-64.97672687913294,-64.97670913598238,-64.97669260521867,-64.97667726582083,-64.97666309702313,-64.9766500783126,-64.97663818942627,-64.97662741034874,-64.97661772130961,-64.97660910278103,-64.97660153547525,-64.97659500034226,-64.97658947856735,-64.97658495156888,-64.97658140099591,-64.97657880872596,-64.97657715686276,-64.97657642773403,-64.9765766038893,-64.97657766809775,-64.97657960334604,-64.97658239283625,-64.97658601998371,-64.976590468415,-64.97659572196584,-64.97660176467907,-64.97660858080268,-64.9766161547877,-64.9766244712864,-64.97663351515013,-64.97664327142752,-64.97665372536251,-64.97666486239241,-64.97667666814606,-64.97668912844189,-64.97670222928612,-64.97671595687085,-64.97673029757227,-64.97674523794883,-64.97676076473941,-64.97677686486156,-64.97679352540973,-64.97681073365345,-64.97682847703564,-64.97684674317082,-64.97686551984347,-64.97688479500621,-64.97690455677817,-64.97692479344329,-64.97694549344864,-64.97696664540278,-64.97698823807407,-64.97701026038908,-64.97703270143091,-64.97705555043765,-64.97707879680073,-64.97710243006331,-64.97712643991879,-64.97715081620915,-64.97717554892344,-64.97720062819626,-64.97722604430616,-64.97725178767422,-64.97727784886246,-64.97730421857236,-64.97733088764339,-64.97735784705155,-64.97738508790788,-64.97741260145702,-64.97744037907576,-64.97746841227163,-64.97749669268147,-64.97752521207002,-64.97755396232851,-64.97758293547331,-64.97761212364452,-64.97764151910464,-64.97767111423715,-64.97770090154528,-64.97773087365056,-64.97776102329156,-64.9567679578287,-64.91692643536271,-64.86020425869032,-64.788382741909,-64.7030749083033,-64.60574166261647,-64.49770617249526,-64.38016667619338,-64.25420791162831,-64.12081133882731,-63.98086430557468,-63.835168285689704,-63.68444630125668,-63.52934962437645,-63.370463840497166,-63.208314343892745,-63.04337132613861,-62.87605431022821,-62.706736276043095,-62.53574741702283,-62.363378562895434,-62.18988429907259,-62.015485809657626,-61.84037346785449,-61.66470919481588,-61.48862860555957,-61.31224295845519,-61.13564092289376,-60.95889017806003,-60.78203885420079,-60.60511682639417,-60.428136869552546,-60.25109568221384,-60.073974785576176,-59.89674130319129,-59.719348625738476,-59.541736964337886,-59.36383379491516,-59.18555419518456,-59.00680107485908,-58.84845358632289,-58.708226232875816,-58.58407369352416,-58.47416956582869,-58.376886772255624,-58.290779406069106,-58.214565866186085,-58.14711317965242,-58.087422442018706,-58.03461532482352,-57.98792160939725,-57.94666771016774,-57.910266150773836,-57.87820595421213,-57.85004390514534,-57.82539663921818,-57.80393351130286,-57.785370192358265,-57.7694629431945,-57.7560035129312,-57.74481461028407,-57.73574589691961,-57.72867045386433,-57.72348167421087,-57.72009053800051,-57.71842322805705,-57.718419048593674,-57.72002861151899,-57.723212258455135,-57.7279386894892,-57.73418377256377,-57.74192951013997,-57.75116314231626,-57.761876367945064,-57.77406466745336,-57.787726713042545,-57.80286385372355,-57.81947966424335,-57.83757954838973,-57.85717038843434,-57.878260233602965,-57.90085802145887,-57.92497332696343,-57.95061613474989,-57.97779663082301,-58.00652501048971,-58.03681129984454,-58.068665188586536,-58.10209587234054,-58.13711190300184,-58.173721045926015,-58.21193014305067,-58.251744981267514,-58.2931701655666,-58.336208996652374,-58.38086335288698,-58.42713357655251,-58.475018364542436,-58.524514663695484,-58.57561757107326,-58.62832023955801,-58.68261378920922,-58.738487224867846,-58.79592736053566,-58.85491875108466,-58.91544363186758,-58.97748186680582,-59.04101090552562,-59.10600575009688,-59.17243893190207,-59.24028049912538,-59.30949801530472,-59.380056569331984,-59.45191879722041,-59.52504491588267,-59.59939276908035,-59.674917885615294,-59.75157354973721,-59.82931088364125,-59.908078941824776,-59.98782481696625,-60.06849375688213,-60.150029292011844,-60.23237337277752,-60.315466516066145,-60.399247959988664,-60.483655825984975,-60.5686272872667,-60.6540987425234,-60.74000599376249,-60.82628442711059,-60.91286919537467,-60.999695401145345,-61.08669827922361,-61.17381337716432,-61.260976732756646,-61.34812504730163,-61.43519585359963,-61.52212767762535,-61.608860192943354,-61.695334367001955,-61.781492598536126,-61.86727884540935,-61.95263874232849,-62.03751970797279,-62.121871041187035,-62.20564400599724,-62.28879190531423,-62.37127014329409,-62.45303627642382,-62.534050053493964,-62.61427344470704,-62.69367066025001,-62.77220815873033,-62.84985464593769,-62.92658106444749,-63.002360574626636,-63.07716852763799,-63.15098243106675,-63.22378190781034,-63.29554864888369,-63.36626636079454,-63.43592070813925,-63.50449925205884,-63.57199138517919,-63.63838826363787,-63.70368273677525,-63.76786927503844,-63.83094389661546,-63.892904093283114,-63.953748755917246,-64.01347810007763,-64.0720935920437,-64.12959787564047,-64.1859947001586,-64.24128884963693,-64.2954860737424,-64.3485930204493,-64.40061717068926,-64.45156677511385,-64.50145079308462,-64.55027883397997,-64.59806110088493,-64.64480833670834,-64.6905317727529,-64.7352430797459,-64.7789543213226,-64.82167790994119,-64.86342656519524,-64.90421327448009,-64.94405125595988,-64.98295392377511,-65.02093485542385,-65.05800776124511,-65.09418645592895,-65.12948483197478,-65.16391683501743,-65.19749644093936,-65.23023763468682,-65.26215439070774,-65.29326065492995,-65.32357032819932,-65.35309725109867,-65.38185519007057,-65.4098578247687,-65.4371187365652,-65.46365139814344,-65.48946916410864,-65.51458526255125,-65.53901278750075,-65.56276469221042,-65.58585378321631,-65.60829271511649,-65.63009398601947,-65.65126993361316,-65.67183273180866,-65.69179438791559,-65.71116674030822,-65.72996145654396,-65.74819003189845,-65.76586378828307,-65.78299387351366,-65.79959126090053,-65.81566674913226,-65.83123096242747,-65.84629435093045,-65.86086719132837,-65.87495958766914,-65.88858147236068,-65.90174260733359,-65.91445258535062,-65.92672083144758,-65.93855660449148,-65.94996899884258,-65.96096694610843,-65.97155921697865,-65.98175442313001,-65.99156101919257,-66.00098730476796,-66.01004142649192,-66.01873138013383,-66.02706501272631,-66.03505002471904,-66.042693972151,-66.05000426883605,-66.05698818855733,-66.06365286726606,-66.07000530528111,-66.07605236948571,-66.08180079551819,-66.08725718995404,-66.09242803247658,-66.09731967803395,-66.10193835898068,-66.10629018720142,-66.11038115621592,-66.1142171432632,-66.11780391136402,-66.12114711136043,-66.12425228393137,-66.12712486158361,-66.12977017061716,-66.13219343306474,-66.13439976860461,-66.13639419644645,-66.13818163718994,-66.13976691465587,-66.14115475768929,-66.14234980193503,-66.1433565915851,-66.14417958109829,-66.14482313689163,-66.14529153900426,-66.14558898273327,-66.14571958024214,-66.1456873621416,-66.14549627904331,-66.14515020308654,-66.14465292943794,-66.14400817776493,-66.14321959368276,-66.14229075017565,-66.14122514899223,-66.14002622201573,-66.13869733260904,-66.13724177693516,-66.13566278525332,-66.13396352319104,-66.13214709299258,-66.13021653474408,-66.12817482757568,-66.12602489084118,-66.12376958527535,-66.12141171412938,-66.11895402428478,-66.11639920734619,-66.1137499007133,-66.11100868863227,-66.10817810322708,-66.10526062551112,-66.10225868637933,-66.0991746675812,-66.09601090267508,-66.09276967796409,-66.08945323341386,-66.0860637635526,-66.08260341835366,-66.07907430410097,-66.0754784842378,-66.07181798019887,-66.0680947722263,-66.06431080016978,-66.06046796427103,-66.05656812593301,-66.05261310847413,-66.04860469786773,-66.04454464346706,-66.0404346587162,-66.03627642184692,-66.03207157656212,-66.02782173270563,-66.02352846691916,-66.01919332328613,-66.01481781396312,-66.01040341979876,-66.0059515909406,-66.00146374743,-65.99694127978542,-65.99238554957425,-65.9877978899734,-65.98317960631887,-65.97853197664466,-65.97385625221092,-65.96915365802188,-65.96442539333357,-65.95967263215157,-65.95489652371896,-65.95009819299479,-65.94527874112308,-65.9404392458926,-65.93558076218777,-65.9307043224305,-65.92581093701357,-65.92090159472538,-65.91597726316645,-65.9110388891577,-65.9060873991407,-65.90112369957023,-65.896148677299,-65.89116319995483,-65.88616811631059,-65.88116425664673,-65.87615243310685,-65.87113344004622,-65.86610805437353,-65.86107703588594,-65.85604112759765,-65.8510010560619,-65.84595753168685,-65.84091124904519,-65.83586288717777,-65.83081310989122,-65.82576256604989,-65.820711889862,-65.81566170116024,-65.81061260567697,-65.80556519531397,-65.80052004840704,-65.79547772998532,-65.79043879202575,-65.78540377370246,-65.78037320163132,-65.77534759010986,-65.77032744135239,-65.76531324572069,-65.76030548195014,-65.75530461737155,-65.75031110812863,-65.74532539939133,-65.740347925565,-65.73537911049554,-65.73041936767058,-65.72546910041682,-65.72052870209349,-65.7155985562822,-65.71067903697305,-65.70577050874714,-65.70087332695572,-65.69598783789573,-65.69111437898208,-65.68625327891661,-65.68140485785379,-65.67656942756328,-65.67174729158936,-65.66693874540732,-65.66214407657692,-65.6573635648928,-65.65259748253217,-65.64784609419958,-65.64310965726901,-65.6383884219232,-65.63368263129041,-65.62899252157852,-65.6243183222066,-65.61966025593405,-65.6150185389872,-65.61039338118363,-65.60578498605405,-65.60119355096194,-65.59661926722093,-65.59206232020993,-65.58752288948617,-65.58300114889605,-65.57849726668395,-65.57401140559904,-65.56954372299995,-65.56509437095767,-65.5606634963564,-65.55625124099257,-65.55185774167201,-65.54748313030532,-65.54312753400146,-65.53879107515958,-65.5344738715592,-65.5301760364487,-65.52589767863213,-65.52163890255451,-65.51739980838548,-65.51318049210141,-65.50898104556607,-65.50480155660976,-65.50064210910699,-65.49650278305275,-65.49238365463741,-65.48828479632022,-65.48420627690145,-65.48014816159329,-65.47611051208938,-65.4720933866331,-65.4680968400847,-65.46412092398705,-65.4601656866304,-65.45623117311581,-65.45231742541748,-65.448424482444,-65.4445523800985,-65.44070115133765,-65.43687082622966,-65.43306143201123,-65.42927299314346,-65.4255055313668,-65.42175906575501,-65.41803361276816,-65.41432918630461,-65.41064579775225,-65.40698345603865,-65.40334216768039,-65.3997219368316,-65.39612276533147,-65.3925446527511,-65.38898759643943,-65.3854515915684,-65.38193663117725,-65.37844270621618,-65.3749698055891,-65.37151791619578,-65.36808702297313,-65.36467710893582,-65.36128815521627,-65.35792014110382,-65.35457304408327,-65.35124683987283,-65.3479415024613,-65.34465700414466,-65.34139331556212,-65.33815040573131,-65.33492824208321,-65.33172679049615,-65.32854601532945,-65.32538587945642,-65.32224634429674,-65.31912736984842,-65.31602891471907,-65.31295093615677,-65.30989339008033,-65.30685623110911,-65.30383941259223,-65.30084288663741,-65.29786660413929,-65.2949105148072,-65.29197456719258,-65.28905870871586,-65.2861628856929,-65.28328704336107,-65.28043112590474,-65.27759507648051,-65.27477883724191,-65.27198234936378,-65.26920555306614,-65.26644838763775,-65.26371079145925,-65.2609927020259,-65.25829405597003,-65.25561478908298,-65.25295483633683,-65.25031413190561,-65.24769260918637,-65.24509020081967,-65.24250683870994,-65.23994245404539,-65.2373969773176,-65.23487033834087,-65.23236246627116,-65.22987328962476,-65.22740273629672,-65.22495073357882,-65.22251720817744,-65.22010208623098,-65.21770529332713,-65.21532675451974,-65.2129663943455,-65.21062413684032,-65.20829990555545,-65.2059936235733,-65.20370521352314,-65.20143459759632,-65.19918169756147,-65.19694643477933,-65.19472873021734,-65.19252850446404,-65.19034567774324,-65.18818016992792,-65.18603190055393,-65.18390078883345,-65.1817867536683,-65.17968971366292,-65.17760958713724,-65.1755462921393,-65.17349974645768,-65.1714698676337,-65.16945657297346,-65.16745977955966,-65.16547940426325,-65.16351536375487,-65.1615675745161,-65.15963595285056,-65.15772041489483,-65.15582087662908,-65.15393725388773,-65.15206946236977,-65.15021741764895,-65.14838103518387,-65.14656023032782,-65.14475491833846,-65.14296501438747,-65.14119043356983,-65.13943109091313,-65.13768690138666,-65.1359577799103,-65.13424364136337,-65.13254440059319,-65.13085997242366,-65.12919027166359,-65.12753521311487,-65.1258947115806,-65.124268681873,-65.12265703882127,-65.1210596972792,-65.11947657213271,-65.11790757830735,-65.11635263077551,-65.11481164456359,-65.11328453475906,-65.11177121651738,-65.1102716050688,-65.10878561572503,-65.10731316388575,-65.10585416504517,-65.10440853479828,-65.10297618884708,-65.1015570430067,-65.1001510132114,-65.0987580155205,-65.09737796612409,-65.09601078134874,-65.09465637766313,-65.09331467168344,-65.09198558017881,-65.09066902007653,-65.08936490846727,-65.08807316261017,-65.08679369993774,-65.08552643806085,-65.08427129477347,-65.08302818805737,-65.08179703608675,-65.08057775723276,-65.0793702700679,-65.07817449337041,-65.07699034612851,-65.07581774754455,-65.07465661703912,-65.07350687425507,-65.0723684390614,-65.07124123155712,-65.070125172075,-65.06902018118524,-65.0679261796991,-65.06684308867241,-65.06577082940903,-65.0647093234642,-65.06365849264786,-65.06261825902786,-65.06158854493313,-65.06056927295674,-65.05956036595892,-65.05856174706999,-65.05757333969323,-65.05659506750774,-65.05562685447106,-65.05466862482193,-65.05372030308284,-65.05278181406261,-65.05185308285884,-65.05093403486029,-65.05002459574925,-65.04912469150385,-65.04823424840023,-65.04735319301476,-65.04648145222606,-65.04561895321714,-65.0447656234773,-65.04392139080412,-65.04308618330526,-65.04225992940037,-65.04144255782275,-65.0406339976211,-65.03983417816119,-65.0390430291274,-65.03826048052433,-65.03748646267822,-65.03672090623843,-65.03596374217884,-65.03521490179914,-65.03447431672618,-65.03374191891514,-65.0330176406508,-65.0323014145486,-65.0315931735558,-65.03089285095251,-65.03020038035268,-65.02951569570506,-65.02883873129413,-65.02816942174097,-65.02750770200407,-65.02685350738011,-65.02620677350473,-65.02556743635317,-65.024935432241,-65.02431069782467,-65.02369317010215,-65.0230827864134,-65.0224794844409,-65.02188320221009,-65.02129387808985,-65.02071145079279,-65.02013585937564,-65.01956704323959,-65.0190049421305,-65.01844949613916,-65.0179006457015,-65.01735833159877,-65.01682249495762,-65.01629307725025,-65.01577002029445,-65.01525326625364,-65.01474275763684,-65.0142384372987,-65.01374024843938,-65.01324813460445,-65.01276203968484,-65.0122819079166,-65.01180768388076,-65.0113393125031,-65.0108767390539,-65.01041990914771,-65.00996876874302,-65.0095232641419,-65.00908334198971,-65.00864894927469,-65.00822003332755,-65.00779654182105,-65.00737842276955,-65.00696562452848,-65.00655809579389,-65.0061557856019,-65.00575864332815,-65.00536661868718,-65.0049796617319,-65.0045977228529,-65.00422075277788,-65.00384870257088,-65.00348152363168,-65.00311916769505,-65.00276158683003,-65.00240873343917,-65.00206056025776,-65.00171702035307,-65.00137806712347,-65.00104365429767,-65.00071373593386,-65.0003882664188,-65.00006720046697,-64.99975049311969,-64.99943809974415,-64.99912997603253,-64.998826078001,-64.99852636198877,-64.99823078465711,-64.99793930298837,-64.99765187428491,-64.99736845616815,-64.99708900657743,-64.99681348376902,-64.99654184631504,-64.99627405310235,-64.9960100633315,-64.99574983651551,-64.99549333247889,-64.99524051135637,-64.99499133359184,-64.99474575993716,-64.99450375145095,-64.99426526949748,-64.99403027574537,-64.99379873216651,-64.99357060103475,-64.99334584492468,-64.99312442671044,-64.99290630956443,-64.99269145695608,-64.99247983265055,-64.99227140070748,-64.99206612547974,-64.99186397161206,-64.9916649040398,-64.99146888798757,-64.991275888968,-64.99108587278039,-64.9908988055093,-64.99071465352334,-64.99053338347372,-64.99035496229297,-64.99017935719354,-64.99000653566647,-64.98983646547998,-64.98966911467814,-64.98950445157945,-64.98934244477552,-64.98918306312957,-64.98902627577517,-64.98887205211473,-64.98872036181815,-64.9885711748214,-64.98842446132511,-64.98828019179317,-64.98813833695127,-64.9879988677855,-64.98786175554099,-64.98772697172036,-64.98759448808238,-64.9874642766405,-64.9873363096614,-64.98721055966362,-64.98708699941604,-64.98696560193646,-64.98684634049022,-64.98672918858864,-64.98661411998768,-64.98650110868644,-64.9863901289257,-64.98628115518652,-64.98617416218873,-64.98606912488954,-64.98596601848202,-64.98586481839371,-64.98576550028514,-64.9856680400484,-64.98557241380563,-64.98547859790764,-64.98538656893243,-64.98529630368373,-64.98520777918955,-64.98512097270077,-64.98503586168964,-64.98495242384836,-64.98487063708765,-64.98479047953528,-64.98471192953463,-64.98463496564327]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1182\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1183\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1178\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1179\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1180\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1191\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1185\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1186\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1187\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99997874916157,-64.99993844542642,-64.99988107768425,-64.99980844652296,-64.99972218281401,-64.99962376436807,-64.9995145308698,-64.99939569727732,-64.99926836585125,-64.99913353695976,-64.99899211879017,-64.99884493608293,-64.99869273799125,-64.99853620515829,-64.99837595609382,-64.99821255292329,-64.99804650657433,-64.99787828145885,-64.99770829970237,-64.99753694496685,-64.99736456590843,-64.99719147930682,-64.99701797289947,-64.99684430794994,-64.99667072157698,-64.99649742886784,-64.99632462479723,-64.99615248597061,-64.99598117220926,-64.99581082799196,-64.99564158376748,-64.99547355714982,-64.99530685400761,-64.99514156945739,-64.99497778877,-64.994815588198,-64.99465503573143,-64.9944961917886,-64.99433910984773,-64.99418383702482,-64.99403041460269,-64.99387887851545,-64.99372925979235,-64.99358158496477,-64.99343587643945,-64.99329215284085,-64.99315042932555,-64.99301071787083,-64.99287302753986,-64.99273736472541,-64.9926037333739,-64.99247213519136,-64.99234256983308,-64.99221503507799,-64.99208952698925,-64.99196604006214,-64.9918445673602,-64.99172510064076,-64.99160763047051,-64.9914921463321,-64.99137863672239,-64.99126708924301,-64.99115749068393,-64.99104982710053,-64.99094408388461,-64.99084024583009,-64.99073829719339,-64.99063822174936,-64.99054000284278,-64.99044362343584,-64.9903490661521,-64.99025631331698,-64.99016534699503,-64.9900761490245,-64.98998870104913,-64.98990298454746,-64.98981898085992,-64.98973667121383,-64.9896560367464,-64.98957705852588,-64.98949971757125,-64.98942399487014,-64.98934987139546,-64.9892773281207,-64.98920634603395,-64.98913690615088,-64.98906898952656,-64.98900257726648,-64.98893765053649,-64.98887419057203,-64.98881217868662,-64.98875159627947,-64.98869242484263,-64.9886346459674,-64.98857824135025,-64.98852319279817,-64.98846948223351,-64.98841709169851,-64.9883660033592,-64.98831619950913,-64.98826766257258,-64.98822037510752,-64.98817431980825,-64.98812947950776,-64.9880858371798,-64.98804337594072,-64.98800207905113,-64.98796192991725,-64.98792291209219,-64.98788500927692,-64.98784820532121,-64.9878124842243,-64.98777783013549,-64.98774422735457,-64.98771166033217,-64.98768011366994,-64.98764957212067,-64.98762002058831,-64.98759144412784,-64.98756382794518,-64.98753715739689,-64.98751141798986,-64.987486595381,-64.98746267537672,-64.9874396439325,-64.98741748715236,-64.9873961912882,-64.98737574273923,-64.9873561280513,-64.98733733391619,-64.98731934717081,-64.98730215479654,-64.98728574391833,-64.98727010180396,-64.98725521586312,-64.98724107364659,-64.98722766284536,-64.98721497128967,-64.98720298694816,-64.98719169792689,-64.98718109246839,-64.98717115895073,-64.98716188588654,-64.987153261922,-64.98714527583591,-64.98713791653866,-64.98713117307122,-64.98712503460418,-64.9871194904367,-64.9871145299955,-64.98711014283387,-64.98710631863064,-64.98710304718912,-64.98710031843616,-64.98709812242105,-64.98709644931454,-64.98709528940779,-64.98709463311138,-64.98709447095429,-64.98709479358283,-64.98709559175967,-64.9870968563628,-64.98709857838455,-64.98710074893054,-64.98710335921871,-64.98710640057824,-64.98710986444867,-64.98711374237878,-64.98711802602568,-64.98712270715377,-64.98712777763379,-64.9871332294418,-64.98713905465823,-64.9871452454669,-64.98715179415404,-64.98715869310735,-64.98716593481497,-64.98717351186464,-64.98718141694266,-64.98718964283297,-64.98719818241622,-64.98720702866882,-64.98721617466202,-64.98722561356098,-64.98723533862385,-64.98724534320085,-64.98725562073341,-64.98726616475317,-64.98727696888116,-64.98728802682693,-64.98729933238756,-64.98731087944688,-64.98732266197452,-64.9873346740251,-64.98734690973734,-64.9873593633332,-64.98737202911701,-64.98738490147467,-64.98739797487276,-64.98741124385774,-64.42174919022004,-63.885026583992044,-63.37520335668225,-62.890400741200274,-62.42888770652717,-61.989068592935254,-61.56947183087295,-61.1687396392744,-60.78561861037322,-60.41895109813518,-60.06766733626829,-59.73077821953864,-59.40736868894128,-59.096591667267184,-58.79766249688037,-58.50985383617197,-58.23249097527545,-57.964947535282654,-57.7066415184564,-57.457031679844256,-57.21561419330502,-56.981919587301434,-56.755509927921814,-56.53597622849691,-56.32293606689895,-56.11603139316793,-55.914926511522125,-55.71930622209091,-55.52887410887072,-55.34335096146062,-55.16247331909248,-54.98599212634027,-54.813671490682076,-54.64528753280198,-54.480627321164754,-54.31948788297764,-54.16167528417576,-54.00700377153398,-53.855294970421745,-53.706377132080384,-54.125758899452876,-54.518664237206444,-54.88697824227946,-55.232431627950895,-55.556614838661325,-55.860990876416636,-56.14690694549408,-56.41560501349156,-56.66823137947883,-56.90584533367503,-57.12942698737538,-57.33988434656986,-57.53805969770088,-57.72473536921605,-57.90063892794435,-58.066447864846026,-58.22279382035993,-58.37026639541005,-58.50941659015121,-58.640759908749324,-58.76477916491863,-58.88192701958856,-58.99262827895286,-59.097281978266395,-59.19626327409994,-59.28992516533462,-59.378600060968886,-59.462601210811215,-59.542224013330085,-59.617747213315745,-59.68943400056286,-59.75753301949533,-59.82227929851049,-59.883895106806975,-59.94259074556495,-59.99856527955829,-60.052007214583504,-60.103095125479804,-60.15199823897931,-60.19887697515678,-60.24388345083748,-60.287161947962,-60.32884934959236,-60.36907554596885,-60.40796381278664,-60.4456311636514,-60.48218867848947,-60.51774180952811,-60.552390666320996,-60.586230281172114,-60.61935085620401,-60.65183799322325,-60.68377290745424,-60.71523262614143,-60.74629017295788,-60.77701473910382,-60.80747184193162,-60.83772347189232,-60.86782822856273,-60.89784144648086,-60.927815311489496,-60.95779896826367,-60.987838619676225,-61.017977618636415,-61.04825655301899,-61.07871332428543,-61.10938322038387,-61.14029898349986,-61.17149087321622,-61.202986725625934,-61.23481200892769,-61.26698987601851,-61.2995412145819,-61.33248469515291,-61.36583681762302,-61.3996119566279,-61.4338224062395,-61.46847842436088,-61.503588277197146,-61.539158284149096,-61.57519286344795,-61.61169457881924,-61.64866418743242,-61.68610068935988,-61.72400137873467,-61.762361896761334,-61.80117628669847,-61.84043705089539,-61.88013520992922,-61.920260363852904,-61.96080075552919,-62.00174333599169,-62.04307383174106,-62.084776813853274,-62.126835768747796,-62.169233170436726,-62.21195055405173,-62.25496859042429,-62.29826716147647,-62.34182543616442,-62.38562194670494,-62.42963466480705,-62.473841077625664,-62.518218263152534,-62.562742964761405,-62.60739166462903,-62.65214065576126,-62.69696611236399,-62.74184415831157,-62.786750933480604,-62.83166265773401,-62.87655569235928,-62.92140659878484,-62.96619219441956,-63.01088960548268,-63.055476316713325,-63.099930217871645,-63.14422964696564,-63.18835343015993,-63.232280918343776,-63.2759920203564,-63.31946723288688,-63.362687667084415,-63.405635071931634,-63.44829185444932,-63.49064109681511,-63.532666570491365,-63.57435274746867,-63.61568480874092,-63.65664865013614,-63.69723088563387,-63.737418848305175,-63.77720058901509,-63.81656487303012,-63.85550117467463,-63.893999670180314,-63.932051228872204,-63.969647402832976,-64.0067804151849,-64.04344314712546,-64.07962912384893,-64.11533249948172,-64.15054804115444,-64.18527111232846,-64.21949765548933,-64.25322417431322,-64.28644771540733,-64.3191658497187,-64.35137665369989,-64.38307869031429,-64.41427098995753,-64.4449530313657,-64.4751247225754,-64.50478638199506,-64.53393871964148,-64.56258281859049,-64.59072011668543,-64.61835238854276,-64.64548172788915,-64.67211053026054,-64.69824147608931,-64.72387751420216,-64.7490218457477,-64.77367790856933,-64.79784936203599,-64.82154007234094,-64.84475409827517,-64.86749567748092,-64.8897692131873,-64.91157926142918,-64.93293051874797,-64.9538278103714,-64.97427607886843,-64.9942803732735,-65.01384583867362,-65.03297770625058,-65.05168128376982,-65.06996194650678,-65.08782512860051,-65.10527631482455,-65.12232103276374,-65.1389648453861,-65.15521334399799,-65.1710721415709,-65.18654686642816,-65.20164315627935,-65.21636665259065,-65.23072299527915,-65.24471781771915,-65.25835674204876,-65.27164537476511,-65.28458930259671,-65.29719408864165,-65.30946526876052,-65.32140834821338,-65.33302879852997,-65.34433205460284,-65.35532351199357,-65.36600852444192,-65.37639240156874,-65.38648040676318,-65.39627775524549,-65.40578961229649,-65.4150210916457,-65.4239772540099,-65.43266310577432,-65.44108359780921,-65.4492436244143,-65.45714802238459,-65.46480157019057,-65.4722089872667,-65.47937493340184,-65.48630400822609,-65.49300075078814,-65.49946963921809,-65.50571509047028,-65.51174146014161,-65.51755304236049,-65.52315406974198,-65.52854871340496,-65.53374108304726,-65.53873522707495,-65.54353513278203,-65.54814472657718,-65.55256787425421,-65.55680838130306,-65.56086999325836,-65.5647563960829,-65.56847121658296,-65.57201802285343,-65.57540032474995,-65.578621574386,-65.58168516665272,-65.58459443975934,-65.58735267579262,-65.58996310129298,-65.59242888784615,-65.59475315268834,-65.59693895932354,-65.59898931815157,-65.60090718710549,-65.60269547229707,-65.60435702866918,-65.60589466065399,-65.6073111228358,-65.60860912061781,-65.60979131089155,-65.61086030270839,-65.61181865795217,-65.61266889201228,-65.61341347445642,-65.61405482970248,-65.61459533768883,-65.61503733454248,-65.61538311324469,-65.61563492429342,-65.61579497636214,-65.61586543695478,-65.61584843305621,-65.61574605177809,-65.61556034099958,-65.61529331000278,-65.61494693010256,-65.61452313527049,-65.61402382275273,-65.61345085368161,-65.6128060536808,-65.61209121346378,-65.61130808942565,-65.61045840422788,-65.60954384737626,-65.60856607579154,-65.60752671437307,-65.60642735655502,-65.6052695648554,-65.6040548714177,-65.60278477854506,-65.6014607592271,-65.6000842576593,-65.59865668975495,-65.59717944364952,-65.59565388019784,-65.59408133346363,-65.59246311120177,-65.59080049533314,-65.58909474241217,-65.58734708408703,-65.5855587275526,-65.58373085599624,-65.5818646290364,-65.57996118315417,-65.57802163211767,-65.57604706739959,-65.57403855858776,-65.57199715378891,-65.56992388002558,-65.56781974362642,-65.56568573060977,-65.56352280706079,-65.56133191950201,-65.55911399525752,-65.55686994281089,-65.55460065215676,-65.55230699514634,-65.54998982582678,-65.54764998077461,-65.54528827942318,-65.54290552438437,-65.54050250176448,-65.53807998147447,-65.53563871753464,-65.5331794483738,-65.53070289712302,-65.52820977190405,-65.52570076611251,-65.52317655869588,-65.52063781442642,-65.5180851841691,-65.51551930514455,-65.51294080118728,-65.51035028299897,-65.5077483483972,-65.50513558255956,-65.50251255826315,-65.49987983611972,-65.49723796480633,-65.49458748129184,-65.491928911059,-65.48926276832256,-65.4865895562431,-65.48390976713706,-65.48122388268266,-65.478532374122,-65.47583570245939,-65.47313431865591,-65.47042866382026,-65.46771916939608,-65.46500625734572,-65.46229034033048,-65.4595718218875,-65.45685109660319,-65.4541285502836,-65.45140456012128,-65.44867949485918,-65.44595371495134,-65.44322757272057,-65.44050141251313,-65.4377755708504,-65.43505037657782,-65.43232615101081,-65.42960320807808,-65.4268818544621,-65.42416238973694,-65.42144510650351,-65.41873029052218,-65.41601822084287,-65.41330916993276,-65.41060340380142,-65.40790118212367,-65.40520275836008,-65.40250837987512,-65.39981828805313,-65.39713271841207,-65.39445190071507,-65.39177605907987,-65.38910541208622,-65.38644017288118,-65.38378054928243,-65.3811267438797,-65.37847895413412,-65.37583737247583,-65.37320218639961,-65.37057357855885,-65.36795172685754,-65.36533680454073,-65.36272898028308,-65.36012841827588,-65.35753527831233,-65.35494971587124,-65.35237188219921,-65.3498019243911,-65.34723998546916,-65.3446862044605,-65.34214071647327,-65.33960365277122,-65.33707514084702,-65.33455530449412,-65.33204426387722,-65.32954213560151,-65.32704903278056,-65.32456506510293,-65.3220903388975,-65.31962495719768,-65.31716901980431,-65.31472262334746,-65.31228586134701,-65.30985882427213,-65.30744159959967,-65.30503427187145,-65.30263692275044,-65.30024963107596,-65.2978724729178,-65.29550552162942,-65.29314884790004,-65.29080251980582,-65.28846660286018,-65.28614116006302,-65.2838262519492,-65.28152193663597,-65.27922826986969,-65.27694530507154,-65.27467309338245,-65.27241168370728,-65.27016112275803,-65.2679214550964,-65.26569272317552,-65.26347496738087,-65.26126822607056,-65.25907253561472,-65.2568879304344,-65.25471444303952,-65.25255210406627,-65.25040094231382,-65.24826098478032,-65.2461322566983,-65.2440147815694,-65.24190858119846,-65.23981367572702,-65.23773008366624,-65.23565782192915,-65.23359690586244,-65.23154734927753,-65.22950916448123,-65.22748236230575,-65.22546695213825,-65.22346294194978,-65.22147033832377,-65.21948914648402,-65.21751937032214,-65.21556101242452,-65.21361407409887,-65.21167855540023,-65.20975445515654,-65.20784177099382,-65.20594049936078,-65.2040506355531,-65.20217217373728,-65.20030510697403,-65.19844942724124,-65.19660512545664,-65.19477219149996,-65.19295061423476,-65.19114038152983,-65.18934148028035,-65.18755389642847,-65.18577761498376,-65.18401262004313,-65.18225889481053,-65.18051642161619,-65.17878518193567,-65.17706515640846,-65.17535632485634,-65.17365866630138,-65.17197215898364,-65.17029678037858,-65.16863250721421,-65.16697931548785,-65.1653371804827,-65.16370607678404,-65.16208597829531,-65.16047685825369,-65.15887868924563,-65.157291443222,-65.15571509151297,-65.15414960484279,-65.15259495334409,-65.15105110657214,-65.14951803351879,-65.14799570262613,-65.14648408180005,-65.14498313842344,-65.14349283936922,-65.14201315101319,-65.14054403924663,-65.1390854694887,-65.13763740669859,-65.13619981538751,-65.13477265963057,-65.13335590307823,-65.1319495089678,-65.13055344013465,-65.12916765902315,-65.12779212769762,-65.12642680785294,-65.12507166082504,-65.12372664760126,-65.12239172883041,-65.12106686483286,-65.11975201561026,-65.11844714085525,-65.11715219996097,-65.11586715203033,-65.11459195588529,-65.1133265700758,-65.11207095288877,-65.11082506235678,-65.10958885626668,-65.10836229216805,-65.10714532738153,-65.10593791900698,-65.10474002393156,-65.10355159883764,-65.1023726002106,-65.10120298434646,-65.10004270735944,-65.09889172518936,-65.09774999360897,-65.09661746823106,-65.09549410451557,-65.09437985777649,-65.09327468318871,-65.09217853579473,-65.09109137051125,-65.09001314213567,-65.08894380535249,-65.08788331473954,-65.08683162477425,-65.08578868983965,-65.08475446423036,-65.08372890215851,-65.08271195775946,-65.08170358509751,-65.08070373817152,-65.07971237092035,-65.07872943722829,-65.0777548909304,-65.07678868581768,-65.07583077564226,-65.07488111412243,-65.07393965494762,-65.07300635178325,-65.07208115827555,-65.0711640280563,-65.07025491474744,-65.06935377196564,-65.06846055332677,-65.06757521245035,-65.06669770296382,-65.06582797850682,-65.0649659927354,-65.06411169932608,-65.06326505197991,-65.06242600442646,-65.06159451042768,-65.06077052378176,-65.05995399832685,-65.05914488794481,-65.05834314656482,-65.05754872816692,-65.05676158678553,-65.05598167651287,-65.0552089515024,-65.05444336597205,-65.05368487420752,-65.05293343056547,-65.05218898947666,-65.05145150544901,-65.05072093307061,-65.04999722701274,-65.0492803420327,-65.04857023297674,-65.04786685478281,-65.0471701624833,-65.04648011120774,-65.0457966561855,-65.04511975274828,-65.04444935633269,-65.04378542248277,-65.04312790685238,-65.0424767652076,-65.04183195342907,-65.04119342751432,-65.04056114357995,-65.03993505786389,-65.03931512672749,-65.0387013066577,-65.03809355426907,-65.03749182630581,-65.03689607964375,-65.03630627129226,-65.03572235839617,-65.0351442982376,-65.03457204823775,-65.0340055659587,-65.0334448091051,-65.03288973552591,-65.03234030321597,-65.03179647031767,-65.03125819512248,-65.03072543607252,-65.030198151762,-65.02967630093873,-65.02915984250552,-65.02864873552154,-65.0281429392037,-65.02764241292795,-65.02714711623055,-65.02665700880937,-65.02617205052499,-65.025692201402,-65.02521742163003,-65.02474767156498,-65.02428291173,-65.02382310281656,-65.02336820568553,-65.02291818136808,-65.02247299106668,-65.02203259615601,-65.02159695818388,-65.02116603887204,-65.02073980011708,-65.02031820399121,-65.01990121274302,-65.01948878879826,-65.01908089476055,-65.01867749341208,-65.01827854771429,-65.01788402080847,-65.01749387601643,-65.01710807684108,-65.01672658696698,-65.01634937026087,-65.01597639077221,-65.01560761273365,-65.01524300056153,-65.01488251885627,-65.01452613240284,-65.01417380617113,-65.01382550531633,-65.01348119517928,-65.01314084128678,-65.01280440935194,-65.0124718652744,-65.01214317514065,-65.01181830522424,-65.01149722198602,-65.01117989207431,-65.01086628232513,-65.0105563597623,-65.01025009159764,-65.00994744523102,-65.00964838825054,-65.00935288843255,-65.00906091374172,-65.00877243233114,-65.0084874125423,-65.00820582290508,-65.00792763213782,-65.00765280914719,-65.00738132302824,-65.00711314306429,-65.00684823872686,-65.0065865796756,-65.00632813575815,-65.00607287701006,-65.00582077365456,-65.00557179610254,-65.00532591495227,-65.00508310098924,-65.00484332518599,-65.00460655870185,-65.00437277288279,-65.00414193926106,-65.00391402955505,-65.00368901566894,-65.00346686969247,-65.0032475639006,-65.00303107075322,-65.00281736289485,-65.00260641315425,-65.00239819454416,-65.00219268026082,-65.00198984368375,-65.00178965837522,-65.00159209807997,-65.00139713672475,-65.0012047484179,-65.00101490744898,-65.00082758828823,-65.00064276558625,-65.00046041417345,-65.00028050905959,-65.00010302543336,-64.99992793866184,-64.99975522429003,-64.99958485804034,-64.99941681581204,-64.99925107368081,-64.99908760789813,-64.9989263948908,-64.99876741126036,-64.99861063378252,-64.99845603940665,-64.99830360525512,-64.9981533086228,-64.99800512697647,-64.99785903795411,-64.99771501936448,-64.99757304918633,-64.99743310556791,-64.99729516682628,-64.99715921144671,-64.99702521808206,-64.99689316555205,-64.99676303284274,-64.99663479910575,-64.99650844365769,-64.99638394597947,-64.9962612857156,-64.99614044267354,-64.996021396823,-64.99590412829527,-64.99578861738253,-64.99567484453715,-64.99556279037095,-64.99545243565456,-64.99534376131665,-64.99523674844326,-64.99513137827707,-64.99502763221663,-64.99492549181574,-64.99482493878257,-64.99472595497909,-64.99462852242019,-64.99453262327303,-64.99443823985628,-64.99434535463934,-64.99425395024161,-64.99416400943176,-64.99407551512691,-64.99398845039197,-64.99390279843877,-64.99381854262539,-64.99373566645535,-64.99365415357683,-64.99357398778191,-64.99349515300585,-64.99341763332625,-64.99334141296228,-64.99326647627396,-64.9931928077613,-64.99312039206362,-64.99304921395864,-64.99297925836183,-64.99291051032554,-64.99284295503827,-64.9927765778238,-64.99271136414053,-64.99264729958057,-64.99258436986902]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1192\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1193\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1188\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_width\":2,\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1189\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.1,\"line_width\":2,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1190\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.2,\"line_width\":2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1200\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1194\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1195\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1196\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.99859895156952,-64.99794940680333,-64.9973300246924,-64.99673830824379,-64.99617201809848,-64.99562914432974,-64.99510788141654,-64.9946066060273,-64.99412385729227,-64.99365831927994,-64.99320880542628,-64.99277424469419,-64.99235366926698,-64.99194620360169,-64.99155105468868,-64.99116750338113,-64.99079489667402,-64.99043264082597,-64.99008019522934,-64.98973706694485,-64.98940280582678,-64.98907700017278,-64.98875927284017,-64.98844927777704,-64.9881466969224,-64.98785123743474,-64.98756262921283,-64.98728062267692,-64.98700498678193,-64.98673550723724,-64.98647198491092,-64.98621423439829,-64.98596208273723,-64.9857153682545,-64.98547393952902,-64.98523765445972,-64.98500637942695,-64.98477998853737,-64.98455836294382,-64.98434139023209,-64.98412896386783,-64.98392098269719,-64.98371735049578,-64.983517975561,-64.98332277034311,-64.98313165111144,-64.98294453765189,-64.98276135299274,-64.98258202315591,-64.9824064769311,-64.98223464567062,-64.98206646310275,-64.9819018651621,-64.9817407898349,-64.98158317701817,-64.9814289683912,-64.98127810729832,-64.98113053864175,-64.98098620878365,-64.98084506545659,-64.98070705768147,-64.9805721356924,-64.98044025086774,-64.98031135566687,-64.98018540357205,-64.98006234903502,-64.97994214742788,-64.97982475499778,-64.97971012882525,-64.97959822678573,-64.97948900751403,-64.97938243037156,-64.97927845541591,-64.9791770433728,-64.97907815561007,-64.97898175411346,-64.9788878014643,-64.97879626081858,-64.9787070958877,-64.97862027092032,-64.9785357506856,-64.97845350045755,-64.97837348600032,-64.97829567355454,-64.9782200298245,-64.97814652196608,-64.97807511757554,-64.9780057846789,-64.97793849172193,-64.97787320756085,-64.97780990145338,-64.97774854305051,-64.97768910238845,-64.9776315498813,-64.97757585631382,-64.97752199283481,-64.97746993095068,-64.97741964251931,-64.97737109974432,-64.97732427516951,-64.97727914167352,-64.97723567246483,-64.97719384107685,-64.9771536213633,-64.97711498749368,-64.977077913949,-64.97704237551761,-64.9770083472912,-64.97697580466092,-64.97694472331361,-64.97691507922819,-64.97688684867218,-64.97686000819819,-64.97683453464067,-64.97681040511269,-64.97678759700268,-64.97676608797151,-64.97674585594939,-64.97672687913294,-64.97670913598238,-64.97669260521867,-64.97667726582083,-64.97666309702313,-64.9766500783126,-64.97663818942627,-64.97662741034874,-64.97661772130961,-64.97660910278103,-64.97660153547525,-64.97659500034226,-64.97658947856735,-64.97658495156888,-64.97658140099591,-64.97657880872596,-64.97657715686276,-64.97657642773403,-64.9765766038893,-64.97657766809775,-64.97657960334604,-64.97658239283625,-64.97658601998371,-64.976590468415,-64.97659572196584,-64.97660176467907,-64.97660858080268,-64.9766161547877,-64.9766244712864,-64.97663351515013,-64.97664327142752,-64.97665372536251,-64.97666486239241,-64.97667666814606,-64.97668912844189,-64.97670222928612,-64.97671595687085,-64.97673029757227,-64.97674523794883,-64.97676076473941,-64.97677686486156,-64.97679352540973,-64.97681073365345,-64.97682847703564,-64.97684674317082,-64.97686551984347,-64.97688479500621,-64.97690455677817,-64.97692479344329,-64.97694549344864,-64.97696664540278,-64.97698823807407,-64.97701026038908,-64.97703270143091,-64.97705555043765,-64.97707879680073,-64.97710243006331,-64.97712643991879,-64.97715081620915,-64.97717554892344,-64.97720062819626,-64.97722604430616,-64.97725178767422,-64.97727784886246,-64.97730421857236,-64.97733088764339,-64.97735784705155,-64.97738508790788,-64.97741260145702,-64.97744037907576,-64.97746841227163,-64.97749669268147,-64.97752521207002,-64.97755396232851,-64.97758293547331,-64.97761212364452,-64.97764151910464,-64.97767111423715,-64.97770090154528,-64.97773087365056,-64.97776102329156,-64.94625626508177,-64.88647874993819,-64.80138020506338,-64.69363256218897,-64.56565508986664,-64.41963839934259,-64.25756569266282,-64.08123159774385,-63.89225890022225,-63.69211344351245,-63.48211743103698,-63.26346133031693,-63.0372145484601,-62.80433502271039,-62.56567784784832,-62.322003043887285,-62.07398255215658,-61.82220653498133,-61.56718904328782,-61.30937310717456,-61.049135296453194,-60.7867897910944,-60.52259199518301,-60.25674172220101,-59.98938597406033,-59.720621331163755,-59.45049596576564,-59.17901128592526,-58.90612321229169,-58.63174308472368,-58.355738190218894,-58.07793189767792,-57.79810337851558,-57.51598688488508,-57.23127054909656,-56.94359465844289,-56.65254934879344,-56.3576716476081,-56.05844178200487,-55.754278649614314,-55.47596893055844,-55.21956305002009,-54.981481974209274,-54.758484215646,-54.54763444398348,-54.34627326380595,-54.151987911931805,-53.96258375049577,-53.77605650402942,-53.59056522124825,-53.40440594525297,-53.21598605735667,-53.023799225984725,-52.82640084766243,-52.62238381510319,-52.41035438954346,-52.188907891185806,-51.95660385217883,-51.7119401991655,-51.45332594418086,-51.17905175958926,-50.887257689636705,-50.57589710150555,-50.24269579432105,-49.88510495525325,-49.50024636523864,-49.08484789773688,-48.63516690416323,-48.14689851800256,-47.615065212674565,-47.033883092514046,-46.396599363527706,-45.69529421870285,-44.920639016805666,-44.06160124659796,-43.10508561459401,-42.035500222717324,-40.834238279438125,-39.47907109874642,-37.94346084883183,-36.19582780020799,-34.19885702167076,-31.909020019228567,-29.276642018129163,-26.24709668010472,-22.764082928502575,-18.776405269035163,-14.250020347628361,-9.186657419997784,-3.6477896066355546,2.2229562759084036,8.192933876659069,13.964452578335152,19.232271204014683,23.75435163720455,27.4021622772015,30.168531976747765,32.13785657338573,33.44122960517476,34.21763494944141,34.59048550131998,34.65850665610069,34.49574021017847,34.15567088636921,33.67628817768469,33.08457647799317,32.39997321603589,31.636832824090703,30.806103494812323,29.9164379715367,28.974918952843062,27.98753017638388,26.959462535215835,25.89531403702166,24.799221586640176,23.674948911563195,22.525946176695307,21.355391253214542,20.166219061412253,18.961143148116864,17.742672209717167,16.513123333678028,15.274633118995549,14.029167432842502,12.77853029343459,11.524372190954077,10.268198039901325,9.011374876692699,7.755139364154171,6.500605129770557,5.248769942254119,4.000522716575353,2.7566503286788535,1.5178442154266838,0.284706731879101,-0.9422427644246076,-2.1625621343081285,-3.3758810167723627,-4.581895763608761,-5.78036478668494,-6.971104358326607,-8.153984907827345,-9.328927859804363,-10.495903062642068,-11.654926857189235,-12.806060836764424,-13.949411349249171,-15.085129789585608,-16.213413726467742,-17.334508899407012,-18.448712111763577,-19.556375031396072,-20.657908892833454,-21.753790074268128,-22.84456649842561,-23.930864779725127,-25.013398010838248,-26.092974050181013,-27.170504137658593,-28.247011628153146,-29.323640588753808,-30.401663953213408,-31.482490860837036,-32.567672720008765,-33.6589074203308,-34.75804096165652,-35.86706556051045,-36.988113022522704,-38.123441820252935,-39.27541588037971,-40.44647255921394,-41.63907668145423,-42.85565686708999,-44.09851974603895,-45.36973718798594,-46.67100156817204,-48.00344467323853,-49.36741758528465,-50.762232362997686,-52.185872241364436,-53.63468598676396,-55.1030941493952,-56.58334947799033,-58.06540829286739,-59.53697951686716,-60.98381654605193,-62.39029676274268,-63.74028967455345,-65.01825059247315,-66.21040707969244,-67.30585461773437,-68.29737106973097,-69.18180804906874,-69.96000938736852,-70.63631057728767,-71.21775215739089,-71.71317217461706,-72.13232786303587,-72.48515134695121,-72.78119040908844,-73.02923990813484,-73.23713992550186,-73.41170312897678,-73.55873204568067,-73.68309194698001,-73.78881279369986,-73.87920156668868,-73.9569530077345,-74.02425189533491,-74.08286354571554,-74.13421153884318,-74.17944304475013,-74.21948285621903,-74.25507754715146,-74.28683123649205,-74.31523435752452,-74.3406866839565,-74.36351569153086,-74.38399116208616,-74.40233677906276,-74.4187393250212,-74.43335597411965,-74.44632007469053,-74.45774573697007,-74.46773147619336,-74.47636310920669,-74.48371606120539,-74.4898572062084,-74.49484633875775,-74.49873735370159,-74.501579194654,-74.50341661891515,-74.50429081655261,-74.50423991341093,-74.50329938157299,-74.50150237588186,-74.49888001126102,-74.49546159252004,-74.49127480592668,-74.48634587992632,-74.48069972088851,-74.47436002857191,-74.46734939505819,-74.45968939015866,-74.45140063570446,-74.44250287065968,-74.43301500862052,-74.42295518896438,-74.41234082267286,-74.40118863366077,-74.38951469628974,-74.37733446962123,-74.36466282886427,-74.35151409439302,-74.33790205864472,-74.32384001115533,-74.30934076194845,-74.29441666345748,-74.27907963113333,-74.26334116286631,-74.24721235733224,-74.23070393135671,-74.2138262363788,-74.19658927408464,-74.17900271127257,-74.16107589400357,-74.1428178610852,-74.1242373569314,-74.10534284383624,-74.08614251369599,-74.0666442992106,-74.04685588459272,-74.02678471581032,-74.00643801038652,-73.98582276677868,-73.96494577335716,-73.94381361700242,-73.9224326913385,-73.90080920461914,-73.87894918728213,-73.85685849918673,-73.83454283654757,-73.81200773857847,-73.78925859385825,-73.7663006464304,-73.74313900164768,-73.71977863177227,-73.69622438134151,-73.67248097230883,-73.64855300896922,-73.62444498267767,-73.60016127636933,-73.575706168889,-73.55108383913799,-73.52629837004538,-73.50135375237092,-73.47625388834612,-73.45100259516016,-73.42560360829661,-73.40006058472713,-73.37437710596755,-73.3485566810022,-73.32260274908121,-73.29651868239644,-73.27030778864022,-73.24397331345216,-73.21751844275806,-73.19094630500548,-73.1642599732999,-73.1374624674456,-73.11055675589502,-73.08354575761018,-73.05643234383986,-73.02921933981577,-73.00190952637105,-72.9745056414843,-72.94701038175198,-72.91942640379227,-72.89175632558309,-72.864002727737,-72.83616815471555,-72.8082551159856,-72.78026608711995,-72.7522035108447,-72.72406979803537,-72.69586732866422,-72.66759845270043,-72.63926549096553,-72.61087073594564,-72.58241645256265,-72.55390487890587,-72.52533822692594,-72.49671868309277,-72.46804840901882,-72.43932954204949,-72.41056419582192,-72.38175446079366,-72.35290240474262,-72.32401007323952,-72.29507949009408,-72.2661126577763,-72.23711155781385,-72.20807815116667,-72.17901437858008,-72.14992216091713,-72.12080339947141,-72.09165997626123,-72.06249375430596,-72.03330657788571,-72.00410027278484,-71.97487664652039,-71.94563748855614,-71.91638457050308,-71.88711964630689,-71.8578444524233,-71.82856070798198,-71.79927011493949,-71.76997435822204,-71.7406751058586,-71.71137400910489,-71.68207270255891,-71.6527728042685,-71.6234759158313,-71.59418362248789,-71.56489749320822,-71.53561908077208,-71.50634992184385,-71.47709153704207,-71.44784543100407,-71.4186130924462,-71.3893959942199,-71.36019559336405,-71.3310133311538,-71.30185063314633,-71.27270890922378,-71.24358955363358,-71.21449394502659,-71.18542344649316,-71.15637940559749,-71.12736315441039,-71.09837600954081,-71.06941927216629,-71.04049422806236,-71.0116021476315,-70.9827442859314,-70.95392188270294,-70.92513616239798,-70.89638833420715,-70.86767959208777,-70.83901111479194,-70.81038406589516,-70.78179959382533,-70.75325883189241,-70.72476289831887,-70.69631289627088,-70.66790991389045,-70.6395550243286,-70.61124928577956,-70.58299374151619,-70.55478941992655,-70.52663733455185,-70.49853848412565,-70.4704938526145,-70.44250440926004,-70.41457110862254,-70.386694890626,-70.35887668060477,-70.33111738935176,-70.30341791316829,-70.27577913391549,-70.24820191906747,-70.22068712176598,-70.1932355808769,-70.1658481210483,-70.13852555277022,-70.1112686724361,-70.08407826240594,-70.05695509107109,-70.02989991292068,-70.0029134686098,-69.97599648502919,-69.94914967537666,-69.92237373923012,-69.89566936262216,-69.86903721811619,-69.84247796488421,-69.81599224878603,-69.78958070245007,-69.76324394535553,-69.73698258391613,-69.71079721156521,-69.68468840884219,-69.65865674348046,-69.63270277049656,-69.60682703228066,-69.58103005868826,-69.55531236713318,-69.52967446268174,-69.504116838148,-69.4786399741902,-69.45324433940831,-69.4279303904425,-69.40269857207268,-69.37754931731908,-69.35248304754359,-69.32750017255212,-69.30260109069779,-69.27778618898485,-69.25305584317341,-69.22841041788499,-69.20385026670857,-69.17937573230748,-69.15498714652676,-69.1306848305012,-69.10646909476378,-69.08234023935479,-69.0582985539312,-69.03434431787656,-69.01047780041132,-68.9866992607034,-68.96300894797906,-68.93940710163409,-68.91589395134524,-68.89246971718177,-68.86913460971721,-68.84588883014125,-68.82273257037168,-68.7996660131664,-68.77668933223543,-68.75380269235298,-68.73100624946932,-68.70830015082278,-68.68568453505144,-68.66315953230477,-68.64072526435515,-68.61838184470905,-68.59612937871808,-68.57396796368977,-68.55189768899801,-68.52991863619323,-68.5080308791122,-68.48623448398747,-68.46452950955644,-68.44291600716994,-68.42139402090046,-68.39996358764986,-68.37862473725654,-68.35737749260223,-68.33622186971807,-68.31515787789034,-68.29418551976542,-68.27330479145427,-68.25251568263624,-68.2318181766623,-68.21121225065755,-68.19069787562313,-68.17027501653739,-68.1499436324564,-68.12970367661369,-68.10955509651933,-68.08949783405822,-68.06953182558762,-68.04965700203388,-68.02987328898853,-68.01018060680332,-67.99057887068473,-67.97106799078746,-67.95164787230718,-67.93231841557241,-67.9130795161356,-67.89393106486328,-67.87487294802546,-67.855905047384,-67.83702724028026,-67.8182393997218,-67.79954139446814,-67.7809330891157,-67.76241434418186,-67.74398501618798,-67.72564495774166,-67.70739401761804,-67.68923204084014,-67.67115886875831,-67.65317433912881,-67.63527828619137,-67.61747054074591,-67.5997509302283,-67.58211927878519,-67.5645754073479,-67.54711913370546,-67.52975027257662,-67.51246863568099,-67.49527403180927,-67.47816626689252,-67.4611451440705,-67.44421046375918,-67.42736202371718,-67.41059961911148,-67.39392304258202,-67.37733208430556,-67.36082653205858,-67.34440617127916,-67.32807078512819,-67.31182015454948,-67.2956540583291,-67.27957227315379,-67.26357457366846,-67.24766073253292,-67.2318305204776,-67.21608370635853,-67.20042005721137,-67.18483933830464,-67.16934131319208,-67.15392574376415,-67.13859239029875,-67.12334101151107,-67.1081713646026,-67.09308320530936,-67.07807628794932,-67.063150365469,-67.04830518948926,-67.03354051035032,-67.01885607715604,-67.00425163781736,-66.98972693909495,-66.97528172664121,-66.96091574504143,-66.94662873785425,-66.93242044765135,-66.9182906160564,-66.90423898378333,-66.89026529067392,-66.87636927573458,-66.86255067717245,-66.84880923243097,-66.83514467822451,-66.82155675057255,-66.80804518483309,-66.7946097157354,-66.78125007741215,-66.76796600343087,-66.75475722682485,-66.74162348012328,-66.72856449538094,-66.71558000420711,-66.70266973779404,-66.68983342694469,-66.67707080209998,-66.66438159336543,-66.65176553053725,-66.6392223431278,-66.62675176039058,-66.61435351134466,-66.60202732479854,-66.58977292937352,-66.57759005352654,-66.56547842557242,-66.55343777370582,-66.54146782602243,-66.52956831053984,-66.51773895521795,-66.50597948797873,-66.49428963672575,-66.48266912936305,-66.47111769381365,-66.45963505803768,-66.44822095004989,-66.43687509793695,-66.42559722987417,-66.41438707414189,-66.40324435914137,-66.39216881341042,-66.38116016563855,-66.37021814468169,-66.35934247957667,-66.34853289955521,-66.33778913405757,-66.32711091274591,-66.31649796551716,-66.30595002251573,-66.29546681414574,-66.28504807108295,-66.27469352428642,-66.26440290500976,-66.25417594481218,-66.24401237556913,-66.23391192948272,-66.22387433909176,-66.21389933728165,-66.2039866572938,-66.19413603273499,-66.18434719758626,-66.17461988621169,-66.1649538333668,-66.15534877420679,-66.14580444429451,-66.13632057960818,-66.12689691654882,-66.11753319194753,-66.10822914307256,-66.09898450763606,-66.08979902380068,-66.08067243018597,-66.07160446587453,-66.06259487041801,-66.05364338384288,-66.04474974665601,-66.03591369985008,-66.02713498490884,-66.01841334381206,-66.00974851904049,-66.00114025358053,-65.9925882909288,-65.98409237509647,-65.97565225061352,-65.96726766253282,-65.95893835643405,-65.95066407842748,-65.94244457515762,-65.93427959380675,-65.92616888209825,-65.91811218829993,-65.91010926122709,-65.90215985024555,-65.89426370527455,-65.88642057678953,-65.87863021582477,-65.87089237397599,-65.86320680340278,-65.85557325683094,-65.8479914875548,-65.84046124943931,-65.83298229692221,-65.82555438501592,-65.8181772693095,-65.81085070597045,-65.80357445174646,-65.79634826396706,-65.78917190054523,-65.78204511997889,-65.77496768135238,-65.76793934433782,-65.76095986919645,-65.7540290167799,-65.7471465485313,-65.74031222648655,-65.73352581327532,-65.72678707212211,-65.72009576684725,-65.71345166186781,-65.70685452219851,-65.70030411345256,-65.69380020184248,-65.68734255418082,-65.68093093788093,-65.67456512095765,-65.66824487202794,-65.66196996031151,-65.65574015563142,-65.64955522841461,-65.64341494969248,-65.63731909110136,-65.63126742488299,-65.62525972388501,-65.61929576156133,-65.61337531197262,-65.60749814978664,-65.60166405027864,-65.59587278933174,-65.59012414343722,-65.5844178896949,-65.57875380581342,-65.57313167011051,-65.56755126151337,-65.56201235955888,-65.55651474439385,-65.55105819677536,-65.54564249807093,-65.54026743025884,-65.53493277592827,-65.52963831827965,-65.52438384112482,-65.51916912888726,-65.51399396660233,-65.50885813991749,-65.50376143509253,-65.49870363899976,-65.49368453912423,-65.488703923564,-65.4837615810303,-65.47885730084776,-65.4739908729547,-65.46916208790326,-65.46437073685966,-65.45961661160449,-65.45489950453286,-65.4502192086547,-65.44557551759495,-65.44096822559386,-65.43639712750722,-65.4318620188066,-65.42736269557963,-65.42289895453028,-65.41847059297912,-65.41407740886359,-65.40971920073832,-65.4053957677754,-65.40110690976466,-65.39685242711401,-65.39263212084974,-65.38844579261684,-65.38429324467933,-65.38017427992058,-65.37608870184367,-65.37203631457172,-65.36801692284823,-65.36403033203749,-65.3600763481249,-65.35615477771739,-65.35226542804374,-65.34840810695499,-65.34458262292489,-65.34078878505021,-65.33702640305121,-65.33329528727205,-65.32959524868116,-65.32592609887172,-65.32228765006207,-65.31867971509614,-65.31510210744389,-65.31155464120178,-65.30803713109319,-65.3045493924689,-65.30109124130755,-65.29766249421607,-65.29426296843022,-65.29089248181499,-65.28755085286512,-65.28423790070558,-65.28095344509202,-65.2776973064113,-65.27446930568195,-65.27126926455466,-65.2680970053128,-65.26495235087287,-65.26183512478507,-65.25874515123368,-65.25568225503771,-65.25264626165125,-65.24963699716406,-65.24665428830204,-65.24369796242773,-65.24076784754082,-65.23786377227862,-65.23498556591655,-65.23213305836867,-65.22930608018818,-65.22650446256782,-65.22372803734044,-65.22097663697944]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1201\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1202\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1197\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1198\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1199\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1210\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1204\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1205\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1206\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99997874916157,-64.99993844542642,-64.99988107768425,-64.99980844652296,-64.99972218281401,-64.99962376436807,-64.9995145308698,-64.99939569727732,-64.99926836585125,-64.99913353695976,-64.99899211879017,-64.99884493608293,-64.99869273799125,-64.99853620515829,-64.99837595609382,-64.99821255292329,-64.99804650657433,-64.99787828145885,-64.99770829970237,-64.99753694496685,-64.99736456590843,-64.99719147930682,-64.99701797289947,-64.99684430794994,-64.99667072157698,-64.99649742886784,-64.99632462479723,-64.99615248597061,-64.99598117220926,-64.99581082799196,-64.99564158376748,-64.99547355714982,-64.99530685400761,-64.99514156945739,-64.99497778877,-64.994815588198,-64.99465503573143,-64.9944961917886,-64.99433910984773,-64.99418383702482,-64.99403041460269,-64.99387887851545,-64.99372925979235,-64.99358158496477,-64.99343587643945,-64.99329215284085,-64.99315042932555,-64.99301071787083,-64.99287302753986,-64.99273736472541,-64.9926037333739,-64.99247213519136,-64.99234256983308,-64.99221503507799,-64.99208952698925,-64.99196604006214,-64.9918445673602,-64.99172510064076,-64.99160763047051,-64.9914921463321,-64.99137863672239,-64.99126708924301,-64.99115749068393,-64.99104982710053,-64.99094408388461,-64.99084024583009,-64.99073829719339,-64.99063822174936,-64.99054000284278,-64.99044362343584,-64.9903490661521,-64.99025631331698,-64.99016534699503,-64.9900761490245,-64.98998870104913,-64.98990298454746,-64.98981898085992,-64.98973667121383,-64.9896560367464,-64.98957705852588,-64.98949971757125,-64.98942399487014,-64.98934987139546,-64.9892773281207,-64.98920634603395,-64.98913690615088,-64.98906898952656,-64.98900257726648,-64.98893765053649,-64.98887419057203,-64.98881217868662,-64.98875159627947,-64.98869242484263,-64.9886346459674,-64.98857824135025,-64.98852319279817,-64.98846948223351,-64.98841709169851,-64.9883660033592,-64.98831619950913,-64.98826766257258,-64.98822037510752,-64.98817431980825,-64.98812947950776,-64.9880858371798,-64.98804337594072,-64.98800207905113,-64.98796192991725,-64.98792291209219,-64.98788500927692,-64.98784820532121,-64.9878124842243,-64.98777783013549,-64.98774422735457,-64.98771166033217,-64.98768011366994,-64.98764957212067,-64.98762002058831,-64.98759144412784,-64.98756382794518,-64.98753715739689,-64.98751141798986,-64.987486595381,-64.98746267537672,-64.9874396439325,-64.98741748715236,-64.9873961912882,-64.98737574273923,-64.9873561280513,-64.98733733391619,-64.98731934717081,-64.98730215479654,-64.98728574391833,-64.98727010180396,-64.98725521586312,-64.98724107364659,-64.98722766284536,-64.98721497128967,-64.98720298694816,-64.98719169792689,-64.98718109246839,-64.98717115895073,-64.98716188588654,-64.987153261922,-64.98714527583591,-64.98713791653866,-64.98713117307122,-64.98712503460418,-64.9871194904367,-64.9871145299955,-64.98711014283387,-64.98710631863064,-64.98710304718912,-64.98710031843616,-64.98709812242105,-64.98709644931454,-64.98709528940779,-64.98709463311138,-64.98709447095429,-64.98709479358283,-64.98709559175967,-64.9870968563628,-64.98709857838455,-64.98710074893054,-64.98710335921871,-64.98710640057824,-64.98710986444867,-64.98711374237878,-64.98711802602568,-64.98712270715377,-64.98712777763379,-64.9871332294418,-64.98713905465823,-64.9871452454669,-64.98715179415404,-64.98715869310735,-64.98716593481497,-64.98717351186464,-64.98718141694266,-64.98718964283297,-64.98719818241622,-64.98720702866882,-64.98721617466202,-64.98722561356098,-64.98723533862385,-64.98724534320085,-64.98725562073341,-64.98726616475317,-64.98727696888116,-64.98728802682693,-64.98729933238756,-64.98731087944688,-64.98732266197452,-64.9873346740251,-64.98734690973734,-64.9873593633332,-64.98737202911701,-64.98738490147467,-64.98739797487276,-64.98741124385774,-64.13891143380252,-63.33382070270696,-62.569078951308406,-61.8418680310952,-61.1495913896719,-60.48985550983365,-59.86045296528672,-59.25934693557531,-58.68465704032028,-58.13464636835103,-57.60770959085538,-57.102362059481834,-56.6172298006166,-56.1510403260338,-55.70261418796771,-55.27085721354632,-54.85475335959474,-54.45335813418211,-54.065792536043574,-53.691237467238295,-53.32892857817165,-52.97815150746674,-52.63823748216169,-52.30855924637005,-51.98852728890124,-51.6775863424197,-51.37521212854455,-51.08090832486995,-50.79420373123167,-50.514649613663735,-50.241817205385026,-49.97529534482719,-49.71468823115909,-49.45961327796856,-49.209699045714764,-48.964583233242706,-48.72391070802553,-48.48733155383218,-48.254499113156996,-48.02506799992998,-48.64720235339854,-49.228629139150776,-49.772057709638474,-50.27995729721131,-50.75457885333425,-51.1979748312078,-51.61201704848511,-51.99841275584267,-52.35871902893418,-52.6943555944292,-53.00661619446204,-53.296678587232776,-53.56561327427114,-53.81439103671293,-54.0438893536751,-54.25489776533337,-54.448122231510446,-54.62418852336213,-54.783644670942486,-54.92696247280148,-55.05453805497728,-55.16669144531372,-55.2636651043157,-55.345621324899156,-55.41263837929085,-55.4647052505708,-55.50171473713794,-55.52345465848522,-55.529596817355696,-55.51968328332764,-55.49310945234021,-55.44910320147769,-55.38669929449478,-55.30470799835434,-55.201676645212075,-55.07584262634665,-54.925076058803846,-54.746810176565496,-54.537957476219084,-54.29481000224998,-54.01292327076287,-53.686985869424184,-53.31068185308595,-52.876562455753565,-52.37595996611171,-51.79900309882188,-51.13483207148355,-50.372158500192846,-49.50034617405949,-48.51114322174433,-47.40098480952289,-46.17337628922838,-44.84044040468398,-43.422681776418976,-41.94667142842314,-40.441366902698505,-38.934396027521395,-37.449419674981065,-36.00496191736995,-34.61445017532435,-33.286947083419996,-32.02811300455973,-30.84111718151089,-29.72737833608088,-28.687116135202274,-27.719740502092115,-26.824117926860897,-25.99875072740184,-25.24189717671171,-24.551652383248708,-23.926003411527564,-23.36286753587639,-22.860119404222566,-22.415610841907593,-22.027185703689657,-21.69269133462866,-21.40998765768464,-21.176954556957828,-20.991498000023853,-20.851555196155196,-20.75509899124241,-20.700141637105347,-20.68473803123229,-20.70698849547752,-20.76504114410608,-20.857093879669286,-20.98139604742711,-21.136249774031427,-21.320011012992257,-21.53109031745545,-21.767953359591978,-22.029121215164015,-22.313170431397772,-22.618732896053412,-22.944495525453178,-23.289199789180937,-23.65164108917275,-24.03066801097658,-24.42518146507145,-24.834133736304565,-25.25652745973761,-25.69141454149482,-26.13789504356376,-26.595116051921917,-27.062270547809725,-27.538596302429482,-28.02337481576851,-28.515930320573503,-29.015628872677397,-29.521877548823532,-30.034123772758466,-30.551854789609084,-31.07459730730919,-31.601917322054078,-32.133420142350964,-32.668750623161195,-33.20759361785977,-33.74967465122854,-34.29476081142235,-34.84266185273238,-35.393231493892536,-35.94636888842294,-36.50202023373094,-37.06018047386351,-37.62089503617101,-38.18426152368285,-38.75043126137393,-39.31961056409623,-39.89206155483553,-40.46810231204481,-41.04810606202735,-41.63249905504268,-42.22175667140057,-42.8163971978269,-43.41697260008397,-44.02405550645638,-44.63822152852417,-45.26002601343486,-45.889974394330224,-46.52848554873876,-47.17584806861755,-47.83217017130785,-48.49732519180183,-49.17089617311514,-49.852124856914976,-50.53987202196535,-51.23259707305054,-51.92836439136457,-52.62488169168441,-53.31957142582032,-54.0096707880027,-54.69235048293087,-55.364838744716515,-56.02453634138146,-56.6691106524411,-57.29656147379322,-57.90525647903463,-58.49393881685375,-59.06171229176028,-59.608010794883484,-60.132558461762876,-60.63532598177779,-61.11648708563086,-61.57637786042094,-62.015460386446755,-62.434291325079656,-62.83349550123472,-63.213744167498234,-63.57573745029258,-63.92019040718155,-64.24782212523338,-64.55934733181172,-64.85547005002188,-65.13687889792034,-65.40424369570772,-65.65821310440147,-65.89941307121667,-66.12844590075409,-66.34588980754793,-66.5522988353679,-66.74820305282913,-66.93410895425806,-67.1105000102313,-67.27783732448131,-67.43656036356873,-67.58708773337017,-67.72981798244363,-67.86513041705103,-67.99338591631086,-68.11492773884082,-68.23008231450227,-68.33916001661159,-68.44245591134545,-68.54025048212141,-68.63281032754927,-68.72038883217358,-68.80322680970521,-68.88155311880138,-68.9555852517253,-69.02552989641664,-69.09158347265021,-69.15393264306253,-69.21275479989555,-69.26821852835037,-69.32048404746757,-69.36970362945925,-69.41602199841495,-69.45957670929181,-69.5004985080813,-69.53891167402162,-69.57493434469917,-69.60867882485338,-69.64025187966995,-69.66975501331619,-69.69728473344186,-69.7229328023374,-69.74678647541141,-69.76892872761915,-69.78943846844467,-69.80839074601093,-69.82585694086508,-69.8419049499594,-69.85659936132345,-69.87000161989843,-69.88217018498162,-69.89316067970634,-69.90302603296203,-69.91181661413823,-69.91958036105737,-69.92636290144269,-69.93220766825004,-69.9371560091758,-69.94124729063702,-69.94451899650532,-69.94700682186111,-69.94874476202159,-69.94976519708294,-69.95009897220456,-69.94977547385206,-69.94882270220417,-69.94726733991853,-69.9451348174412,-69.94244937503542,-69.93923412169593,-69.93551109110696,-69.93130129479366,-69.92662477260914,-69.92150064069224,-69.91594713702371,-69.90998166470267,-69.90362083305835,-69.89688049670657,-69.88977579265482,-69.88232117555434,-69.87453045119271,-69.8664168083157,-69.85799284886245,-69.8492706166939,-69.84026162489039,-69.83097688169023,-69.82142691513765,-69.81162179650477,-69.8015711625494,-69.7912842366668,-69.78076984899096,-69.77003645549796,-69.75909215616137,-69.74794471220716,-69.736601562513,-69.72506983919487,-69.71335638242131,-69.70146775449408,-69.68941025323157,-69.67718992468991,-69.66481257525453,-69.65228378313364,-69.63960890928331,-69.62679310779234,-69.61384133575382,-69.60075836264876,-69.58754877926609,-69.57421700618178,-69.56076730181927,-69.54720377011147,-69.53353036778448,-69.51975091128139,-69.50586908334411,-69.49188843926999,-69.47781241285945,-69.46364432206968,-69.44938737438892,-69.4350446719452,-69.4206192163625,-69.4061139133767,-69.39153157722342,-69.37687493480851,-69.36214662967238,-69.34734922575784,-69.33248521099136,-69.31755700068696,-69.30256694078112,-69.28751731090739,-69.27241032731827,-69.25724814566199,-69.2420328636213,-69.22676652342098,-69.21145111421052,-69.19608857432819,-69.18068079345218,-69.16522961464442,-69.14973683629233,-69.13420421395357,-69.11863346210836,-69.10302625582426,-69.08738423233729,-69.07170899255381,-69.056002102477,-69.04026509456148,-69.02449946899988,-69.00870669494452,-68.99288821166742,-68.97704542966177,-68.96117973168774,-68.94529247376529,-68.92938498611674,-68.91345857406151,-68.89751451886538,-68.88155407854671,-68.86557848864155,-68.84958896292977,-68.83358669412434,-68.81757285452521,-68.80154859664013,-68.78551505377347,-68.76947334058515,-68.75342455362096,-68.73736977181571,-68.72131005697072,-68.70524645420694,-68.68917999239477,-68.67311168456209,-68.65704252828135,-68.640973506037,-68.62490558557414,-68.60883972022953,-68.59277684924567,-68.57671789806913,-68.56066377863377,-68.54461538962958,-68.52857361675825,-68.5125393329758,-68.4965133987233,-68.48049666214597,-68.4644899593018,-68.44849411435975,-68.43250993978843,-68.41653823653574,-68.40057979419993,-68.38463539119256,-68.368705794894,-68.35279176180157,-68.33689403767114,-68.3210133576523,-68.30515044641757,-68.28930601828604,-68.2734807773418,-68.25767541754738,-68.2418906228526,-68.22612706729907,-68.21038541512078,-68.19466632084067,-68.17897042936387,-68.16329837606762,-68.147650786888,-68.13202827840396,-68.11643145791864,-68.10086092353811,-68.08531726424805,-68.06980105998815,-68.05431288172463,-68.0388532915209,-68.02342284260668,-68.00802207944551,-67.99265153780088,-67.97731174480111,-67.96200321900311,-67.94672647045498,-67.9314820007578,-67.91627030312647,-67.9010918624498,-67.88594715535,-67.87083665024137,-67.85576080738872,-67.84072007896508,-67.82571490910915,-67.81074573398242,-67.79581298182583,-67.78091707301647,-67.76605842012376,-67.75123742796579,-67.73645449366535,-67.72171000670593,-67.70700434898775,-67.6923378948837,-67.67771101129537,-67.66312405770901,-67.64857738625172,-67.63407134174759,-67.61960626177402,-67.60518247671814,-67.59080030983333,-67.57646007729598,-67.5621620882623,-67.54790664492536,-67.53369404257234,-67.51952456964179,-67.50539850778134,-67.49131613190532,-67.47727771025276,-67.46328350444549,-67.44933376954643,-67.4354287541181,-67.4215687002813,-67.40775384377388,-67.39398441400985,-67.38026063413852,-67.36658272110384,-67.35295088570388,-67.3393653326505,-67.32582626062914,-67.31233386235868,-67.2988883246515,-67.2854898284736,-67.27213854900485,-67.25883465569929,-67.24557831234557,-67.2323696771274,-67.21920890268403,-67.20609613617094,-67.19303151932031,-67.18001518850174,-67.16704727478282,-67.1541279039898,-67.1412571967682,-67.12843526864336,-67.11566223008106,-67.10293818654792,-67.09026323857191,-67.07763748180265,-67.06506100707172,-67.05253390045276,-67.04005624332154,-67.02762811241591,-67.01524957989552,-67.00292071340154,-66.99064157611602,-66.97841222682128,-66.96623271995895,-66.95410310568894,-66.94202342994811,-66.92999373450876,-66.9180140570369,-66.90608443115026,-66.89420488647607,-66.88237544870857,-66.87059613966619,-66.85886697734858,-66.84718797599325,-66.83555914613191,-66.82398049464658,-66.81245202482526,-66.80097373641743,-66.78954562568906,-66.77816768547736,-66.76683990524519,-66.7555622711351,-66.74433476602297,-66.7331573695713,-66.72203005828212,-66.71095280554952,-66.69992558171184,-66.68894835410327,-66.67802108710535,-66.66714374219772,-66.65631627800877,-66.64553865036564,-66.63481081234387,-66.62413271431669,-66.61350430400374,-66.60292552651948,-66.59239632442107,-66.58191663775582,-66.57148640410824,-66.56110555864655,-66.5507740341688,-66.54049176114854,-66.53025866777996,-66.52007468002259,-66.50993972164558,-66.49985371427147,-66.48981657741949,-66.47982822854839,-66.46988858309878,-66.45999755453505,-66.45015505438677,-66.4403609922896,-66.43061527602575,-66.42091781156395,-66.41126850309898,-66.40166725309064,-66.39211396230229,-66.38260852983898,-66.37315085318494,-66.36374082824076,-66.35437834935998,-66.34506330938522,-66.33579559968395,-66.32657511018357,-66.31740172940626,-66.30827534450314,-66.29919584128815,-66.29016310427131,-66.28117701669161,-66.2722374605494,-66.26334431663834,-66.25449746457679,-66.24569678283895,-66.23694214878532,-66.22823343869284,-66.21957052778458,-66.21095329025889,-66.20238159931817,-66.19385532719726,-66.18537434519124,-66.1769385236829,-66.16854773216983,-66.16020183929083,-66.15190071285225,-66.14364421985363,-66.13543222651299,-66.1272645982918,-66.11914119991941,-66.11106189541715,-66.10302654812196,-66.09503502070969,-66.08708717521795,-66.07918287306856,-66.0713219750897,-66.06350434153751,-66.05572983211745,-66.04799830600521,-66.04030962186727,-66.03266363788106,-66.0250602117548,-66.01749920074695,-66.00998046168523,-66.00250385098543,-65.99506922466975,-65.98767643838482,-65.98032534741942,-65.97301580672182,-65.96574767091674,-65.95852079432211,-65.95133503096537,-65.94419023459947,-65.93708625871868,-65.93002295657386,-65.92300018118765,-65.91601778536916,-65.9090756217285,-65.90217354269095,-65.89531140051078,-65.88848904728492,-65.88170633496622,-65.87496311537647,-65.86825924021915,-65.86159456109186,-65.85496892949861,-65.84838219686166,-65.84183421453322,-65.83532483380687,-65.8288539059287,-65.82242128210822,-65.81602681352905,-65.80967035135927,-65.80335174676168,-65.79707085090365,-65.79082751496695,-65.78462159015712,-65.77845292771279,-65.77232137891475,-65.7662267950947,-65.76016902764391,-65.75414792802165,-65.74816334776335,-65.7422151384886,-65.73630315190898,-65.73042723983565,-65.72458725418677,-65.71878304699473,-65.7130144704132,-65.70728137672398,-65.70158361834373,-65.69592104783045,-65.69029351788983,-65.68470088138142,-65.67914299132467,-65.67361970090478,-65.6681308634784,-65.66267633257912,-65.65725596192297,-65.65186960541354,-65.64651711714717,-65.64119835141788,-65.63591316272218,-65.63066140576373,-65.62544293545795,-65.6202576069364,-65.61510527555109,-65.60998579687859,-65.60489902672415,-65.59984482112561,-65.59482303635717,-65.5898335289331,-65.58487615561135,-65.57995077339704,-65.57505723954576,-65.57019541156686,-65.56536514722667,-65.56056630455151,-65.55579874183069,-65.55106231761931,-65.5463568907412,-65.54168232029141,-65.53703846563903,-65.53242518642952,-65.52784234258728,-65.52328979431795,-65.51876740211071,-65.51427502674049,-65.50981252927006,-65.50537977105213,-65.50097661373131,-65.49660291924604,-65.49225854983045,-65.48794336801612,-65.48365723663382,-65.47940001881517,-65.47517157799423,-65.47097177790909,-65.46680048260328,-65.46265755642729,-65.4585428640399,-65.45445627040951,-65.45039764081547,-65.44636684084924,-65.44236373641564,-65.43838819373399,-65.43444007933915,-65.43051926008266,-65.42662560313367,-65.42275897598,-65.41891924642904,-65.41510628260863,-65.41131995296797,-65.40756012627844,-65.4038266716344,-65.40011945845396,-65.3964383564797,-65.39278323577943,-65.3891539667468,-65.38555042010204,-65.3819724668925,-65.37841997849334,-65.37489282660802,-65.37139088326894,-65.36791402083793,-65.36446211200678,-65.36103502979769,-65.35763264756385,-65.35425483898976,-65.35090147809177,-65.34757243921848,-65.34426759705111,-65.34098682660394,-65.33773000322464,-65.33449700259466,-65.3312877007296,-65.32810197397953,-65.32493969902927,-65.3218007528988,-65.31868501294345,-65.31559235685432,-65.3125226626585,-65.30947580871933,-65.3064516737367,-65.30345013674733,-65.300471077125,-65.29751437458079,-65.29457990916335,-65.29166756125915,-65.28877721159267,-65.28590874122666,-65.28306203156237,-65.28023696433974,-65.27743342163764,-65.27465128587411,-65.27189043980654,-65.26915076653187,-65.2664321494868,-65.26373447244808,-65.26105761953256,-65.25840147519757,-65.25576592424098,-65.25315085180146,-65.25055614335872,-65.24798168473365,-65.24542736208853,-65.24289306192729,-65.24037867109564,-65.23788407678133,-65.23540916651432,-65.23295382816698,-65.23051794995436,-65.22810142043431,-65.22570412850777,-65.22332596341892,-65.22096681475539,-65.21862657244854,-65.21630512677363,-65.21400236835004,-65.21171818814146,-65.2094524774562,-65.20720512794729,-65.2049760316128,-65.20276508079606,-65.2005721681858,-65.19839718681652,-65.1962400300686,-65.19410059166857,-65.19197876568941,-65.1898744465507,-65.1877875290189,-65.18571790820761,-65.18366547957774,-65.18163013893786,-65.17961178244437,-65.17761030660175,-65.17562560826288,-65.17365758462921,-65.17170613325106,-65.16977115202786,-65.1678525392084,-65.16595019339108,-65.1640640135242,-65.16219389890618,-65.16033974918585,-65.15850146436269,-65.15667894478707,-65.15487209116058]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1211\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1212\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1207\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_width\":2,\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1208\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.1,\"line_width\":2,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1209\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.2,\"line_width\":2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1219\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1213\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1214\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1215\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.99859895156952,-64.99794940680333,-64.9973300246924,-64.99673830824379,-64.99617201809848,-64.99562914432974,-64.99510788141654,-64.9946066060273,-64.99412385729227,-64.99365831927994,-64.99320880542628,-64.99277424469419,-64.99235366926698,-64.99194620360169,-64.99155105468868,-64.99116750338113,-64.99079489667402,-64.99043264082597,-64.99008019522934,-64.98973706694485,-64.98940280582678,-64.98907700017278,-64.98875927284017,-64.98844927777704,-64.9881466969224,-64.98785123743474,-64.98756262921283,-64.98728062267692,-64.98700498678193,-64.98673550723724,-64.98647198491092,-64.98621423439829,-64.98596208273723,-64.9857153682545,-64.98547393952902,-64.98523765445972,-64.98500637942695,-64.98477998853737,-64.98455836294382,-64.98434139023209,-64.98412896386783,-64.98392098269719,-64.98371735049578,-64.983517975561,-64.98332277034311,-64.98313165111144,-64.98294453765189,-64.98276135299274,-64.98258202315591,-64.9824064769311,-64.98223464567062,-64.98206646310275,-64.9819018651621,-64.9817407898349,-64.98158317701817,-64.9814289683912,-64.98127810729832,-64.98113053864175,-64.98098620878365,-64.98084506545659,-64.98070705768147,-64.9805721356924,-64.98044025086774,-64.98031135566687,-64.98018540357205,-64.98006234903502,-64.97994214742788,-64.97982475499778,-64.97971012882525,-64.97959822678573,-64.97948900751403,-64.97938243037156,-64.97927845541591,-64.9791770433728,-64.97907815561007,-64.97898175411346,-64.9788878014643,-64.97879626081858,-64.9787070958877,-64.97862027092032,-64.9785357506856,-64.97845350045755,-64.97837348600032,-64.97829567355454,-64.9782200298245,-64.97814652196608,-64.97807511757554,-64.9780057846789,-64.97793849172193,-64.97787320756085,-64.97780990145338,-64.97774854305051,-64.97768910238845,-64.9776315498813,-64.97757585631382,-64.97752199283481,-64.97746993095068,-64.97741964251931,-64.97737109974432,-64.97732427516951,-64.97727914167352,-64.97723567246483,-64.97719384107685,-64.9771536213633,-64.97711498749368,-64.977077913949,-64.97704237551761,-64.9770083472912,-64.97697580466092,-64.97694472331361,-64.97691507922819,-64.97688684867218,-64.97686000819819,-64.97683453464067,-64.97681040511269,-64.97678759700268,-64.97676608797151,-64.97674585594939,-64.97672687913294,-64.97670913598238,-64.97669260521867,-64.97667726582083,-64.97666309702313,-64.9766500783126,-64.97663818942627,-64.97662741034874,-64.97661772130961,-64.97660910278103,-64.97660153547525,-64.97659500034226,-64.97658947856735,-64.97658495156888,-64.97658140099591,-64.97657880872596,-64.97657715686276,-64.97657642773403,-64.9765766038893,-64.97657766809775,-64.97657960334604,-64.97658239283625,-64.97658601998371,-64.976590468415,-64.97659572196584,-64.97660176467907,-64.97660858080268,-64.9766161547877,-64.9766244712864,-64.97663351515013,-64.97664327142752,-64.97665372536251,-64.97666486239241,-64.97667666814606,-64.97668912844189,-64.97670222928612,-64.97671595687085,-64.97673029757227,-64.97674523794883,-64.97676076473941,-64.97677686486156,-64.97679352540973,-64.97681073365345,-64.97682847703564,-64.97684674317082,-64.97686551984347,-64.97688479500621,-64.97690455677817,-64.97692479344329,-64.97694549344864,-64.97696664540278,-64.97698823807407,-64.97701026038908,-64.97703270143091,-64.97705555043765,-64.97707879680073,-64.97710243006331,-64.97712643991879,-64.97715081620915,-64.97717554892344,-64.97720062819626,-64.97722604430616,-64.97725178767422,-64.97727784886246,-64.97730421857236,-64.97733088764339,-64.97735784705155,-64.97738508790788,-64.97741260145702,-64.97744037907576,-64.97746841227163,-64.97749669268147,-64.97752521207002,-64.97755396232851,-64.97758293547331,-64.97761212364452,-64.97764151910464,-64.97767111423715,-64.97770090154528,-64.97773087365056,-64.97776102329156,-64.93574457233484,-64.85603107134953,-64.7425561849794,-64.59888243382579,-64.42823515001812,-64.2335341433277,-64.01742158735108,-63.78228660553825,-63.53028698675557,-63.263368403368204,-62.983281449297074,-62.69159676504926,-62.38971847282316,-62.07889610755887,-61.760235198634824,-61.43470663089454,-61.10315489183886,-60.76630529320368,-60.424770238920985,-60.07905459690366,-59.729560218573944,-59.37658963702781,-59.02034896170885,-58.66094997400927,-58.29841141388766,-57.93265943194693,-57.56352716396737,-57.190753365087225,-56.813980018014625,-56.432748803052206,-56.04649628633946,-55.654547645346994,-55.25610870574274,-54.85025600933105,-54.4359245663318,-54.01189286360922,-53.57676459946282,-53.12894648996217,-52.66662133474284,-52.187715332933706,-51.731668972552356,-51.29149036637782,-50.860539913925415,-50.4324556134965,-50.00107263438687,-49.56033494549257,-49.104196865813094,-48.62651222149463,-48.12090837031101,-47.58064168700881,-46.99843018515454,-46.366257774701616,-45.675143218399896,-44.914865179471356,-44.07363293631904,-43.13769060078945,-42.09084150449501,-40.9138798070514,-39.58392024856878,-38.07362787485458,-36.35037388485424,-34.37539250391297,-32.103105179148066,-29.480940653131384,-26.45025164966562,-22.949350943529865,-18.920254305653504,-14.321220458573212,-9.14689670437361,-3.455288511886385,2.6056964294503313,8.788153079416178,14.769246724340578,20.21596432384039,24.866211680914404,28.585931546920133,31.376184552018287,33.33696849987077,34.61537132893462,35.36258689586046,35.70942917647042,35.758059372414074,35.58337940749597,35.23836211173165,34.75991586860555,34.173821879399426,33.49840091121786,32.747051237216276,31.929933894795134,31.055065570406178,30.129019006538627,29.157370225139104,28.144984632346116,27.09620110514066,26.014951452175527,24.90483879143735,23.769189690186472,22.611089480083635,21.433406760745424,20.238810963302814,19.02978548311428,17.808638014519932,16.577509150653036,15.338379936807073,14.093078817983017,12.843288255954475,11.590551181173613,10.336277371493665,9.081749801024001,7.8281309711542475,6.57646921519072,5.327704955732241,4.082676886365044,2.8421280450694546,1.6067117444893815,0.37699732316870205,-0.8465243187575682,-2.0634354364984775,-3.2733864480407213,-4.476091271007403,-5.67132302958227,-6.858910174086132,-8.038733058082906,-9.210721020447771,-10.374850022004335,-11.531140888406826,-12.679658211814393,-13.820509963696313,-14.95384786919075,-16.07986858897131,-17.19881574788528,-18.310982839352405,-19.416717021442707,-20.516423803633867,-21.61057260323371,-22.699703127111906,-23.784432508347336,-24.86546309869277,-25.943590786653317,-27.01971367721496,-28.094840931946266,-29.170101525165048,-30.246752620544502,-31.326187207331532,-32.40994055080164,-33.499694898262945,-34.59728173012739,-35.704680642969635,-36.824013685207554,-37.95753362286099,-39.107604182351025,-40.276669794860766,-41.46721175952998,-42.68168707984854,-43.92244557342514,-45.191620329938814,-46.49098639737174,-47.82178302564809,-49.18449634060599,-50.57860255443983,-52.00227743352294,-53.452086383977345,-54.92268146198746,-56.406546268651226,-57.89384486127425,-59.372442074597615,-60.82816324365488,-62.24534348254105,-63.60767496224928,-64.89929695493396,-66.1060012713213,-67.21636951148272,-68.22264486557155,-69.12118438387701,-69.91242847766351,-70.60043162513509,-71.1920838771391,-71.69619141379782,-72.12257342140288,-72.48128804575325,-72.7820448298543,-73.03381300554926,-73.2446030813561,-73.42138389320351,-73.57009462214545,-73.69571604971397,-73.80237319080464,-73.89344960089198,-73.97170065810323,-74.03935848164521,-74.09822491159237,-74.14975142033704,-74.19510628764236,-74.23523015180223,-74.27088138819563,-74.3026728373665,-74.33110132617298,-74.35657127398377,-74.3794134980082,-74.39990015427722,-74.4182565873684,-74.43467071866982,-74.44930048124179,-74.4622797081557,-74.47372279839887,-74.48372841746132,-74.49238243599783,-74.49976026713412,-74.50592872900741,-74.51094753226145,-74.51487047102172,-74.51774637918379,-74.51961990071833,-74.52053211237329,-74.52052102904102,-74.5196220156808,-74.51786812467361,-74.51529037354197,-74.51191797486207,-74.50777852775028,-74.50289817837621,-74.49730175543235,-74.49101288528627,-74.4840540905896,-74.47644687536288,-74.46821179897718,-74.45936854097728,-74.44993595831315,-74.43993213624424,-74.42937443394082,-74.41827952561357,-74.40666343784842,-74.39454158370019,-74.38192879399838,-74.36883934623874,-74.3552869913692,-74.34128497872639,-74.3268460793364,-74.31198260775884,-74.29670644262505,-74.2810290459984,-74.26496148166524,-74.24851443245026,-74.23169821663629,-74.21452280355861,-74.19699782843482,-74.17913260648363,-74.16093614638015,-74.14241716308977,-74.12358409011856,-74.10444509121395,-74.0850080715468,-74.06528068840268,-74.04527036140824,-74.02498428231608,-74.00442942437017,-73.98361255127182,-73.96254022576514,-73.94121881785962,-73.91965451270609,-73.89785331814174,-73.87582107191866,-73.8535634486296,-73.83108596634399,-73.8083939929666,-73.78549275233034,-73.76238733003444,-73.7390826790385,-73.7155836250225,-73.69189487152231,-73.66802100484983,-73.64396649880665,-73.61973571919931,-73.59533292816442,-73.5707622883111,-73.54602786668809,-73.52113363858264,-73.49608349115772,-73.47088122693421,-73.44553056712397,-73.42003515482001,-73.39439855804923,-73.36862427269322,-73.34271572528253,-73.31667627566915,-73.29050921958233,-73.26421779107216,-73.23780516484547,-73.21127445849841,-73.1846287346496,-73.15787100297814,-73.13100422216989,-73.10403130177616,-73.07695510398786,-73.04977844532881,-73.02250409827144,-72.99513479277776,-72.96767321776902,-72.94012202252661,-72.91248381802716,-72.88476117821455,-72.8569566412113,-72.82907271047195,-72.8011118558807,-72.77307651479582,-72.74496909304271,-72.71679196585816,-72.68854747878756,-72.66023794853706,-72.63186566378292,-72.60343288593933,-72.57494184988695,-72.5463947646637,-72.5177938141193,-72.48914115753539,-72.46043893021253,-72.43168924402575,-72.40289418794978,-72.37405582855565,-72.34517621047965,-72.3162573568661,-72.28730126978515,-72.25830993062654,-72.2292853004708,-72.20022932043867,-72.17114391201983,-72.14203097738215,-72.11289239966212,-72.08373004323755,-72.0545457539835,-72.02534135951207,-71.99611866939702,-71.96687947538413,-71.93762555158773,-71.90835865467446,-71.87908052403476,-71.84979288194289,-71.82049743370595,-71.79119586780284,-71.76188985601334,-71.73258105353831,-71.70327109911123,-71.67396161510177,-71.64465420761192,-71.61535046656506,-71.5860519657885,-71.55676026308996,-71.52747690032838,-71.49820340347952,-71.46894128269663,-71.4396920323667,-71.41045713116259,-71.38123804209144,-71.35203621253955,-71.32285307431418,-71.2936900436826,-71.2645485214085,-71.23542989278617,-71.20633552767278,-71.17726678051876,-71.1482249903968,-71.11921148102948,-71.0902275608159,-71.06127452285737,-71.0323536449825,-71.00346618977177,-70.97461340458173,-70.94579652156918,-70.9170167577152,-70.88827531484947,-70.85957337967474,-70.83091212379189,-70.8022927037253,-70.77371626094912,-70.74518392191409,-70.7166967980754,-70.68825598592136,-70.65986256700316,-70.63151760796579,-70.60322216058013,-70.57497726177627,-70.54678393367819,-70.51864318363982,-70.49055600428257,-70.46252337353421,-70.4345462546695,-70.40662559635217,-70.3787623326786,-70.35095738322313,-70.32321165308498,-70.29552603293689,-70.26790139907538,-70.2403386134728,-70.21283852383104,-70.18540196363696,-70.15802975221958,-70.13072269480892,-70.10348158259674,-70.07630719279874,-70.04920028871868,-70.02216161981417,-69.99519192176406,-69.96829191653758,-69.94146231246516,-69.91470380431083,-69.88801707334626,-69.86140278742648,-69.83486160106705,-69.80839415552288,-69.78200107886852,-69.75568298608002,-69.72944047911815,-69.70327414701319,-69.677184565951,-69.65117229936052,-69.62523789800271,-69.59938190006058,-69.57360483123068,-69.54790720481576,-69.52228952181862,-69.49675227103712,-69.47129592916038,-69.44592096086593,-69.42062781891808,-69.39541694426713,-69.37028876614968,-69.34524370218985,-69.32028215850127,-69.29540452979009,-69.27061119945868,-69.24590253971019,-69.22127891165371,-69.19674066541032,-69.17228814021958,-69.14792166454677,-69.12364155619066,-69.0994481223918,-69.07534165994133,-69.05132245529018,-69.0273907846588,-69.0035469141472,-68.97979109984522,-68.95612358794337,-68.93254461484366,-68.90905440727084,-68.88565318238372,-68.86234114788668,-68.83911850214137,-68.81598543427837,-68.79294212430901,-68.7699887432371,-68.74712545317077,-68.72435240743413,-68.70166975067893,-68.67907761899612,-68.65657614002714,-68.63416543307522,-68.6118456092163,-68.58961677140985,-68.56747901460929,-68.54543242587228,-68.52347708447054,-68.50161306199944,-68.47984042248707,-68.45815922250316,-68.43656951126727,-68.41507133075677,-68.39366471581428,-68.37234969425455,-68.3511262869709,-68.3299945080411,-68.3089543648327,-68.28800585810778,-68.26714898212705,-68.24638372475343,-68.22571006755489,-68.20512798590674,-68.18463744909317,-68.16423842040813,-68.14393085725548,-68.12371471124852,-68.10358992830865,-68.08355644876336,-68.06361420744349,-68.04376313377962,-68.02400315189776,-68.00433418071422,-67.98475613402964,-67.96526892062222,-67.94587244434018,-67.92656660419328,-67.90735129444353,-67.8882264046951,-67.8691918199833,-67.8502474208627,-67.83139308349442,-67.81262867973246,-67.79395407720921,-67.77536913942002,-67.7568737258069,-67.73846769184127,-67.72015088910588,-67.70192316537575,-67.68378436469818,-67.66573432747197,-67.6477728905255,-67.62989988719417,-67.61211514739662,-67.59441849771028,-67.5768097614458,-67.55928875872071,-67.54185530653204,-67.52450921882809,-67.50725030657921,-67.49007837784772,-67.47299323785687,-67.45599468905891,-67.43908253120219,-67.4222565613974,-67.40551657418288,-67.388862361589,-67.37229371320164,-67.3558104162248,-67.33941225554226,-67.32309901377837,-67.30687047135797,-67.29072640656534,-67.2746665956024,-67.2586908126459,-67.2427988299038,-67.22699041767083,-67.21126534438304,-67.19562337667162,-67.18006427941589,-67.1645878157953,-67.14919374734076,-67.13388183398497,-67.11865183411209,-67.10350350460642,-67.08843660090044,-67.0734508770219,-67.05854608564019,-67.04372197811186,-67.02897830452544,-67.01431481374537,-66.99973125345528,-66.98522737020035,-66.9708029094291,-66.95645761553426,-66.94219123189303,-66.92800350090653,-66.91389416403848,-66.89986296185334,-66.88590963405355,-66.87203391951613,-66.85823555632862,-66.84451428182435,-66.83086983261688,-66.81730194463401,-66.80381035315088,-66.79039479282261,-66.77705499771618,-66.7637907013417,-66.75060163668311,-66.73748753622813,-66.72444813199769,-66.71148315557475,-66.69859233813253,-66.68577541046206,-66.67303210299926,-66.6603621458514,-66.64776526882297,-66.63524120144103,-66.62278967298002,-66.61041041248596,-66.5981031488002,-66.5858676105826,-66.57370352633419,-66.56161062441933,-66.5495886330874,-66.53763728049391,-66.52575629472125,-66.5139454037988,-66.50220433572274,-66.49053281847527,-66.47893058004344,-66.46739734843752,-66.45593285170887,-66.4445368179675,-66.43320897539911,-66.42194905228169,-66.4107567770018,-66.3996318780704,-66.38857408413824,-66.37758312401097,-66.36665872666374,-66.35580062125551,-66.34500853714297,-66.33428220389408,-66.32362135130126,-66.31302570939427,-66.30249500845271,-66.29202897901817,-66.2816273519061,-66.2712898582173,-66.2610162293492,-66.25080619700664,-66.24065949321256,-66.23057585031826,-66.2205550010134,-66.2105966783357,-66.20070061568047,-66.19086654680966,-66.1810942058608,-66.17138332735568,-66.16173364620869,-66.15214489773494,-66.1426168176582,-66.13314914211847,-66.12374160767946,-66.11439395133574,-66.1051059105197,-66.09587722310829,-66.08670762742956,-66.07759686226898,-66.06854466687551,-66.0595507809676,-66.05061494473883,-66.04173689886349,-66.03291638450193,-66.0241531433057,-66.01544691742257,-66.00679744950133,-65.99820448269651,-65.98966776067277,-65.98118702760934,-65.97276202820412,-65.96439250767777,-65.9560782117776,-65.94781888678125,-65.93961427950036,-65.93146413728405,-65.92336820802221,-65.91532624014876,-65.90733798264473,-65.89940318504127,-65.89152159742241,-65.88369297042796,-65.87591705525601,-65.86819360366555,-65.86052236797885,-65.85290310108381,-65.84533555643623,-65.83781948806187,-65.8303546505586,-65.8229407990983,-65.81557768942875,-65.80826507787546,-65.80100272134337,-65.79379037731847,-65.78662780386946,-65.77951475964916,-65.77245100389597,-65.76543629643527,-65.75847039768071,-65.75155306863545,-65.74468407089333,-65.73786316664005,-65.73109011865421,-65.72436469030832,-65.71768664556984,-65.71105574900206,-65.70447176576499,-65.69793446161621,-65.69144360291166,-65.68499895660642,-65.6786002902554,-65.67224737201407,-65.66593997063906,-65.6596778554888,-65.65346079652413,-65.64728856430885,-65.64116093001023,-65.63507766539952,-65.62903854285246,-65.6230433353497,-65.61709181647727,-65.61118376042695,-65.60531894199673,-65.59949713659111,-65.59371812022152,-65.58798166950666,-65.5822875616728,-65.57663557455412,-65.571025486593,-65.56545707684035,-65.55993012495584,-65.55444441120824,-65.54899971647562,-65.54359582224565,-65.53823251061586,-65.53290956429385,-65.52762676659756,-65.52238390145551,-65.51718075340703,-65.51201710760249,-65.50689274980353,-65.50180746638327,-65.4967610443266,-65.49175327123035,-65.48678393530354,-65.4818528253676,-65.47695973085662,-65.47210444181759,-65.46728674891061,-65.46250644340913,-65.45776331720022,-65.45305716278479,-65.44838777327786,-65.4437549424088,-65.43915846452161,-65.43459813457515,-65.43007374814346,-65.42558510141598,-65.42113199119787,-65.41671421491029,-65.41233157059067,-65.40798385689304,-65.40367087308834,-65.3993924190647,-65.39514829532776,-65.39093830300105,-65.38676224382625,-65.3826199201636,-65.37851113499218,-65.3744356919103,-65.37039339513589,-65.36638404950678,-65.36240746048114,-65.35846343413787,-65.35455177717695,-65.35067229691985,-65.34682480130995,-65.34300909891289,-65.33922499891705,-65.33547231113393,-65.3317508459986,-65.32806041457012,-65.32440082853196,-65.3207719001925,-65.31717344248541,-65.31360526897015,-65.31006719383242,-65.30655903188463,-65.30308059856635,-65.2996317099448,-65.29621218271534,-65.29282183420189,-65.28946048235753,-65.28612794576487,-65.28282404363664,-65.27954859581611,-65.27630142277762,-65.27308234562712,-65.26989118610257,-65.26672776657458,-65.26359191004678,-65.26048344015646,-65.25740218117497,-65.25434795800828,-65.25132059619749,-65.24831992191932,-65.24534576198664,-65.24239794384897,-65.23947629559298,-65.23658064594301,-65.23371082426156,-65.23086666054982,-65.22804798544813,-65.2252546302365,-65.22248642683513,-65.21974320780485,-65.21702480634765,-65.21433105630713,-65.21166179216901,-65.20901684906158,-65.20639606275621,-65.20379926966774,-65.20122630685502,-65.1986770120213,-65.19615122351475,-65.19364878032879,-65.19116952210261,-65.18871328912158,-65.18627992231764,-65.18386926326971,-65.18148115420415,-65.17911543799507,-65.17677195816474,-65.17445055888399]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1220\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1221\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1216\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1217\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1218\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1229\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1223\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1224\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1225\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99997874916157,-64.99993844542642,-64.99988107768425,-64.99980844652296,-64.99972218281401,-64.99962376436807,-64.9995145308698,-64.99939569727732,-64.99926836585125,-64.99913353695976,-64.99899211879017,-64.99884493608293,-64.99869273799125,-64.99853620515829,-64.99837595609382,-64.99821255292329,-64.99804650657433,-64.99787828145885,-64.99770829970237,-64.99753694496685,-64.99736456590843,-64.99719147930682,-64.99701797289947,-64.99684430794994,-64.99667072157698,-64.99649742886784,-64.99632462479723,-64.99615248597061,-64.99598117220926,-64.99581082799196,-64.99564158376748,-64.99547355714982,-64.99530685400761,-64.99514156945739,-64.99497778877,-64.994815588198,-64.99465503573143,-64.9944961917886,-64.99433910984773,-64.99418383702482,-64.99403041460269,-64.99387887851545,-64.99372925979235,-64.99358158496477,-64.99343587643945,-64.99329215284085,-64.99315042932555,-64.99301071787083,-64.99287302753986,-64.99273736472541,-64.9926037333739,-64.99247213519136,-64.99234256983308,-64.99221503507799,-64.99208952698925,-64.99196604006214,-64.9918445673602,-64.99172510064076,-64.99160763047051,-64.9914921463321,-64.99137863672239,-64.99126708924301,-64.99115749068393,-64.99104982710053,-64.99094408388461,-64.99084024583009,-64.99073829719339,-64.99063822174936,-64.99054000284278,-64.99044362343584,-64.9903490661521,-64.99025631331698,-64.99016534699503,-64.9900761490245,-64.98998870104913,-64.98990298454746,-64.98981898085992,-64.98973667121383,-64.9896560367464,-64.98957705852588,-64.98949971757125,-64.98942399487014,-64.98934987139546,-64.9892773281207,-64.98920634603395,-64.98913690615088,-64.98906898952656,-64.98900257726648,-64.98893765053649,-64.98887419057203,-64.98881217868662,-64.98875159627947,-64.98869242484263,-64.9886346459674,-64.98857824135025,-64.98852319279817,-64.98846948223351,-64.98841709169851,-64.9883660033592,-64.98831619950913,-64.98826766257258,-64.98822037510752,-64.98817431980825,-64.98812947950776,-64.9880858371798,-64.98804337594072,-64.98800207905113,-64.98796192991725,-64.98792291209219,-64.98788500927692,-64.98784820532121,-64.9878124842243,-64.98777783013549,-64.98774422735457,-64.98771166033217,-64.98768011366994,-64.98764957212067,-64.98762002058831,-64.98759144412784,-64.98756382794518,-64.98753715739689,-64.98751141798986,-64.987486595381,-64.98746267537672,-64.9874396439325,-64.98741748715236,-64.9873961912882,-64.98737574273923,-64.9873561280513,-64.98733733391619,-64.98731934717081,-64.98730215479654,-64.98728574391833,-64.98727010180396,-64.98725521586312,-64.98724107364659,-64.98722766284536,-64.98721497128967,-64.98720298694816,-64.98719169792689,-64.98718109246839,-64.98717115895073,-64.98716188588654,-64.987153261922,-64.98714527583591,-64.98713791653866,-64.98713117307122,-64.98712503460418,-64.9871194904367,-64.9871145299955,-64.98711014283387,-64.98710631863064,-64.98710304718912,-64.98710031843616,-64.98709812242105,-64.98709644931454,-64.98709528940779,-64.98709463311138,-64.98709447095429,-64.98709479358283,-64.98709559175967,-64.9870968563628,-64.98709857838455,-64.98710074893054,-64.98710335921871,-64.98710640057824,-64.98710986444867,-64.98711374237878,-64.98711802602568,-64.98712270715377,-64.98712777763379,-64.9871332294418,-64.98713905465823,-64.9871452454669,-64.98715179415404,-64.98715869310735,-64.98716593481497,-64.98717351186464,-64.98718141694266,-64.98718964283297,-64.98719818241622,-64.98720702866882,-64.98721617466202,-64.98722561356098,-64.98723533862385,-64.98724534320085,-64.98725562073341,-64.98726616475317,-64.98727696888116,-64.98728802682693,-64.98729933238756,-64.98731087944688,-64.98732266197452,-64.9873346740251,-64.98734690973734,-64.9873593633332,-64.98737202911701,-64.98738490147467,-64.98739797487276,-64.98741124385774,-63.856073677385005,-62.78261482162386,-61.7629545471178,-60.79333532362923,-59.87029507172453,-58.990642396338366,-58.1514339637036,-57.34995380992661,-56.583694393468484,-55.85033922481919,-55.147746924916554,-54.47393657966243,-53.827074271548774,-53.205460681238975,-52.607519662229905,-52.03178770068421,-51.47690418036222,-50.94160237945546,-50.42470113215015,-49.92509709302435,-49.44175754697692,-48.973713711350975,-48.52005448028291,-48.07992056409946,-47.65249897880376,-47.237017842329564,-46.832741435277285,-46.43896548423968,-46.05501262552325,-45.68022800599927,-45.3139749758752,-44.95563082523262,-44.6045825120608,-44.26022232400922,-43.92194340890346,-43.58913509985845,-43.26117794911526,-42.937438369928024,-42.6172627671713,-42.299971013840704,-43.11619314151757,-43.87593884740354,-44.58248804220521,-45.238757850687854,-45.84732775882958,-46.41046080852388,-46.93012075221825,-47.407985016065865,-47.84545324722229,-48.24365113211787,-48.60342906132001,-48.92535507651288,-49.2097013600223,-49.45642331212673,-49.66513000393923,-49.83504449845964,-49.96495221826577,-50.053135252422074,-50.097290338923685,-50.0944284335955,-50.04075466095261,-49.931529721889994,-49.760918693957116,-49.52184256079368,-49.205864757088385,-48.80317354427807,-48.3027647433452,-47.69298560027448,-46.962645489644515,-46.10286509066524,-45.1096121320175,-43.98640068282933,-42.74610536225663,-41.41076397068106,-40.00899222736258,-38.571846921023116,-37.128699905672015,-35.70440180220883,-34.31813006035077,-32.983569587052514,-31.70980791107555,-30.50242735206401,-29.36449782703708,-28.2973591594238,-27.301188291783017,-26.375390281475052,-25.51886003645291,-24.730155057247337,-24.007609141047986,-23.349407710361806,-22.753638416788377,-22.2183258241057,-21.741455783329986,-21.32099306570955,-20.954894523893156,-20.64111923438025,-20.377636557943895,-20.162432726465916,-19.99351635438805,-19.868923137283097,-19.786719911865724,-19.745008194190667,-19.741927275130724,-19.77565692765477,-19.844419764491526,-19.946483274567544,-20.08016156020701,-20.243816793190184,-20.43586040552274,-20.654754029567986,-20.89901020166766,-21.167192843240972,-21.457917533448434,-21.76985158772061,-22.10171395672143,-22.452274960601585,-22.820355873685997,-23.204828375030825,-23.604613880582107,-24.018682772982384,-24.44605354542067,-24.88579187630441,-25.33700965196961,-25.7988639551286,-26.270556037281548,-26.751330293873647,-27.240473261537062,-27.73731265727118,-28.241216479852074,-28.751592194038178,-29.267886018208667,-29.789582335825127,-30.31620325049621,-30.8473083033407,-31.382494369725926,-31.92139575024147,-32.46368446789097,-33.009070779917735,-33.55730390838186,-34.10817298853644,-34.661508228150886,-35.21718226406558,-35.77511169425295,-36.335258754143084,-36.89763309446463,-37.46229360360492,-38.02935019951563,-38.59896549317854,-39.17135619598397,-39.74679410514187,-40.32560645231892,-40.908175338919676,-41.494935904987024,-42.086372786718016,-42.68301431116255,-43.28542376037264,-43.89418692140423,-44.50989504215653,-45.13312226740715,-45.764396681824834,-46.40416430242698,-47.0527458226582,-47.710286698813114,-48.37670234943675,-49.051621804130505,-49.734334953672516,-50.42375028987203,-51.11837114009802,-51.81629822491563,-52.515264316976875,-53.21270270467371,-53.90584564409439,-54.59184335207374,-55.267890039282314,-55.93134233089778,-56.57981750306313,-57.21126346538707,-57.82399782533403,-58.41671816334939,-58.98848886891851,-59.53871130070108,-60.06708395089005,-60.573558271139255,-61.058294397289444,-61.52161958687485,-61.96399097689176,-62.38596335977645,-62.788162055667726,-63.17126057929307,-63.53596259884633,-63.88298760525883,-64.21305970782146,-64.52689901302874,-64.82521510533583,-65.10870221706612,-65.37803574170111,-65.63386980588528,-65.87683566884529,-66.10754076318615,-66.32656822862965,-66.53447682102677,-66.73180110386716,-66.91905184947375,-67.09671659298064,-67.26526029480686,-67.42512607730043,-67.57673600907037,-67.72049191668268,-67.85677620822248,-67.98595269699888,-68.1083674166152,-68.22434942092406,-68.33421156417141,-68.43825125801914,-68.53675120320719,-68.62998009444199,-68.7181932977313,-68.80163349986886,-68.88053133013784,-68.95510595457591,-69.0255656433466,-69.09210831190842,-69.1549220367759,-69.21418554673606,-69.27006869042725,-69.32273288121043,-69.37233152027119,-69.41901039888694,-69.46290808078157,-69.50415626547087,-69.54288013347859,-69.57919867427626,-69.61322499777064,-69.64506663013243,-69.6748257947285,-69.70259967888852,-69.72848068720552,-69.75255668203908,-69.77491121185925,-69.79562372804003,-69.81476979068282,-69.83242126402187,-69.84864650193795,-69.86351052408008,-69.87707518307134,-69.88939932325052,-69.90053893137943,-69.91054727972407,-69.91947506189707,-69.9273705218299,-69.93427957622401,-69.9402459308132,-69.94531119075178,-69.94951496542784,-69.95289496798524,-69.9554871098238,-69.95732559033297,-69.95844298210183,-69.95887031183538,-69.95863713719547,-69.9577716197736,-69.95630059439222,-69.95424963492098,-69.95164311678504,-69.94850427633314,-69.94485526722507,-69.94071721398939,-69.93611026289516,-69.93105363027345,-69.92556564841806,-69.91966380918772,-69.9133648054263,-69.9066845703111,-69.89963831473406,-69.89224056281519,-69.88450518564247,-69.87644543332762,-69.86807396546277,-69.85940288005843,-69.85044374103931,-69.84120760437054,-69.83170504288304,-69.8219461698636,-69.81194066147147,-69.80169777804058,-69.79122638432301,-69.78053496872703,-69.76963166159979,-69.75852425260271,-69.74722020722481,-69.73572668247706,-69.72405054180868,-69.71219836928422,-69.7001764830583,-69.68799094818296,-69.67564758878085,-69.66315199961595,-69.65050955709161,-69.63772542970449,-69.62480458798132,-69.61175181392431,-69.59857170998943,-69.5852687076207,-69.57184707536268,-69.55831092657183,-69.54466422674668,-69.53091080049559,-69.5170543381602,-69.50309840211125,-69.48904643273326,-69.47490175411319,-69.46066757944783,-69.44634701618367,-69.43194307090243,-69.41745865396493,-69.4028965839249,-69.38825959172438,-69.37355032468113,-69.35877135027854,-69.34392515976754,-69.32901417158983,-69.31404073463133,-69.29900713131384,-69.28391558053325,-69.26876824045154,-69.25356721114987,-69.23831453714962,-69.22301220980766,-69.2076621695923,-69.19226630824551,-69.17682647083717,-69.1613444577166,-69.14582202636633,-69.13026089316308,-69.11466273505033,-69.09902919112696,-69.08336186415602,-69.06766232199757,-69.05193209896939,-69.03617269713894,-69.02038558755021,-69.00457221138849,-68.98873398108623,-68.97287228137276,-68.95698847027089,-68.94108388004277,-68.92515981808776,-68.90921756779449,-68.89325838934953,-68.87728352050483,-68.86129417730594,-68.84529155478295,-68.82927682760618,-68.81325115070818,-68.79721565987393,-68.78117147230067,-68.76511968712913,-68.7490613859474,-68.73299763326895,-68.71692947698607,-68.70085794880008,-68.6847840646294,-68.66870882499671,-68.65263321539626,-68.63655820664232,-68.62048475519987,-68.60441380349835,-68.58834628022943,-68.57228310062965,-68.55622516674872,-68.54017336770426,-68.52412857992373,-68.50809166737419,-68.49206348178065,-68.47604486283358,-68.46003663838616,-68.44403962464192,-68.42805462633324,-68.41208243689125,-68.39612383860772,-68.38017960278916,-68.36425048990388,-68.34833724972225,-68.33244062145054,-68.3165613338589,-68.30070010540356,-68.28485764434399,-68.26903464885487,-68.25323180713363,-68.23744979750356,-68.22168928851288,-68.20595093903003,-68.19023539833546,-68.17454330621001,-68.15887529302037,-68.14323197980158,-68.12761397833692,-68.11202189123533,-68.09645631200651,-68.08091782513402,-68.06540700614634,-68.04992442168617,-68.03447062957808,-68.01904617889464,-68.00365161002124,-67.98828745471954,-67.97295423618989,-67.9576524691326,-67.94238265980836,-67.92714530609781,-67.91194089756031,-67.8967699154921,-67.88163283298383,-67.86653011497756,-67.85146221832342,-67.8364295918357,-67.8214326763488,-67.8064719047728,-67.79154770214882,-67.77666048570423,-67.76181066490776,-67.74699864152444,-67.7322248096706,-67.71748955586868,-67.7027932591023,-67.68813629087107,-67.67351901524579,-67.65894178892343,-67.64440496128248,-67.6299088744382,-67.61545386329824,-67.60104025561822,-67.58666837205755,-67.57233852623553,-67.55805102478747,-67.54380616742111,-67.52960424697321,-67.51544554946634,-67.5013303541659,-67.48725893363734,-67.47323155380356,-67.45924847400254,-67.44530994704519,-67.43141621927337,-67.41756753061816,-67.4037641146582,-67.3900061986784,-67.37629400372869,-67.36262774468297,-67.34900763029829,-67.3354338632741,-67.32190664031172,-67.30842615217392,-67.29499258374459,-67.28160611408859,-67.26826691651172,-67.2549751586207,-67.24173100238332,-67.22853460418865,-67.21538611490726,-67.20228567995154,-67.18923343933608,-67.17622952773799,-67.16327407455732,-67.15036720397745,-67.13750903502547,-67.12469968163252,-67.11193925269411,-67.09922785213041,-67.08656557894642,-67.07395252729214,-67.0613887865226,-67.0488744412578,-67.03640957144255,-67.02399425240621,-67.01162855492221,-66.9993125452675,-66.98704628528185,-66.97482983242689,-66.96266323984506,-66.95054655641827,-66.93847982682652,-66.92646309160607,-66.91449638720755,-66.90257974605382,-66.89071319659747,-66.87889676337822,-66.86713046707987,-66.85541432458714,-66.84374834904213,-66.83213254990044,-66.82056693298712,-66.80905150055217,-66.79758625132577,-66.78617118057319,-66.77480628014932,-66.7634915385529,-66.75222694098031,-66.74101246937909,-66.72984810250104,-66.71873381595493,-66.70766958225884,-66.69665537089213,-66.68569114834695,-66.67477687817942,-66.66391252106033,-66.65309803482549,-66.64233337452562,-66.63161849247581,-66.62095333830456,-66.61033785900241,-66.59977199897011,-66.58925570006629,-66.57878890165479,-66.56837154065148,-66.55800355157064,-66.54768486657085,-66.53741541550046,-66.52719512594263,-66.51702392325979,-66.50690173063775,-66.49682846912931,-66.48680405769733,-66.47682841325742,-66.46690145072016,-66.45702308303272,-66.44719322122018,-66.4374117744262,-66.42767864995338,-66.417993753303,-66.40835698821436,-66.39876825670366,-66.38922745910232,-66.37973449409486,-66.3702892587564,-66.3608916485895,-66.35154155756068,-66.34223887813637,-66.33298350131845,-66.32377531667927,-66.31461421239625,-66.30550007528593,-66.29643279083766,-66.28741224324669,-66.27843831544696,-66.26951088914326,-66.26062984484304,-66.25179506188769,-66.24300641848347,-66.23426379173188,-66.22556705765955,-66.21691609124785,-66.20831076646192,-66.19975095627922,-66.19123653271777,-66.18276736686387,-66.17434332889941,-66.16596428812872,-66.15763011300501,-66.14934067115642,-66.14109582941157,-66.13289545382474,-66.12473940970068,-66.11662756161888,-66.10855977345759,-66.10053590841726,-66.09255582904376,-66.08461939725107,-66.07672647434364,-66.06887692103832,-66.06107059748595,-66.05330736329252,-66.04558707753998,-66.03790959880668,-66.03027478518743,-66.02268249431319,-66.01513258337037,-66.00762490911985,-66.00015932791557,-65.99273569572279,-65.985353868136,-65.97801370039656,-65.97071504740985,-65.96345776376224,-65.9562417037376,-65.94906672133364,-65.94193267027774,-65.9348394040426,-65.92778677586158,-65.92077463874357,-65.91380284548778,-65.90687124869805,-65.89997970079696,-65.89312805403961,-65.8863161605271,-65.87954387221977,-65.87281104095013,-65.86611751843546,-65.85946315629029,-65.85284780603841,-65.8462713191248,-65.83973354692715,-65.83323434076725,-65.826773551922,-65.82035103163432,-65.81396663112363,-65.80762020159632,-65.80131159425574,-65.7950406603121,-65.78880725099215,-65.78261121754858,-65.77645241126918,-65.77033068348585,-65.76424588558335,-65.75819786900783,-65.7521864852752,-65.74621158597925,-65.74027302279961,-65.73437064750946,-65.72850431198312,-65.72267386820332,-65.7168791682685,-65.71112006439972,-65.70539640894748,-65.69970805439834,-65.69405485338146,-65.6884366586748,-65.68285332321129,-65.6773047000848,-65.67179064255596,-65.66631100405775,-65.66086563820106,-65.65545439878001,-65.65007713977714,-65.64473371536849,-65.6394239799285,-65.63414778803478,-65.62890499447278,-65.62369545424026,-65.61851902255171,-65.61337555484256,-65.60826490677337,-65.60318693423378,-65.59814149334642,-65.59312844047071,-65.58814763220647,-65.58319892539755,-65.5782821771352,-65.57339724476141,-65.56854398587224,-65.56372225832082,-65.5589319202205,-65.55417282994773,-65.54944484614492,-65.54474782772321,-65.54008163386514,-65.5354461240272,-65.53084115794238,-65.52626659562253,-65.52172229736075,-65.51720812373361,-65.51272393560335,-65.50826959411997,-65.5038449607233,-65.49944989714494,-65.49508426541017,-65.49074792783978,-65.48644074705183,-65.48216258596338,-65.47791330779212,-65.47369277605796,-65.46950085458455,-65.46533740750078,-65.46120229924219,-65.45709539455233,-65.45301655848407,-65.4489656564009,-65.44494255397815,-65.44094711720415,-65.43697921238135,-65.43303870612743,-65.42912546537639,-65.42523935737944,-65.4213802497061,-65.41754801024507,-65.41374250720511,-65.40996360911595,-65.40621118482905,-65.40248510351846,-65.39878523468155,-65.39511144813979,-65.39146361403935,-65.38784160285189,-65.38424528537517,-65.38067453273365,-65.37712921637912,-65.37360920809125,-65.3701143799782,-65.36664460447709,-65.36319975435454,-65.35977970270717,-65.35638432296206,-65.35301348887718,-65.3496670745419,-65.34634495437733,-65.3430470031368,-65.3397730959062,-65.33652310810436,-65.33329691548344,-65.33009439412928,-65.32691542046169,-65.32375987123487,-65.32062762353763,-65.31751855479376,-65.31443254276232,-65.3113694655379,-65.30832920155092,-65.30531162956792,-65.30231662869181,-65.29934407836211,-65.29639385835524,-65.29346584878476,-65.29055993010158,-65.28767598309423,-65.28481388888912,-65.28197352895069,-65.27915478508169,-65.27635753942342,-65.2735816744559,-65.27082707299813,-65.26809361820828,-65.2653811935839,-65.26268968296218,-65.26001897052008,-65.25736894077461,-65.254739478583,-65.25213046914295,-65.24954179799279,-65.2469733510117,-65.24442501441995,-65.24189667477906,-65.23938821899205,-65.23689953430366,-65.2344305083005,-65.23198102891133,-65.22955098440721,-65.22714026340178,-65.22474875485142,-65.2223763480555,-65.22002293265659,-65.21768839864068,-65.21537263633739,-65.21307553642023,-65.21079698990678,-65.20853688815895,-65.20629512288319,-65.20407158613074,-65.20186617029785,-65.19967876812602,-65.19750927270223,-65.1953575774592,-65.19322357617561,-65.19110716297635,-65.18900823233277,-65.18692667906289,-65.18486239833173,-65.18281528565149,-65.1807852368818,-65.17877214823005,-65.17677591625154,-65.17479643784982,-65.1728336102769,-65.17088733113351,-65.16895749836944,-65.16704401028366,-65.16514676552472,-65.16326566309094,-65.16140060233066,-65.15955148294258,-65.15771820497594,-65.15590066883087,-65.15409877525857,-65.15231242536167,-65.1505415205944,-65.14878596276293,-65.14704565402562,-65.14532049689325,-65.14361039422934,-65.14191524925039,-65.14023496552612,-65.13856944697979,-65.13691859788841,-65.13528232288303,-65.13366052694899,-65.13205311542619,-65.13045999400933,-65.12888106874817,-65.1273162460478,-65.12576543266886,-65.12422853572782]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1230\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1231\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1226\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_width\":2,\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1227\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.1,\"line_width\":2,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1228\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.2,\"line_width\":2,\"line_dash\":[6]}}}}],\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"p1129\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"PanTool\",\"id\":\"p1142\"},{\"type\":\"object\",\"name\":\"WheelZoomTool\",\"id\":\"p1143\",\"attributes\":{\"renderers\":\"auto\"}},{\"type\":\"object\",\"name\":\"BoxZoomTool\",\"id\":\"p1144\",\"attributes\":{\"dimensions\":\"both\",\"overlay\":{\"type\":\"object\",\"name\":\"BoxAnnotation\",\"id\":\"p1145\",\"attributes\":{\"syncable\":false,\"line_color\":\"black\",\"line_alpha\":1.0,\"line_width\":2,\"line_dash\":[4,4],\"fill_color\":\"lightgrey\",\"fill_alpha\":0.5,\"level\":\"overlay\",\"visible\":false,\"left\":{\"type\":\"number\",\"value\":\"nan\"},\"right\":{\"type\":\"number\",\"value\":\"nan\"},\"top\":{\"type\":\"number\",\"value\":\"nan\"},\"bottom\":{\"type\":\"number\",\"value\":\"nan\"},\"left_units\":\"canvas\",\"right_units\":\"canvas\",\"top_units\":\"canvas\",\"bottom_units\":\"canvas\",\"handles\":{\"type\":\"object\",\"name\":\"BoxInteractionHandles\",\"id\":\"p1151\",\"attributes\":{\"all\":{\"type\":\"object\",\"name\":\"AreaVisuals\",\"id\":\"p1150\",\"attributes\":{\"fill_color\":\"white\",\"hover_fill_color\":\"lightgray\"}}}}}}}},{\"type\":\"object\",\"name\":\"SaveTool\",\"id\":\"p1152\"},{\"type\":\"object\",\"name\":\"ResetTool\",\"id\":\"p1153\"},{\"type\":\"object\",\"name\":\"HelpTool\",\"id\":\"p1154\"}]}},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1137\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1138\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1139\"},\"axis_label\":\"v (mV)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1140\"}}}],\"below\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1132\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1133\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1134\"},\"axis_label\":\"t (ms)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1135\"}}}],\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1136\",\"attributes\":{\"axis\":{\"id\":\"p1132\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1141\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"p1137\"}}},{\"type\":\"object\",\"name\":\"Legend\",\"id\":\"p1164\",\"attributes\":{\"items\":[{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1165\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.075\"},\"renderers\":[{\"id\":\"p1161\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1184\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.15\"},\"renderers\":[{\"id\":\"p1181\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1203\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.225\"},\"renderers\":[{\"id\":\"p1200\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1222\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.3\"},\"renderers\":[{\"id\":\"p1219\"}]}}]}}]}}]}};\n", " const render_items = [{\"docid\":\"9e071597-a02b-447c-b43b-89833a813fa1\",\"roots\":{\"p1121\":\"ccf14915-27b6-4207-a7d3-5ecb3e9576a2\"},\"root_ids\":[\"p1121\"]}];\n", " void root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", " }\n", " if (root.Bokeh !== undefined) {\n", " embed_document(root);\n", " } else {\n", " let attempts = 0;\n", " const timer = setInterval(function(root) {\n", " if (root.Bokeh !== undefined) {\n", " clearInterval(timer);\n", " embed_document(root);\n", " } else {\n", " attempts++;\n", " if (attempts > 100) {\n", " clearInterval(timer);\n", " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", " }\n", " }\n", " }, 10, root)\n", " }\n", "})(window);" ], "application/vnd.bokehjs_exec.v0+json": "" }, "metadata": { "application/vnd.bokehjs_exec.v0+json": { "id": "p1121" } }, "output_type": "display_data" } ], "source": [ "f = plt.figure(x_axis_label=\"t (ms)\", y_axis_label=\"v (mV)\")\n", "amps = [0.075 * i for i in range(1, 5)]\n", "colors = [\"green\", \"blue\", \"red\", \"black\"]\n", "for amp, color in zip(amps, colors):\n", " stim.amp = amp\n", " h.finitialize(-65 * mV)\n", " h.continuerun(25 * ms)\n", " f.line(t, list(soma_v), line_width=2, legend_label=\"amp=%g\" % amp, color=color)\n", " f.line(t, list(dend_v), line_width=2, line_dash=\"dashed\", color=color)\n", "\n", "plt.show(f)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We see that when the soma membrane potential is sufficiently low, it is possible for the dendrite to be more depolarized than the soma, but the peak membrane potential in the leaky dendrite is significantly reduced from the peak in the soma during an action potential. (This is because in our model all the voltage-gated channels that would depolarize the cell are only present in the soma.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### The role of nseg" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's see the effects of nseg, the number of segments of the dendrite, on the signal through the dendrite." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'll do this by modifying the above code to run all of our simulations for both `nseg = 1` (the default) and for `nseg = 101`. We'll use thin lines for the high resolution (`nseg = 101`) case and thick lines for the low resolution case:" ] }, { "cell_type": "code", "execution_count": 48, "metadata": { "execution": { "iopub.execute_input": "2025-05-23T00:18:48.228871Z", "iopub.status.busy": "2025-05-23T00:18:48.228584Z", "iopub.status.idle": "2025-05-23T00:18:48.425999Z", "shell.execute_reply": "2025-05-23T00:18:48.425653Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "
\n" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "(function(root) {\n", " function embed_document(root) {\n", " const docs_json = {\"442af86a-e340-4e06-b706-a4c962f450a2\":{\"version\":\"3.7.3\",\"title\":\"Bokeh Application\",\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"p1232\",\"attributes\":{\"x_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1233\"},\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1234\"},\"x_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1241\"},\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1242\"},\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"p1239\"},\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1272\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1266\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1267\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1268\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.99859895156952,-64.99794940680333,-64.9973300246924,-64.99673830824379,-64.99617201809848,-64.99562914432974,-64.99510788141654,-64.9946066060273,-64.99412385729227,-64.99365831927994,-64.99320880542628,-64.99277424469419,-64.99235366926698,-64.99194620360169,-64.99155105468868,-64.99116750338113,-64.99079489667402,-64.99043264082597,-64.99008019522934,-64.98973706694485,-64.98940280582678,-64.98907700017278,-64.98875927284017,-64.98844927777704,-64.9881466969224,-64.98785123743474,-64.98756262921283,-64.98728062267692,-64.98700498678193,-64.98673550723724,-64.98647198491092,-64.98621423439829,-64.98596208273723,-64.9857153682545,-64.98547393952902,-64.98523765445972,-64.98500637942695,-64.98477998853737,-64.98455836294382,-64.98434139023209,-64.98412896386783,-64.98392098269719,-64.98371735049578,-64.983517975561,-64.98332277034311,-64.98313165111144,-64.98294453765189,-64.98276135299274,-64.98258202315591,-64.9824064769311,-64.98223464567062,-64.98206646310275,-64.9819018651621,-64.9817407898349,-64.98158317701817,-64.9814289683912,-64.98127810729832,-64.98113053864175,-64.98098620878365,-64.98084506545659,-64.98070705768147,-64.9805721356924,-64.98044025086774,-64.98031135566687,-64.98018540357205,-64.98006234903502,-64.97994214742788,-64.97982475499778,-64.97971012882525,-64.97959822678573,-64.97948900751403,-64.97938243037156,-64.97927845541591,-64.9791770433728,-64.97907815561007,-64.97898175411346,-64.9788878014643,-64.97879626081858,-64.9787070958877,-64.97862027092032,-64.9785357506856,-64.97845350045755,-64.97837348600032,-64.97829567355454,-64.9782200298245,-64.97814652196608,-64.97807511757554,-64.9780057846789,-64.97793849172193,-64.97787320756085,-64.97780990145338,-64.97774854305051,-64.97768910238845,-64.9776315498813,-64.97757585631382,-64.97752199283481,-64.97746993095068,-64.97741964251931,-64.97737109974432,-64.97732427516951,-64.97727914167352,-64.97723567246483,-64.97719384107685,-64.9771536213633,-64.97711498749368,-64.977077913949,-64.97704237551761,-64.9770083472912,-64.97697580466092,-64.97694472331361,-64.97691507922819,-64.97688684867218,-64.97686000819819,-64.97683453464067,-64.97681040511269,-64.97678759700268,-64.97676608797151,-64.97674585594939,-64.97672687913294,-64.97670913598238,-64.97669260521867,-64.97667726582083,-64.97666309702313,-64.9766500783126,-64.97663818942627,-64.97662741034874,-64.97661772130961,-64.97660910278103,-64.97660153547525,-64.97659500034226,-64.97658947856735,-64.97658495156888,-64.97658140099591,-64.97657880872596,-64.97657715686276,-64.97657642773403,-64.9765766038893,-64.97657766809775,-64.97657960334604,-64.97658239283625,-64.97658601998371,-64.976590468415,-64.97659572196584,-64.97660176467907,-64.97660858080268,-64.9766161547877,-64.9766244712864,-64.97663351515013,-64.97664327142752,-64.97665372536251,-64.97666486239241,-64.97667666814606,-64.97668912844189,-64.97670222928612,-64.97671595687085,-64.97673029757227,-64.97674523794883,-64.97676076473941,-64.97677686486156,-64.97679352540973,-64.97681073365345,-64.97682847703564,-64.97684674317082,-64.97686551984347,-64.97688479500621,-64.97690455677817,-64.97692479344329,-64.97694549344864,-64.97696664540278,-64.97698823807407,-64.97701026038908,-64.97703270143091,-64.97705555043765,-64.97707879680073,-64.97710243006331,-64.97712643991879,-64.97715081620915,-64.97717554892344,-64.97720062819626,-64.97722604430616,-64.97725178767422,-64.97727784886246,-64.97730421857236,-64.97733088764339,-64.97735784705155,-64.97738508790788,-64.97741260145702,-64.97744037907576,-64.97746841227163,-64.97749669268147,-64.97752521207002,-64.97755396232851,-64.97758293547331,-64.97761212364452,-64.97764151910464,-64.97767111423715,-64.97770090154528,-64.97773087365056,-64.97776102329156,-64.96727965057563,-64.94737412762133,-64.91902834585258,-64.88313297313306,-64.84049460719982,-64.79184394473866,-64.73784307703974,-64.67909201312307,-64.6161345206837,-64.54946336489766,-64.47952501547067,-64.4067238835162,-64.33142614199687,-64.25396317654904,-64.17463470748156,-64.09371161851911,-64.01143852335758,-63.92803609722707,-63.84370319733029,-63.75861879316533,-63.67294372528138,-63.58682230889622,-63.50038379697215,-63.41374371575953,-63.32700508443663,-63.24025952927051,-63.153588301668634,-63.067063208564264,-62.9807474627609,-62.894696460137055,-62.80895848996941,-62.72357538405921,-62.63858310983373,-62.55401231213507,-62.469888807994515,-62.38623403831801,-62.303065480070806,-62.22039702224402,-62.13823930860835,-62.056600050008036,-61.985988830117535,-61.92532238965766,-61.873626918761836,-61.830027425077574,-61.793738082322356,-61.76405345377157,-61.740340505050625,-61.722031334937206,-61.70861656324328,-61.69963932239838,-61.69468980493874,-61.69340032333466,-61.69544084190157,-61.70051494325248,-61.70835619407835,-61.71872487713706,-61.731405058285475,-61.746201959262486,-61.76293960875585,-61.78145874607608,-61.80161495352037,-61.82327699523338,-61.84632534205255,-61.87065086345301,-61.89615366927249,-61.92274208539143,-61.95033174896004,-61.9788448100991,-62.00820922824934,-62.03835815250639,-62.069229376352226,-62.1007648581833,-62.132910299940974,-62.165614776976184,-62.19883041303024,-62.232512094893096,-62.26661722191266,-62.301105486079514,-62.33593867890534,-62.37108052175498,-62.40649651668621,-62.44215381520226,-62.47802110263397,-62.51406849614511,-62.550267454599606,-62.58659069874598,-62.62301214036595,-62.65950681920302,-62.696050846635785,-62.732621355191895,-62.769196453113864,-62.80575518328948,-62.84227748594862,-62.878744164606566,-62.915136854802434,-62.95143799524175,-62.987630801004755,-63.023699238528366,-63.059628002109996,-63.09540249171701,-63.131008791916344,-63.16643365176578,-63.201664465532055,-63.236689254121316,-63.27149664712537,-63.30607586540255,-63.3404167041257,-63.37450951624107,-63.408345196292125,-63.44191516457096,-63.47521135156718,-63.50822618269075,-63.54095256325023,-63.573383863672944,-63.60551390495686,-63.63733694434753,-63.66884766123592,-63.70004114327507,-63.73091287271531,-63.76145871295906,-63.79167489533732,-63.82155800611066,-63.85110497369809,-63.880313056137574,-63.909179828781944,-63.937703172234265,-63.96588126052625,-63.99371254954354,-64.02119576570098,-64.04832989487109,-64.07511417156815,-64.10154806839026,-64.12763128572107,-64.15336374169242,-64.17874556240885,-64.20377707243428,-64.22845878554068,-64.25279139571835,-64.27677576844664,-64.30041293222388,-64.32370407035445,-64.34665051299108,-64.3692537294295,-64.39151532065284,-64.41343701212233,-64.43502064681083,-64.45626817847558,-64.47718166516599,-64.49776326296228,-64.51801521994065,-64.5379398703603,-64.55753962906766,-64.57681698611292,-64.59577450157396,-64.61441480058271,-64.63274056854868,-64.65075454657479,-64.66845952706002,-64.68585834948404,-64.70295389636836,-64.71974908940908,-64.73624688577588,-64.75245027457235,-64.76836227345247,-64.78398592538827,-64.7993242955839,-64.81438046853098,-64.82915754520066,-64.84365864036754,-64.85788688006106,-64.87184539913959,-64.88553733898294,-64.89896584529902,-64.91213406604021,-64.92504514942567,-64.93770224206523,-64.9501084871812,-64.96226702292421,-64.97418098077945,-64.9858534840596,-64.99728764648114,-65.00848657082058,-65.01945334764741,-65.03019105413055,-65.04070275291524,-65.05099149106749,-65.06106029908325,-65.07091218995939,-65.08055015832399,-65.08997717962335,-65.09919620936316,-65.10821018240154,-65.11702201229161,-65.1256345906714,-65.13405078669886,-65.14227344653023,-65.15030539283931,-65.15814942437629,-65.16580831556382,-65.17328481612897,-65.18058165076906,-65.18770151885008,-65.19464709413585,-65.20142102454663,-65.20802593194571,-65.21446441195253,-65.22073903378114,-65.22685234010265,-65.23280684693053,-65.23860504352756,-65.24424939233334,-65.24974232891134,-65.25508626191436,-65.26028357306758,-65.26533661716817,-65.27024772210059,-65.27501918886676,-65.27965329163023,-65.28415227777361,-65.28851836796859,-65.29275375625761,-65.29686061014677,-65.30084107070913,-65.30469725269793,-65.30843124466901,-65.31204510911188,-65.31554088258903,-65.31892057588277,-65.32218617414928,-65.32533963707925,-65.32838289906478,-65.33131786937203,-65.33414643231929,-65.33687044745993,-65.3394917497701,-65.34201214984057,-65.34443343407253,-65.34675736487699,-65.34898568087745,-65.35112009711558,-65.3531623052596,-65.35511397381512,-65.35697674833818,-65.35875225165026,-65.36044208405498,-65.36204782355638,-65.36357102607843,-65.36501322568573,-65.36637593480508,-65.36766064444782,-65.36886882443278,-65.37000192360956,-65.37106137008224,-65.37204857143306,-65.37296491494615,-65.37381176783123,-65.37459047744687,-65.37530237152356,-65.37594875838614,-65.37653092717582,-65.37705014807138,-65.37750767250965,-65.37790473340522,-65.37824254536909,-65.37852230492639,-65.37874519073301,-65.37891236379107,-65.3790249676632,-65.37908412868552,-65.37909095617937,-65.37904654266156,-65.3789519640533,-65.37880827988762,-65.3786165335153,-65.3783777523092,-65.37809294786716,-65.37776311621307,-65.37738923799652,-65.37697227869063,-65.37651318878822,-65.37601290399638,-65.3754723454291,-65.37489241979831,-65.37427401960312,-65.37361802331718,-65.37292529557438,-65.37219668735266,-65.37143303615599,-65.37063516619462,-65.36980388856333,-65.36894000141804,-65.36804429015044,-65.36711752756082,-65.3661604740291,-65.36517387768389,-65.36415847456986,-65.36311498881318,-65.36204413278512,-65.36094660726384,-65.35982310159439,-65.35867429384673,-65.35750085097217,-65.35630342895776,-65.35508267297905,-65.35383921755096,-65.35257368667688,-65.35128669399602,-65.34997884292899,-65.34865072682156,-65.34730292908677,-65.34593602334519,-65.3445505735636,-65.34314713419181,-65.34172625029791,-65.3402884577017,-65.3388342831066,-65.33736424422976,-65.3358788499306,-65.3343786003377,-65.3328639869741,-65.33133549288092,-65.32979359273948,-65.32823875299174,-65.32667143195931,-65.32509207996081,-65.32350113942775,-65.32189904501885,-65.32028622373292,-65.31866309502017,-65.31703007089217,-65.31538755603023,-65.31373594789243,-65.31207563681913,-65.31040700613724,-65.30873043226288,-65.30704628480281,-65.30535492665449,-65.3036567141047,-65.30195199692693,-65.30024111847737,-65.29852441578967,-65.29680221966838,-65.29507485478108,-65.29334263974934,-65.29160588723836,-65.28986490404542,-65.2881199911871,-65.28637144398536,-65.28461955215232,-65.28286459987402,-65.28110686589288,-65.27934662358913,-65.2775841410611,-65.27581968120431,-65.27405350178958,-65.27228585554,-65.27051699020684,-65.26874714864438,-65.26697656888373,-65.26520548420565,-65.26343412321228,-65.2616627098979,-65.25989146371879,-65.25812059966192,-65.25635032831289,-65.25458085592278,-65.2528123844741,-65.25104511174585,-65.24927923137766,-65.24751493293292,-65.24575240196123,-65.24399182005979,-65.24223336493402,-65.2404772104573,-65.23872352672984,-65.23697248013681,-65.23522423340559,-65.23347894566216,-65.23173677248683,-65.22999786596908,-65.22826237476164,-65.22653044413387,-65.22480221602429,-65.22307782909246,-65.22135741877008,-65.21964111731138,-65.21792905384278,-65.21622135441189,-65.21451814203576,-65.21281953674854,-65.21112565564836,-65.2094366129436,-65.20775251999855,-65.20607348537831,-65.20439961489316,-65.2027310116423,-65.20106777605686,-65.19941000594245,-65.19775779652102,-65.19611124047212,-65.19447042797366,-65.19283544674197,-65.19120638207144,-65.18958331687347,-65.18796633171492,-65.18635550485605,-65.18475091228788,-65.18315262776902,-65.18156072286202,-65.17997526696915,-65.17839632736774,-65.17682396924496,-65.17525825573216,-65.17369924793864,-65.17214700498509,-65.1706015840364,-65.16906304033411,-65.16753142722835,-65.16600679620937,-65.16448919693856,-65.16297867727913,-65.16147528332625,-65.15997905943685,-65.15849004825894,-65.15700829076054,-65.15553382625822,-65.15406669244521,-65.15260692541911,-65.1511545597092,-65.14970962830346,-65.14827216267506,-65.14684219280856,-65.14541974722576,-65.1440048530111,-65.14259753583681,-65.14119781998762,-65.13980572838514,-65.13842128261194,-65.13704450293521,-65.13567540833016,-65.13431401650305,-65.13296034391392,-65.13161440579896,-65.13027621619257,-65.12894578794918,-65.12762313276465,-65.12630826119747,-65.12500118268956,-65.12370190558687,-65.12241043715963,-65.12112678362232,-65.11985095015336,-65.11858294091459,-65.1173227590703,-65.1160704068062,-65.11482588534797,-65.1135891949796,-65.11236033506147,-65.1111393040482,-65.10992609950614,-65.1087207181308,-65.10752315576379,-65.10633340740975,-65.10515146725288,-65.10397732867331,-65.1028109842632,-65.10165242584264,-65.10050164447533,-65.09935863048393,-65.0982233734654,-65.09709586230589,-65.09597608519556,-65.09486402964313,-65.0937596824903,-65.09266302992582,-65.09157405749947,-65.09049275013585,-65.08941909214785,-65.08835306725005,-65.08729465857189,-65.08624384867062,-65.08520061954407,-65.08416495264326,-65.08313682888485,-65.0821162286633,-65.08110313186296,-65.08009751786996,-65.07909936558391,-65.07810865342942,-65.07712535936749,-65.07614946090663,-65.07518093511403,-65.07421975862633,-65.07326590766031,-65.07231935802356,-65.07138008512474,-65.07044806398395,-65.06952326924268,-65.0686056751739,-65.06769525569173,-65.06679198436116,-65.06589583440751,-65.06500677872582,-65.06412478989003,-65.06324984016213,-65.062381901501,-65.06152094557132,-65.06066694375215,-65.05981986714558,-65.05897968658502,-65.05814637264359,-65.05731989564221,-65.05650022565767,-65.05568733253051,-65.05488118587282,-65.0540817550759,-65.05328900931784,-65.05250291757089,-65.05172344860884,-65.05095057101416,-65.0501842531851,-65.04942446334272,-65.04867116953768,-65.04792433965707,-65.04718394143099,-65.04644994243911,-65.04572231011716,-65.0450010117632,-65.04428601454391,-65.04357728550067,-65.04287479155565,-65.04217849951768,-65.04148837608814,-65.04080438786671,-65.04012650135698,-65.03945468297202,-65.03878889903986,-65.03812911580883,-65.03747529945288,-65.03682741607676,-65.03618543172112,-65.03554931236754,-65.03491902394344,-65.034294532327,-65.03367580335183,-65.03306280281176,-65.03245549646533,-65.03185385004045,-65.03125782923871,-65.03066739973985,-65.030082527206,-65.02950317728593,-65.02892931561912,-65.02836090783993,-65.02779791958149,-65.0272403164797,-65.02668806417705,-65.02614112832637,-65.02559947459459,-65.02506306866633,-65.02453187624751,-65.02400586306885,-65.02348499488932,-65.02296923749945,-65.02245855672474,-65.02195291842882,-65.0214522885167,-65.02095663293784,-65.02046591768925,-65.01998010881846,-65.01949917242649,-65.01902307467071,-65.01855178176767,-65.01808525999586,-65.01762347569844,-65.0171663952859,-65.01671398523862,-65.01626621210946,-65.0158230425262,-65.01538444319402,-65.01495038089791,-65.01452082250495,-65.01409573496659,-65.01367508532094,-65.0132588406949,-65.01284696830633,-65.01243943546613,-65.01203620958026,-65.01163725815175,-65.01124254878266,-65.01085204917594,-65.0104657271373,-65.01008355057706,-65.00970548751188,-65.00933150606646,-65.00896157447528,-65.00859566108419,-65.00823373435202,-65.00787576285215,-65.00752171527402,-65.0071715604246,-65.00682526722981,-65.00648280473597,-65.00614414211107,-65.00580924864619,-65.00547809375671,-65.00515064698361,-65.00482687799465,-65.00450675658553,-65.00419025268108,-65.00387733633633,-65.00356797773759,-65.00326214720347,-65.00295981518593,-65.00266095227121,-65.00236552918079,-65.00207351677227,-65.00178488604028,-65.00149960811731,-65.00121765427453,-65.00093899592257,-65.00066360461227,-65.00039145203543,-65.00012251002548,-64.99985675055815,-64.99959414575214,-64.9993346678697,-64.99907828931724,-64.99882498264589,-64.998574720552,-64.99832747587772,-64.9980832216114,-64.9978419308881,-64.99760357699002,-64.99736813334688,-64.99713557353634,-64.99690587128434,-64.99667900046543,-64.99645493510315,-64.9962336493702,-64.99601511758884,-64.99579931423109,-64.99558621391893,-64.99537579142452,-64.99516802167044,-64.9949628797298,-64.99476034082637,-64.9945603803348,-64.99436297378062,-64.9941680968404,-64.99397572534178,-64.99378583526355,-64.99359840273567,-64.9934134040393,-64.99323081560678,-64.9930506140216,-64.99287277601842,-64.99269727848294,-64.99252409845192,-64.99235321311303,-64.99218459980477,-64.99201823601635,-64.9918540993876,-64.99169216770875,-64.99153241892034,-64.99137483111302,-64.99121938252736,-64.99106605155366,-64.9909148167317,-64.99076565675058,-64.99061855044842,-64.99047347681213,-64.99033041497714,-64.99018934422712,-64.99005024399371,-64.98991309385617,-64.98977787354116,-64.98964456292228,-64.98951314201987,-64.98938359100059,-64.98925589017705,-64.9891300200075,-64.98900596109542,-64.98888369418914,-64.98876320018144,-64.98864446010913,-64.98852745515268,-64.98841216663574,-64.98829857602476,-64.9881866649285,-64.98807641509762,-64.9879678084242,-64.98786082694127,-64.98775545282234,-64.98765166838095,-64.98754945607013,-64.98744879848194,-64.98734967834693,-64.9872520785337,-64.9871559820483,-64.98706137203374,-64.9869682317695,-64.9868765446709,-64.98678629428869,-64.98669746430836,-64.9866100385497,-64.98652400096616,-64.98643933564433,-64.98635602680338,-64.98627405879442,-64.98619341610001,-64.9861140833335,-64.9860360452385,-64.98595928668823,-64.98588379268494,-64.98580954835937,-64.98573653897004,-64.98566474990271,-64.98559416666974,-64.98552477490949,-64.98545656038569,-64.9853895089868,-64.9853236067254,-64.98525883973757,-64.98519519428223,-64.98513265674052,-64.98507121361517,-64.98501085152982,-64.98495155722843,-64.98489331757459,-64.98483611955088,-64.98477995025824,-64.9847247969153,-64.98467064685772,-64.98461748753756,-64.98456530652258,-64.98451409149563,-64.98446383025393,-64.98441451070848,-64.98436612088331,-64.9843186489149,-64.98427208305145,-64.98422641165226,-64.98418162318701,-64.98413770623515,-64.98409464948517,-64.984052441734,-64.98401107188626,-64.98397052895366,-64.98393080205427,-64.98389188041192,-64.98385375335542,-64.983816410318,-64.98377984083658,-64.9837440345511,-64.98370898120385,-64.98367467063882,-64.983641092801,-64.98360823773572,-64.983576095588,-64.98354465660186,-64.98351391111963,-64.98348384958129,-64.98345446252385,-64.98342574058064,-64.98339767448064,-64.98337025504782,-64.98334347320048,-64.9833173199506,-64.98329178640316,-64.98326686375545,-64.98324254329647,-64.98321881640625,-64.98319567455516,-64.98317310930328,-64.98315111229975,-64.98312967528211,-64.98310879007565,-64.98308844859272,-64.98306864283217,-64.9830493648786,-64.98303060690178,-64.98301236115601,-64.98299461997944,-64.98297737579342,-64.98296062110195,-64.98294434849093,-64.98292855062759,-64.98291322025985,-64.98289835021568,-64.98288393340248,-64.98286996280643,-64.98285643149191,-64.98284333260084,-64.98283065935206,-64.98281840504076,-64.98280656303778,-64.9827951267891,-64.98278408981514,-64.98277344571018]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1273\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1274\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1269\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1270\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1271\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1283\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1277\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1278\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1279\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99997874916157,-64.99993844542642,-64.99988107768425,-64.99980844652296,-64.99972218281401,-64.99962376436807,-64.9995145308698,-64.99939569727732,-64.99926836585125,-64.99913353695976,-64.99899211879017,-64.99884493608293,-64.99869273799125,-64.99853620515829,-64.99837595609382,-64.99821255292329,-64.99804650657433,-64.99787828145885,-64.99770829970237,-64.99753694496685,-64.99736456590843,-64.99719147930682,-64.99701797289947,-64.99684430794994,-64.99667072157698,-64.99649742886784,-64.99632462479723,-64.99615248597061,-64.99598117220926,-64.99581082799196,-64.99564158376748,-64.99547355714982,-64.99530685400761,-64.99514156945739,-64.99497778877,-64.994815588198,-64.99465503573143,-64.9944961917886,-64.99433910984773,-64.99418383702482,-64.99403041460269,-64.99387887851545,-64.99372925979235,-64.99358158496477,-64.99343587643945,-64.99329215284085,-64.99315042932555,-64.99301071787083,-64.99287302753986,-64.99273736472541,-64.9926037333739,-64.99247213519136,-64.99234256983308,-64.99221503507799,-64.99208952698925,-64.99196604006214,-64.9918445673602,-64.99172510064076,-64.99160763047051,-64.9914921463321,-64.99137863672239,-64.99126708924301,-64.99115749068393,-64.99104982710053,-64.99094408388461,-64.99084024583009,-64.99073829719339,-64.99063822174936,-64.99054000284278,-64.99044362343584,-64.9903490661521,-64.99025631331698,-64.99016534699503,-64.9900761490245,-64.98998870104913,-64.98990298454746,-64.98981898085992,-64.98973667121383,-64.9896560367464,-64.98957705852588,-64.98949971757125,-64.98942399487014,-64.98934987139546,-64.9892773281207,-64.98920634603395,-64.98913690615088,-64.98906898952656,-64.98900257726648,-64.98893765053649,-64.98887419057203,-64.98881217868662,-64.98875159627947,-64.98869242484263,-64.9886346459674,-64.98857824135025,-64.98852319279817,-64.98846948223351,-64.98841709169851,-64.9883660033592,-64.98831619950913,-64.98826766257258,-64.98822037510752,-64.98817431980825,-64.98812947950776,-64.9880858371798,-64.98804337594072,-64.98800207905113,-64.98796192991725,-64.98792291209219,-64.98788500927692,-64.98784820532121,-64.9878124842243,-64.98777783013549,-64.98774422735457,-64.98771166033217,-64.98768011366994,-64.98764957212067,-64.98762002058831,-64.98759144412784,-64.98756382794518,-64.98753715739689,-64.98751141798986,-64.987486595381,-64.98746267537672,-64.9874396439325,-64.98741748715236,-64.9873961912882,-64.98737574273923,-64.9873561280513,-64.98733733391619,-64.98731934717081,-64.98730215479654,-64.98728574391833,-64.98727010180396,-64.98725521586312,-64.98724107364659,-64.98722766284536,-64.98721497128967,-64.98720298694816,-64.98719169792689,-64.98718109246839,-64.98717115895073,-64.98716188588654,-64.987153261922,-64.98714527583591,-64.98713791653866,-64.98713117307122,-64.98712503460418,-64.9871194904367,-64.9871145299955,-64.98711014283387,-64.98710631863064,-64.98710304718912,-64.98710031843616,-64.98709812242105,-64.98709644931454,-64.98709528940779,-64.98709463311138,-64.98709447095429,-64.98709479358283,-64.98709559175967,-64.9870968563628,-64.98709857838455,-64.98710074893054,-64.98710335921871,-64.98710640057824,-64.98710986444867,-64.98711374237878,-64.98711802602568,-64.98712270715377,-64.98712777763379,-64.9871332294418,-64.98713905465823,-64.9871452454669,-64.98715179415404,-64.98715869310735,-64.98716593481497,-64.98717351186464,-64.98718141694266,-64.98718964283297,-64.98719818241622,-64.98720702866882,-64.98721617466202,-64.98722561356098,-64.98723533862385,-64.98724534320085,-64.98725562073341,-64.98726616475317,-64.98727696888116,-64.98728802682693,-64.98729933238756,-64.98731087944688,-64.98732266197452,-64.9873346740251,-64.98734690973734,-64.9873593633332,-64.98737202911701,-64.98738490147467,-64.98739797487276,-64.98741124385774,-64.70458694663756,-64.43623246547925,-64.18132776323928,-63.93893345394877,-63.70818402234978,-63.48828164604217,-63.27849056232443,-63.0781319278807,-62.886579124897665,-62.70325347203421,-62.52762030296161,-62.35918537899855,-62.19749160573687,-62.042116026541144,-61.89266706845584,-61.74878201840798,-61.61012470968954,-61.476383400574036,-61.34726882859323,-61.22251242549895,-61.10186467928044,-60.985093630819456,-60.87198349385809,-60.76233338794204,-60.65595617489641,-60.552677390202,-60.45233426137709,-60.354774806139375,-60.25985700373327,-60.167448033363925,-60.07742357418687,-59.989667161766164,-59.9040695963375,-59.82052839860038,-59.73894730911847,-59.65923582773187,-59.58130878968271,-59.50508597542827,-59.43049175136568,-59.357454738921525,-59.56874505399908,-59.76699139177045,-59.95315356842524,-60.12811441893744,-60.29268653283774,-60.44761837179048,-60.59359982523333,-60.73126725523379,-60.86120807719109,-60.98396491895079,-61.10003939721933,-61.20989554680685,-61.31396293514459,-61.41263949168506,-61.5062940791756,-61.59526883137913,-61.67988127958605,-61.760426288205124,-61.837177817828646,-61.910390532428515,-61.980301265745574,-62.0471303604762,-62.11108289252934,-62.17234979141496,-62.23110886672403,-62.28752574966155,-62.34175475769111,-62.393939689533646,-62.44421455702769,-62.49270425969681,-62.53952520727468,-62.584785894904854,-62.62858743525316,-62.671024051342116,-62.71218353353295,-62.75214766373755,-62.79099260963585,-62.82878929139985,-62.86560372318063,-62.90149733139556,-62.93652725165758,-62.970746606013314,-63.004204762000846,-63.03694757489793,-63.06901761440647,-63.10045437690706,-63.13129448431701,-63.161571870495195,-63.19131795605623,-63.220561812383934,-63.24933031556838,-63.277648290932305,-63.30553864875917,-63.33302251178741,-63.360119334991964,-63.386847018134716,-63.413222011530095,-63.43925941543943,-63.464973073478355,-63.4903756603946,-63.51547876454904,-63.540292965410536,-63.564827906354374,-63.58909236303552,-63.61309430759046,-63.63684096890561,-63.66033888917542,-63.683593976960005,-63.70661155693935,-63.72939641654978,-63.75195284967739,-63.77428469757327,-63.79639538714609,-63.81828796677864,-63.8399651398072,-63.86142929579473,-63.88268253972194,-63.9037267192135,-63.924563449910515,-63.945194139094475,-63.96562000766228,-63.985842110546834,-64.00586135567264,-64.0256785215313,-64.04529427345743,-64.064709178681,-64.08392372022885,-64.10293830974355,-64.12175329928488,-64.14036899217557,-64.1587856529496,-64.17700351645873,-64.19502279618938,-64.21284369184006,-64.23046639620617,-64.24789110141677,-64.26511800456586,-64.2821473127779,-64.29897924774534,-64.31561404977427,-64.33205198137162,-64.34829333040608,-64.3643384128728,-64.38018757529048,-64.3958411967575,-64.41129969069266,-64.4265635062842,-64.4416331296697,-64.45650908486797,-64.4711919344829,-64.48568228019782,-64.49998076307813,-64.51408806369855,-64.52800490211058,-64.54173203766453,-64.5552702686998,-64.56862043211608,-64.5817834028373,-64.59476009317953,-64.60755145213295,-64.62015846456787,-64.63258215037334,-64.64482356353717,-64.65688379117472,-64.66876395251383,-64.68046519784255,-64.69198870742584,-64.70333569039681,-64.71450738362799,-64.72550505058717,-64.73632998018256,-64.74698348560106,-64.75746690314364,-64.76778159106098,-64.77792892839278,-64.7879103138132,-64.79772716448531,-64.80738091492668,-64.81687301588825,-64.8262049332483,-64.83537814692325,-64.8443941497966,-64.85325444666762,-64.86196055322051,-64.87051399501536,-64.87891630650154,-64.88716903005441,-64.89527371503576,-64.90323191687857,-64.9110451961965,-64.91871511791828,-64.92624325044737,-64.93363116484683,-64.94088043404962,-64.94799263209417,-64.95496933338529,-64.96181211198018,-64.96852254089937,-64.97510219146251,-64.98155263264852,-64.98787543047999,-64.99407214743144,-65.00014434186106,-65.00609356746554,-65.01192137275768,-65.01762930056624,-65.02321888755763,-65.02869166377906,-65.03404915222255,-65.03929286840948,-65.04442431999499,-65.04944500639206,-65.05435641841441,-65.05916003793801,-65.06385733758059,-65.06844978039861,-65.07293881960133,-65.0773258982814,-65.0816124491614,-65.08579989435609,-65.08988964514961,-65.09388310178738,-65.09778165328208,-65.10158667723331,-65.10529953966052,-65.10892159484864,-65.11245418520612,-65.11589864113483,-65.11925628091146,-65.12252841057993,-65.1257163238546,-65.12882130203359,-65.13184461392203,-65.13478751576487,-65.13765125118874,-65.14043705115262,-65.1431461339069,-65.14577970496053,-65.14833895705596,-65.15082507015137,-65.15323921141018,-65.1555825351972,-65.15785618308138,-65.16006128384473,-65.1621989534972,-65.16427029529721,-65.16627639977757,-65.16821834477653,-65.17009719547382,-65.17191400443122,-65.17366981163765,-65.17536564455847,-65.17700251818867,-65.17858143510998,-65.18010338555142,-65.18156934745339,-65.1829802865348,-65.18433715636334,-65.18564089842853,-65.18689244221744,-65.18809270529295,-65.18924259337435,-65.19034300042016,-65.19139480871297,-65.19239888894624,-65.19335610031288,-65.19426729059546,-65.19513329625799,-65.19595494253906,-65.19673304354637,-65.19746840235236,-65.19816181109093,-65.19881405105522,-65.19942589279624,-65.19999809622222,-65.20053141069876,-65.20102657514958,-65.20148431815777,-65.20190535806753,-65.20229040308632,-65.20264015138723,-65.20295529121172,-65.20323650097245,-65.20348444935628,-65.2036997954273,-65.20388318872986,-65.2040352693916,-65.2041566682263,-65.20424800683669,-65.20430989771693,-65.20434294435492,-65.20434774133442,-65.20432487443662,-65.20427492074161,-65.20419844872926,-65.20409601837977,-65.20396818127375,-65.20381548069177,-65.20363845171345,-65.20343762131596,-65.20321350847196,-65.20296662424701,-65.20269747189624,-65.2024065469605,-65.20209433736181,-65.20176132349812,-65.20140797833741,-65.20103476751112,-65.20064214940673,-65.20023057525977,-65.19980048924496,-65.1993523285667,-65.19888652354868,-65.1984034977228,-65.19790366791725,-65.19738744434386,-65.1968552306846,-65.1963074241773,-65.19574441570052,-65.19516658985764,-65.19457432506015,-65.19396799361006,-65.19334796178156,-65.19271458990174,-65.19206823243063,-65.19140923804024,-65.1907379496929,-65.19005470471875,-65.18935983489233,-65.1886536665084,-65.18793652045692,-65.18720871229718,-65.18647055233113,-65.1857223456759,-65.18496439233544,-65.18419698727139,-65.18342042047314,-65.18263497702705,-65.18184093718487,-65.18103857643139,-65.18022816555124,-65.1794099706949,-65.17858425344401,-65.17775127087576,-65.17691127562657,-65.176064515955,-65.17521123580394,-65.17435167486187,-65.17348606862353,-65.17261464844981,-65.17173764162676,-65.17085527142409,-65.16996775715268,-65.16907531422159,-65.16817815419418,-65.16727648484363,-65.16637051020767,-65.16546043064267,-65.16454644287695,-65.16362874006356,-65.16270751183217,-65.16178294434044,-65.1608552203247,-65.15992451914987,-65.15899101685883,-65.15805488622112,-65.15711629678097,-65.1561754149047,-65.1552324038275,-65.15428742369963,-65.15334063163192,-65.15239218174074,-65.1514422251923,-65.15049091024645,-65.14953838229978,-65.14858478392826,-65.14763025492917,-65.14667493236259,-65.14571895059227,-65.14476244132594,-65.14380553365508,-65.14284835409417,-65.14189102661939,-65.1409336727068,-65.13997641136996,-65.1390193591971,-65.13806263038778,-65.13710633678892,-65.13615058793052,-65.13519549106078,-65.13424115118077,-65.13328767107859,-65.13233515136308,-65.1313836904971,-65.13043338483028,-65.12948432863138,-65.12853661412015,-65.12759033149884,-65.12664556898314,-65.12570241283277,-65.12476094738169,-65.12382125506777,-65.12288341646214,-65.12194751029816,-65.12101361349981,-65.12008180120995,-65.11915214681791,-65.11822472198695,-65.11729959668114,-65.11637683919194,-65.11545651616447,-65.1145386926233,-65.11362343199792,-65.11271079614794,-65.11180084538779,-65.11089363851119,-65.1099892328152,-65.109087684124,-65.10818904681234,-65.10729337382854,-65.1064007167173,-65.10551112564218,-65.10462464940765,-65.103741335481,-65.10286123001379,-65.10198437786306,-65.1011108226123,-65.10024060659202,-65.09937377090012,-65.09851035542187,-65.09765039884972,-65.09679393870283,-65.09594101134618,-65.09509165200959,-65.09424589480635,-65.09340377275166,-65.09256531778078,-65.09173056076692,-65.09089953153887,-65.09007225889845,-65.08924877063758,-65.08842909355529,-65.08761325347432,-65.08680127525757,-65.08599318282435,-65.08518899916629,-65.08438874636315,-65.08359244559831,-65.08280011717413,-65.082011780527,-65.08122745424224,-65.08044715606879,-65.07967090293364,-65.07889871095614,-65.078130595462,-65.0773665709972,-65.07660665134165,-65.07585084952265,-65.07509917782819,-65.07435164782001,-65.07360827034654,-65.07286905555564,-65.07213401290713,-65.07140315118514,-65.07067647851032,-65.06995400235189,-65.06923572953946,-65.0685216662747,-65.06781181814291,-65.06710619012435,-65.06640478660539,-65.06570761138963,-65.0650146677087,-65.06432595823303,-65.06364148508241,-65.06296124983642,-65.06228525354466,-65.06161349673692,-65.06094597943317,-65.06028270115335,-65.05962366092714,-65.05896885730344,-65.05831828835986,-65.05767195171197,-65.05702984452248,-65.05639196351025,-65.05575830495921,-65.05512886472712,-65.05450363825419,-65.0538826205716,-65.05326580630995,-65.0526531897075,-65.05204476461829,-65.05144052452025,-65.05084046252307,-65.05024457137606,-65.04965284347577,-65.04906527087364,-65.04848184528348,-65.04790255808877,-65.04732740034997,-65.04675636281169,-65.0461894359097,-65.04562660977788,-65.0450678742551,-65.04451321889192,-65.04396263295729,-65.04341610544505,-65.0428736250804,-65.04233518032628,-65.0418007593896,-65.04127035022746,-65.04074394055318,-65.04022151784233,-65.03970306933857,-65.0391885820596,-65.03867804280272,-65.03817143815061,-65.03766875447683,-65.03716997795125,-65.03667509454557,-65.03618409003853,-65.03569695002116,-65.03521365990197,-65.034734204912,-65.03425857010981,-65.03378674038646,-65.03331870047029,-65.03285443493172,-65.032393928188,-65.03193716450777,-65.03148412801563,-65.03103480269671,-65.03058917240098,-65.03014722084768,-65.02970893162957,-65.02927428821715,-65.02884327396283,-65.028415872105,-65.02799206577207,-65.02757183798641,-65.02715517166828,-65.02674204963964,-65.02633245462789,-65.0259263692697,-65.02552377611454,-65.02512465762837,-65.02472899619711,-65.02433677413019,-65.02394797366392,-65.02356257696489,-65.02318056613328,-65.02280192320613,-65.02242663016054,-65.02205466891684,-65.02168602134167,-65.02132066925104,-65.02095859441336,-65.02059977855237,-65.02024420335,-65.01989185044934,-65.0195427014573,-65.01919673794747,-65.01885394146281,-65.01851429351828,-65.0181777756035,-65.0178443691853,-65.01751405571024,-65.01718681660711,-65.01686263328939,-65.01654148715761,-65.01622335960172,-65.01590823200343,-65.01559608573841,-65.0152869021786,-65.01498066269437,-65.01467734865665,-65.0143769414391,-65.0140794224201,-65.01378477298486,-65.01349297452741,-65.01320400845248,-65.01291785617752,-65.01263449913455,-65.01235391877199,-65.01207609655651,-65.0118010139748,-65.01152865253529,-65.01125899376989,-65.01099201923567,-65.0107277105165,-65.01046604922465,-65.01020701700237,-65.00995059552348,-65.00969676649481,-65.00944551165777,-65.00919681278977,-65.00895065170559,-65.00870701025887,-65.00846587034344,-65.00822721389461,-65.00799102289054,-65.00775727935347,-65.00752596535105,-65.00729706299745,-65.00707055445466,-65.00684642193359,-65.00662464769526,-65.00640521405191,-65.00618810336805,-65.00597329806155,-65.00576078060473,-65.00555053352531,-65.00534253940741,-65.00513678089256,-65.0049332406806,-65.00473190153065,-65.00453274626193,-65.00433575775472,-65.00414091895114,-65.00394821285603,-65.00375762253776,-65.00356913112897,-65.00338272182738,-65.00319837789651,-65.0030160826664,-65.00283581953437,-65.00265757196561,-65.00248132349392,-65.00230705772232,-65.00213475832368,-65.00196440904132,-65.00179599368963,-65.00162949615458,-65.00146490039432,-65.00130219043972,-65.0011413503948,-65.00098236443735,-65.00082521681931,-65.00066989186729,-65.00051637398299,-65.00036464764366,-65.00021469740247,-65.00006650788893,-64.9999200638093,-64.99977534994692,-64.99963235116255,-64.99949105239476,-64.99935143866023,-64.99921349505402,-64.99907720674993,-64.99894255900071,-64.99880953713838,-64.99867812657446,-64.9985483128002,-64.99842008138681,-64.9982934179857,-64.99816830832864,-64.99804473822797,-64.99792269357677,-64.99780216034898,-64.99768312459966,-64.99756557246499,-64.99744949016252,-64.99733486399118,-64.99722168033148,-64.9971099256455,-64.99699958647707,-64.9968906494518,-64.99678310127712,-64.99667692874235,-64.99657211871876,-64.99646865815956,-64.99636653409995,-64.99626573365713,-64.99616624403026,-64.99606805250055,-64.9959711464311,-64.995875513267,-64.99578114053523,-64.99568801584464,-64.99559612688589,-64.99550546143136,-64.99541600733518,-64.99532775253302,-64.99524068504208,-64.99515479296099,-64.99507006446973,-64.99498648782948,-64.99490405138252,-64.99482274355212,-64.99474255284241,-64.99466346783821,-64.99458547720494,-64.99450856968842,-64.99443273411477,-64.99435795939019,-64.99428423450081,-64.99421154851255,-64.9941398905709,-64.99406924990076,-64.99399961580619,-64.99393097767029,-64.99386332495494,-64.99379664720065,-64.99373093402627,-64.99366617512884,-64.99360236028329,-64.9935394793423,-64.993477522236,-64.99341647897177,-64.99335633963395,-64.99329709438366,-64.99323873345848,-64.99318124717225,-64.99312462591476,-64.99306886015152,-64.99301394042348,-64.99295985734675,-64.99290660161235,-64.99285416398588,-64.99280253530732,-64.99275170649064,-64.99270166852358,-64.99265241246736,-64.99260392945634,-64.99255621069773,-64.99250924747132,-64.99246303112915,-64.99241755309521,-64.9923728048651,-64.99232877800576,-64.99228546415513,-64.99224285502183,-64.99220094238484,-64.99215971809319,-64.99211917406562,-64.99207930229024,-64.9920400948242,-64.99200154379344,-64.99196364139219,-64.99192637988281,-64.99188975159534,-64.99185374892718,-64.99181836434279,-64.99178359037329,-64.99174941961616,-64.99171584473486,-64.9916828584585,-64.99165045358153,-64.9916186229633,-64.99158735952778,-64.99155665626319,-64.9915265062216,-64.99149690251868,-64.99146783833324,-64.99143930690691,-64.99141130154382,-64.99138381561018,-64.99135684253395,-64.9913303758045,-64.9913044089722,-64.99127893564811,-64.9912539495036,-64.99122944426996,-64.99120541373807,-64.99118185175804,-64.99115875223883,-64.99113610914789,-64.99111391651078,-64.99109216841086,-64.99107085898885,-64.99104998244255,-64.99102953302639,-64.99100950505114,-64.99098989288348,-64.99097069094569,-64.99095189371525,-64.99093349572452,-64.99091549156032,-64.99089787586358,-64.99088064332902,-64.99086378870474,-64.99084730679189,-64.99083119244426,-64.99081544056799,-64.99080004612112,-64.99078500411332,-64.99077030960547,-64.99075595770931,-64.9907419435871,-64.99072826245124,-64.99071490956392,-64.99070188023677,-64.99068916983049,-64.9906767737545,-64.99066468746659,-64.99065290647255,-64.99064142632584,-64.99063024262722]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1284\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1285\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1280\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_width\":2,\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1281\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.1,\"line_width\":2,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1282\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.2,\"line_width\":2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1292\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1286\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1287\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1288\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99935513261319,-64.99876372655443,-64.99821046775223,-64.99768760284877,-64.99719024284995,-64.9967149504044,-64.99625914620756,-64.99582080888742,-64.99539830409073,-64.99499027876743,-64.99459559173746,-64.9942132659803,-64.99384245467667,-64.99348241634011,-64.99313249616334,-64.99279211172957,-64.99246074185916,-64.99213791775158,-64.9918232158369,-64.99151625192148,-64.99121667632834,-64.99092416981388,-64.9906384400996,-64.99035921889781,-64.9900862593399,-64.98981933373693,-64.98955823161761,-64.98930275800073,-64.98905273186749,-64.98880798480567,-64.98856835980287,-64.98833371016954,-64.98810389857603,-64.98787879618985,-64.98765828190169,-64.98744224163005,-64.98723056769579,-64.98702315825905,-64.98681991681177,-64.98662075172,-64.98642557581078,-64.98623430599895,-64.98604686294976,-64.98586317077384,-64.98568315675092,-64.98550675107974,-64.98533388665128,-64.98516449884323,-64.98499852533341,-64.98483590593034,-64.98467658241935,-64.98452049842264,-64.98436759927196,-64.9842178318927,-64.98407114469833,-64.9839274874941,-64.98378681138925,-64.98364906871686,-64.98351421296057,-64.98338219868768,-64.98325298148782,-64.98312651791689,-64.98300276544562,-64.98288168241243,-64.98276322798012,-64.9826473620961,-64.98253404545586,-64.98242323946921,-64.98231490622933,-64.98220900848413,-64.98210550960985,-64.98200437358663,-64.98190556497596,-64.98180904889972,-64.98171479102083,-64.98162275752524,-64.98153291510515,-64.98144523094348,-64.98135967269936,-64.98127620849456,-64.98119480690092,-64.98111543692838,-64.98103806801403,-64.98096267001164,-64.98088921318191,-64.98081766818328,-64.98074800606325,-64.98068019825023,-64.98061421654577,-64.98055003311731,-64.98048762049119,-64.98042695154606,-64.98036799950668,-64.98031073793787,-64.98025514073888,-64.98020118213792,-64.98014883668696,-64.98009807925678,-64.98004888503208,-64.98000122950698,-64.97995508848057,-64.97991043805256,-64.97986725461925,-64.97982551486949,-64.97978519578083,-64.97974627461582,-64.97970872891828,-64.97967253650988,-64.97963767548666,-64.97960412421568,-64.9795718613318,-64.97954086573448,-64.97951111658465,-64.97948259330174,-64.97945527556065,-64.9794291432889,-64.9794041766637,-64.97938035610927,-64.97935766229399,-64.97933607612775,-64.97931557875931,-64.97929615157369,-64.9792777761896,-64.97926043445693,-64.97924410845425,-64.97922878048635,-64.97921443308188,-64.97920104899089,-64.97918861118255,-64.9791771028428,-64.97916650737206,-64.97915680838297,-64.97914798969815,-64.97914003534801,-64.97913292956854,-64.97912665679917,-64.97912120168063,-64.97911654905283,-64.9791126839528,-64.97910959161258,-64.9791072574572,-64.97910566710264,-64.97910480635385,-64.9791046612027,-64.97910521782612,-64.97910646258404,-64.97910838201756,-64.97911096284695,-64.97911419196981,-64.97911805645921,-64.97912254356177,-64.97912764069588,-64.97913333544982,-64.97913961558001,-64.97914646900918,-64.97915388382462,-64.97916184827639,-64.97917035077559,-64.97917937989264,-64.97918892435557,-64.9791989730483,-64.97920951500899,-64.97922053942833,-64.9792320356479,-64.97924399315858,-64.97925640159885,-64.97926925075322,-64.97928253055065,-64.97929623106292,-64.97931034250308,-64.97932485522395,-64.97933975971648,-64.9793550466083,-64.97937070666218,-64.97938673077451,-64.97940310997384,-64.97941983541942,-64.97943689839968,-64.97945429033085,-64.97947200275546,-64.97949002734096,-64.9795083558783,-64.97952698028051,-64.97954589258138,-64.979565084934,-64.97958454960943,-64.9796042789954,-64.9796242655949,-64.9796445020249,-64.97966498101505,-64.97968569540632,-64.97970663814978,-64.97972780230526,-64.97974918104013,-64.97977076762804,-64.97979255544764,-64.97981453798143,-64.9798367088144,-64.979859061633,-64.97988159022377,-64.97971041088155,-64.9787899399714,-64.97624619843798,-64.9710790395462,-64.96236271580996,-64.94937413403783,-64.93163942957804,-64.90892333043291,-64.88118972440527,-64.84855380517602,-64.81123702114235,-64.76952951370346,-64.72376101212095,-64.67427940862794,-64.62143562923376,-64.56557336787425,-64.50702243439423,-64.44609471322262,-64.3830819651507,-64.31825490259504,-64.25186312449681,-64.18413561492197,-64.1152815965163,-64.04549159322849,-63.97493860212196,-63.90377930638789,-63.83215528445973,-63.76019418609286,-63.688010857370514,-63.61570840424417,-63.5433791894288,-63.47110576097441,-63.39896171314053,-63.32701248167324,-63.25531607648277,-63.18392375522407,-63.11288064152061,-63.042226291630925,-62.971995213301334,-62.90221734041767,-62.833112272572656,-62.765257427806446,-62.69954520134148,-62.63699140687792,-62.57853552936149,-62.52491332399307,-62.476611020831584,-62.43387659230908,-62.39675963814224,-62.36515950928111,-62.33887046323812,-62.31761918999723,-62.301093770913525,-62.2889648763391,-62.28090061362524,-62.2765764814993,-62.27568170007256,-62.27792293542482,-62.28302619845509,-62.2907374963872,-62.30082265666662,-62.31306662265424,-62.32727243146848,-62.343260019515924,-62.3608649546643,-62.379937160858574,-62.400339677602275,-62.421947480393456,-62.444646376916,-62.468331986088565,-62.49290880191645,-62.51828934072403,-62.54439336822906,-62.57114720167202,-62.59848308156106,-62.62633860734369,-62.654656231333604,-62.68338280540941,-62.7124691752955,-62.74186981758657,-62.77154251505609,-62.801448066173506,-62.831550025130944,-62.86181446904007,-62.89220978929701,-62.92270650442617,-62.95327709200087,-62.983895837500356,-63.01453869819956,-63.045183180401246,-63.07580822851198,-63.10639412463446,-63.136922397501706,-63.16737573971458,-63.197737932365115,-63.227993776235046,-63.258129028854015,-63.28813034678584,-63.31798523258524,-63.347681985933015,-63.377209658515376,-63.40655801226375,-63.43571748061659,-63.46467913250377,-63.49343463878907,-63.52197624093677,-63.55029672169507,-63.57838937761278,-63.60624799322656,-63.63386681677395,-63.66124053730375,-63.68836426306918,-63.71523350110192,-63.741844137875646,-63.76819242097764,-63.79427494171525,-63.82008861859154,-63.8456306815909,-63.87089865722126,-63.895890354264665,-63.92060385019222,-63.94503747820381,-63.96918981485606,-63.993059668245536,-64.01664606671659,-64.03994824806598,-64.06296564921844,-64.08569789634936,-64.10814479543252,-64.13030632319236,-64.15218261844157,-64.1737739737863,-64.19508082768209,-64.21610375682496,-64.23684346886287,-64.25730079541357,-64.27747668537579,-64.29737219852137,-64.31698849935641,-64.33632685124046,-64.35538861075294,-64.37417522229686,-64.39268821293007,-64.41092918741494,-64.42889982347765,-64.44660186726875,-64.46403712901687,-64.48120747886807,-64.49811484290333,-64.5147611993272,-64.53114857482079,-64.54727904105276,-64.56315471134187,-64.57877773746534,-64.59415030660715,-64.60927463844071,-64.62415298234085,-64.63878761471976,-64.65318083648219,-64.66733497059505,-64.68125235976704,-64.69493536423393,-64.70838635964513,-64.72160773504785,-64.73460189096471,-64.7473712375612,-64.75991819289942,-64.77224518127468,-64.78435463163156,-64.7962489760563,-64.80793064834258,-64.8194020826275,-64.83066571209521,-64.84172396774524,-64.85257927722303,-64.8632340637102,-64.87369074487192,-64.88395173185937,-64.89401942836474,-64.9038962297269,-64.91358452208537,-64.92308668158098,-64.93240507360089,-64.9415420520665,-64.95049995876224,-64.95928112270364,-64.96788785954308,-64.9763224710115,-64.9845872443948,-64.99268445204325,-65.00061635091261,-65.00838518213565,-65.01599317062279,-65.02344252469048,-65.0307354357163,-65.03787407781955,-65.04486060756629,-65.05169716369764,-65.05838586688047,-65.06492881947946,-65.07132810534958,-65.07758578964803,-65.0837039186649,-65.08968451967158,-65.09552960078629,-65.10124115085577,-65.10682113935249,-65.11227151628668,-65.11759421213252,-65.1227911377677,-65.12786418442593,-65.13281522366154,-65.13764610732584,-65.14235866755455,-65.14695471676573,-65.15143604766786,-65.15580443327728,-65.16006162694494,-65.16420936239153,-65.16824935375098,-65.17218329562158,-65.17601286312454,-65.17973971196946,-65.18336547852643,-65.18689177990433,-65.1903202140351,-65.19365235976346,-65.19688977694202,-65.2000340065312,-65.2030865707039,-65.20604897295455,-65.20892269821219,-65.21170921295753,-65.2144099653435,-65.2170263853193,-65.21955988475746,-65.22201185758395,-65.22438367991101,-65.22667671017244,-65.22889228926127,-65.23103174066962,-65.23309637063052,-65.2350874682615,-65.23700630570991,-65.23885413829976,-65.2406322046798,-65.24234172697298,-65.24398391092687,-65.24555994606511,-65.24707100583969,-65.2485182477839,-65.24990281366603,-65.25122582964335,-65.25248840641673,-65.25369163938542,-65.25483660880211,-65.25592437992808,-65.25695600318842,-65.25793251432724,-65.25885493456272,-65.259724270742,-65.26054151549583,-65.26130764739293,-65.26202363109388,-65.26269041750473,-65.26330894392993,-65.26388013422492,-65.26440489894799,-65.2648841355115,-65.26531872833253,-65.26570954898271,-65.26605745633731,-65.2663632967235,-65.26662790406785,-65.26685210004291,-65.26703669421288,-65.26718248417836,-65.2672902557202,-65.26736078294225,-65.26739482841322,-65.26739314330747,-65.26735646754473,-65.26728552992877,-65.26718104828504,-65.26704372959709,-65.266874270142,-65.2666733556246,-65.26644166131062,-65.2661798521586,-65.2658885829507,-65.26556849842231,-65.26522023339056,-65.26484441288153,-65.26444165225631,-65.26401255733592,-65.26355772452494,-65.26307774093404,-65.26257318450116,-65.26204462411165,-65.26149261971705,-65.26091772245276,-65.26032047475448,-65.25970141047337,-65.2590610549901,-65.25839992532764,-65.25771853026285,-65.25701737043687,-65.25629693846432,-65.25555771904128,-65.25480018905213,-65.25402481767516,-65.253232066487,-65.25242238956591,-65.25159623359382,-65.25075403795731,-65.24989623484738,-65.24902324935806,-65.24813549958385,-65.24723339671611,-65.24631734513824,-65.24538774251974,-65.24444497990923,-65.24348944182624,-65.24252150635203,-65.2415415452192,-65.24054992390035,-65.23954700169546,-65.23853313181847,-65.2375086614826,-65.23647393198463,-65.23542927878833,-65.2343750316066,-65.23331151448275,-65.23223904587077,-65.23115793871449,-65.23006850052587,-65.22897103346222,-65.22786583440246,-65.2267531950225,-65.22563340186946,-65.2245067364352,-65.22337347522873,-65.22223388984774,-65.22108824704927,-65.21993680881933,-65.21877983244183,-65.21761757056639,-65.21645027127549,-65.21527817815056,-65.2141015303373,-65.21292056261021,-65.21173550543608,-65.2105465850369,-65.20935402345172,-65.2081580385979,-65.20695884433131,-65.205756650506,-65.20455166303287,-65.20334408393772,-65.20213411141837,-65.20092193990119,-65.19970776009676,-65.19849175905482,-65.19727412021851,-65.19605502347787,-65.19483464522258,-65.19361315839411,-65.19239073253704,-65.19116753384972,-65.18994372523436,-65.18871946634629,-65.18749491364265,-65.18627022043043,-65.18504553691375,-65.18382101024065,-65.18259678454915,-65.18137300101272,-65.18014979788512,-65.17892731054465,-65.17770567153775,-65.17648501062207,-65.17526545480892,-65.17404712840515,-65.17283015305442,-65.17161464777801,-65.17040072901494,-65.16918851066163,-65.16797810411097,-65.16676961829091,-65.16556315970249,-65.16435883245728,-65.16315673831446,-65.16195697671722,-65.16075964482883,-65.15956483756804,-65.15837264764413,-65.15718316559139,-65.1559964798032,-65.15481267656558,-65.15363184009028,-65.15245405254747,-65.15127939409787,-65.15010794292459,-65.14893977526438,-65.14777496543854,-65.14661358588336,-65.14545570718013,-65.14430139808482,-65.1431507255572,-65.14200375478973,-65.14086054923585,-65.13972117063808,-65.13858567905558,-65.13745413289138,-65.13632658891927,-65.13520310231026,-65.13408372665863,-65.13296851400777,-65.1318575148755,-65.13075077827915,-65.12964835176015,-65.12855028140848,-65.12745661188659,-65.12636738645307,-65.12528264698604,-65.12420243400605,-65.12312678669886,-65.12205574293775,-65.12098933930554,-65.11992761111642,-65.11887059243733,-65.11781831610907,-65.11677081376716,-65.11572811586242,-65.11469025168117,-65.11365724936522,-65.11262913593156,-65.11160593729177,-65.11058767827116,-65.10957438262763,-65.10856607307026,-65.10756277127768,-65.10656449791612,-65.10557127265723,-65.10458311419566,-65.10360004026639,-65.10262206766177,-65.10164921224842,-65.10068148898374,-65.09971891193234,-65.09876149428212,-65.09780924836015,-65.09686218564842,-65.09592031679921,-65.09498365165032,-65.09405219924015,-65.0931259678224,-65.09220496488071,-65.091289197143,-65.09037867059568,-65.08947339049757,-65.08857336139368,-65.0876785871288,-65.08678907086082,-65.08590481507395,-65.0850258215917,-65.08415209158966,-65.08328362560815,-65.08242042356463,-65.08156248476594,-65.08070980792043,-65.07986239114979,-65.07902023200083,-65.07818332745703,-65.0773516739499,-65.07652526737026,-65.07570410307922,-65.07488817591914,-65.07407748022436,-65.07327200983175,-65.0724717580912,-65.07167671787579,-65.070886881592,-65.07010224118969,-65.06932278817182,-65.06854851360426,-65.06777940812523,-65.06701546195477,-65.06625666490392,-65.0655030063839,-65.06475447541509,-65.0640110606358,-65.06327275031113,-65.0625395323414,-65.06181139427075,-65.06108832329532,-65.06037030627162,-65.05965732972449,-65.05894937985508,-65.05824644254876,-65.05754850338276,-65.0568555476338,-65.0561675602856,-65.05548452603621,-65.05480642930532,-65.05413325424136,-65.0534649847286,-65.05280160439402,-65.05214309661417,-65.05148944452189,-65.0508406310129,-65.05019663875234,-65.04955745018118,-65.04892304752252,-65.04829341278781,-65.04766852778297,-65.0470483741144,-65.04643293319488,-65.04582218624948,-65.04521611432122,-65.04461469827677,-65.04401791881197,-65.04342575645732,-65.04283819158337,-65.042255204406,-65.04167677499164,-65.0411028832624,-65.0405335090011,-65.03996863185623,-65.03940823134685,-65.03885228686741,-65.03830077769241,-65.03775368298112,-65.03721098178207,-65.0366726530376,-65.03613867558826,-65.03560902817718,-65.03508368945428,-65.03456263798054,-65.03404585223211,-65.03353331060434,-65.0330249914158,-65.03252087291219,-65.03202093327022,-65.03152515060138,-65.03103350295567,-65.03054596832523,-65.03006252464802,-65.02958314981127,-65.029107821655,-65.02863651797543,-65.02816921652827,-65.02770589503211,-65.0272465311716,-65.02679110260061,-65.0263395869454,-65.02589196180763,-65.02544820476741,-65.02500829338624,-65.02457220520985,-65.02413991777117,-65.023711408593,-65.02328665519083,-65.02286563507549,-65.02244832575579,-65.02203470474113,-65.02162474954403,-65.02121843768262,-65.0208157466831,-65.02041665408208,-65.02002113742903,-65.01962917428847,-65.01924074224233,-65.0188558188921,-65.01847438186105,-65.01809640879628,-65.0177218773709,-65.017350765286,-65.01698305027267,-65.01661871009401,-65.01625772254695,-65.01590006546422,-65.01554571671616,-65.01519465421248,-65.0148468559041,-65.0145022997848,-65.01416096389295,-65.01382282631316,-65.01348786517788,-65.013156058669,-65.01282738501936,-65.0125018225143,-65.01217934949308,-65.0118599443504,-65.01154358553775,-65.01123025156478,-65.01091992100068,-65.01061257247547,-65.01030818468129,-65.01000673637364,-65.0097082063726,-65.00941257356402,-65.0091198169007,-65.00882991540345,-65.0085428481623,-65.00825859433749,-65.00797713316052,-65.00769844393521,-65.00742250603867,-65.00714929892222,-65.00687880211241,-65.00661099521187,-65.00634585790023,-65.00608336993494,-65.00582351115216,-65.00556626146752,-65.00531160087694,-65.00505950945737,-65.00480996736756,-65.00456295484877,-65.00431845222542,-65.00407643990584,-65.00383689838287,-65.0035998082345,-65.00336515012445,-65.00313290480283,-65.00290305310662,-65.00267557596028,-65.00245045437624,-65.00222766945545,-65.0020072023878,-65.00178903445264,-65.00157314701922,-65.0013595215471,-65.0011481395866,-65.00093898277916,-65.00073203285773,-65.00052727164713,-65.0003246810644,-65.00012424311912,-64.99992593991372,-64.99972975364378,-64.99953566659828,-64.9993436611599,-64.99915371980525,-64.99896582510512,-64.99877995972464,-64.99859610642358,-64.9984142480564,-64.99823436757259,-64.9980564480167,-64.99788047252851,-64.99770642434322,-64.99753428679152,-64.99736404329971,-64.99719567738978,-64.99702917267953,-64.9968645128826,-64.99670168180853,-64.99654066336284,-64.99638144154702,-64.99622400045857,-64.99606832429103,-64.99591439733396,-64.99576220397293,-64.99561172868948,-64.99546295606116,-64.99531587076139,-64.99517045755945,-64.99502670132048,-64.9948845870053,-64.99474409967041,-64.99460522446786,-64.99446794664514,-64.99433225154515,-64.99419812460597,-64.99406555136083,-64.9939345174379,-64.99380500856024,-64.99367701054554,-64.99355050930605,-64.99342549084838,-64.99330194127332,-64.99317984677566,-64.99305919364403,-64.99293996826067,-64.99282215710126,-64.99270574673467,-64.99259072382279,-64.99247707512028,-64.99236478747434,-64.99225384782451,-64.99214424320238,-64.99203596073136,-64.99192898762647,-64.991823311194,-64.99171891883134,-64.99161579802664,-64.99151393635859,-64.99141332149605,-64.9913139411979,-64.99121578331263,-64.9911188357781,-64.99102308662124,-64.99092852395776,-64.99083513599182,-64.9907429110157,-64.99065183740953,-64.99056190364094,-64.99047309826474,-64.99038540992261,-64.99029882734273,-64.99021333933948,-64.9901289348131,-64.99004560274933,-64.98996333221906,-64.98988211237803,-64.98980193246638,-64.98972278180841,-64.98964464981216,-64.98956752596905,-64.9894913998535,-64.98941626112264,-64.98934209951584,-64.98926890485441,-64.98919666704123,-64.9891253760603,-64.98905502197644,-64.98898559493487,-64.98891708516086,-64.98884948295931,-64.98878277871437,-64.98871696288904,-64.98865202602487,-64.98858795874143,-64.98852475173602,-64.98846239578323,-64.98840088173456,-64.98834020051802,-64.98828034313773,-64.98822130067352,-64.9881630642805,-64.98810562518874,-64.98804897470276,-64.98799310420124,-64.9879380051365,-64.98788366903416,-64.98783008749274,-64.98777725218324,-64.98772515484868,-64.98767378730379,-64.98762314143453,-64.98757320919768,-64.98752398262047,-64.98747545380016,-64.9874276149036,-64.98738045816683,-64.98733397589467,-64.98728816046035,-64.98724300430504,-64.98719849993745,-64.98715463993344,-64.98711141693559,-64.98706882365282,-64.98702685285993,-64.9869854973972,-64.98694475017003,-64.98690460414846,-64.98686505236681,-64.98682608792322,-64.9867877039793,-64.9867498937597,-64.98671265055164,-64.9866759677046,-64.98663983862984,-64.98660425680004,-64.98656921574883,-64.98653470907045,-64.98650073041934,-64.98646727350967,-64.98643433211501,-64.98640190006788,-64.98636997125936,-64.98633853963872,-64.98630759921295,-64.98627714404643,-64.98624716826048,-64.98621766603299,-64.98618863159803,-64.98616005924542,-64.98613194332037,-64.98610427822305,-64.98607705840824,-64.98605027838491,-64.98602393271581,-64.98599801601713,-64.9859725229581,-64.98594744826053,-64.98592278669855,-64.98589853309812]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1293\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1294\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1289\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\"}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1290\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.1}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1291\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1302\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1296\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1297\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1298\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.9999887728352,-64.99995628441064,-64.99989892130402,-64.99981776440134,-64.99971593404454,-64.99959696409681,-64.9994640945174,-64.99932005820553,-64.99916707959999,-64.99900694572524,-64.99884109066289,-64.99867067185168,-64.99849663240401,-64.99831974967087,-64.99814067221564,-64.9979599476568,-64.99777804356196,-64.99759536315324,-64.99741225717617,-64.99722903294513,-64.997045961312,-64.99686328210359,-64.99668120842533,-64.99649993011919,-64.99631961658532,-64.99614041911998,-64.99596247288079,-64.99578589856121,-64.99561080383481,-64.99543728461397,-64.99526542615743,-64.99509530405204,-64.99492698508901,-64.99476052804992,-64.99459598441516,-64.9944333990045,-64.99427281055823,-64.99411425226526,-64.99395775224443,-64.99380333398332,-64.9936510167393,-64.99350081590609,-64.99335274334918,-64.9932068077131,-64.9930630147029,-64.99292136734223,-64.99278186620997,-64.99264450965734,-64.99250929400716,-64.99237621373675,-64.99224526164582,-64.99211642901071,-64.99198970572593,-64.99186508043432,-64.99174254064651,-64.99162207285073,-64.99150366261364,-64.9913872946731,-64.99127295302327,-64.99116062099287,-64.99105028131714,-64.99094191620388,-64.99083550739412,-64.99073103621798,-64.99062848364582,-64.99052783033534,-64.99042905667477,-64.99033214282261,-64.99023706874397,-64.99014381424404,-64.9900523589988,-64.98996268258311,-64.9898747644965,-64.98978858418687,-64.98970412107208,-64.98962135455983,-64.9895402640658,-64.98946082903024,-64.98938302893315,-64.98930684330816,-64.98923225175508,-64.98915923395158,-64.98908776966351,-64.98901783875456,-64.98894942119492,-64.98888249706904,-64.9888170465829,-64.98875305007034,-64.98869048799891,-64.98862934097504,-64.98856958974879,-64.98851121521798,-64.98845419843201,-64.98839852059504,-64.98834416306907,-64.98829110737641,-64.98823933520198,-64.98818882839521,-64.98813956897175,-64.98809153911486,-64.98804472117659,-64.98799909767875,-64.98795465131361,-64.9879113649446,-64.98786922160656,-64.98782820450614,-64.9877882970218,-64.98774948270386,-64.98771174527435,-64.98767506862673,-64.98763943682557,-64.9876048341061,-64.98757124487368,-64.9875386537032,-64.98750704533843,-64.98747640469125,-64.98744671684085,-64.98741796703293,-64.98739014067873,-64.98736322335415,-64.98733720079875,-64.98731205891472,-64.98728778376584,-64.98726436157636,-64.98724177873002,-64.98722002176875,-64.98719907739162,-64.98717893245369,-64.98715957396473,-64.9871409890881,-64.98712316513955,-64.9871060895859,-64.98708975004389,-64.98707413427894,-64.98705923020385,-64.98704502587759,-64.987031509504,-64.98701866943061,-64.9870064941473,-64.98699497228505,-64.98698409261473,-64.98697384404576,-64.98696421562494,-64.98695519653506,-64.98694677609379,-64.98693894375232,-64.98693168909415,-64.98692500183381,-64.9869188718157,-64.98691328901273,-64.98690824352518,-64.98690372557944,-64.98689972552677,-64.98689623384209,-64.98689324112283,-64.98689073808761,-64.98688871557513,-64.98688716454295,-64.98688607606633,-64.986885441337,-64.986885251662,-64.9868854984626,-64.98688617327304,-64.98688726773939,-64.98688877361852,-64.9868906827768,-64.98689298718915,-64.98689567893776,-64.98689875021108,-64.98690219330271,-64.98690600061028,-64.98691016463434,-64.98691467797738,-64.98691953334263,-64.9869247235331,-64.98693024145048,-64.9869360800941,-64.9869422325599,-64.98694869203939,-64.98695545181864,-64.98696250527728,-64.98696984588742,-64.98697746721274,-64.98698536290749,-64.98699352671547,-64.98700195246904,-64.98701063408822,-64.98701956557971,-64.9870287410359,-64.98703815463395,-64.98704780063491,-64.98705767338271,-64.98706776730327,-64.98707807690363,-64.98708859677099,-64.98709932157186,-64.98711024605112,-64.9871213650312,-64.98713267341117,-64.98714416616588,-64.94602518770104,-64.8448211556509,-64.69074781897692,-64.4999728056056,-64.28748164644072,-64.06433934676352,-63.83798393234537,-63.613187475857714,-63.3929132128382,-63.17893147418818,-62.97223244398008,-62.77329726594072,-62.5822760851749,-62.39910579288088,-62.223588517948876,-62.0554442626767,-61.894346284476434,-61.7399448309858,-61.591882944418366,-61.449806834409415,-61.31337252096681,-61.182249916828845,-61.05612515797879,-60.934701743970955,-60.817700878886235,-60.704861284875165,-60.595938677196344,-60.49070503147751,-60.38894773311656,-60.290468670111984,-60.195083310549975,-60.10261979194616,-60.01291803986243,-59.92582892643908,-59.84121347481422,-59.75894211221863,-59.678893972395365,-59.600956246583515,-59.52502358140633,-59.45099752145755,-59.41991664346933,-59.450649353208135,-59.53589918500543,-59.659422853030094,-59.80616387365802,-59.96499069195437,-60.128402884265306,-60.29156992570915,-60.451473904142354,-60.60629344289712,-60.75499081298466,-60.897040702277906,-61.032252048018776,-61.16065015999975,-61.28239808768179,-61.397743832913555,-61.5069848066524,-61.61044392354938,-61.708453620503654,-61.801345302245295,-61.889442514800166,-61.973056679970774,-62.05248458436705,-62.128007063381055,-62.19988849105234,-62.26837680532474,-62.33370388093674,-62.39608612007162,-62.45572517142861,-62.51280871675632,-62.56751128373494,-62.619995057937594,-62.67041067622371,-62.718897990572174,-62.76558679593198,-62.81059751877684,-62.85404186513703,-62.896023428256385,-62.9366382569033,-62.97597538590525,-63.01411733078436,-63.05114054852239,-63.08711586653,-63.122108881873245,-63.15618033274604,-63.18938644408705,-63.22177924913591,-63.253406888613654,-63.284313889101696,-63.31454142208553,-63.34412754502551,-63.373107425718615,-63.40151355112354,-63.429375921734845,-63.45672223251288,-63.48357804130219,-63.50996692560292,-63.53591062849737,-63.56142919447544,-63.586541095849775,-63.611263350402005,-63.63561163085603,-63.659600366732704,-63.68324283910118,-63.7065512687069,-63.72953689792261,-63.75221006693871,-63.77458028458052,-63.79665629411387,-63.81844613437609,-63.83995719654666,-63.86119627685104,-63.8821696254712,-63.90288299191862,-63.923341667108176,-63.943550522355935,-63.96351404550875,-63.98323637440028,-64.00272132781481,-64.0219724341288,-64.04099295778842,-64.05978592377141,-64.0783541401716,-64.09670021903523,-64.11482659557035,-64.13273554584173,-64.15042920305697,-64.16790957254256,-64.1851785455015,-64.20223791163892,-64.21908937073582,-64.23573454324591,-64.25217497998571,-64.26841217098321,-64.28444755354626,-64.30028251960748,-64.31591842239904,-64.3313565825068,-64.34659829335016,-64.36164482613064,-64.37649743428967,-64.39115735751268,-64.40562582531487,-64.41990406024094,-64.43399328070913,-64.44789470352792,-64.4616095461115,-64.47513902841851,-64.48848437463685,-64.50164681463556,-64.51462758520354,-64.52742793109326,-64.5400491058864,-64.55249237269726,-64.56475900472837,-64.57685028569193,-64.5887675101095,-64.60051198350169,-64.61208502247847,-64.62348795474018,-64.63472211899814,-64.64578886482374,-64.65668955243346,-64.66742555241737,-64.67799824541747,-64.68840902176228,-64.69865928106309,-64.70875043177712,-64.71868389074253,-64.72846108268921,-64.73808343972989,-64.74755240083473,-64.75686941129304,-64.766035922165,-64.77505338972631,-64.78392327490796,-64.79264704273396,-64.80122616175835,-64.80966210350404,-64.81795634190478,-64.8261103527517,-64.8341256131461,-64.84200360095932,-64.84974579430099,-64.85735367099647,-64.86482870807437,-64.87217238126469,-64.87938616450862,-64.88647152947983,-64.89342994511854,-64.90026287717782,-64.90697178778335,-64.913558135006,-64.92002337244813,-64.92636894884329,-64.93259630766946,-64.93870688677612,-64.9447021180248,-64.95058342694327,-64.95635223239337,-64.9620099462521,-64.96755797310607,-64.9729977099592,-64.97833054595326,-64.98355786210129,-64.98868103103362,-64.9937014167562,-64.99862037442112,-65.0034392501091,-65.00815938062351,-65.01278209329593,-65.01730870580272,-65.02174052599267,-65.02607885172499,-65.03032497071793,-65.03448016040724,-65.03854568781456,-65.04252280942525,-65.04641277107554,-65.05021680784851,-65.053936143979,-65.05757199276671,-65.06112555649761,-65.06459802637318,-65.06799058244735,-65.07130439357078,-65.07454061734227,-65.07770040006703,-65.08078487672165,-65.0837951709254,-65.08673239491773,-65.08959764954169,-65.09239202423298,-65.09511659701465,-65.09777243449686,-65.10036059188185,-65.10288211297373,-65.10533803019281,-65.10772936459455,-65.11005712589258,-65.11232231248606,-65.11452591149059,-65.11666889877318,-65.11875223899054,-65.12077688563082,-65.12274378105866,-65.12465385656311,-65.12650803240872,-65.12830721788916,-65.13005231138361,-65.13174420041558,-65.13338376171417,-65.1349718612774,-65.1365093544378,-65.13799708592988,-65.13943588995953,-65.14082659027508,-65.14217000024017,-65.14346692290795,-65.14471815109684,-65.1459244674677,-65.14708664460201,-65.14820544508144,-65.1492816215684,-65.15031591688751,-65.15130906410805,-65.15226178662722,-65.15317479825416,-65.15404880329454,-65.15488449663594,-65.15568256383362,-65.1564436811968,-65.15716851587541,-65.15785772594711,-65.15851196050468,-65.15913185974364,-65.15971805505,-65.1602711690883,-65.16079181588952,-65.16128060093928,-65.16173812126587,-65.16216496552833,-65.16256171410447,-65.16292893917866,-65.16326720482962,-65.16357706711801,-65.16385907417359,-65.16411376628247,-65.16434167597382,-65.16454332810638,-65.16471923995464,-65.16486992129461,-65.16499587448932,-65.16509759457375,-65.1651755693395,-65.16523027941886,-65.16526219836861,-65.16527179275309,-65.16525952222698,-65.16522583961745,-65.16517119100584,-65.16509601580871,-65.16500074685845,-65.1648858104832,-65.16475162658628,-65.16459860872493,-65.16442716418855,-65.1642376940763,-65.16403059337398,-65.16380625103041,-65.16356505003311,-65.16330736748337,-65.16303357467059,-65.16274403714611,-65.16243911479624,-65.16211916191467,-65.1617845272743,-65.16143555419826,-65.16107258063036,-65.16069593920483,-65.16030595731536,-65.15990295718353,-65.15948725592648,-65.15905916562397,-65.15861899338472,-65.15816704141204,-65.15770360706892,-65.15722898294224,-65.15674345690645,-65.15624731218654,-65.1557408274203,-65.15522427671996,-65.15469792973313,-65.15416205170301,-65.15361690352809,-65.15306274182103,-65.15249981896702,-65.15192838318126,-65.15134867856612,-65.15076094516732,-65.15016541902966,-65.14956233225209,-65.148951913042,-65.14833438576912,-65.1477099710185,-65.14707888564313,-65.14644134281576,-65.14579755208018,-65.14514771940186,-65.14449204721797,-65.14383073448687,-65.14316397673687,-65.14249196611455,-65.14181489143236,-65.14113293821569,-65.14044628874937,-65.13975512212362,-65.13905961427929,-65.13835993805274,-65.13765626322005,-65.13694875654059,-65.13623758180029,-65.13552289985407,-65.13480486866797,-65.13408364336061,-65.1333593762442,-65.13263221686496,-65.13190231204305,-65.13116980591205,-65.13043483995783,-65.12969755305697,-65.1289580815147,-65.12821655910233,-65.12747311709417,-65.12672788430406,-65.12598098712125,-65.12523254954607,-65.12448269322483,-65.12373153748455,-65.12297919936701,-65.12222579366251,-65.12147143294311,-65.12071622759538,-65.11996028585288,-65.11920371382801,-65.11844661554366,-65.11768909296416,-65.11693124602608,-65.11617317266857,-65.11541496886308,-65.11465672864297,-65.11389854413254,-65.11314050557579,-65.11238270136461,-65.11162521806689,-65.11086814045393,-65.11011155152771,-65.10935553254762,-65.10860016305708,-65.10784552090945,-65.10709168229394,-65.10633872176089,-65.1055867122469,-65.10483572509955,-65.1040858301017,-65.10333709549562,-65.10258958800668,-65.10184337286678,-65.10109851383736,-65.10035507323222,-65.09961311193997,-65.09887268944618,-65.09813386385518,-65.09739669191165,-65.09666122902188,-65.09592752927466,-65.09519564546204,-65.09446562909964,-65.09373753044683,-65.09301139852647,-65.09228728114456,-65.09156522490946,-65.09084527525094,-65.09012747643894,-65.08941187160207,-65.08869850274584,-65.08798741077067,-65.08727863548964,-65.08657221564594,-65.0858681889302,-65.08516659199748,-65.08446746048395,-65.08377082902362,-65.08307673126454,-65.08238519988488,-65.08169626660887,-65.0810099622224,-65.08032631658841,-65.07964535866223,-65.07896711650645,-65.07829161730577,-65.07761888738158,-65.07694895220632,-65.07628183641775,-65.07561756383278,-65.07495615746137,-65.07429763952013,-65.07364203144564,-65.07298935390772,-65.07233962682247,-65.07169286936508,-65.07104909998252,-65.07040833640603,-65.0697705956634,-65.06913589409116,-65.06850424734651,-65.06787567041911,-65.06725017764278,-65.06662778270685,-65.0660084986676,-65.06539233795931,-65.06477931240528,-65.06416943322868,-65.06356271106321,-65.06295915596363,-65.0623587774161,-65.06176158434847,-65.06116758514041,-65.0605767876332,-65.05998919913962,-65.05940482645367,-65.05882367585998,-65.05824575314324,-65.0576710635975,-65.05709961203517,-65.0565314027962,-65.05596643975672,-65.05540472633793,-65.05484626551464,-65.0542910598238,-65.0537391113728,-65.05319042184777,-65.05264499252166,-65.05210282426226,-65.05156391754012,-65.05102827243627,-65.0504958886499,-65.04996676550597,-65.04944090196256,-65.04891829661825,-65.04839894771938,-65.0478828531671,-65.04737001052442,-65.04686041702317,-65.04635406957073,-65.04585096475681,-65.04535109886004,-65.04485446785448,-65.04436106741609,-65.04387089292896,-65.04338393949169,-65.04290020192337,-65.04241967476975,-65.04194235230916,-65.0414682285584,-65.0409972972785,-65.0405295519804,-65.04006498593067,-65.03960359215692,-65.03914536345331,-65.03869029238592,-65.03823837129801,-65.03778959231522,-65.03734394735075,-65.03690142811037,-65.03646202609738,-65.03602573261756,-65.03559253878396,-65.03516243552164,-65.03473541357239,-65.0343114634993,-65.03389057569132,-65.03347274036771,-65.03305794758246,-65.03264618722862,-65.03223744904251,-65.03183172260799,-65.03142899736058,-65.03102926259147,-65.03063250745161,-65.03023872095561,-65.02984789198558,-65.02946000929506,-65.02907506151264,-65.02869303714581,-65.02831392458447,-65.0279377121046,-65.02756438787175,-65.02719393994454,-65.02682635627802,-65.02646162472712,-65.02609973304986,-65.02574066891069,-65.02538441988361,-65.0250309734554,-65.02468031702868,-65.02433243792493,-65.02398732338752,-65.02364496058468,-65.02330533661235,-65.02296843849709,-65.02263425319882,-65.02230276761362,-65.02197396857645,-65.02164784286377,-65.02132437719622,-65.02100355824116,-65.02068537261523,-65.0203698068868,-65.02005684757849,-65.01974648116946,-65.01943869409793,-65.01913347276337,-65.01883080352886,-65.01853067272333,-65.0182330666437,-65.01793797155715,-65.01764537370316,-65.01735525929566,-65.01706761452503,-65.0167824255602,-65.01649967855055,-65.01621935962787,-65.01594145490832,-65.01566595049427,-65.01539283247612,-65.01512208693417,-65.01485369994035,-65.01458765755993,-65.01432394585333,-65.01406255087774,-65.01380345868868,-65.01354665534181,-65.01329212689434,-65.01303985940665,-65.01278983894385,-65.01254205157719,-65.01229648338561,-65.01205312045714,-65.0118119488903,-65.01157295479547,-65.01133612429632,-65.01110144353102,-65.01086889865365,-65.0106384758354,-65.01041016126585,-65.0101839411542,-65.00995980173039,-65.00973772924642,-65.00951770997736,-65.00929973022252,-65.00908377630658,-65.00886983458061,-65.00865789142316,-65.00844793324129,-65.00823994647153,-65.00803391758096,-65.00782983306807,-65.00762767946377,-65.00742744333223,-65.00722911127191,-65.0070326699163,-65.00683810593486,-65.00664540603385,-65.00645455695712,-65.0062655454869,-65.00607835844463,-65.00589298269166,-65.00570940513006,-65.00552761270328,-65.00534759239686,-65.00516933123914,-65.00499281630198,-65.00481803470126,-65.00464497359766,-65.00447362019723,-65.00430396175196,-65.00413598556041,-65.00396967896826,-65.00380502936883,-65.00364202420369,-65.00348065096308,-65.00332089718654,-65.0031627504633,-65.00300619843279,-65.00285122878509,-65.00269782926144,-65.00254598765456,-65.00239569180918,-65.00224692962237,-65.00209968904397,-65.00195395807698,-65.00180972477787,-65.00166697725699,-65.00152570367888,-65.00138589226262,-65.00124753128212,-65.00111060906644,-65.00097511400008,-65.00084103452329,-65.00070835913226,-65.00057707637946,-65.00044717487381,-65.00031864328102,-65.00019147032371,-65.00006564478167,-64.99994115549208,-64.99981799134967,-64.99969614130691,-64.99957559437424,-64.9994563396201,-64.99933836617124,-64.99922166321278,-64.99910621998833,-64.99899202580019,-64.9988790700094,-64.99876734203586,-64.99865683135847,-64.99854752751519,-64.9984394201031,-64.99833249877854,-64.99822675325711,-64.9981221733138,-64.99801874878294,-64.99791646955835,-64.99781532559332,-64.99771530690064,-64.99761640355266,-64.99751860568121,-64.99742190347774,-64.99732628719323,-64.9972317471382,-64.99713827368271,-64.99704585725634,-64.99695448834814,-64.99686415750666,-64.99677485533982,-64.99668657251496,-64.99659929975873,-64.99651302785703,-64.99642774765502,-64.99634345005695,-64.99626012602619,-64.99617776658506,-64.99609636281484,-64.99601590585559,-64.99593638690614,-64.9958577972239,-64.99578012812489,-64.9957033709835,-64.99562751723244,-64.9955525583626,-64.99547848592302,-64.9954052915206,-64.9953329668201,-64.99526150354399,-64.99519089347226,-64.99512112844234,-64.99505220034887,-64.99498410114369,-64.99491682283552,-64.99485035748994,-64.99478469722915,-64.99471983423187,-64.9946557607331,-64.99459246902398,-64.9945299514517,-64.99446820041916,-64.99440720838493,-64.99434696786298,-64.9942874714226,-64.99422871168805,-64.99417068133857,-64.994113373108,-64.9940567797847,-64.99400089421131,-64.99394570928455,-64.99389121795504,-64.99383741322707,-64.9937842881584,-64.99373183586003,-64.99368004949605,-64.99362892228334,-64.99357844749142,-64.99352861844221,-64.99347942850981,-64.99343087112027,-64.99338293975137,-64.9933356279324,-64.99328892924395,-64.99324283731764,-64.99319734583592,-64.99315244853184,-64.9931081391888,-64.99306441164032,-64.99302125976982,-64.99297867751035,-64.9929366588444,-64.99289519780362,-64.99285428846858,-64.99281392496856,-64.99277410148127,-64.99273481223267,-64.99269605149661,-64.9926578135947,-64.99262009289603,-64.99258288381688,-64.99254618082051,-64.9925099784169,-64.99247427116252,-64.99243905366008,-64.99240432055821,-64.9923700665513,-64.99233628637924,-64.99230297482708,-64.99227012672488,-64.99223773694737,-64.9922058004138,-64.9921743120876,-64.99214326697611,-64.99211266013046,-64.99208248664513,-64.99205274165784,-64.99202342034924,-64.99199451794266,-64.99196602970383,-64.99193795094068,-64.99191027700303,-64.99188300328237,-64.99185612521158,-64.9918296382647,-64.99180353795668,-64.99177781984308,-64.99175247951982,-64.991727512623,-64.99170291482856,-64.99167868185208,-64.99165480944848,-64.99163129341177,-64.9916081295749,-64.99158531380932,-64.99156284202492,-64.99154071016962,-64.9915189142292,-64.99149745022706,-64.99147631422393,-64.9914555023176,-64.99143501064275,-64.99141483537059,-64.99139497270873]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1303\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1304\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1299\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1300\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.1,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1301\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"green\",\"line_alpha\":0.2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1311\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1305\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1306\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1307\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.99859895156952,-64.99794940680333,-64.9973300246924,-64.99673830824379,-64.99617201809848,-64.99562914432974,-64.99510788141654,-64.9946066060273,-64.99412385729227,-64.99365831927994,-64.99320880542628,-64.99277424469419,-64.99235366926698,-64.99194620360169,-64.99155105468868,-64.99116750338113,-64.99079489667402,-64.99043264082597,-64.99008019522934,-64.98973706694485,-64.98940280582678,-64.98907700017278,-64.98875927284017,-64.98844927777704,-64.9881466969224,-64.98785123743474,-64.98756262921283,-64.98728062267692,-64.98700498678193,-64.98673550723724,-64.98647198491092,-64.98621423439829,-64.98596208273723,-64.9857153682545,-64.98547393952902,-64.98523765445972,-64.98500637942695,-64.98477998853737,-64.98455836294382,-64.98434139023209,-64.98412896386783,-64.98392098269719,-64.98371735049578,-64.983517975561,-64.98332277034311,-64.98313165111144,-64.98294453765189,-64.98276135299274,-64.98258202315591,-64.9824064769311,-64.98223464567062,-64.98206646310275,-64.9819018651621,-64.9817407898349,-64.98158317701817,-64.9814289683912,-64.98127810729832,-64.98113053864175,-64.98098620878365,-64.98084506545659,-64.98070705768147,-64.9805721356924,-64.98044025086774,-64.98031135566687,-64.98018540357205,-64.98006234903502,-64.97994214742788,-64.97982475499778,-64.97971012882525,-64.97959822678573,-64.97948900751403,-64.97938243037156,-64.97927845541591,-64.9791770433728,-64.97907815561007,-64.97898175411346,-64.9788878014643,-64.97879626081858,-64.9787070958877,-64.97862027092032,-64.9785357506856,-64.97845350045755,-64.97837348600032,-64.97829567355454,-64.9782200298245,-64.97814652196608,-64.97807511757554,-64.9780057846789,-64.97793849172193,-64.97787320756085,-64.97780990145338,-64.97774854305051,-64.97768910238845,-64.9776315498813,-64.97757585631382,-64.97752199283481,-64.97746993095068,-64.97741964251931,-64.97737109974432,-64.97732427516951,-64.97727914167352,-64.97723567246483,-64.97719384107685,-64.9771536213633,-64.97711498749368,-64.977077913949,-64.97704237551761,-64.9770083472912,-64.97697580466092,-64.97694472331361,-64.97691507922819,-64.97688684867218,-64.97686000819819,-64.97683453464067,-64.97681040511269,-64.97678759700268,-64.97676608797151,-64.97674585594939,-64.97672687913294,-64.97670913598238,-64.97669260521867,-64.97667726582083,-64.97666309702313,-64.9766500783126,-64.97663818942627,-64.97662741034874,-64.97661772130961,-64.97660910278103,-64.97660153547525,-64.97659500034226,-64.97658947856735,-64.97658495156888,-64.97658140099591,-64.97657880872596,-64.97657715686276,-64.97657642773403,-64.9765766038893,-64.97657766809775,-64.97657960334604,-64.97658239283625,-64.97658601998371,-64.976590468415,-64.97659572196584,-64.97660176467907,-64.97660858080268,-64.9766161547877,-64.9766244712864,-64.97663351515013,-64.97664327142752,-64.97665372536251,-64.97666486239241,-64.97667666814606,-64.97668912844189,-64.97670222928612,-64.97671595687085,-64.97673029757227,-64.97674523794883,-64.97676076473941,-64.97677686486156,-64.97679352540973,-64.97681073365345,-64.97682847703564,-64.97684674317082,-64.97686551984347,-64.97688479500621,-64.97690455677817,-64.97692479344329,-64.97694549344864,-64.97696664540278,-64.97698823807407,-64.97701026038908,-64.97703270143091,-64.97705555043765,-64.97707879680073,-64.97710243006331,-64.97712643991879,-64.97715081620915,-64.97717554892344,-64.97720062819626,-64.97722604430616,-64.97725178767422,-64.97727784886246,-64.97730421857236,-64.97733088764339,-64.97735784705155,-64.97738508790788,-64.97741260145702,-64.97744037907576,-64.97746841227163,-64.97749669268147,-64.97752521207002,-64.97755396232851,-64.97758293547331,-64.97761212364452,-64.97764151910464,-64.97767111423715,-64.97770090154528,-64.97773087365056,-64.97776102329156,-64.9567679578287,-64.91692643536271,-64.86020425869032,-64.788382741909,-64.7030749083033,-64.60574166261647,-64.49770617249526,-64.38016667619338,-64.25420791162831,-64.12081133882731,-63.98086430557468,-63.835168285689704,-63.68444630125668,-63.52934962437645,-63.370463840497166,-63.208314343892745,-63.04337132613861,-62.87605431022821,-62.706736276043095,-62.53574741702283,-62.363378562895434,-62.18988429907259,-62.015485809657626,-61.84037346785449,-61.66470919481588,-61.48862860555957,-61.31224295845519,-61.13564092289376,-60.95889017806003,-60.78203885420079,-60.60511682639417,-60.428136869552546,-60.25109568221384,-60.073974785576176,-59.89674130319129,-59.719348625738476,-59.541736964337886,-59.36383379491516,-59.18555419518456,-59.00680107485908,-58.84845358632289,-58.708226232875816,-58.58407369352416,-58.47416956582869,-58.376886772255624,-58.290779406069106,-58.214565866186085,-58.14711317965242,-58.087422442018706,-58.03461532482352,-57.98792160939725,-57.94666771016774,-57.910266150773836,-57.87820595421213,-57.85004390514534,-57.82539663921818,-57.80393351130286,-57.785370192358265,-57.7694629431945,-57.7560035129312,-57.74481461028407,-57.73574589691961,-57.72867045386433,-57.72348167421087,-57.72009053800051,-57.71842322805705,-57.718419048593674,-57.72002861151899,-57.723212258455135,-57.7279386894892,-57.73418377256377,-57.74192951013997,-57.75116314231626,-57.761876367945064,-57.77406466745336,-57.787726713042545,-57.80286385372355,-57.81947966424335,-57.83757954838973,-57.85717038843434,-57.878260233602965,-57.90085802145887,-57.92497332696343,-57.95061613474989,-57.97779663082301,-58.00652501048971,-58.03681129984454,-58.068665188586536,-58.10209587234054,-58.13711190300184,-58.173721045926015,-58.21193014305067,-58.251744981267514,-58.2931701655666,-58.336208996652374,-58.38086335288698,-58.42713357655251,-58.475018364542436,-58.524514663695484,-58.57561757107326,-58.62832023955801,-58.68261378920922,-58.738487224867846,-58.79592736053566,-58.85491875108466,-58.91544363186758,-58.97748186680582,-59.04101090552562,-59.10600575009688,-59.17243893190207,-59.24028049912538,-59.30949801530472,-59.380056569331984,-59.45191879722041,-59.52504491588267,-59.59939276908035,-59.674917885615294,-59.75157354973721,-59.82931088364125,-59.908078941824776,-59.98782481696625,-60.06849375688213,-60.150029292011844,-60.23237337277752,-60.315466516066145,-60.399247959988664,-60.483655825984975,-60.5686272872667,-60.6540987425234,-60.74000599376249,-60.82628442711059,-60.91286919537467,-60.999695401145345,-61.08669827922361,-61.17381337716432,-61.260976732756646,-61.34812504730163,-61.43519585359963,-61.52212767762535,-61.608860192943354,-61.695334367001955,-61.781492598536126,-61.86727884540935,-61.95263874232849,-62.03751970797279,-62.121871041187035,-62.20564400599724,-62.28879190531423,-62.37127014329409,-62.45303627642382,-62.534050053493964,-62.61427344470704,-62.69367066025001,-62.77220815873033,-62.84985464593769,-62.92658106444749,-63.002360574626636,-63.07716852763799,-63.15098243106675,-63.22378190781034,-63.29554864888369,-63.36626636079454,-63.43592070813925,-63.50449925205884,-63.57199138517919,-63.63838826363787,-63.70368273677525,-63.76786927503844,-63.83094389661546,-63.892904093283114,-63.953748755917246,-64.01347810007763,-64.0720935920437,-64.12959787564047,-64.1859947001586,-64.24128884963693,-64.2954860737424,-64.3485930204493,-64.40061717068926,-64.45156677511385,-64.50145079308462,-64.55027883397997,-64.59806110088493,-64.64480833670834,-64.6905317727529,-64.7352430797459,-64.7789543213226,-64.82167790994119,-64.86342656519524,-64.90421327448009,-64.94405125595988,-64.98295392377511,-65.02093485542385,-65.05800776124511,-65.09418645592895,-65.12948483197478,-65.16391683501743,-65.19749644093936,-65.23023763468682,-65.26215439070774,-65.29326065492995,-65.32357032819932,-65.35309725109867,-65.38185519007057,-65.4098578247687,-65.4371187365652,-65.46365139814344,-65.48946916410864,-65.51458526255125,-65.53901278750075,-65.56276469221042,-65.58585378321631,-65.60829271511649,-65.63009398601947,-65.65126993361316,-65.67183273180866,-65.69179438791559,-65.71116674030822,-65.72996145654396,-65.74819003189845,-65.76586378828307,-65.78299387351366,-65.79959126090053,-65.81566674913226,-65.83123096242747,-65.84629435093045,-65.86086719132837,-65.87495958766914,-65.88858147236068,-65.90174260733359,-65.91445258535062,-65.92672083144758,-65.93855660449148,-65.94996899884258,-65.96096694610843,-65.97155921697865,-65.98175442313001,-65.99156101919257,-66.00098730476796,-66.01004142649192,-66.01873138013383,-66.02706501272631,-66.03505002471904,-66.042693972151,-66.05000426883605,-66.05698818855733,-66.06365286726606,-66.07000530528111,-66.07605236948571,-66.08180079551819,-66.08725718995404,-66.09242803247658,-66.09731967803395,-66.10193835898068,-66.10629018720142,-66.11038115621592,-66.1142171432632,-66.11780391136402,-66.12114711136043,-66.12425228393137,-66.12712486158361,-66.12977017061716,-66.13219343306474,-66.13439976860461,-66.13639419644645,-66.13818163718994,-66.13976691465587,-66.14115475768929,-66.14234980193503,-66.1433565915851,-66.14417958109829,-66.14482313689163,-66.14529153900426,-66.14558898273327,-66.14571958024214,-66.1456873621416,-66.14549627904331,-66.14515020308654,-66.14465292943794,-66.14400817776493,-66.14321959368276,-66.14229075017565,-66.14122514899223,-66.14002622201573,-66.13869733260904,-66.13724177693516,-66.13566278525332,-66.13396352319104,-66.13214709299258,-66.13021653474408,-66.12817482757568,-66.12602489084118,-66.12376958527535,-66.12141171412938,-66.11895402428478,-66.11639920734619,-66.1137499007133,-66.11100868863227,-66.10817810322708,-66.10526062551112,-66.10225868637933,-66.0991746675812,-66.09601090267508,-66.09276967796409,-66.08945323341386,-66.0860637635526,-66.08260341835366,-66.07907430410097,-66.0754784842378,-66.07181798019887,-66.0680947722263,-66.06431080016978,-66.06046796427103,-66.05656812593301,-66.05261310847413,-66.04860469786773,-66.04454464346706,-66.0404346587162,-66.03627642184692,-66.03207157656212,-66.02782173270563,-66.02352846691916,-66.01919332328613,-66.01481781396312,-66.01040341979876,-66.0059515909406,-66.00146374743,-65.99694127978542,-65.99238554957425,-65.9877978899734,-65.98317960631887,-65.97853197664466,-65.97385625221092,-65.96915365802188,-65.96442539333357,-65.95967263215157,-65.95489652371896,-65.95009819299479,-65.94527874112308,-65.9404392458926,-65.93558076218777,-65.9307043224305,-65.92581093701357,-65.92090159472538,-65.91597726316645,-65.9110388891577,-65.9060873991407,-65.90112369957023,-65.896148677299,-65.89116319995483,-65.88616811631059,-65.88116425664673,-65.87615243310685,-65.87113344004622,-65.86610805437353,-65.86107703588594,-65.85604112759765,-65.8510010560619,-65.84595753168685,-65.84091124904519,-65.83586288717777,-65.83081310989122,-65.82576256604989,-65.820711889862,-65.81566170116024,-65.81061260567697,-65.80556519531397,-65.80052004840704,-65.79547772998532,-65.79043879202575,-65.78540377370246,-65.78037320163132,-65.77534759010986,-65.77032744135239,-65.76531324572069,-65.76030548195014,-65.75530461737155,-65.75031110812863,-65.74532539939133,-65.740347925565,-65.73537911049554,-65.73041936767058,-65.72546910041682,-65.72052870209349,-65.7155985562822,-65.71067903697305,-65.70577050874714,-65.70087332695572,-65.69598783789573,-65.69111437898208,-65.68625327891661,-65.68140485785379,-65.67656942756328,-65.67174729158936,-65.66693874540732,-65.66214407657692,-65.6573635648928,-65.65259748253217,-65.64784609419958,-65.64310965726901,-65.6383884219232,-65.63368263129041,-65.62899252157852,-65.6243183222066,-65.61966025593405,-65.6150185389872,-65.61039338118363,-65.60578498605405,-65.60119355096194,-65.59661926722093,-65.59206232020993,-65.58752288948617,-65.58300114889605,-65.57849726668395,-65.57401140559904,-65.56954372299995,-65.56509437095767,-65.5606634963564,-65.55625124099257,-65.55185774167201,-65.54748313030532,-65.54312753400146,-65.53879107515958,-65.5344738715592,-65.5301760364487,-65.52589767863213,-65.52163890255451,-65.51739980838548,-65.51318049210141,-65.50898104556607,-65.50480155660976,-65.50064210910699,-65.49650278305275,-65.49238365463741,-65.48828479632022,-65.48420627690145,-65.48014816159329,-65.47611051208938,-65.4720933866331,-65.4680968400847,-65.46412092398705,-65.4601656866304,-65.45623117311581,-65.45231742541748,-65.448424482444,-65.4445523800985,-65.44070115133765,-65.43687082622966,-65.43306143201123,-65.42927299314346,-65.4255055313668,-65.42175906575501,-65.41803361276816,-65.41432918630461,-65.41064579775225,-65.40698345603865,-65.40334216768039,-65.3997219368316,-65.39612276533147,-65.3925446527511,-65.38898759643943,-65.3854515915684,-65.38193663117725,-65.37844270621618,-65.3749698055891,-65.37151791619578,-65.36808702297313,-65.36467710893582,-65.36128815521627,-65.35792014110382,-65.35457304408327,-65.35124683987283,-65.3479415024613,-65.34465700414466,-65.34139331556212,-65.33815040573131,-65.33492824208321,-65.33172679049615,-65.32854601532945,-65.32538587945642,-65.32224634429674,-65.31912736984842,-65.31602891471907,-65.31295093615677,-65.30989339008033,-65.30685623110911,-65.30383941259223,-65.30084288663741,-65.29786660413929,-65.2949105148072,-65.29197456719258,-65.28905870871586,-65.2861628856929,-65.28328704336107,-65.28043112590474,-65.27759507648051,-65.27477883724191,-65.27198234936378,-65.26920555306614,-65.26644838763775,-65.26371079145925,-65.2609927020259,-65.25829405597003,-65.25561478908298,-65.25295483633683,-65.25031413190561,-65.24769260918637,-65.24509020081967,-65.24250683870994,-65.23994245404539,-65.2373969773176,-65.23487033834087,-65.23236246627116,-65.22987328962476,-65.22740273629672,-65.22495073357882,-65.22251720817744,-65.22010208623098,-65.21770529332713,-65.21532675451974,-65.2129663943455,-65.21062413684032,-65.20829990555545,-65.2059936235733,-65.20370521352314,-65.20143459759632,-65.19918169756147,-65.19694643477933,-65.19472873021734,-65.19252850446404,-65.19034567774324,-65.18818016992792,-65.18603190055393,-65.18390078883345,-65.1817867536683,-65.17968971366292,-65.17760958713724,-65.1755462921393,-65.17349974645768,-65.1714698676337,-65.16945657297346,-65.16745977955966,-65.16547940426325,-65.16351536375487,-65.1615675745161,-65.15963595285056,-65.15772041489483,-65.15582087662908,-65.15393725388773,-65.15206946236977,-65.15021741764895,-65.14838103518387,-65.14656023032782,-65.14475491833846,-65.14296501438747,-65.14119043356983,-65.13943109091313,-65.13768690138666,-65.1359577799103,-65.13424364136337,-65.13254440059319,-65.13085997242366,-65.12919027166359,-65.12753521311487,-65.1258947115806,-65.124268681873,-65.12265703882127,-65.1210596972792,-65.11947657213271,-65.11790757830735,-65.11635263077551,-65.11481164456359,-65.11328453475906,-65.11177121651738,-65.1102716050688,-65.10878561572503,-65.10731316388575,-65.10585416504517,-65.10440853479828,-65.10297618884708,-65.1015570430067,-65.1001510132114,-65.0987580155205,-65.09737796612409,-65.09601078134874,-65.09465637766313,-65.09331467168344,-65.09198558017881,-65.09066902007653,-65.08936490846727,-65.08807316261017,-65.08679369993774,-65.08552643806085,-65.08427129477347,-65.08302818805737,-65.08179703608675,-65.08057775723276,-65.0793702700679,-65.07817449337041,-65.07699034612851,-65.07581774754455,-65.07465661703912,-65.07350687425507,-65.0723684390614,-65.07124123155712,-65.070125172075,-65.06902018118524,-65.0679261796991,-65.06684308867241,-65.06577082940903,-65.0647093234642,-65.06365849264786,-65.06261825902786,-65.06158854493313,-65.06056927295674,-65.05956036595892,-65.05856174706999,-65.05757333969323,-65.05659506750774,-65.05562685447106,-65.05466862482193,-65.05372030308284,-65.05278181406261,-65.05185308285884,-65.05093403486029,-65.05002459574925,-65.04912469150385,-65.04823424840023,-65.04735319301476,-65.04648145222606,-65.04561895321714,-65.0447656234773,-65.04392139080412,-65.04308618330526,-65.04225992940037,-65.04144255782275,-65.0406339976211,-65.03983417816119,-65.0390430291274,-65.03826048052433,-65.03748646267822,-65.03672090623843,-65.03596374217884,-65.03521490179914,-65.03447431672618,-65.03374191891514,-65.0330176406508,-65.0323014145486,-65.0315931735558,-65.03089285095251,-65.03020038035268,-65.02951569570506,-65.02883873129413,-65.02816942174097,-65.02750770200407,-65.02685350738011,-65.02620677350473,-65.02556743635317,-65.024935432241,-65.02431069782467,-65.02369317010215,-65.0230827864134,-65.0224794844409,-65.02188320221009,-65.02129387808985,-65.02071145079279,-65.02013585937564,-65.01956704323959,-65.0190049421305,-65.01844949613916,-65.0179006457015,-65.01735833159877,-65.01682249495762,-65.01629307725025,-65.01577002029445,-65.01525326625364,-65.01474275763684,-65.0142384372987,-65.01374024843938,-65.01324813460445,-65.01276203968484,-65.0122819079166,-65.01180768388076,-65.0113393125031,-65.0108767390539,-65.01041990914771,-65.00996876874302,-65.0095232641419,-65.00908334198971,-65.00864894927469,-65.00822003332755,-65.00779654182105,-65.00737842276955,-65.00696562452848,-65.00655809579389,-65.0061557856019,-65.00575864332815,-65.00536661868718,-65.0049796617319,-65.0045977228529,-65.00422075277788,-65.00384870257088,-65.00348152363168,-65.00311916769505,-65.00276158683003,-65.00240873343917,-65.00206056025776,-65.00171702035307,-65.00137806712347,-65.00104365429767,-65.00071373593386,-65.0003882664188,-65.00006720046697,-64.99975049311969,-64.99943809974415,-64.99912997603253,-64.998826078001,-64.99852636198877,-64.99823078465711,-64.99793930298837,-64.99765187428491,-64.99736845616815,-64.99708900657743,-64.99681348376902,-64.99654184631504,-64.99627405310235,-64.9960100633315,-64.99574983651551,-64.99549333247889,-64.99524051135637,-64.99499133359184,-64.99474575993716,-64.99450375145095,-64.99426526949748,-64.99403027574537,-64.99379873216651,-64.99357060103475,-64.99334584492468,-64.99312442671044,-64.99290630956443,-64.99269145695608,-64.99247983265055,-64.99227140070748,-64.99206612547974,-64.99186397161206,-64.9916649040398,-64.99146888798757,-64.991275888968,-64.99108587278039,-64.9908988055093,-64.99071465352334,-64.99053338347372,-64.99035496229297,-64.99017935719354,-64.99000653566647,-64.98983646547998,-64.98966911467814,-64.98950445157945,-64.98934244477552,-64.98918306312957,-64.98902627577517,-64.98887205211473,-64.98872036181815,-64.9885711748214,-64.98842446132511,-64.98828019179317,-64.98813833695127,-64.9879988677855,-64.98786175554099,-64.98772697172036,-64.98759448808238,-64.9874642766405,-64.9873363096614,-64.98721055966362,-64.98708699941604,-64.98696560193646,-64.98684634049022,-64.98672918858864,-64.98661411998768,-64.98650110868644,-64.9863901289257,-64.98628115518652,-64.98617416218873,-64.98606912488954,-64.98596601848202,-64.98586481839371,-64.98576550028514,-64.9856680400484,-64.98557241380563,-64.98547859790764,-64.98538656893243,-64.98529630368373,-64.98520777918955,-64.98512097270077,-64.98503586168964,-64.98495242384836,-64.98487063708765,-64.98479047953528,-64.98471192953463,-64.98463496564327]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1312\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1313\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1308\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1309\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1310\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1321\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1315\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1316\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1317\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99997874916157,-64.99993844542642,-64.99988107768425,-64.99980844652296,-64.99972218281401,-64.99962376436807,-64.9995145308698,-64.99939569727732,-64.99926836585125,-64.99913353695976,-64.99899211879017,-64.99884493608293,-64.99869273799125,-64.99853620515829,-64.99837595609382,-64.99821255292329,-64.99804650657433,-64.99787828145885,-64.99770829970237,-64.99753694496685,-64.99736456590843,-64.99719147930682,-64.99701797289947,-64.99684430794994,-64.99667072157698,-64.99649742886784,-64.99632462479723,-64.99615248597061,-64.99598117220926,-64.99581082799196,-64.99564158376748,-64.99547355714982,-64.99530685400761,-64.99514156945739,-64.99497778877,-64.994815588198,-64.99465503573143,-64.9944961917886,-64.99433910984773,-64.99418383702482,-64.99403041460269,-64.99387887851545,-64.99372925979235,-64.99358158496477,-64.99343587643945,-64.99329215284085,-64.99315042932555,-64.99301071787083,-64.99287302753986,-64.99273736472541,-64.9926037333739,-64.99247213519136,-64.99234256983308,-64.99221503507799,-64.99208952698925,-64.99196604006214,-64.9918445673602,-64.99172510064076,-64.99160763047051,-64.9914921463321,-64.99137863672239,-64.99126708924301,-64.99115749068393,-64.99104982710053,-64.99094408388461,-64.99084024583009,-64.99073829719339,-64.99063822174936,-64.99054000284278,-64.99044362343584,-64.9903490661521,-64.99025631331698,-64.99016534699503,-64.9900761490245,-64.98998870104913,-64.98990298454746,-64.98981898085992,-64.98973667121383,-64.9896560367464,-64.98957705852588,-64.98949971757125,-64.98942399487014,-64.98934987139546,-64.9892773281207,-64.98920634603395,-64.98913690615088,-64.98906898952656,-64.98900257726648,-64.98893765053649,-64.98887419057203,-64.98881217868662,-64.98875159627947,-64.98869242484263,-64.9886346459674,-64.98857824135025,-64.98852319279817,-64.98846948223351,-64.98841709169851,-64.9883660033592,-64.98831619950913,-64.98826766257258,-64.98822037510752,-64.98817431980825,-64.98812947950776,-64.9880858371798,-64.98804337594072,-64.98800207905113,-64.98796192991725,-64.98792291209219,-64.98788500927692,-64.98784820532121,-64.9878124842243,-64.98777783013549,-64.98774422735457,-64.98771166033217,-64.98768011366994,-64.98764957212067,-64.98762002058831,-64.98759144412784,-64.98756382794518,-64.98753715739689,-64.98751141798986,-64.987486595381,-64.98746267537672,-64.9874396439325,-64.98741748715236,-64.9873961912882,-64.98737574273923,-64.9873561280513,-64.98733733391619,-64.98731934717081,-64.98730215479654,-64.98728574391833,-64.98727010180396,-64.98725521586312,-64.98724107364659,-64.98722766284536,-64.98721497128967,-64.98720298694816,-64.98719169792689,-64.98718109246839,-64.98717115895073,-64.98716188588654,-64.987153261922,-64.98714527583591,-64.98713791653866,-64.98713117307122,-64.98712503460418,-64.9871194904367,-64.9871145299955,-64.98711014283387,-64.98710631863064,-64.98710304718912,-64.98710031843616,-64.98709812242105,-64.98709644931454,-64.98709528940779,-64.98709463311138,-64.98709447095429,-64.98709479358283,-64.98709559175967,-64.9870968563628,-64.98709857838455,-64.98710074893054,-64.98710335921871,-64.98710640057824,-64.98710986444867,-64.98711374237878,-64.98711802602568,-64.98712270715377,-64.98712777763379,-64.9871332294418,-64.98713905465823,-64.9871452454669,-64.98715179415404,-64.98715869310735,-64.98716593481497,-64.98717351186464,-64.98718141694266,-64.98718964283297,-64.98719818241622,-64.98720702866882,-64.98721617466202,-64.98722561356098,-64.98723533862385,-64.98724534320085,-64.98725562073341,-64.98726616475317,-64.98727696888116,-64.98728802682693,-64.98729933238756,-64.98731087944688,-64.98732266197452,-64.9873346740251,-64.98734690973734,-64.9873593633332,-64.98737202911701,-64.98738490147467,-64.98739797487276,-64.98741124385774,-64.42174919022004,-63.885026583992044,-63.37520335668225,-62.890400741200274,-62.42888770652717,-61.989068592935254,-61.56947183087295,-61.1687396392744,-60.78561861037322,-60.41895109813518,-60.06766733626829,-59.73077821953864,-59.40736868894128,-59.096591667267184,-58.79766249688037,-58.50985383617197,-58.23249097527545,-57.964947535282654,-57.7066415184564,-57.457031679844256,-57.21561419330502,-56.981919587301434,-56.755509927921814,-56.53597622849691,-56.32293606689895,-56.11603139316793,-55.914926511522125,-55.71930622209091,-55.52887410887072,-55.34335096146062,-55.16247331909248,-54.98599212634027,-54.813671490682076,-54.64528753280198,-54.480627321164754,-54.31948788297764,-54.16167528417576,-54.00700377153398,-53.855294970421745,-53.706377132080384,-54.125758899452876,-54.518664237206444,-54.88697824227946,-55.232431627950895,-55.556614838661325,-55.860990876416636,-56.14690694549408,-56.41560501349156,-56.66823137947883,-56.90584533367503,-57.12942698737538,-57.33988434656986,-57.53805969770088,-57.72473536921605,-57.90063892794435,-58.066447864846026,-58.22279382035993,-58.37026639541005,-58.50941659015121,-58.640759908749324,-58.76477916491863,-58.88192701958856,-58.99262827895286,-59.097281978266395,-59.19626327409994,-59.28992516533462,-59.378600060968886,-59.462601210811215,-59.542224013330085,-59.617747213315745,-59.68943400056286,-59.75753301949533,-59.82227929851049,-59.883895106806975,-59.94259074556495,-59.99856527955829,-60.052007214583504,-60.103095125479804,-60.15199823897931,-60.19887697515678,-60.24388345083748,-60.287161947962,-60.32884934959236,-60.36907554596885,-60.40796381278664,-60.4456311636514,-60.48218867848947,-60.51774180952811,-60.552390666320996,-60.586230281172114,-60.61935085620401,-60.65183799322325,-60.68377290745424,-60.71523262614143,-60.74629017295788,-60.77701473910382,-60.80747184193162,-60.83772347189232,-60.86782822856273,-60.89784144648086,-60.927815311489496,-60.95779896826367,-60.987838619676225,-61.017977618636415,-61.04825655301899,-61.07871332428543,-61.10938322038387,-61.14029898349986,-61.17149087321622,-61.202986725625934,-61.23481200892769,-61.26698987601851,-61.2995412145819,-61.33248469515291,-61.36583681762302,-61.3996119566279,-61.4338224062395,-61.46847842436088,-61.503588277197146,-61.539158284149096,-61.57519286344795,-61.61169457881924,-61.64866418743242,-61.68610068935988,-61.72400137873467,-61.762361896761334,-61.80117628669847,-61.84043705089539,-61.88013520992922,-61.920260363852904,-61.96080075552919,-62.00174333599169,-62.04307383174106,-62.084776813853274,-62.126835768747796,-62.169233170436726,-62.21195055405173,-62.25496859042429,-62.29826716147647,-62.34182543616442,-62.38562194670494,-62.42963466480705,-62.473841077625664,-62.518218263152534,-62.562742964761405,-62.60739166462903,-62.65214065576126,-62.69696611236399,-62.74184415831157,-62.786750933480604,-62.83166265773401,-62.87655569235928,-62.92140659878484,-62.96619219441956,-63.01088960548268,-63.055476316713325,-63.099930217871645,-63.14422964696564,-63.18835343015993,-63.232280918343776,-63.2759920203564,-63.31946723288688,-63.362687667084415,-63.405635071931634,-63.44829185444932,-63.49064109681511,-63.532666570491365,-63.57435274746867,-63.61568480874092,-63.65664865013614,-63.69723088563387,-63.737418848305175,-63.77720058901509,-63.81656487303012,-63.85550117467463,-63.893999670180314,-63.932051228872204,-63.969647402832976,-64.0067804151849,-64.04344314712546,-64.07962912384893,-64.11533249948172,-64.15054804115444,-64.18527111232846,-64.21949765548933,-64.25322417431322,-64.28644771540733,-64.3191658497187,-64.35137665369989,-64.38307869031429,-64.41427098995753,-64.4449530313657,-64.4751247225754,-64.50478638199506,-64.53393871964148,-64.56258281859049,-64.59072011668543,-64.61835238854276,-64.64548172788915,-64.67211053026054,-64.69824147608931,-64.72387751420216,-64.7490218457477,-64.77367790856933,-64.79784936203599,-64.82154007234094,-64.84475409827517,-64.86749567748092,-64.8897692131873,-64.91157926142918,-64.93293051874797,-64.9538278103714,-64.97427607886843,-64.9942803732735,-65.01384583867362,-65.03297770625058,-65.05168128376982,-65.06996194650678,-65.08782512860051,-65.10527631482455,-65.12232103276374,-65.1389648453861,-65.15521334399799,-65.1710721415709,-65.18654686642816,-65.20164315627935,-65.21636665259065,-65.23072299527915,-65.24471781771915,-65.25835674204876,-65.27164537476511,-65.28458930259671,-65.29719408864165,-65.30946526876052,-65.32140834821338,-65.33302879852997,-65.34433205460284,-65.35532351199357,-65.36600852444192,-65.37639240156874,-65.38648040676318,-65.39627775524549,-65.40578961229649,-65.4150210916457,-65.4239772540099,-65.43266310577432,-65.44108359780921,-65.4492436244143,-65.45714802238459,-65.46480157019057,-65.4722089872667,-65.47937493340184,-65.48630400822609,-65.49300075078814,-65.49946963921809,-65.50571509047028,-65.51174146014161,-65.51755304236049,-65.52315406974198,-65.52854871340496,-65.53374108304726,-65.53873522707495,-65.54353513278203,-65.54814472657718,-65.55256787425421,-65.55680838130306,-65.56086999325836,-65.5647563960829,-65.56847121658296,-65.57201802285343,-65.57540032474995,-65.578621574386,-65.58168516665272,-65.58459443975934,-65.58735267579262,-65.58996310129298,-65.59242888784615,-65.59475315268834,-65.59693895932354,-65.59898931815157,-65.60090718710549,-65.60269547229707,-65.60435702866918,-65.60589466065399,-65.6073111228358,-65.60860912061781,-65.60979131089155,-65.61086030270839,-65.61181865795217,-65.61266889201228,-65.61341347445642,-65.61405482970248,-65.61459533768883,-65.61503733454248,-65.61538311324469,-65.61563492429342,-65.61579497636214,-65.61586543695478,-65.61584843305621,-65.61574605177809,-65.61556034099958,-65.61529331000278,-65.61494693010256,-65.61452313527049,-65.61402382275273,-65.61345085368161,-65.6128060536808,-65.61209121346378,-65.61130808942565,-65.61045840422788,-65.60954384737626,-65.60856607579154,-65.60752671437307,-65.60642735655502,-65.6052695648554,-65.6040548714177,-65.60278477854506,-65.6014607592271,-65.6000842576593,-65.59865668975495,-65.59717944364952,-65.59565388019784,-65.59408133346363,-65.59246311120177,-65.59080049533314,-65.58909474241217,-65.58734708408703,-65.5855587275526,-65.58373085599624,-65.5818646290364,-65.57996118315417,-65.57802163211767,-65.57604706739959,-65.57403855858776,-65.57199715378891,-65.56992388002558,-65.56781974362642,-65.56568573060977,-65.56352280706079,-65.56133191950201,-65.55911399525752,-65.55686994281089,-65.55460065215676,-65.55230699514634,-65.54998982582678,-65.54764998077461,-65.54528827942318,-65.54290552438437,-65.54050250176448,-65.53807998147447,-65.53563871753464,-65.5331794483738,-65.53070289712302,-65.52820977190405,-65.52570076611251,-65.52317655869588,-65.52063781442642,-65.5180851841691,-65.51551930514455,-65.51294080118728,-65.51035028299897,-65.5077483483972,-65.50513558255956,-65.50251255826315,-65.49987983611972,-65.49723796480633,-65.49458748129184,-65.491928911059,-65.48926276832256,-65.4865895562431,-65.48390976713706,-65.48122388268266,-65.478532374122,-65.47583570245939,-65.47313431865591,-65.47042866382026,-65.46771916939608,-65.46500625734572,-65.46229034033048,-65.4595718218875,-65.45685109660319,-65.4541285502836,-65.45140456012128,-65.44867949485918,-65.44595371495134,-65.44322757272057,-65.44050141251313,-65.4377755708504,-65.43505037657782,-65.43232615101081,-65.42960320807808,-65.4268818544621,-65.42416238973694,-65.42144510650351,-65.41873029052218,-65.41601822084287,-65.41330916993276,-65.41060340380142,-65.40790118212367,-65.40520275836008,-65.40250837987512,-65.39981828805313,-65.39713271841207,-65.39445190071507,-65.39177605907987,-65.38910541208622,-65.38644017288118,-65.38378054928243,-65.3811267438797,-65.37847895413412,-65.37583737247583,-65.37320218639961,-65.37057357855885,-65.36795172685754,-65.36533680454073,-65.36272898028308,-65.36012841827588,-65.35753527831233,-65.35494971587124,-65.35237188219921,-65.3498019243911,-65.34723998546916,-65.3446862044605,-65.34214071647327,-65.33960365277122,-65.33707514084702,-65.33455530449412,-65.33204426387722,-65.32954213560151,-65.32704903278056,-65.32456506510293,-65.3220903388975,-65.31962495719768,-65.31716901980431,-65.31472262334746,-65.31228586134701,-65.30985882427213,-65.30744159959967,-65.30503427187145,-65.30263692275044,-65.30024963107596,-65.2978724729178,-65.29550552162942,-65.29314884790004,-65.29080251980582,-65.28846660286018,-65.28614116006302,-65.2838262519492,-65.28152193663597,-65.27922826986969,-65.27694530507154,-65.27467309338245,-65.27241168370728,-65.27016112275803,-65.2679214550964,-65.26569272317552,-65.26347496738087,-65.26126822607056,-65.25907253561472,-65.2568879304344,-65.25471444303952,-65.25255210406627,-65.25040094231382,-65.24826098478032,-65.2461322566983,-65.2440147815694,-65.24190858119846,-65.23981367572702,-65.23773008366624,-65.23565782192915,-65.23359690586244,-65.23154734927753,-65.22950916448123,-65.22748236230575,-65.22546695213825,-65.22346294194978,-65.22147033832377,-65.21948914648402,-65.21751937032214,-65.21556101242452,-65.21361407409887,-65.21167855540023,-65.20975445515654,-65.20784177099382,-65.20594049936078,-65.2040506355531,-65.20217217373728,-65.20030510697403,-65.19844942724124,-65.19660512545664,-65.19477219149996,-65.19295061423476,-65.19114038152983,-65.18934148028035,-65.18755389642847,-65.18577761498376,-65.18401262004313,-65.18225889481053,-65.18051642161619,-65.17878518193567,-65.17706515640846,-65.17535632485634,-65.17365866630138,-65.17197215898364,-65.17029678037858,-65.16863250721421,-65.16697931548785,-65.1653371804827,-65.16370607678404,-65.16208597829531,-65.16047685825369,-65.15887868924563,-65.157291443222,-65.15571509151297,-65.15414960484279,-65.15259495334409,-65.15105110657214,-65.14951803351879,-65.14799570262613,-65.14648408180005,-65.14498313842344,-65.14349283936922,-65.14201315101319,-65.14054403924663,-65.1390854694887,-65.13763740669859,-65.13619981538751,-65.13477265963057,-65.13335590307823,-65.1319495089678,-65.13055344013465,-65.12916765902315,-65.12779212769762,-65.12642680785294,-65.12507166082504,-65.12372664760126,-65.12239172883041,-65.12106686483286,-65.11975201561026,-65.11844714085525,-65.11715219996097,-65.11586715203033,-65.11459195588529,-65.1133265700758,-65.11207095288877,-65.11082506235678,-65.10958885626668,-65.10836229216805,-65.10714532738153,-65.10593791900698,-65.10474002393156,-65.10355159883764,-65.1023726002106,-65.10120298434646,-65.10004270735944,-65.09889172518936,-65.09774999360897,-65.09661746823106,-65.09549410451557,-65.09437985777649,-65.09327468318871,-65.09217853579473,-65.09109137051125,-65.09001314213567,-65.08894380535249,-65.08788331473954,-65.08683162477425,-65.08578868983965,-65.08475446423036,-65.08372890215851,-65.08271195775946,-65.08170358509751,-65.08070373817152,-65.07971237092035,-65.07872943722829,-65.0777548909304,-65.07678868581768,-65.07583077564226,-65.07488111412243,-65.07393965494762,-65.07300635178325,-65.07208115827555,-65.0711640280563,-65.07025491474744,-65.06935377196564,-65.06846055332677,-65.06757521245035,-65.06669770296382,-65.06582797850682,-65.0649659927354,-65.06411169932608,-65.06326505197991,-65.06242600442646,-65.06159451042768,-65.06077052378176,-65.05995399832685,-65.05914488794481,-65.05834314656482,-65.05754872816692,-65.05676158678553,-65.05598167651287,-65.0552089515024,-65.05444336597205,-65.05368487420752,-65.05293343056547,-65.05218898947666,-65.05145150544901,-65.05072093307061,-65.04999722701274,-65.0492803420327,-65.04857023297674,-65.04786685478281,-65.0471701624833,-65.04648011120774,-65.0457966561855,-65.04511975274828,-65.04444935633269,-65.04378542248277,-65.04312790685238,-65.0424767652076,-65.04183195342907,-65.04119342751432,-65.04056114357995,-65.03993505786389,-65.03931512672749,-65.0387013066577,-65.03809355426907,-65.03749182630581,-65.03689607964375,-65.03630627129226,-65.03572235839617,-65.0351442982376,-65.03457204823775,-65.0340055659587,-65.0334448091051,-65.03288973552591,-65.03234030321597,-65.03179647031767,-65.03125819512248,-65.03072543607252,-65.030198151762,-65.02967630093873,-65.02915984250552,-65.02864873552154,-65.0281429392037,-65.02764241292795,-65.02714711623055,-65.02665700880937,-65.02617205052499,-65.025692201402,-65.02521742163003,-65.02474767156498,-65.02428291173,-65.02382310281656,-65.02336820568553,-65.02291818136808,-65.02247299106668,-65.02203259615601,-65.02159695818388,-65.02116603887204,-65.02073980011708,-65.02031820399121,-65.01990121274302,-65.01948878879826,-65.01908089476055,-65.01867749341208,-65.01827854771429,-65.01788402080847,-65.01749387601643,-65.01710807684108,-65.01672658696698,-65.01634937026087,-65.01597639077221,-65.01560761273365,-65.01524300056153,-65.01488251885627,-65.01452613240284,-65.01417380617113,-65.01382550531633,-65.01348119517928,-65.01314084128678,-65.01280440935194,-65.0124718652744,-65.01214317514065,-65.01181830522424,-65.01149722198602,-65.01117989207431,-65.01086628232513,-65.0105563597623,-65.01025009159764,-65.00994744523102,-65.00964838825054,-65.00935288843255,-65.00906091374172,-65.00877243233114,-65.0084874125423,-65.00820582290508,-65.00792763213782,-65.00765280914719,-65.00738132302824,-65.00711314306429,-65.00684823872686,-65.0065865796756,-65.00632813575815,-65.00607287701006,-65.00582077365456,-65.00557179610254,-65.00532591495227,-65.00508310098924,-65.00484332518599,-65.00460655870185,-65.00437277288279,-65.00414193926106,-65.00391402955505,-65.00368901566894,-65.00346686969247,-65.0032475639006,-65.00303107075322,-65.00281736289485,-65.00260641315425,-65.00239819454416,-65.00219268026082,-65.00198984368375,-65.00178965837522,-65.00159209807997,-65.00139713672475,-65.0012047484179,-65.00101490744898,-65.00082758828823,-65.00064276558625,-65.00046041417345,-65.00028050905959,-65.00010302543336,-64.99992793866184,-64.99975522429003,-64.99958485804034,-64.99941681581204,-64.99925107368081,-64.99908760789813,-64.9989263948908,-64.99876741126036,-64.99861063378252,-64.99845603940665,-64.99830360525512,-64.9981533086228,-64.99800512697647,-64.99785903795411,-64.99771501936448,-64.99757304918633,-64.99743310556791,-64.99729516682628,-64.99715921144671,-64.99702521808206,-64.99689316555205,-64.99676303284274,-64.99663479910575,-64.99650844365769,-64.99638394597947,-64.9962612857156,-64.99614044267354,-64.996021396823,-64.99590412829527,-64.99578861738253,-64.99567484453715,-64.99556279037095,-64.99545243565456,-64.99534376131665,-64.99523674844326,-64.99513137827707,-64.99502763221663,-64.99492549181574,-64.99482493878257,-64.99472595497909,-64.99462852242019,-64.99453262327303,-64.99443823985628,-64.99434535463934,-64.99425395024161,-64.99416400943176,-64.99407551512691,-64.99398845039197,-64.99390279843877,-64.99381854262539,-64.99373566645535,-64.99365415357683,-64.99357398778191,-64.99349515300585,-64.99341763332625,-64.99334141296228,-64.99326647627396,-64.9931928077613,-64.99312039206362,-64.99304921395864,-64.99297925836183,-64.99291051032554,-64.99284295503827,-64.9927765778238,-64.99271136414053,-64.99264729958057,-64.99258436986902]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1322\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1323\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1318\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_width\":2,\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1319\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.1,\"line_width\":2,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1320\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.2,\"line_width\":2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1330\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1324\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1325\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1326\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99935513261319,-64.99876372655443,-64.99821046775223,-64.99768760284877,-64.99719024284995,-64.9967149504044,-64.99625914620756,-64.99582080888742,-64.99539830409073,-64.99499027876743,-64.99459559173746,-64.9942132659803,-64.99384245467667,-64.99348241634011,-64.99313249616334,-64.99279211172957,-64.99246074185916,-64.99213791775158,-64.9918232158369,-64.99151625192148,-64.99121667632834,-64.99092416981388,-64.9906384400996,-64.99035921889781,-64.9900862593399,-64.98981933373693,-64.98955823161761,-64.98930275800073,-64.98905273186749,-64.98880798480567,-64.98856835980287,-64.98833371016954,-64.98810389857603,-64.98787879618985,-64.98765828190169,-64.98744224163005,-64.98723056769579,-64.98702315825905,-64.98681991681177,-64.98662075172,-64.98642557581078,-64.98623430599895,-64.98604686294976,-64.98586317077384,-64.98568315675092,-64.98550675107974,-64.98533388665128,-64.98516449884323,-64.98499852533341,-64.98483590593034,-64.98467658241935,-64.98452049842264,-64.98436759927196,-64.9842178318927,-64.98407114469833,-64.9839274874941,-64.98378681138925,-64.98364906871686,-64.98351421296057,-64.98338219868768,-64.98325298148782,-64.98312651791689,-64.98300276544562,-64.98288168241243,-64.98276322798012,-64.9826473620961,-64.98253404545586,-64.98242323946921,-64.98231490622933,-64.98220900848413,-64.98210550960985,-64.98200437358663,-64.98190556497596,-64.98180904889972,-64.98171479102083,-64.98162275752524,-64.98153291510515,-64.98144523094348,-64.98135967269936,-64.98127620849456,-64.98119480690092,-64.98111543692838,-64.98103806801403,-64.98096267001164,-64.98088921318191,-64.98081766818328,-64.98074800606325,-64.98068019825023,-64.98061421654577,-64.98055003311731,-64.98048762049119,-64.98042695154606,-64.98036799950668,-64.98031073793787,-64.98025514073888,-64.98020118213792,-64.98014883668696,-64.98009807925678,-64.98004888503208,-64.98000122950698,-64.97995508848057,-64.97991043805256,-64.97986725461925,-64.97982551486949,-64.97978519578083,-64.97974627461582,-64.97970872891828,-64.97967253650988,-64.97963767548666,-64.97960412421568,-64.9795718613318,-64.97954086573448,-64.97951111658465,-64.97948259330174,-64.97945527556065,-64.9794291432889,-64.9794041766637,-64.97938035610927,-64.97935766229399,-64.97933607612775,-64.97931557875931,-64.97929615157369,-64.9792777761896,-64.97926043445693,-64.97924410845425,-64.97922878048635,-64.97921443308188,-64.97920104899089,-64.97918861118255,-64.9791771028428,-64.97916650737206,-64.97915680838297,-64.97914798969815,-64.97914003534801,-64.97913292956854,-64.97912665679917,-64.97912120168063,-64.97911654905283,-64.9791126839528,-64.97910959161258,-64.9791072574572,-64.97910566710264,-64.97910480635385,-64.9791046612027,-64.97910521782612,-64.97910646258404,-64.97910838201756,-64.97911096284695,-64.97911419196981,-64.97911805645921,-64.97912254356177,-64.97912764069588,-64.97913333544982,-64.97913961558001,-64.97914646900918,-64.97915388382462,-64.97916184827639,-64.97917035077559,-64.97917937989264,-64.97918892435557,-64.9791989730483,-64.97920951500899,-64.97922053942833,-64.9792320356479,-64.97924399315858,-64.97925640159885,-64.97926925075322,-64.97928253055065,-64.97929623106292,-64.97931034250308,-64.97932485522395,-64.97933975971648,-64.9793550466083,-64.97937070666218,-64.97938673077451,-64.97940310997384,-64.97941983541942,-64.97943689839968,-64.97945429033085,-64.97947200275546,-64.97949002734096,-64.9795083558783,-64.97952698028051,-64.97954589258138,-64.979565084934,-64.97958454960943,-64.9796042789954,-64.9796242655949,-64.9796445020249,-64.97966498101505,-64.97968569540632,-64.97970663814978,-64.97972780230526,-64.97974918104013,-64.97977076762804,-64.97979255544764,-64.97981453798143,-64.9798367088144,-64.979859061633,-64.97988159022377,-64.97951653329079,-64.97765272958625,-64.97254222700258,-64.96218473832069,-64.94472877518527,-64.91872815621495,-64.88323514719033,-64.83777916890504,-64.78228789349016,-64.71699147744914,-64.64233237834186,-64.55889013054473,-64.46732301846403,-64.36832509980289,-64.26259581528194,-64.1508193252216,-64.03365107826716,-63.91170960931098,-63.785572033775466,-63.65577210046012,-63.5227999759322,-63.38710316865926,-63.249088174799375,-63.10912255375759,-62.96753723220938,-62.824628899740496,-62.6806624047541,-62.53587309119502,-62.39046903883774,-62.24463318520124,-62.09852531761091,-61.952283930969514,-61.806027951449586,-61.65985832930554,-61.51385950583762,-61.36810076058187,-61.2226374453052,-61.07751211152849,-60.93275553820727,-60.78838766595487,-60.64480587352858,-60.503121106193404,-60.36507250029428,-60.23264529362667,-60.10767296884974,-59.99158440014521,-59.88531421409959,-59.789327054406726,-59.70369873179376,-59.62821345269409,-59.56245471329303,-59.505880569621276,-59.45788145644875,-59.417822220736,-59.38507124790185,-59.35901964513696,-59.339093067812364,-59.32475826866189,-59.31552596471861,-59.3109512081828,-59.310632124170176,-59.31420763217446,-59.32135458510381,-59.33178462591028,-59.345240965097894,-59.36149521316788,-59.38034435297415,-59.40160790250409,-59.42512529469799,-59.45075348459914,-59.47836478322081,-59.507844910458935,-59.539091255037526,-59.57201132703148,-59.6065213873803,-59.64254523856556,-59.68001316097244,-59.71886098017662,-59.75902925134123,-59.80046254796727,-59.843108843342115,-59.886918974125074,-59.93184617656345,-59.97784568682751,-60.02487439787627,-60.072890566112775,-60.121853561856405,-60.17172365835192,-60.222461854654526,-60.27402972828108,-60.32638931400547,-60.379503005606324,-60.43333347775313,-60.48784362554798,-60.54299651952959,-60.5987553741986,-60.65508352834315,-60.71194443563492,-60.76930166413265,-60.827118903474755,-60.885359978669335,-60.94398886949997,-61.0029697346626,-61.06226693983366,-61.12184508894472,-61.1816690580058,-61.24170403087931,-61.3019155364601,-61.36226948676648,-61.42273221549158,-61.483270516605835,-61.54385168263995,-61.60444354231363,-61.66501449720935,-61.72553355722269,-61.7859703745512,-61.84629527601304,-61.90647929351443,-61.96649419251162,-62.026312498338434,-62.085907520294796,-62.145253373414505,-62.20432499785267,-62.263098175853635,-62.32154954627961,-62.37965661669863,-62.437397773046925,-62.49475228689654,-62.55170032037322,-62.60822292878219,-62.66430206101128,-62.71992055779076,-62.77506214789825,-62.82971144240452,-62.88385392706252,-62.93747595294682,-62.99056472545493,-63.04310829178455,-63.09509552700284,-63.146516118824565,-63.19736055121601,-63.24762008694069,-63.29728674916134,-63.34635330221022,-63.39481323163731,-63.44266072364215,-63.489890643991565,-63.536498516521185,-63.58248050131419,-63.62783337264597,-63.672554496778446,-63.716641809682606,-63.76009379476293,-63.80290946065187,-63.8450883191376,-63.886630363283075,-63.927536045789296,-63.96780625765096,-64.00744230714768,-64.04644589920942,-64.08481911519037,-64.1225643930813,-64.15968450818607,-64.19618255428458,-64.23206192530048,-64.2673262974889,-64.30197961215576,-64.33602605891797,-64.36947005951046,-64.40231625214402,-64.43456947641504,-64.46623475876675,-64.49731729849923,-64.52782245432384,-64.55775573145638,-64.58712276924157,-64.6159293293006,-64.64418128419207,-64.67188460657624,-64.69904535887107,-64.72566968338842,-64.75176379293792,-64.77733396188587,-64.8023865176557,-64.82692783265682,-64.85096431662811,-64.87450240938247,-64.89754857393848,-64.92010929002566,-64.94219104794948,-64.96380034280271,-64.98494366900968,-65.00562751519023,-65.02585835933043,-65.04564266424735,-65.06498687333549,-65.0838974065825,-65.1023806568428,-65.12044298635712,-65.13809072350708,-65.1553301597938,-65.17216754703026,-65.18860909473688,-65.20466096773104,-65.22032928390058,-65.23562011215238,-65.25053947052737,-65.26509332447333,-65.27928758526738,-65.29312810858063,-65.30662069317712,-65.31977107974033,-65.33258494982006,-65.34506792489334,-65.35722556553303,-65.36906337067812,-65.38058677700002,-65.3918011583594,-65.4027118253483,-65.41332402491273,-65.42364294005068,-65.43367368958157,-65.44342132798218,-65.45289084528567,-65.46208716703923,-65.47101515431707,-65.47967960378503,-65.48808524781354,-65.49623675463583,-65.50413872854823,-65.5117957101499,-65.51921217661919,-65.52639254202406,-65.53334115766414,-65.54006231244222,-65.54656023326282,-65.55283908545606,-65.55890297322442,-65.56475594011114,-65.57040196948797,-65.575844985061,-65.58108885139274,-65.58613737443925,-65.59099430210065,-65.59566332478394,-65.60014807597668,-65.60445213283053,-65.60857901675354,-65.61253219400994,-65.61631507632683,-65.61993102150637,-65.62338333404315,-65.62667526574543,-65.62981001635976,-65.63279073419827,-65.63562051676779,-65.63830241140033,-65.64083941588423,-65.64323447909544,-65.64549050162846,-65.6476103364264,-65.6495967894097,-65.65145262010317,-65.6531805422608,-65.65478322448811,-65.6562632908617,-65.65762332154551,-65.65886585340374,-65.65999338060989,-65.66100835525194,-65.6619131879332,-65.66271024836873,-65.66340186597718,-65.6639903304677,-65.66447789242191,-65.66486676387069,-65.66515911886573,-65.6653570940456,-65.66546278919633,-65.66547826780634,-65.66540555761567,-65.6652466511594,-65.6650035063052,-65.66467804678486,-65.66427216271998,-65.66378771114157,-65.66322651650346,-65.66259037118982,-65.66188103601638,-65.6611002407256,-65.66024968447564,-65.65933103632324,-65.65834593570032,-65.65729599288458,-65.65618278946384,-65.65500787879428,-65.65377278645262,-65.65247901068211,-65.65112802283257,-65.64972126779426,-65.64826016442589,-65.64674610597653,-65.64518046050168,-65.64356457127334,-65.64189975718438,-65.64018731314688,-65.63842851048499,-65.63662459732176,-65.63477679896054,-65.63288631826066,-65.63095433600752,-65.62898201127724,-65.62697048179581,-65.62492086429276,-65.62283425484965,-65.62071172924311,-65.61855434328274,-65.61636313314372,-65.61413911569448,-65.61188328881913,-65.60959663173496,-65.60728010530504,-65.60493465234586,-65.6025611979302,-65.60016064968524,-65.59773389808589,-65.59528181674362,-65.59280526269056,-65.59030507665916,-65.58778208335741,-65.58523709173956,-65.58267089527259,-65.58008427219836,-65.57747798579157,-65.57485278461348,-65.57220940276159,-65.56954856011522,-65.56687096257721,-65.56417730231152,-65.56146825797707,-65.55874449495772,-65.55600666558854,-65.55325540937828,-65.55049135322822,-65.5477151116475,-65.54492728696476,-65.54212846953644,-65.53931923795152,-65.53650015923293,-65.53367178903567,-65.53083467184152,-65.52798934115067,-65.52513631967004,-65.52227611949857,-65.51940924230934,-65.5165361795287,-65.51365741251247,-65.51077341271908,-65.50788464187985,-65.5049915521666,-65.50209458635612,-65.49919417799224,-65.49629075154492,-65.49338472256686,-65.49047649784733,-65.48756647556357,-65.48465504542952,-65.48174258884214,-65.47882947902521,-65.4759160811708,-65.47300275257822,-65.47008984279086,-65.4671776937304,-65.46426663982915,-65.46135700815981,-65.45844911856328,-65.45554328377425,-65.4526398095446,-65.44973899476487,-65.44684113158353,-65.44394650552435,-65.44105539560177,-65.43816807443427,-65.43528480835593,-65.43240585752599,-65.42953147603671,-65.42666191201926,-65.42379740774793,-65.42093819974257,-65.41808451886928,-65.4152365904394,-65.41239463430688,-65.40955886496394,-65.40672949163522,-65.40390671837021,-65.4010907441343,-65.3982817628981,-65.39547996372542,-65.39268553085974,-65.38989864380912,-65.3871194774298,-65.38434820200841,-65.38158498334265,-65.3788299828208,-65.37608335749978,-65.3733452601819,-65.37061583949045,-65.36789523994382,-65.36518360202855,-65.36248106227112,-65.35978775330842,-65.35710380395727,-65.35442933928252,-65.35176448066419,-65.34910934586345,-65.34646404908747,-65.3438287010532,-65.34120340905004,-65.33858827700159,-65.33598340552628,-65.33338889199693,-65.3308048305995,-65.32823131239067,-65.32566842535459,-65.32311625445863,-65.32057488170823,-65.31804438620081,-65.31552484417882,-65.31301632908192,-65.31051891159821,-65.30803265971471,-65.30555763876697,-65.30309391148782,-65.3006415380554,-65.2982005761403,-65.29577108095201,-65.29335310528451,-65.2909466995612,-65.28855191187904,-65.28616878805195,-65.28379737165355,-65.2814377040591,-65.27908982448692,-65.2767537700389,-65.27442957574054,-65.27211727458027,-65.26981689754804,-65.26752847367344,-65.26525203006302,-65.26298759193719,-65.26073518266628,-65.25849482380625,-65.25626653513363,-65.25405033468006,-65.25184623876603,-65.24965426203435,-65.24747441748285,-65.24530671649663,-65.24315116887983,-65.24100778288683,-65.23887656525288,-65.23675752122438,-65.23465065458853,-65.23255596770262,-65.23047346152269,-65.22840313563188,-65.2263449882682,-65.22429901635194,-65.22226521551259,-65.22024358011531,-65.21823410328699,-65.21623677694188,-65.21425159180684,-65.21227853744611,-65.21031760228576,-65.20836877363764,-65.2064320377231,-65.20450737969615,-65.20259478366633,-65.20069423272125,-65.19880570894868,-65.19692919345836,-65.19506466640337,-65.19321210700124,-65.19137149355468,-65.18954280347198,-65.18772601328705,-65.18592109867916,-65.18412803449243,-65.18234679475485,-65.18057735269714,-65.17881968077121,-65.17707375066838,-65.17533953333727,-65.1736169990014,-65.17190611717653,-65.17020685668771,-65.16851918568604,-65.16684307166516,-65.16517848147748,-65.16352538135018,-65.16188373690088,-65.16025351315307,-65.15863467455138,-65.15702718497649,-65.15543100775984,-65.15384610569812,-65.15227244106748,-65.15070997563757,-65.14915867068527,-65.14761848700827,-65.1460893849384,-65.14457132435476,-65.14306426469655,-65.14156816497582,-65.14008298378992,-65.1386086793338,-65.13714520941204,-65.13569253145076,-65.13425060250928,-65.1328193792916,-65.13139881815773,-65.12998887513474,-65.12858950592776,-65.12720066593066,-65.12582231023664,-65.12445439364865,-65.12309687068955,-65.12174969561224,-65.12041282240943,-65.11908620482346,-65.11776979635579,-65.11646355027642,-65.11516741963312,-65.1138813572605,-65.11260531578894,-65.11133924765336,-65.11008310510188,-65.10883684020423,-65.1076004048602,-65.10637375080766,-65.10515682963081,-65.10394959276798,-65.10275199151938,-65.10156397705487,-65.10038550042135,-65.09921651255024,-65.09805696426466,-65.0969068062866,-65.09576598924392,-65.09463446367721,-65.09351218004662,-65.0923990887384,-65.09129514007154,-65.09020028430405,-65.08911447163938,-65.08803765223253,-65.08696977619614,-65.08591079360647,-65.08486065450924,-65.08381930892537,-65.08278670685664,-65.08176279829125,-65.08074753320926,-65.07974086158788,-65.07874273340676,-65.07775309865313,-65.07677190732687,-65.07579910944543,-65.07483465504868,-65.07387849420373,-65.07293057700959,-65.07199085360175,-65.0710592741567,-65.07013578889634,-65.06922034809232,-65.06831290207026,-65.06741340121395,-65.06652179596944,-65.06563803684897,-65.06476207443498,-65.06389385938392,-65.06303334243002,-65.06218047438894,-65.06133520616144,-65.06049748873694,-65.05966727319691,-65.05884451071832,-65.05802915257696,-65.05722115015072,-65.05642045492273,-65.0556270184845,-65.05484079253897,-65.0540617289035,-65.05328977951281,-65.0525248964218,-65.05176703180837,-65.05101613797615,-65.05027216735715,-65.0495350725144,-65.04880480614447,-65.04808132107998,-65.04736457029203,-65.04665450689257,-65.04595108413672,-65.04525425542505,-65.04456397430575,-65.04388019447683,-65.04320286978819,-65.04253195424367,-65.04186740200308,-65.0412091673841,-65.0405572048642,-65.03991146908251,-65.03927191484156,-65.03863849710908,-65.03801117101965,-65.03738989187643,-65.0367746151527,-65.03616529649345,-65.03556189171692,-65.03496435681603,-65.03437264795983,-65.0337867214949,-65.03320653394671,-65.03263204202085,-65.03206320260439,-65.03149997276705,-65.03094230976238,-65.03039017102893,-65.02984351419131,-65.02930229706134,-65.02876647763898,-65.0282360141134,-65.0277108648639,-65.02719098846083,-65.0266763436665,-65.026166889436,-65.02566258491804,-65.02516338945573,-65.02466926258731,-65.02418016404688,-65.02369605376511,-65.02321689186982,-65.02274263868671,-65.02227325473984,-65.02180870075229,-65.0213489376466,-65.02089392654531,-65.02044362877149,-65.01999800584908,-65.01955701950338,-65.01912063166144,-65.01868880445234,-65.01826150020764,-65.01783868146161,-65.01742031095154,-65.01700635161798,-65.016596766605,-65.0161915192604,-65.01579057313586,-65.01539389198713,-65.01500143977414,-65.01461318066114,-65.0142290790168,-65.01384909941423,-65.01347320663109,-65.01310136564956,-65.01273354165637,-65.01236970004281,-65.01200980640463,-65.01165382654204,-65.01130172645962,-65.01095347236621,-65.0106090306748,-65.01026836800241,-65.00993145116992,-65.00959824720191,-65.00926872332647,-65.00894284697502,-65.00862058578204,-65.00830190758487,-65.00798678042342,-65.00767517253996,-65.00736705237875,-65.00706238858582,-65.0067611500086,-65.00646330569559,-65.00616882489604,-65.00587767705956,-65.00558983183576,-65.00530525907388,-65.00502392882233,-65.0047458113283,-65.0044708770374,-65.0041990965931,-65.00393044083631,-65.003664880805,-65.00340238773363,-65.00314293305266,-65.00288648838809,-65.00263302556093,-65.00238251658668,-65.00213493367477,-65.00189024922805,-65.00164843584223,-65.00140946630526,-65.00117331359684,-65.00093995088774,-65.00070935153931,-65.0004814891028,-65.00025633731875,-65.0000338701164,-64.99981406161305,-64.99959688611342,-64.999382318109,-64.99917033227739,-64.99896090348163,-64.99875400676959,-64.9985496173732,-64.99834771070783,-64.9981482623716,-64.99795124814463,-64.9977566439884,-64.99756442604499,-64.99737457063638,-64.99718705426373,-64.99700185360666,-64.99681894552249,-64.99663830704553,-64.9964599153863,-64.99628374793079,-64.99610978223976,-64.99593799604787,-64.99576836726301,-64.9956008739655,-64.9954354944073,-64.99527220701124,-64.99511099037025,-64.99495182324655,-64.9947946845709,-64.99463955344177,-64.99448640912453,-64.9943352310507,-64.9941859988171,-64.99403869218507,-64.99389329107966,-64.99374977558878,-64.99360812596245,-64.99346832261193,-64.9933303461089,-64.99319417718468,-64.99305979672934,-64.99292718579095,-64.99279632557467,-64.992667197442,-64.99253978290987,-64.99241406364989,-64.99229002148742,-64.99216763840082,-64.99204689652055,-64.99192777812836,-64.99181026565645,-64.99169434168662,-64.99157998894943,-64.99146719032335,-64.99135592883393,-64.99124618765296,-64.99113795009761,-64.99103119962957,-64.99092591985428,-64.99082209451996,-64.99071970751689,-64.99061874287649,-64.9905191847705,-64.99042101751013,-64.99032422554521,-64.99022879346336,-64.99013470598912,-64.99004194798316,-64.98995050444137,-64.98986036049405,-64.98977150140509,-64.98968391257108,-64.98959757952052,-64.98951248791295,-64.98942862353812,-64.98934597231515,-64.98926452029171,-64.98918425364319,-64.9891051586718,-64.98902722180586,-64.98895042959883,-64.98887476872862,-64.98880022599666,-64.9887267883271,-64.98865444276602,-64.98858317648059,-64.98851297675822,-64.98844383100575]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1331\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1332\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1327\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\"}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1328\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.1}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1329\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1339\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1333\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1334\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1335\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.9999887728352,-64.99995628441064,-64.99989892130402,-64.99981776440134,-64.99971593404454,-64.99959696409681,-64.9994640945174,-64.99932005820553,-64.99916707959999,-64.99900694572524,-64.99884109066289,-64.99867067185168,-64.99849663240401,-64.99831974967087,-64.99814067221564,-64.9979599476568,-64.99777804356196,-64.99759536315324,-64.99741225717617,-64.99722903294513,-64.997045961312,-64.99686328210359,-64.99668120842533,-64.99649993011919,-64.99631961658532,-64.99614041911998,-64.99596247288079,-64.99578589856121,-64.99561080383481,-64.99543728461397,-64.99526542615743,-64.99509530405204,-64.99492698508901,-64.99476052804992,-64.99459598441516,-64.9944333990045,-64.99427281055823,-64.99411425226526,-64.99395775224443,-64.99380333398332,-64.9936510167393,-64.99350081590609,-64.99335274334918,-64.9932068077131,-64.9930630147029,-64.99292136734223,-64.99278186620997,-64.99264450965734,-64.99250929400716,-64.99237621373675,-64.99224526164582,-64.99211642901071,-64.99198970572593,-64.99186508043432,-64.99174254064651,-64.99162207285073,-64.99150366261364,-64.9913872946731,-64.99127295302327,-64.99116062099287,-64.99105028131714,-64.99094191620388,-64.99083550739412,-64.99073103621798,-64.99062848364582,-64.99052783033534,-64.99042905667477,-64.99033214282261,-64.99023706874397,-64.99014381424404,-64.9900523589988,-64.98996268258311,-64.9898747644965,-64.98978858418687,-64.98970412107208,-64.98962135455983,-64.9895402640658,-64.98946082903024,-64.98938302893315,-64.98930684330816,-64.98923225175508,-64.98915923395158,-64.98908776966351,-64.98901783875456,-64.98894942119492,-64.98888249706904,-64.9888170465829,-64.98875305007034,-64.98869048799891,-64.98862934097504,-64.98856958974879,-64.98851121521798,-64.98845419843201,-64.98839852059504,-64.98834416306907,-64.98829110737641,-64.98823933520198,-64.98818882839521,-64.98813956897175,-64.98809153911486,-64.98804472117659,-64.98799909767875,-64.98795465131361,-64.9879113649446,-64.98786922160656,-64.98782820450614,-64.9877882970218,-64.98774948270386,-64.98771174527435,-64.98767506862673,-64.98763943682557,-64.9876048341061,-64.98757124487368,-64.9875386537032,-64.98750704533843,-64.98747640469125,-64.98744671684085,-64.98741796703293,-64.98739014067873,-64.98736322335415,-64.98733720079875,-64.98731205891472,-64.98728778376584,-64.98726436157636,-64.98724177873002,-64.98722002176875,-64.98719907739162,-64.98717893245369,-64.98715957396473,-64.9871409890881,-64.98712316513955,-64.9871060895859,-64.98708975004389,-64.98707413427894,-64.98705923020385,-64.98704502587759,-64.987031509504,-64.98701866943061,-64.9870064941473,-64.98699497228505,-64.98698409261473,-64.98697384404576,-64.98696421562494,-64.98695519653506,-64.98694677609379,-64.98693894375232,-64.98693168909415,-64.98692500183381,-64.9869188718157,-64.98691328901273,-64.98690824352518,-64.98690372557944,-64.98689972552677,-64.98689623384209,-64.98689324112283,-64.98689073808761,-64.98688871557513,-64.98688716454295,-64.98688607606633,-64.986885441337,-64.986885251662,-64.9868854984626,-64.98688617327304,-64.98688726773939,-64.98688877361852,-64.9868906827768,-64.98689298718915,-64.98689567893776,-64.98689875021108,-64.98690219330271,-64.98690600061028,-64.98691016463434,-64.98691467797738,-64.98691953334263,-64.9869247235331,-64.98693024145048,-64.9869360800941,-64.9869422325599,-64.98694869203939,-64.98695545181864,-64.98696250527728,-64.98696984588742,-64.98697746721274,-64.98698536290749,-64.98699352671547,-64.98700195246904,-64.98701063408822,-64.98701956557971,-64.9870287410359,-64.98703815463395,-64.98704780063491,-64.98705767338271,-64.98706776730327,-64.98707807690363,-64.98708859677099,-64.98709932157186,-64.98711024605112,-64.9871213650312,-64.98713267341117,-64.98714416616588,-64.90489453705696,-64.7024746262292,-64.39431593640997,-64.01275372819336,-63.58775906807976,-63.14146197126119,-62.688738493654384,-62.23913278401524,-61.798571314088164,-61.370594739976355,-60.9571834114238,-60.55929957490755,-60.177243442996286,-59.81088866506102,-59.459839287000996,-59.123534994628216,-58.80132184488512,-58.49249970033989,-58.19635379936432,-57.912175461298226,-57.639275330607774,-57.37699149938437,-57.124694126352495,-56.881787676272566,-56.64771156185117,-56.421939732450916,-56.20397958769582,-55.99337047761809,-55.78968196929345,-55.59251200258616,-55.401485017440685,-55.216250107045916,-55.036479231599536,-54.861865513802385,-54.69212162784385,-54.526978287246536,-54.36618283263641,-54.20949791766643,-54.05670028950583,-53.90757965919983,-53.8441989522068,-53.90427987856945,-54.07321350986201,-54.318496381961495,-54.60999778968149,-54.925436161967696,-55.249791671788486,-55.57338405410245,-55.89015837939373,-56.196453285086584,-56.49017560198868,-56.770258288052794,-57.03630446297366,-57.288351983617176,-57.52671645668279,-57.751885886016005,-57.96444974905869,-58.16505129075362,-58.354355609922735,-58.53302854863429,-58.70172299170346,-58.86107024861604,-59.011674911181714,-59.15411207387626,-59.28892614466073,-59.41663071074984,-59.53770908876853,-59.65261530393682,-59.76177532341099,-59.865588425095595,-59.964428622386244,-60.058646092485056,-60.148568574718816,-60.23450271819288,-60.316735366900204,-60.3955347763192,-60.47115175945196,-60.54382076279288,-60.61376087430761,-60.68117676644677,-60.746259577728715,-60.80918773664704,-60.87012773169258,-60.92923483119609,-60.98665375654323,-61.042519312119545,-61.09695697513128,-61.150083448230724,-61.202007177661606,-61.25282883943545,-61.30264179585639,-61.351532524531635,-61.39958102183715,-61.446861182653265,-61.49344115804229,-61.53938369240901,-61.58474644156386,-61.629582272997396,-61.67393954957243,-61.71786239774539,-61.7613909613417,-61.80456164182925,-61.84740732596001,-61.88995760158073,-61.932238962350596,-61.97427500204463,-62.01608659906747,-62.057692091752024,-62.09910744497101,-62.14034640854698,-62.18142066790678,-62.22233998739053,-62.26311234659195,-62.3037440700765,-62.344239950796194,-62.38460336749475,-62.42483639637378,-62.46493991727024,-62.504913714576574,-62.54475657311828,-62.58446636918899,-62.62404015692935,-62.66347425022474,-62.70276430028616,-62.741905369069656,-62.780891998681625,-62.81971827691057,-62.858377899019764,-62.89686422593015,-62.9351703389185,-62.97328909095201,-63.01121315477718,-63.048935067878325,-63.086447274418305,-63.12374216427241,-63.16081210926421,-63.1976494967107,-63.234246760382646,-63.27059640898438,-63.30669105225645,-63.34252342480263,-63.378086407741996,-63.41337304828495,-63.448376577330976,-63.48309042518428,-63.51750823548177,-63.5516238774263,-63.5854314564162,-63.618925323160234,-63.652100081365084,-63.68495059408047,-63.717471988784546,-63.74965966129028,-63.78150927855076,-63.81301678043911,-63.844178380576324,-63.87499056627726,-63.905450097683044,-63.93555400614492,-63.96529959192227,-63.99468442125466,-64.02370632286517,-64.05236338394941,-64.08065394570232,-64.10857659843165,-64.13613017630509,-64.16331375177481,-64.19012662972115,-64.21656834135437,-64.24263863791136,-64.2683374841814,-64.29366505189334,-64.31862171299387,-64.34320803284476,-64.36742476336495,-64.39127283614104,-64.41475335552836,-64.43786759176261,-64.46061697410059,-64.48300308400681,-64.50502764840121,-64.52669253298188,-64.54799973563513,-64.5689513799441,-64.58954970880562,-64.60979707816442,-64.62969595087186,-64.64924889067622,-64.66845855634995,-64.68732769595893,-64.70585914127751,-64.72405580235267,-64.7419206622197,-64.75945677177155,-64.77666724478279,-64.79355525308898,-64.81012402192191,-64.8263768254002,-64.84231698217472,-64.85794785122779,-64.87327282782486,-64.88829533961687,-64.90301884289146,-64.9174468189708,-64.93158277075374,-64.94543021939938,-64.9589927011499,-64.97227376428906,-64.98527696623405,-64.99800587075704,-65.01046404533358,-65.02265505861455,-65.03458247801824,-65.04624986743949,-65.05766078507214,-65.06881878134197,-65.07972739694627,-65.090390160997,-65.10081058926413,-65.11099218251586,-65.12093842495241,-65.13065278273025,-65.14013870257348,-65.14939961046937,-65.15843891044477,-65.16725998342056,-65.17586618614114,-65.18426085017593,-65.19244728099035,-65.20042875708302,-65.20820852918699,-65.21578981953215,-65.22317582116618,-65.23036969733167,-65.237374580897,-65.24419357383857,-65.25082974677215,-65.25728613853114,-65.26356575578947,-65.26967157272745,-65.27560653073803,-65.28137353817209,-65.28697547012038,-65.29241516823076,-65.29769544055874,-65.30281906144965,-65.30778877145093,-65.31260727725301,-65.31727725165706,-65.32180133356854,-65.32618212801474,-65.3304222061853,-65.33452410549442,-65.33849032966323,-65.34232334882157,-65.34602559962771,-65.34959948540514,-65.35304737629521,-65.3563716094249,-65.35957448908843,-65.36265828694204,-65.36562524221107,-65.36847756190832,-65.37121742106311,-65.37384696296013,-65.3763682993875,-65.3787835108931,-65.38109464704887,-65.3833037267221,-65.38541273835335,-65.38742364024027,-65.38933836082693,-65.39115879899799,-65.39288682437737,-65.39452427763074,-65.39607297077166,-65.39753468747071,-65.39891118336737,-65.4002041863841,-65.40141539704248,-65.40254648878087,-65.40359910827341,-65.4045748757499,-65.40547538531649,-65.40630220527663,-65.40705687845234,-65.4077409225052,-65.4083558302572,-65.4089030700109,-65.40938408586895,-65.40980029805266,-65.41015310321939,-65.41044387477874,-65.41067396320727,-65.41084469636164,-65.41095737978999,-65.41101329704156,-65.41101370997424,-65.41095985906003,-65.41085296368846,-65.41069422246753,-65.41048481352243,-65.41022589479174,-65.40991860432108,-65.40956406055422,-65.40916336262153,-65.40871759062563,-65.40822780592435,-65.40769505141088,-65.40712035179102,-65.40650471385749,-65.40584912676147,-65.405154562281,-65.40442197508654,-65.4036523030034,-65.40284646727126,-65.40200537280062,-65.40112990842614,-65.400220947157,-65.39927934642418,-65.39830594832463,-65.3973015798625,-65.39626705318706,-65.39520316582788,-65.3941107009267,-65.39299042746636,-65.39184310049669,-65.39066946135738,-65.38947023789781,-65.38824614469387,-65.38699788326187,-65.38572614226942,-65.38443159774341,-65.383114913275,-65.38177674022175,-65.38041771790692,-65.3790384738158,-65.37763962378925,-65.37622177221445,-65.37478551221285,-65.37333142582531,-65.37186008419458,-65.37037204774501,-65.36886786635962,-65.36734807955443,-65.3658132166503,-65.36426379694203,-65.36270032986498,-65.3611233151591,-65.3595332430305,-65.35793059431042,-65.3563158406119,-65.35468944448391,-65.35305185956311,-65.35140353072326,-65.34974489422231,-65.34807637784708,-65.34639840105582,-65.3447113751184,-65.34301570325428,-65.34131178076842,-65.33959999518486,-65.33788072637824,-65.3361543467033,-65.33442122112214,-65.3326817073296,-65.33093615587646,-65.32918491029086,-65.32742830719755,-65.32566667643532,-65.32390034117255,-65.32212961802077,-65.32035481714652,-65.3185762423813,-65.31679419132968,-65.31500895547576,-65.31322082028784,-65.31143006532132,-65.30963696432003,-65.30784178531574,-65.3060447907262,-65.30424623745145,-65.30244637696858,-65.30064545542491,-65.29884371372974,-65.29704138764436,-65.29523870787081,-65.29343590013902,-65.29163318529257,-65.28983077937302,-65.2880288937028,-65.28622773496679,-65.28442750529248,-65.2826284023289,-65.28083061932408,-65.27903434520138,-65.27723976463443,-65.2754470581209,-65.27365640205502,-65.27186796879889,-65.27008192675254,-65.26829844042294,-65.2665176704918,-65.26473977388218,-65.26296490382411,-65.26119320991901,-65.25942483820309,-65.25765993120966,-65.25589862803045,-65.25414106437586,-65.25238737263417,-65.2506376819299,-65.24889211818102,-65.24715080415531,-65.24541385952581,-65.2436814009252,-65.24195354199942,-65.24023039346037,-65.23851206313759,-65.23679865602931,-65.23509027435242,-65.23338701759175,-65.23168898254855,-65.22999626338797,-65.22830895168599,-65.22662713647536,-65.22495090429098,-65.2232803392143,-65.22161552291715,-65.21995653470479,-65.21830345155821,-65.21665634817575,-65.21501529701402,-65.21338036832822,-65.2117516302116,-65.21012914863446,-65.20851298748244,-65.20690320859407,-65.20529987179786,-65.20370303494867,-65.20211275396349,-65.20052908285669,-65.19895207377455,-65.19738177702939,-65.19581824113301,-65.1942615128296,-65.19271163712817,-65.1911686573343,-65.1896326150816,-65.18810355036236,-65.18658150155792,-65.18506650546848,-65.18355859734234,-65.18205781090474,-65.1805641783862,-65.17907773055042,-65.17759849672164,-65.17612650481165,-65.17466178134626,-65.17320435149146,-65.17175423907898,-65.17031146663157,-65.16887605538784,-65.16744802532662,-65.166027395191,-65.16461418251191,-65.16320840363143,-65.16181007372552,-65.16041920682657,-65.15903581584551,-65.15765991259352,-65.1562915078034,-65.15493061115066,-65.15357723127417,-65.15223137579656,-65.15089305134417,-65.14956226356684,-65.14823901715717,-65.14692331586971,-65.14561516253958,-65.14431455910102,-65.14302150660544,-65.1417360052393,-65.14045805434172,-65.13918765242164,-65.1379247971749,-65.13666948550093,-65.13542171351912,-65.1341814765851,-65.13294876930655,-65.13172358555896,-65.1305059185009,-65.12929576058924,-65.12809310359408,-65.12689793861333,-65.12571025608712,-65.12453004581211,-65.1233572969553,-65.12219199806788,-65.1210341370986,-65.1198837014072,-65.11874067777737,-65.11760505242965,-65.11647681103412,-65.11535593872273,-65.11424242010169,-65.11313623926337,-65.11203737979825,-65.11094582480654,-65.1098615569096,-65.10878455826133,-65.10771481055912,-65.1066522950549,-65.10559699256576,-65.10454888348465,-65.10350794779063,-65.10247416505916,-65.10144751447216,-65.1004279748279,-65.09941552455068,-65.09841014170048,-65.09741180398233,-65.09642048875554,-65.09543617304288,-65.09445883353952,-65.09348844662176,-65.09252498835585,-65.09156843450639,-65.09061876054477,-65.08967594165743,-65.08873995275394,-65.08781076847501,-65.08688836320032,-65.08597271105627,-65.08506378592354,-65.08416156144455,-65.08326601103086,-65.08237710787031,-65.08149482493423,-65.08061913498429,-65.0797500105795,-65.0788874240829,-65.07803134766814,-65.07718175332617,-65.07633861287151,-65.07550189794866,-65.07467158003824,-65.07384763046315,-65.07303002039453,-65.07221872085769,-65.0714137027379,-65.07061493678609,-65.06982239362445,-65.06903604375195,-65.06825585754974,-65.06748180528653,-65.06671385712374,-65.0659519831207,-65.06519615323968,-65.0644463373509,-65.06370250523733,-65.06296462659958,-65.06223267106057,-65.06150660817015,-65.06078640740968,-65.06007203819648,-65.05936346988825,-65.05866067178737,-65.05796361314512,-65.05727226316591,-65.0565865910113,-65.05590656580405,-65.05523215663207,-65.0545633325523,-65.05390006259452,-65.05324231576503,-65.05259006105042,-65.05194326742108,-65.05130190383481,-65.05066593924023,-65.05003534258027,-65.0494100827954,-65.04879012882704,-65.04817544962069,-65.04756601412913,-65.04696179131554,-65.04636275015649,-65.04576885964501,-65.0451800887934,-65.04459640663627,-65.04401778223318,-65.04344418467153,-65.04287558306925,-65.04231194657737,-65.04175324438278,-65.04119944571062,-65.04065051982691,-65.04010643604096,-65.03956716370774,-65.03903267223029,-65.03850293106198,-65.03797790970883,-65.03745757773166,-65.0369419047483,-65.03643086043571,-65.03592441453205,-65.03542253683868,-65.03492519722226,-65.03443236561657,-65.03394401202448,-65.03346010651984,-65.03298061924926,-65.0325055204339,-65.03203478037125,-65.03156836943678,-65.03110625808567,-65.03064841685439,-65.03019481636231,-65.02974542731327,-65.02930022049706,-65.02885916679095,-65.0284222371611,-65.02798940266396,-65.02756063444775,-65.02713590375367,-65.02671518191727,-65.02629844036973,-65.02588565063913,-65.02547678435161,-65.02507181323259,-65.02467070910791,-65.02427344390493,-65.0238799896537,-65.02349031848787,-65.0231044026459,-65.02272221447193,-65.0223437264168,-65.02196891103902,-65.02159774100566,-65.02123018909322,-65.02086622818854,-65.02050583128964,-65.02014897150647,-65.01979562206176,-65.01944575629177,-65.01909934764701,-65.01875636969294,-65.0184167961107,-65.01808060069773,-65.01774775736845,-65.01741824015485,-65.01709202320711,-65.01676908079412,-65.01644938730409,-65.01613291724507,-65.01581964524543,-65.01550954605435,-65.0152025945423,-65.0148987657015,-65.01459803464631,-65.01430037661365,-65.0140057669634,-65.01371418117874,-65.01342559486653,-65.01313998375761,-65.01285732370714,-65.01257759069485,-65.01230076082537,-65.01202681032844,-65.01175571555918,-65.0114874529983,-65.01122199925233,-65.01095933105377,-65.0106994252613,-65.01044225885992,-65.01018780896113,-65.00993605280301,-65.00968696775033,-65.00944053129471,-65.00919672105464,-65.0089555147756,-65.00871689033005,-65.00848082571757,-65.00824729906478,-65.00801628862544,-65.00778777278038,-65.00756173003757,-65.00733813903202,-65.00711697852579,-65.00689822740793,-65.00668186469439,-65.006467869528,-65.00625622117836,-65.00604689904173,-65.00583988264096,-65.0056351516253,-65.00543268577039,-65.00523246497798,-65.00503446927591,-65.00483867881788,-65.00464507388325,-65.00445363487697,-65.00426434232925,-65.0040771768955,-65.00389211935604,-65.00370915061588,-65.0035282517045,-65.00334940377569,-65.00317258810718,-65.00299778610048,-65.00282497928062,-65.00265414929582,-65.00248527791724,-65.00231834703877,-65.00215333867658,-65.00199023496899,-65.00182901817604,-65.00166967067928,-65.00151217498134,-65.0013565137057,-65.0012026695963,-65.0010506255172,-65.00090036445225,-65.00075186950478,-65.00060512389715,-65.00046011097042,-65.00031681418405,-65.00017521711543,-65.0000353034595,-64.99989705702845,-64.99976046175125,-64.9996255016733,-64.99949216095592,-64.99936042387614,-64.99923027482609,-64.9991016983127,-64.99897467895721,-64.99884920149483,-64.99872525077421,-64.99860281175708,-64.99848186951778,-64.9983624092428,-64.99824441623038,-64.99812787589002,-64.99801277374205,-64.99789909541717,-64.99778682665595,-64.99767595330846,-64.99756646133368,-64.99745833679911,-64.99735156588032,-64.99724613486038,-64.99714203012944,-64.99703923818427,-64.99693774562773,-64.99683753916833,-64.99673860561965,-64.99664093189998,-64.9965445050317,-64.99644931214085,-64.99635534045669,-64.99626257731104,-64.99617101013793,-64.99608062647302,-64.99599141395309,-64.99590336031561,-64.99581645339813,-64.99573068113783,-64.995646031571,-64.99556249283252,-64.99548005315533,-64.99539870086997,-64.99531842440399,-64.99523921228149,-64.99516105312257,-64.99508393564285,-64.99500784865288,-64.99493278105766,-64.99485872185616,-64.99478566014074,-64.9947135850966,-64.99464248600138,-64.9945723522245,-64.9945031732267,-64.99443493855951,-64.99436763786474,-64.99430126087391,-64.99423579740778,-64.9941712373758,-64.99410757077554,-64.99404478769226,-64.99398287829831,-64.99392183285262,-64.99386164170019,-64.99380229527158,-64.99374378408233,-64.99368609873248,-64.99362922990605,-64.99357316837049,-64.99351790497619]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1340\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1341\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1336\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1337\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.1,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1338\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"blue\",\"line_alpha\":0.2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1348\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1342\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1343\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1344\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.99859895156952,-64.99794940680333,-64.9973300246924,-64.99673830824379,-64.99617201809848,-64.99562914432974,-64.99510788141654,-64.9946066060273,-64.99412385729227,-64.99365831927994,-64.99320880542628,-64.99277424469419,-64.99235366926698,-64.99194620360169,-64.99155105468868,-64.99116750338113,-64.99079489667402,-64.99043264082597,-64.99008019522934,-64.98973706694485,-64.98940280582678,-64.98907700017278,-64.98875927284017,-64.98844927777704,-64.9881466969224,-64.98785123743474,-64.98756262921283,-64.98728062267692,-64.98700498678193,-64.98673550723724,-64.98647198491092,-64.98621423439829,-64.98596208273723,-64.9857153682545,-64.98547393952902,-64.98523765445972,-64.98500637942695,-64.98477998853737,-64.98455836294382,-64.98434139023209,-64.98412896386783,-64.98392098269719,-64.98371735049578,-64.983517975561,-64.98332277034311,-64.98313165111144,-64.98294453765189,-64.98276135299274,-64.98258202315591,-64.9824064769311,-64.98223464567062,-64.98206646310275,-64.9819018651621,-64.9817407898349,-64.98158317701817,-64.9814289683912,-64.98127810729832,-64.98113053864175,-64.98098620878365,-64.98084506545659,-64.98070705768147,-64.9805721356924,-64.98044025086774,-64.98031135566687,-64.98018540357205,-64.98006234903502,-64.97994214742788,-64.97982475499778,-64.97971012882525,-64.97959822678573,-64.97948900751403,-64.97938243037156,-64.97927845541591,-64.9791770433728,-64.97907815561007,-64.97898175411346,-64.9788878014643,-64.97879626081858,-64.9787070958877,-64.97862027092032,-64.9785357506856,-64.97845350045755,-64.97837348600032,-64.97829567355454,-64.9782200298245,-64.97814652196608,-64.97807511757554,-64.9780057846789,-64.97793849172193,-64.97787320756085,-64.97780990145338,-64.97774854305051,-64.97768910238845,-64.9776315498813,-64.97757585631382,-64.97752199283481,-64.97746993095068,-64.97741964251931,-64.97737109974432,-64.97732427516951,-64.97727914167352,-64.97723567246483,-64.97719384107685,-64.9771536213633,-64.97711498749368,-64.977077913949,-64.97704237551761,-64.9770083472912,-64.97697580466092,-64.97694472331361,-64.97691507922819,-64.97688684867218,-64.97686000819819,-64.97683453464067,-64.97681040511269,-64.97678759700268,-64.97676608797151,-64.97674585594939,-64.97672687913294,-64.97670913598238,-64.97669260521867,-64.97667726582083,-64.97666309702313,-64.9766500783126,-64.97663818942627,-64.97662741034874,-64.97661772130961,-64.97660910278103,-64.97660153547525,-64.97659500034226,-64.97658947856735,-64.97658495156888,-64.97658140099591,-64.97657880872596,-64.97657715686276,-64.97657642773403,-64.9765766038893,-64.97657766809775,-64.97657960334604,-64.97658239283625,-64.97658601998371,-64.976590468415,-64.97659572196584,-64.97660176467907,-64.97660858080268,-64.9766161547877,-64.9766244712864,-64.97663351515013,-64.97664327142752,-64.97665372536251,-64.97666486239241,-64.97667666814606,-64.97668912844189,-64.97670222928612,-64.97671595687085,-64.97673029757227,-64.97674523794883,-64.97676076473941,-64.97677686486156,-64.97679352540973,-64.97681073365345,-64.97682847703564,-64.97684674317082,-64.97686551984347,-64.97688479500621,-64.97690455677817,-64.97692479344329,-64.97694549344864,-64.97696664540278,-64.97698823807407,-64.97701026038908,-64.97703270143091,-64.97705555043765,-64.97707879680073,-64.97710243006331,-64.97712643991879,-64.97715081620915,-64.97717554892344,-64.97720062819626,-64.97722604430616,-64.97725178767422,-64.97727784886246,-64.97730421857236,-64.97733088764339,-64.97735784705155,-64.97738508790788,-64.97741260145702,-64.97744037907576,-64.97746841227163,-64.97749669268147,-64.97752521207002,-64.97755396232851,-64.97758293547331,-64.97761212364452,-64.97764151910464,-64.97767111423715,-64.97770090154528,-64.97773087365056,-64.97776102329156,-64.94625626508177,-64.88647874993819,-64.80138020506338,-64.69363256218897,-64.56565508986664,-64.41963839934259,-64.25756569266282,-64.08123159774385,-63.89225890022225,-63.69211344351245,-63.48211743103698,-63.26346133031693,-63.0372145484601,-62.80433502271039,-62.56567784784832,-62.322003043887285,-62.07398255215658,-61.82220653498133,-61.56718904328782,-61.30937310717456,-61.049135296453194,-60.7867897910944,-60.52259199518301,-60.25674172220101,-59.98938597406033,-59.720621331163755,-59.45049596576564,-59.17901128592526,-58.90612321229169,-58.63174308472368,-58.355738190218894,-58.07793189767792,-57.79810337851558,-57.51598688488508,-57.23127054909656,-56.94359465844289,-56.65254934879344,-56.3576716476081,-56.05844178200487,-55.754278649614314,-55.47596893055844,-55.21956305002009,-54.981481974209274,-54.758484215646,-54.54763444398348,-54.34627326380595,-54.151987911931805,-53.96258375049577,-53.77605650402942,-53.59056522124825,-53.40440594525297,-53.21598605735667,-53.023799225984725,-52.82640084766243,-52.62238381510319,-52.41035438954346,-52.188907891185806,-51.95660385217883,-51.7119401991655,-51.45332594418086,-51.17905175958926,-50.887257689636705,-50.57589710150555,-50.24269579432105,-49.88510495525325,-49.50024636523864,-49.08484789773688,-48.63516690416323,-48.14689851800256,-47.615065212674565,-47.033883092514046,-46.396599363527706,-45.69529421870285,-44.920639016805666,-44.06160124659796,-43.10508561459401,-42.035500222717324,-40.834238279438125,-39.47907109874642,-37.94346084883183,-36.19582780020799,-34.19885702167076,-31.909020019228567,-29.276642018129163,-26.24709668010472,-22.764082928502575,-18.776405269035163,-14.250020347628361,-9.186657419997784,-3.6477896066355546,2.2229562759084036,8.192933876659069,13.964452578335152,19.232271204014683,23.75435163720455,27.4021622772015,30.168531976747765,32.13785657338573,33.44122960517476,34.21763494944141,34.59048550131998,34.65850665610069,34.49574021017847,34.15567088636921,33.67628817768469,33.08457647799317,32.39997321603589,31.636832824090703,30.806103494812323,29.9164379715367,28.974918952843062,27.98753017638388,26.959462535215835,25.89531403702166,24.799221586640176,23.674948911563195,22.525946176695307,21.355391253214542,20.166219061412253,18.961143148116864,17.742672209717167,16.513123333678028,15.274633118995549,14.029167432842502,12.77853029343459,11.524372190954077,10.268198039901325,9.011374876692699,7.755139364154171,6.500605129770557,5.248769942254119,4.000522716575353,2.7566503286788535,1.5178442154266838,0.284706731879101,-0.9422427644246076,-2.1625621343081285,-3.3758810167723627,-4.581895763608761,-5.78036478668494,-6.971104358326607,-8.153984907827345,-9.328927859804363,-10.495903062642068,-11.654926857189235,-12.806060836764424,-13.949411349249171,-15.085129789585608,-16.213413726467742,-17.334508899407012,-18.448712111763577,-19.556375031396072,-20.657908892833454,-21.753790074268128,-22.84456649842561,-23.930864779725127,-25.013398010838248,-26.092974050181013,-27.170504137658593,-28.247011628153146,-29.323640588753808,-30.401663953213408,-31.482490860837036,-32.567672720008765,-33.6589074203308,-34.75804096165652,-35.86706556051045,-36.988113022522704,-38.123441820252935,-39.27541588037971,-40.44647255921394,-41.63907668145423,-42.85565686708999,-44.09851974603895,-45.36973718798594,-46.67100156817204,-48.00344467323853,-49.36741758528465,-50.762232362997686,-52.185872241364436,-53.63468598676396,-55.1030941493952,-56.58334947799033,-58.06540829286739,-59.53697951686716,-60.98381654605193,-62.39029676274268,-63.74028967455345,-65.01825059247315,-66.21040707969244,-67.30585461773437,-68.29737106973097,-69.18180804906874,-69.96000938736852,-70.63631057728767,-71.21775215739089,-71.71317217461706,-72.13232786303587,-72.48515134695121,-72.78119040908844,-73.02923990813484,-73.23713992550186,-73.41170312897678,-73.55873204568067,-73.68309194698001,-73.78881279369986,-73.87920156668868,-73.9569530077345,-74.02425189533491,-74.08286354571554,-74.13421153884318,-74.17944304475013,-74.21948285621903,-74.25507754715146,-74.28683123649205,-74.31523435752452,-74.3406866839565,-74.36351569153086,-74.38399116208616,-74.40233677906276,-74.4187393250212,-74.43335597411965,-74.44632007469053,-74.45774573697007,-74.46773147619336,-74.47636310920669,-74.48371606120539,-74.4898572062084,-74.49484633875775,-74.49873735370159,-74.501579194654,-74.50341661891515,-74.50429081655261,-74.50423991341093,-74.50329938157299,-74.50150237588186,-74.49888001126102,-74.49546159252004,-74.49127480592668,-74.48634587992632,-74.48069972088851,-74.47436002857191,-74.46734939505819,-74.45968939015866,-74.45140063570446,-74.44250287065968,-74.43301500862052,-74.42295518896438,-74.41234082267286,-74.40118863366077,-74.38951469628974,-74.37733446962123,-74.36466282886427,-74.35151409439302,-74.33790205864472,-74.32384001115533,-74.30934076194845,-74.29441666345748,-74.27907963113333,-74.26334116286631,-74.24721235733224,-74.23070393135671,-74.2138262363788,-74.19658927408464,-74.17900271127257,-74.16107589400357,-74.1428178610852,-74.1242373569314,-74.10534284383624,-74.08614251369599,-74.0666442992106,-74.04685588459272,-74.02678471581032,-74.00643801038652,-73.98582276677868,-73.96494577335716,-73.94381361700242,-73.9224326913385,-73.90080920461914,-73.87894918728213,-73.85685849918673,-73.83454283654757,-73.81200773857847,-73.78925859385825,-73.7663006464304,-73.74313900164768,-73.71977863177227,-73.69622438134151,-73.67248097230883,-73.64855300896922,-73.62444498267767,-73.60016127636933,-73.575706168889,-73.55108383913799,-73.52629837004538,-73.50135375237092,-73.47625388834612,-73.45100259516016,-73.42560360829661,-73.40006058472713,-73.37437710596755,-73.3485566810022,-73.32260274908121,-73.29651868239644,-73.27030778864022,-73.24397331345216,-73.21751844275806,-73.19094630500548,-73.1642599732999,-73.1374624674456,-73.11055675589502,-73.08354575761018,-73.05643234383986,-73.02921933981577,-73.00190952637105,-72.9745056414843,-72.94701038175198,-72.91942640379227,-72.89175632558309,-72.864002727737,-72.83616815471555,-72.8082551159856,-72.78026608711995,-72.7522035108447,-72.72406979803537,-72.69586732866422,-72.66759845270043,-72.63926549096553,-72.61087073594564,-72.58241645256265,-72.55390487890587,-72.52533822692594,-72.49671868309277,-72.46804840901882,-72.43932954204949,-72.41056419582192,-72.38175446079366,-72.35290240474262,-72.32401007323952,-72.29507949009408,-72.2661126577763,-72.23711155781385,-72.20807815116667,-72.17901437858008,-72.14992216091713,-72.12080339947141,-72.09165997626123,-72.06249375430596,-72.03330657788571,-72.00410027278484,-71.97487664652039,-71.94563748855614,-71.91638457050308,-71.88711964630689,-71.8578444524233,-71.82856070798198,-71.79927011493949,-71.76997435822204,-71.7406751058586,-71.71137400910489,-71.68207270255891,-71.6527728042685,-71.6234759158313,-71.59418362248789,-71.56489749320822,-71.53561908077208,-71.50634992184385,-71.47709153704207,-71.44784543100407,-71.4186130924462,-71.3893959942199,-71.36019559336405,-71.3310133311538,-71.30185063314633,-71.27270890922378,-71.24358955363358,-71.21449394502659,-71.18542344649316,-71.15637940559749,-71.12736315441039,-71.09837600954081,-71.06941927216629,-71.04049422806236,-71.0116021476315,-70.9827442859314,-70.95392188270294,-70.92513616239798,-70.89638833420715,-70.86767959208777,-70.83901111479194,-70.81038406589516,-70.78179959382533,-70.75325883189241,-70.72476289831887,-70.69631289627088,-70.66790991389045,-70.6395550243286,-70.61124928577956,-70.58299374151619,-70.55478941992655,-70.52663733455185,-70.49853848412565,-70.4704938526145,-70.44250440926004,-70.41457110862254,-70.386694890626,-70.35887668060477,-70.33111738935176,-70.30341791316829,-70.27577913391549,-70.24820191906747,-70.22068712176598,-70.1932355808769,-70.1658481210483,-70.13852555277022,-70.1112686724361,-70.08407826240594,-70.05695509107109,-70.02989991292068,-70.0029134686098,-69.97599648502919,-69.94914967537666,-69.92237373923012,-69.89566936262216,-69.86903721811619,-69.84247796488421,-69.81599224878603,-69.78958070245007,-69.76324394535553,-69.73698258391613,-69.71079721156521,-69.68468840884219,-69.65865674348046,-69.63270277049656,-69.60682703228066,-69.58103005868826,-69.55531236713318,-69.52967446268174,-69.504116838148,-69.4786399741902,-69.45324433940831,-69.4279303904425,-69.40269857207268,-69.37754931731908,-69.35248304754359,-69.32750017255212,-69.30260109069779,-69.27778618898485,-69.25305584317341,-69.22841041788499,-69.20385026670857,-69.17937573230748,-69.15498714652676,-69.1306848305012,-69.10646909476378,-69.08234023935479,-69.0582985539312,-69.03434431787656,-69.01047780041132,-68.9866992607034,-68.96300894797906,-68.93940710163409,-68.91589395134524,-68.89246971718177,-68.86913460971721,-68.84588883014125,-68.82273257037168,-68.7996660131664,-68.77668933223543,-68.75380269235298,-68.73100624946932,-68.70830015082278,-68.68568453505144,-68.66315953230477,-68.64072526435515,-68.61838184470905,-68.59612937871808,-68.57396796368977,-68.55189768899801,-68.52991863619323,-68.5080308791122,-68.48623448398747,-68.46452950955644,-68.44291600716994,-68.42139402090046,-68.39996358764986,-68.37862473725654,-68.35737749260223,-68.33622186971807,-68.31515787789034,-68.29418551976542,-68.27330479145427,-68.25251568263624,-68.2318181766623,-68.21121225065755,-68.19069787562313,-68.17027501653739,-68.1499436324564,-68.12970367661369,-68.10955509651933,-68.08949783405822,-68.06953182558762,-68.04965700203388,-68.02987328898853,-68.01018060680332,-67.99057887068473,-67.97106799078746,-67.95164787230718,-67.93231841557241,-67.9130795161356,-67.89393106486328,-67.87487294802546,-67.855905047384,-67.83702724028026,-67.8182393997218,-67.79954139446814,-67.7809330891157,-67.76241434418186,-67.74398501618798,-67.72564495774166,-67.70739401761804,-67.68923204084014,-67.67115886875831,-67.65317433912881,-67.63527828619137,-67.61747054074591,-67.5997509302283,-67.58211927878519,-67.5645754073479,-67.54711913370546,-67.52975027257662,-67.51246863568099,-67.49527403180927,-67.47816626689252,-67.4611451440705,-67.44421046375918,-67.42736202371718,-67.41059961911148,-67.39392304258202,-67.37733208430556,-67.36082653205858,-67.34440617127916,-67.32807078512819,-67.31182015454948,-67.2956540583291,-67.27957227315379,-67.26357457366846,-67.24766073253292,-67.2318305204776,-67.21608370635853,-67.20042005721137,-67.18483933830464,-67.16934131319208,-67.15392574376415,-67.13859239029875,-67.12334101151107,-67.1081713646026,-67.09308320530936,-67.07807628794932,-67.063150365469,-67.04830518948926,-67.03354051035032,-67.01885607715604,-67.00425163781736,-66.98972693909495,-66.97528172664121,-66.96091574504143,-66.94662873785425,-66.93242044765135,-66.9182906160564,-66.90423898378333,-66.89026529067392,-66.87636927573458,-66.86255067717245,-66.84880923243097,-66.83514467822451,-66.82155675057255,-66.80804518483309,-66.7946097157354,-66.78125007741215,-66.76796600343087,-66.75475722682485,-66.74162348012328,-66.72856449538094,-66.71558000420711,-66.70266973779404,-66.68983342694469,-66.67707080209998,-66.66438159336543,-66.65176553053725,-66.6392223431278,-66.62675176039058,-66.61435351134466,-66.60202732479854,-66.58977292937352,-66.57759005352654,-66.56547842557242,-66.55343777370582,-66.54146782602243,-66.52956831053984,-66.51773895521795,-66.50597948797873,-66.49428963672575,-66.48266912936305,-66.47111769381365,-66.45963505803768,-66.44822095004989,-66.43687509793695,-66.42559722987417,-66.41438707414189,-66.40324435914137,-66.39216881341042,-66.38116016563855,-66.37021814468169,-66.35934247957667,-66.34853289955521,-66.33778913405757,-66.32711091274591,-66.31649796551716,-66.30595002251573,-66.29546681414574,-66.28504807108295,-66.27469352428642,-66.26440290500976,-66.25417594481218,-66.24401237556913,-66.23391192948272,-66.22387433909176,-66.21389933728165,-66.2039866572938,-66.19413603273499,-66.18434719758626,-66.17461988621169,-66.1649538333668,-66.15534877420679,-66.14580444429451,-66.13632057960818,-66.12689691654882,-66.11753319194753,-66.10822914307256,-66.09898450763606,-66.08979902380068,-66.08067243018597,-66.07160446587453,-66.06259487041801,-66.05364338384288,-66.04474974665601,-66.03591369985008,-66.02713498490884,-66.01841334381206,-66.00974851904049,-66.00114025358053,-65.9925882909288,-65.98409237509647,-65.97565225061352,-65.96726766253282,-65.95893835643405,-65.95066407842748,-65.94244457515762,-65.93427959380675,-65.92616888209825,-65.91811218829993,-65.91010926122709,-65.90215985024555,-65.89426370527455,-65.88642057678953,-65.87863021582477,-65.87089237397599,-65.86320680340278,-65.85557325683094,-65.8479914875548,-65.84046124943931,-65.83298229692221,-65.82555438501592,-65.8181772693095,-65.81085070597045,-65.80357445174646,-65.79634826396706,-65.78917190054523,-65.78204511997889,-65.77496768135238,-65.76793934433782,-65.76095986919645,-65.7540290167799,-65.7471465485313,-65.74031222648655,-65.73352581327532,-65.72678707212211,-65.72009576684725,-65.71345166186781,-65.70685452219851,-65.70030411345256,-65.69380020184248,-65.68734255418082,-65.68093093788093,-65.67456512095765,-65.66824487202794,-65.66196996031151,-65.65574015563142,-65.64955522841461,-65.64341494969248,-65.63731909110136,-65.63126742488299,-65.62525972388501,-65.61929576156133,-65.61337531197262,-65.60749814978664,-65.60166405027864,-65.59587278933174,-65.59012414343722,-65.5844178896949,-65.57875380581342,-65.57313167011051,-65.56755126151337,-65.56201235955888,-65.55651474439385,-65.55105819677536,-65.54564249807093,-65.54026743025884,-65.53493277592827,-65.52963831827965,-65.52438384112482,-65.51916912888726,-65.51399396660233,-65.50885813991749,-65.50376143509253,-65.49870363899976,-65.49368453912423,-65.488703923564,-65.4837615810303,-65.47885730084776,-65.4739908729547,-65.46916208790326,-65.46437073685966,-65.45961661160449,-65.45489950453286,-65.4502192086547,-65.44557551759495,-65.44096822559386,-65.43639712750722,-65.4318620188066,-65.42736269557963,-65.42289895453028,-65.41847059297912,-65.41407740886359,-65.40971920073832,-65.4053957677754,-65.40110690976466,-65.39685242711401,-65.39263212084974,-65.38844579261684,-65.38429324467933,-65.38017427992058,-65.37608870184367,-65.37203631457172,-65.36801692284823,-65.36403033203749,-65.3600763481249,-65.35615477771739,-65.35226542804374,-65.34840810695499,-65.34458262292489,-65.34078878505021,-65.33702640305121,-65.33329528727205,-65.32959524868116,-65.32592609887172,-65.32228765006207,-65.31867971509614,-65.31510210744389,-65.31155464120178,-65.30803713109319,-65.3045493924689,-65.30109124130755,-65.29766249421607,-65.29426296843022,-65.29089248181499,-65.28755085286512,-65.28423790070558,-65.28095344509202,-65.2776973064113,-65.27446930568195,-65.27126926455466,-65.2680970053128,-65.26495235087287,-65.26183512478507,-65.25874515123368,-65.25568225503771,-65.25264626165125,-65.24963699716406,-65.24665428830204,-65.24369796242773,-65.24076784754082,-65.23786377227862,-65.23498556591655,-65.23213305836867,-65.22930608018818,-65.22650446256782,-65.22372803734044,-65.22097663697944]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1349\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1350\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1345\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1346\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1347\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1358\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1352\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1353\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1354\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99997874916157,-64.99993844542642,-64.99988107768425,-64.99980844652296,-64.99972218281401,-64.99962376436807,-64.9995145308698,-64.99939569727732,-64.99926836585125,-64.99913353695976,-64.99899211879017,-64.99884493608293,-64.99869273799125,-64.99853620515829,-64.99837595609382,-64.99821255292329,-64.99804650657433,-64.99787828145885,-64.99770829970237,-64.99753694496685,-64.99736456590843,-64.99719147930682,-64.99701797289947,-64.99684430794994,-64.99667072157698,-64.99649742886784,-64.99632462479723,-64.99615248597061,-64.99598117220926,-64.99581082799196,-64.99564158376748,-64.99547355714982,-64.99530685400761,-64.99514156945739,-64.99497778877,-64.994815588198,-64.99465503573143,-64.9944961917886,-64.99433910984773,-64.99418383702482,-64.99403041460269,-64.99387887851545,-64.99372925979235,-64.99358158496477,-64.99343587643945,-64.99329215284085,-64.99315042932555,-64.99301071787083,-64.99287302753986,-64.99273736472541,-64.9926037333739,-64.99247213519136,-64.99234256983308,-64.99221503507799,-64.99208952698925,-64.99196604006214,-64.9918445673602,-64.99172510064076,-64.99160763047051,-64.9914921463321,-64.99137863672239,-64.99126708924301,-64.99115749068393,-64.99104982710053,-64.99094408388461,-64.99084024583009,-64.99073829719339,-64.99063822174936,-64.99054000284278,-64.99044362343584,-64.9903490661521,-64.99025631331698,-64.99016534699503,-64.9900761490245,-64.98998870104913,-64.98990298454746,-64.98981898085992,-64.98973667121383,-64.9896560367464,-64.98957705852588,-64.98949971757125,-64.98942399487014,-64.98934987139546,-64.9892773281207,-64.98920634603395,-64.98913690615088,-64.98906898952656,-64.98900257726648,-64.98893765053649,-64.98887419057203,-64.98881217868662,-64.98875159627947,-64.98869242484263,-64.9886346459674,-64.98857824135025,-64.98852319279817,-64.98846948223351,-64.98841709169851,-64.9883660033592,-64.98831619950913,-64.98826766257258,-64.98822037510752,-64.98817431980825,-64.98812947950776,-64.9880858371798,-64.98804337594072,-64.98800207905113,-64.98796192991725,-64.98792291209219,-64.98788500927692,-64.98784820532121,-64.9878124842243,-64.98777783013549,-64.98774422735457,-64.98771166033217,-64.98768011366994,-64.98764957212067,-64.98762002058831,-64.98759144412784,-64.98756382794518,-64.98753715739689,-64.98751141798986,-64.987486595381,-64.98746267537672,-64.9874396439325,-64.98741748715236,-64.9873961912882,-64.98737574273923,-64.9873561280513,-64.98733733391619,-64.98731934717081,-64.98730215479654,-64.98728574391833,-64.98727010180396,-64.98725521586312,-64.98724107364659,-64.98722766284536,-64.98721497128967,-64.98720298694816,-64.98719169792689,-64.98718109246839,-64.98717115895073,-64.98716188588654,-64.987153261922,-64.98714527583591,-64.98713791653866,-64.98713117307122,-64.98712503460418,-64.9871194904367,-64.9871145299955,-64.98711014283387,-64.98710631863064,-64.98710304718912,-64.98710031843616,-64.98709812242105,-64.98709644931454,-64.98709528940779,-64.98709463311138,-64.98709447095429,-64.98709479358283,-64.98709559175967,-64.9870968563628,-64.98709857838455,-64.98710074893054,-64.98710335921871,-64.98710640057824,-64.98710986444867,-64.98711374237878,-64.98711802602568,-64.98712270715377,-64.98712777763379,-64.9871332294418,-64.98713905465823,-64.9871452454669,-64.98715179415404,-64.98715869310735,-64.98716593481497,-64.98717351186464,-64.98718141694266,-64.98718964283297,-64.98719818241622,-64.98720702866882,-64.98721617466202,-64.98722561356098,-64.98723533862385,-64.98724534320085,-64.98725562073341,-64.98726616475317,-64.98727696888116,-64.98728802682693,-64.98729933238756,-64.98731087944688,-64.98732266197452,-64.9873346740251,-64.98734690973734,-64.9873593633332,-64.98737202911701,-64.98738490147467,-64.98739797487276,-64.98741124385774,-64.13891143380252,-63.33382070270696,-62.569078951308406,-61.8418680310952,-61.1495913896719,-60.48985550983365,-59.86045296528672,-59.25934693557531,-58.68465704032028,-58.13464636835103,-57.60770959085538,-57.102362059481834,-56.6172298006166,-56.1510403260338,-55.70261418796771,-55.27085721354632,-54.85475335959474,-54.45335813418211,-54.065792536043574,-53.691237467238295,-53.32892857817165,-52.97815150746674,-52.63823748216169,-52.30855924637005,-51.98852728890124,-51.6775863424197,-51.37521212854455,-51.08090832486995,-50.79420373123167,-50.514649613663735,-50.241817205385026,-49.97529534482719,-49.71468823115909,-49.45961327796856,-49.209699045714764,-48.964583233242706,-48.72391070802553,-48.48733155383218,-48.254499113156996,-48.02506799992998,-48.64720235339854,-49.228629139150776,-49.772057709638474,-50.27995729721131,-50.75457885333425,-51.1979748312078,-51.61201704848511,-51.99841275584267,-52.35871902893418,-52.6943555944292,-53.00661619446204,-53.296678587232776,-53.56561327427114,-53.81439103671293,-54.0438893536751,-54.25489776533337,-54.448122231510446,-54.62418852336213,-54.783644670942486,-54.92696247280148,-55.05453805497728,-55.16669144531372,-55.2636651043157,-55.345621324899156,-55.41263837929085,-55.4647052505708,-55.50171473713794,-55.52345465848522,-55.529596817355696,-55.51968328332764,-55.49310945234021,-55.44910320147769,-55.38669929449478,-55.30470799835434,-55.201676645212075,-55.07584262634665,-54.925076058803846,-54.746810176565496,-54.537957476219084,-54.29481000224998,-54.01292327076287,-53.686985869424184,-53.31068185308595,-52.876562455753565,-52.37595996611171,-51.79900309882188,-51.13483207148355,-50.372158500192846,-49.50034617405949,-48.51114322174433,-47.40098480952289,-46.17337628922838,-44.84044040468398,-43.422681776418976,-41.94667142842314,-40.441366902698505,-38.934396027521395,-37.449419674981065,-36.00496191736995,-34.61445017532435,-33.286947083419996,-32.02811300455973,-30.84111718151089,-29.72737833608088,-28.687116135202274,-27.719740502092115,-26.824117926860897,-25.99875072740184,-25.24189717671171,-24.551652383248708,-23.926003411527564,-23.36286753587639,-22.860119404222566,-22.415610841907593,-22.027185703689657,-21.69269133462866,-21.40998765768464,-21.176954556957828,-20.991498000023853,-20.851555196155196,-20.75509899124241,-20.700141637105347,-20.68473803123229,-20.70698849547752,-20.76504114410608,-20.857093879669286,-20.98139604742711,-21.136249774031427,-21.320011012992257,-21.53109031745545,-21.767953359591978,-22.029121215164015,-22.313170431397772,-22.618732896053412,-22.944495525453178,-23.289199789180937,-23.65164108917275,-24.03066801097658,-24.42518146507145,-24.834133736304565,-25.25652745973761,-25.69141454149482,-26.13789504356376,-26.595116051921917,-27.062270547809725,-27.538596302429482,-28.02337481576851,-28.515930320573503,-29.015628872677397,-29.521877548823532,-30.034123772758466,-30.551854789609084,-31.07459730730919,-31.601917322054078,-32.133420142350964,-32.668750623161195,-33.20759361785977,-33.74967465122854,-34.29476081142235,-34.84266185273238,-35.393231493892536,-35.94636888842294,-36.50202023373094,-37.06018047386351,-37.62089503617101,-38.18426152368285,-38.75043126137393,-39.31961056409623,-39.89206155483553,-40.46810231204481,-41.04810606202735,-41.63249905504268,-42.22175667140057,-42.8163971978269,-43.41697260008397,-44.02405550645638,-44.63822152852417,-45.26002601343486,-45.889974394330224,-46.52848554873876,-47.17584806861755,-47.83217017130785,-48.49732519180183,-49.17089617311514,-49.852124856914976,-50.53987202196535,-51.23259707305054,-51.92836439136457,-52.62488169168441,-53.31957142582032,-54.0096707880027,-54.69235048293087,-55.364838744716515,-56.02453634138146,-56.6691106524411,-57.29656147379322,-57.90525647903463,-58.49393881685375,-59.06171229176028,-59.608010794883484,-60.132558461762876,-60.63532598177779,-61.11648708563086,-61.57637786042094,-62.015460386446755,-62.434291325079656,-62.83349550123472,-63.213744167498234,-63.57573745029258,-63.92019040718155,-64.24782212523338,-64.55934733181172,-64.85547005002188,-65.13687889792034,-65.40424369570772,-65.65821310440147,-65.89941307121667,-66.12844590075409,-66.34588980754793,-66.5522988353679,-66.74820305282913,-66.93410895425806,-67.1105000102313,-67.27783732448131,-67.43656036356873,-67.58708773337017,-67.72981798244363,-67.86513041705103,-67.99338591631086,-68.11492773884082,-68.23008231450227,-68.33916001661159,-68.44245591134545,-68.54025048212141,-68.63281032754927,-68.72038883217358,-68.80322680970521,-68.88155311880138,-68.9555852517253,-69.02552989641664,-69.09158347265021,-69.15393264306253,-69.21275479989555,-69.26821852835037,-69.32048404746757,-69.36970362945925,-69.41602199841495,-69.45957670929181,-69.5004985080813,-69.53891167402162,-69.57493434469917,-69.60867882485338,-69.64025187966995,-69.66975501331619,-69.69728473344186,-69.7229328023374,-69.74678647541141,-69.76892872761915,-69.78943846844467,-69.80839074601093,-69.82585694086508,-69.8419049499594,-69.85659936132345,-69.87000161989843,-69.88217018498162,-69.89316067970634,-69.90302603296203,-69.91181661413823,-69.91958036105737,-69.92636290144269,-69.93220766825004,-69.9371560091758,-69.94124729063702,-69.94451899650532,-69.94700682186111,-69.94874476202159,-69.94976519708294,-69.95009897220456,-69.94977547385206,-69.94882270220417,-69.94726733991853,-69.9451348174412,-69.94244937503542,-69.93923412169593,-69.93551109110696,-69.93130129479366,-69.92662477260914,-69.92150064069224,-69.91594713702371,-69.90998166470267,-69.90362083305835,-69.89688049670657,-69.88977579265482,-69.88232117555434,-69.87453045119271,-69.8664168083157,-69.85799284886245,-69.8492706166939,-69.84026162489039,-69.83097688169023,-69.82142691513765,-69.81162179650477,-69.8015711625494,-69.7912842366668,-69.78076984899096,-69.77003645549796,-69.75909215616137,-69.74794471220716,-69.736601562513,-69.72506983919487,-69.71335638242131,-69.70146775449408,-69.68941025323157,-69.67718992468991,-69.66481257525453,-69.65228378313364,-69.63960890928331,-69.62679310779234,-69.61384133575382,-69.60075836264876,-69.58754877926609,-69.57421700618178,-69.56076730181927,-69.54720377011147,-69.53353036778448,-69.51975091128139,-69.50586908334411,-69.49188843926999,-69.47781241285945,-69.46364432206968,-69.44938737438892,-69.4350446719452,-69.4206192163625,-69.4061139133767,-69.39153157722342,-69.37687493480851,-69.36214662967238,-69.34734922575784,-69.33248521099136,-69.31755700068696,-69.30256694078112,-69.28751731090739,-69.27241032731827,-69.25724814566199,-69.2420328636213,-69.22676652342098,-69.21145111421052,-69.19608857432819,-69.18068079345218,-69.16522961464442,-69.14973683629233,-69.13420421395357,-69.11863346210836,-69.10302625582426,-69.08738423233729,-69.07170899255381,-69.056002102477,-69.04026509456148,-69.02449946899988,-69.00870669494452,-68.99288821166742,-68.97704542966177,-68.96117973168774,-68.94529247376529,-68.92938498611674,-68.91345857406151,-68.89751451886538,-68.88155407854671,-68.86557848864155,-68.84958896292977,-68.83358669412434,-68.81757285452521,-68.80154859664013,-68.78551505377347,-68.76947334058515,-68.75342455362096,-68.73736977181571,-68.72131005697072,-68.70524645420694,-68.68917999239477,-68.67311168456209,-68.65704252828135,-68.640973506037,-68.62490558557414,-68.60883972022953,-68.59277684924567,-68.57671789806913,-68.56066377863377,-68.54461538962958,-68.52857361675825,-68.5125393329758,-68.4965133987233,-68.48049666214597,-68.4644899593018,-68.44849411435975,-68.43250993978843,-68.41653823653574,-68.40057979419993,-68.38463539119256,-68.368705794894,-68.35279176180157,-68.33689403767114,-68.3210133576523,-68.30515044641757,-68.28930601828604,-68.2734807773418,-68.25767541754738,-68.2418906228526,-68.22612706729907,-68.21038541512078,-68.19466632084067,-68.17897042936387,-68.16329837606762,-68.147650786888,-68.13202827840396,-68.11643145791864,-68.10086092353811,-68.08531726424805,-68.06980105998815,-68.05431288172463,-68.0388532915209,-68.02342284260668,-68.00802207944551,-67.99265153780088,-67.97731174480111,-67.96200321900311,-67.94672647045498,-67.9314820007578,-67.91627030312647,-67.9010918624498,-67.88594715535,-67.87083665024137,-67.85576080738872,-67.84072007896508,-67.82571490910915,-67.81074573398242,-67.79581298182583,-67.78091707301647,-67.76605842012376,-67.75123742796579,-67.73645449366535,-67.72171000670593,-67.70700434898775,-67.6923378948837,-67.67771101129537,-67.66312405770901,-67.64857738625172,-67.63407134174759,-67.61960626177402,-67.60518247671814,-67.59080030983333,-67.57646007729598,-67.5621620882623,-67.54790664492536,-67.53369404257234,-67.51952456964179,-67.50539850778134,-67.49131613190532,-67.47727771025276,-67.46328350444549,-67.44933376954643,-67.4354287541181,-67.4215687002813,-67.40775384377388,-67.39398441400985,-67.38026063413852,-67.36658272110384,-67.35295088570388,-67.3393653326505,-67.32582626062914,-67.31233386235868,-67.2988883246515,-67.2854898284736,-67.27213854900485,-67.25883465569929,-67.24557831234557,-67.2323696771274,-67.21920890268403,-67.20609613617094,-67.19303151932031,-67.18001518850174,-67.16704727478282,-67.1541279039898,-67.1412571967682,-67.12843526864336,-67.11566223008106,-67.10293818654792,-67.09026323857191,-67.07763748180265,-67.06506100707172,-67.05253390045276,-67.04005624332154,-67.02762811241591,-67.01524957989552,-67.00292071340154,-66.99064157611602,-66.97841222682128,-66.96623271995895,-66.95410310568894,-66.94202342994811,-66.92999373450876,-66.9180140570369,-66.90608443115026,-66.89420488647607,-66.88237544870857,-66.87059613966619,-66.85886697734858,-66.84718797599325,-66.83555914613191,-66.82398049464658,-66.81245202482526,-66.80097373641743,-66.78954562568906,-66.77816768547736,-66.76683990524519,-66.7555622711351,-66.74433476602297,-66.7331573695713,-66.72203005828212,-66.71095280554952,-66.69992558171184,-66.68894835410327,-66.67802108710535,-66.66714374219772,-66.65631627800877,-66.64553865036564,-66.63481081234387,-66.62413271431669,-66.61350430400374,-66.60292552651948,-66.59239632442107,-66.58191663775582,-66.57148640410824,-66.56110555864655,-66.5507740341688,-66.54049176114854,-66.53025866777996,-66.52007468002259,-66.50993972164558,-66.49985371427147,-66.48981657741949,-66.47982822854839,-66.46988858309878,-66.45999755453505,-66.45015505438677,-66.4403609922896,-66.43061527602575,-66.42091781156395,-66.41126850309898,-66.40166725309064,-66.39211396230229,-66.38260852983898,-66.37315085318494,-66.36374082824076,-66.35437834935998,-66.34506330938522,-66.33579559968395,-66.32657511018357,-66.31740172940626,-66.30827534450314,-66.29919584128815,-66.29016310427131,-66.28117701669161,-66.2722374605494,-66.26334431663834,-66.25449746457679,-66.24569678283895,-66.23694214878532,-66.22823343869284,-66.21957052778458,-66.21095329025889,-66.20238159931817,-66.19385532719726,-66.18537434519124,-66.1769385236829,-66.16854773216983,-66.16020183929083,-66.15190071285225,-66.14364421985363,-66.13543222651299,-66.1272645982918,-66.11914119991941,-66.11106189541715,-66.10302654812196,-66.09503502070969,-66.08708717521795,-66.07918287306856,-66.0713219750897,-66.06350434153751,-66.05572983211745,-66.04799830600521,-66.04030962186727,-66.03266363788106,-66.0250602117548,-66.01749920074695,-66.00998046168523,-66.00250385098543,-65.99506922466975,-65.98767643838482,-65.98032534741942,-65.97301580672182,-65.96574767091674,-65.95852079432211,-65.95133503096537,-65.94419023459947,-65.93708625871868,-65.93002295657386,-65.92300018118765,-65.91601778536916,-65.9090756217285,-65.90217354269095,-65.89531140051078,-65.88848904728492,-65.88170633496622,-65.87496311537647,-65.86825924021915,-65.86159456109186,-65.85496892949861,-65.84838219686166,-65.84183421453322,-65.83532483380687,-65.8288539059287,-65.82242128210822,-65.81602681352905,-65.80967035135927,-65.80335174676168,-65.79707085090365,-65.79082751496695,-65.78462159015712,-65.77845292771279,-65.77232137891475,-65.7662267950947,-65.76016902764391,-65.75414792802165,-65.74816334776335,-65.7422151384886,-65.73630315190898,-65.73042723983565,-65.72458725418677,-65.71878304699473,-65.7130144704132,-65.70728137672398,-65.70158361834373,-65.69592104783045,-65.69029351788983,-65.68470088138142,-65.67914299132467,-65.67361970090478,-65.6681308634784,-65.66267633257912,-65.65725596192297,-65.65186960541354,-65.64651711714717,-65.64119835141788,-65.63591316272218,-65.63066140576373,-65.62544293545795,-65.6202576069364,-65.61510527555109,-65.60998579687859,-65.60489902672415,-65.59984482112561,-65.59482303635717,-65.5898335289331,-65.58487615561135,-65.57995077339704,-65.57505723954576,-65.57019541156686,-65.56536514722667,-65.56056630455151,-65.55579874183069,-65.55106231761931,-65.5463568907412,-65.54168232029141,-65.53703846563903,-65.53242518642952,-65.52784234258728,-65.52328979431795,-65.51876740211071,-65.51427502674049,-65.50981252927006,-65.50537977105213,-65.50097661373131,-65.49660291924604,-65.49225854983045,-65.48794336801612,-65.48365723663382,-65.47940001881517,-65.47517157799423,-65.47097177790909,-65.46680048260328,-65.46265755642729,-65.4585428640399,-65.45445627040951,-65.45039764081547,-65.44636684084924,-65.44236373641564,-65.43838819373399,-65.43444007933915,-65.43051926008266,-65.42662560313367,-65.42275897598,-65.41891924642904,-65.41510628260863,-65.41131995296797,-65.40756012627844,-65.4038266716344,-65.40011945845396,-65.3964383564797,-65.39278323577943,-65.3891539667468,-65.38555042010204,-65.3819724668925,-65.37841997849334,-65.37489282660802,-65.37139088326894,-65.36791402083793,-65.36446211200678,-65.36103502979769,-65.35763264756385,-65.35425483898976,-65.35090147809177,-65.34757243921848,-65.34426759705111,-65.34098682660394,-65.33773000322464,-65.33449700259466,-65.3312877007296,-65.32810197397953,-65.32493969902927,-65.3218007528988,-65.31868501294345,-65.31559235685432,-65.3125226626585,-65.30947580871933,-65.3064516737367,-65.30345013674733,-65.300471077125,-65.29751437458079,-65.29457990916335,-65.29166756125915,-65.28877721159267,-65.28590874122666,-65.28306203156237,-65.28023696433974,-65.27743342163764,-65.27465128587411,-65.27189043980654,-65.26915076653187,-65.2664321494868,-65.26373447244808,-65.26105761953256,-65.25840147519757,-65.25576592424098,-65.25315085180146,-65.25055614335872,-65.24798168473365,-65.24542736208853,-65.24289306192729,-65.24037867109564,-65.23788407678133,-65.23540916651432,-65.23295382816698,-65.23051794995436,-65.22810142043431,-65.22570412850777,-65.22332596341892,-65.22096681475539,-65.21862657244854,-65.21630512677363,-65.21400236835004,-65.21171818814146,-65.2094524774562,-65.20720512794729,-65.2049760316128,-65.20276508079606,-65.2005721681858,-65.19839718681652,-65.1962400300686,-65.19410059166857,-65.19197876568941,-65.1898744465507,-65.1877875290189,-65.18571790820761,-65.18366547957774,-65.18163013893786,-65.17961178244437,-65.17761030660175,-65.17562560826288,-65.17365758462921,-65.17170613325106,-65.16977115202786,-65.1678525392084,-65.16595019339108,-65.1640640135242,-65.16219389890618,-65.16033974918585,-65.15850146436269,-65.15667894478707,-65.15487209116058]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1359\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1360\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1355\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_width\":2,\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1356\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.1,\"line_width\":2,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1357\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.2,\"line_width\":2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1367\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1361\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1362\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1363\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99935513261319,-64.99876372655443,-64.99821046775223,-64.99768760284877,-64.99719024284995,-64.9967149504044,-64.99625914620756,-64.99582080888742,-64.99539830409073,-64.99499027876743,-64.99459559173746,-64.9942132659803,-64.99384245467667,-64.99348241634011,-64.99313249616334,-64.99279211172957,-64.99246074185916,-64.99213791775158,-64.9918232158369,-64.99151625192148,-64.99121667632834,-64.99092416981388,-64.9906384400996,-64.99035921889781,-64.9900862593399,-64.98981933373693,-64.98955823161761,-64.98930275800073,-64.98905273186749,-64.98880798480567,-64.98856835980287,-64.98833371016954,-64.98810389857603,-64.98787879618985,-64.98765828190169,-64.98744224163005,-64.98723056769579,-64.98702315825905,-64.98681991681177,-64.98662075172,-64.98642557581078,-64.98623430599895,-64.98604686294976,-64.98586317077384,-64.98568315675092,-64.98550675107974,-64.98533388665128,-64.98516449884323,-64.98499852533341,-64.98483590593034,-64.98467658241935,-64.98452049842264,-64.98436759927196,-64.9842178318927,-64.98407114469833,-64.9839274874941,-64.98378681138925,-64.98364906871686,-64.98351421296057,-64.98338219868768,-64.98325298148782,-64.98312651791689,-64.98300276544562,-64.98288168241243,-64.98276322798012,-64.9826473620961,-64.98253404545586,-64.98242323946921,-64.98231490622933,-64.98220900848413,-64.98210550960985,-64.98200437358663,-64.98190556497596,-64.98180904889972,-64.98171479102083,-64.98162275752524,-64.98153291510515,-64.98144523094348,-64.98135967269936,-64.98127620849456,-64.98119480690092,-64.98111543692838,-64.98103806801403,-64.98096267001164,-64.98088921318191,-64.98081766818328,-64.98074800606325,-64.98068019825023,-64.98061421654577,-64.98055003311731,-64.98048762049119,-64.98042695154606,-64.98036799950668,-64.98031073793787,-64.98025514073888,-64.98020118213792,-64.98014883668696,-64.98009807925678,-64.98004888503208,-64.98000122950698,-64.97995508848057,-64.97991043805256,-64.97986725461925,-64.97982551486949,-64.97978519578083,-64.97974627461582,-64.97970872891828,-64.97967253650988,-64.97963767548666,-64.97960412421568,-64.9795718613318,-64.97954086573448,-64.97951111658465,-64.97948259330174,-64.97945527556065,-64.9794291432889,-64.9794041766637,-64.97938035610927,-64.97935766229399,-64.97933607612775,-64.97931557875931,-64.97929615157369,-64.9792777761896,-64.97926043445693,-64.97924410845425,-64.97922878048635,-64.97921443308188,-64.97920104899089,-64.97918861118255,-64.9791771028428,-64.97916650737206,-64.97915680838297,-64.97914798969815,-64.97914003534801,-64.97913292956854,-64.97912665679917,-64.97912120168063,-64.97911654905283,-64.9791126839528,-64.97910959161258,-64.9791072574572,-64.97910566710264,-64.97910480635385,-64.9791046612027,-64.97910521782612,-64.97910646258404,-64.97910838201756,-64.97911096284695,-64.97911419196981,-64.97911805645921,-64.97912254356177,-64.97912764069588,-64.97913333544982,-64.97913961558001,-64.97914646900918,-64.97915388382462,-64.97916184827639,-64.97917035077559,-64.97917937989264,-64.97918892435557,-64.9791989730483,-64.97920951500899,-64.97922053942833,-64.9792320356479,-64.97924399315858,-64.97925640159885,-64.97926925075322,-64.97928253055065,-64.97929623106292,-64.97931034250308,-64.97932485522395,-64.97933975971648,-64.9793550466083,-64.97937070666218,-64.97938673077451,-64.97940310997384,-64.97941983541942,-64.97943689839968,-64.97945429033085,-64.97947200275546,-64.97949002734096,-64.9795083558783,-64.97952698028051,-64.97954589258138,-64.979565084934,-64.97958454960943,-64.9796042789954,-64.9796242655949,-64.9796445020249,-64.97966498101505,-64.97968569540632,-64.97970663814978,-64.97972780230526,-64.97974918104013,-64.97977076762804,-64.97979255544764,-64.97981453798143,-64.9798367088144,-64.979859061633,-64.97988159022377,-64.97932265570005,-64.97651551920652,-64.9688382556666,-64.9532904378038,-64.9270948372805,-64.8880821838878,-64.8348308633485,-64.76663494840105,-64.68338578588875,-64.58542825640717,-64.47342537503377,-64.34824529817152,-64.21087364870992,-64.0623488444712,-63.9037162908681,-63.73599715413997,-63.56016797780988,-63.377148141465,-63.187792864964436,-62.99289005272157,-62.793159738044906,-62.589255239708116,-62.381765403014164,-62.17121748654601,-61.958080391406675,-61.74276802619326,-61.525642668991054,-61.30701823530601,-61.08716339391431,-60.86630449531325,-60.64462829283389,-60.42228444667996,-60.199387807722424,-59.97602048188865,-59.75223367820334,-59.52804934450042,-59.30346159490327,-59.078437932620716,-58.852920270600194,-58.62682575123014,-58.40062815465103,-58.17586107378402,-57.954989778707215,-57.74083952993739,-57.536001650406114,-57.342457980733926,-57.16145043213383,-56.99352119271965,-56.83863775318536,-56.69634138508584,-56.565885401577276,-56.44634928597471,-56.336726008476894,-56.23598511396454,-56.14311599288888,-56.05715587797437,-55.977206538093476,-55.90244287316359,-55.832115876562995,-55.76555180687991,-55.70214891422,-55.6413726857938,-55.582750290599606,-55.52586469299716,-55.47034875194545,-55.41587951228714,-55.36217281560903,-55.30897830251335,-55.25607483935202,-55.20326637598316,-55.15037822350044,-55.097253729656245,-55.04375132301312,-54.989741893364794,-54.93510647468507,-54.879734197069084,-54.823520475306296,-54.76636540348959,-54.70817232715196,-54.648846566639726,-54.588294267646745,-54.526421356958544,-54.46313258342725,-54.39833062598296,-54.331915252059986,-54.26378251116837,-54.193823949464935,-54.121925832075505,-54.04796836059014,-53.9718248735986,-53.89336101835377,-53.81243388164484,-53.7288910677244,-53.64256971065682,-53.55329540772482,-53.460881059529484,-53.36512560112135,-53.26581260687269,-53.16270874980452,-53.05556209366332,-52.944100193137565,-52.82802797413596,-52.7070253619185,-52.580744619962296,-52.44880735661143,-52.31080114962632,-52.166275730502065,-52.01473866059979,-51.85565041941288,-51.68841881127653,-51.512392580043056,-51.326854101097304,-51.13101099585033,-50.92398648463718,-50.704808258661636,-50.47239560893927,-50.22554449844406,-49.96291020086243,-49.6829870530591,-49.38408477561994,-49.06430070314155,-48.72148712914748,-48.35321280488081,-47.956717431510384,-47.528857746063714,-47.066043517772016,-46.56416144042812,-46.0184845291114,-45.42356421621549,-44.7731019183617,-44.05979646779798,-43.27516357480523,-42.409323602115705,-41.45075471962613,-40.38601052666513,-39.1994053972875,-37.8726785862906,-36.38466179306331,-34.71099777051648,-32.82399437467224,-30.692755146527496,-28.283810391841794,-25.562585005247627,-22.496171755086596,-19.057987365299837,-15.234852411266719,-11.036610700819038,-6.507262655750926,-1.7346225271238973,3.146561367452205,7.963370983766199,12.527217242373563,16.665110664521826,20.24889197040486,23.21170798167239,25.547497571390437,27.29720236798223,28.529559878460145,29.32350059056,29.75576094665353,29.894131353407243,29.795035339069383,29.503746017524445,29.05585956543963,28.479141782677324,27.79528381666526,27.02137866818877,26.17108114407323,25.255482606976514,24.28375448016963,23.263614952416187,22.201665202076803,21.10363139336133,19.974539509938214,18.818842666073625,17.64051490346662,16.443121362225007,15.229871766322791,14.003662080706327,12.76710773585031,11.522570794349718,10.272182720639302,9.017863917002812,7.761340840661175,6.5041612726050815,5.247708137608466,3.9932121542444867,2.741763508569999,1.4943226847370104,0.2517305426991059,-0.9852822980391995,-2.216086732418728,-3.44014708252951,-4.657013643050635,-5.866315863908499,-7.067756183127262,-8.261104529885483,-9.446193523421314,-10.622914398226222,-11.791213688830506,-12.951090709286243,-14.102595861844048,-15.245829806480856,-16.38094351741777,-17.50813924382739,-18.627672379783416,-19.739854232673945,-20.84505565994533,-21.943711521440665,-23.036325869069163,-24.123477767612847,-25.205827610670994,-26.28412376440284,-27.359209338687833,-28.432028850054294,-29.50363450173368,-30.575191760593583,-31.64798385516509,-32.72341474811531,-33.80301004422818,-34.88841517426038,-35.981390038352416,-37.08379909313941,-38.1975956191717,-39.32479860889159,-40.46746037590887,-41.62762262212791,-42.80725834631733,-44.008196700094295,-45.232027796880004,-46.479984709201894,-47.752800663606585,-49.050541037735094,-50.37241250501732,-51.71655587613265,-53.0798350533316,-54.45764193739121,-55.843745429197426,-57.23022030457106,-58.60749612041594,-59.9645639681028,-61.289366314789355,-62.569370429657674,-63.792290715755165,-64.94688658983075,-66.02373192229851,-67.01584196705699,-67.91906174151184,-68.73216361457912,-69.45665872353094,-70.09637894061282,-70.65691855247562,-71.14503164751447,-71.56806620108709,-71.93348867387766,-72.24852389435998,-72.51991129972716,-72.75376329544093,-72.95550427331989,-73.1298676649807,-73.28093087515227,-73.41217200969852,-73.5265366246162,-73.62650653408016,-73.71416573676875,-73.79126072938105,-73.85925398550773,-73.91937034141914,-73.97263659828606,-74.0199149484655,-74.06193095754243,-74.09929685227195,-74.1325308238383,-74.16207298595448,-74.18829854673506,-74.21152867267983,-74.23203944818853,-74.25006926735979,-74.26582493715651,-74.27948672207187,-74.29121251943263,-74.30114132045168,-74.30939608408383,-74.31608612770226,-74.32130911975223,-74.32515274412432,-74.32769609340286,-74.3290108378711,-74.32916220876632,-74.32820982742729,-74.32620840637536,-74.32320834378925,-74.31925622908064,-74.3143952742014,-74.30866568278763,-74.30210496717004,-74.29474822157276,-74.28662835841527,-74.27777631347132,-74.26822122468057,-74.25799058861519,-74.24711039794767,-74.23560526272158,-74.2234985177752,-74.21081231829241,-74.1975677251426,-74.18378478141095,-74.16948258130292,-74.15467933242525,-74.13939241229367,-74.12363841979042,-74.10743322218728,-74.09079199826066,-74.07372927794921,-74.05625897894096,-74.03839444052294,-74.02014845498105,-74.00153329679924,-73.98256074987407,-73.96324213293356,-73.94358832332473,-73.92360977931463,-73.9033165610319,-73.88271835016138,-73.86182446849126,-73.84064389540131,-73.81918528437139,-73.79745697858095,-73.7754670256634,-73.75322319167249,-73.730732974313,-73.7080036154829,-73.68504211316996,-73.66185523274224,-73.63844951766853,-73.61483129970195,-73.5910067085572,-73.56698168111001,-73.54276197014468,-73.5183531526744,-73.49376063785681,-73.46898967452616,-73.44404535836168,-73.4189326387109,-73.39365632508517,-73.3682210933438,-73.34263149158215,-73.31689194573829,-73.29100676493174,-73.2649801465473,-73.23881618107629,-73.21251885672645,-73.18609206381181,-73.15953959893275,-73.13286516895595,-73.1060723948039,-73.07916481506265,-73.05214588941622,-73.02501900191584,-72.99778746409153,-72.97045451791345,-72.94302333860978,-72.9154970373478,-72.88787866378462,-72.86017120849316,-72.83237760526963,-72.80450073332752,-72.77654341938354,-72.74850843964042,-72.72039852167133,-72.69221634621044,-72.66396454885397,-72.63564572167577,-72.60726241476156,-72.57881713766545,-72.55031236079232,-72.52175051670974,-72.49313400139243,-72.46446517540257,-72.43574636500898,-72.40697986324801,-72.37816793092884,-72.34931279758591,-72.32041666238096,-72.29148169495714,-72.26251003624733,-72.23350379923907,-72.2044650696981,-72.17539590685254,-72.14629834403965,-72.11717438931697,-72.08802602603969,-72.05885521340583,-72.02966388697102,-72.00045395913406,-71.97122731959526,-71.94198583578847,-71.91273135328852,-71.88346569619509,-71.85419066749445,-71.82490804940014,-71.79561960367371,-71.76632707192674,-71.7370321759049,-71.70773661775537,-71.67844208027829,-71.64915022716328,-71.61986270321188,-71.5905811345467,-71.56130712880801,-71.53204227533871,-71.50278814535818,-71.4735462921258,-71.44431825109483,-71.41510554005716,-71.38590965927965,-71.35673209163248,-71.32757430271026,-71.29843774094614,-71.26932383771968,-71.2402340074588,-71.21116964773621,-71.18213213936099,-71.15312284646528,-71.12414311658702,-71.09519428074864,-71.06627765353228,-71.03739453315178,-71.00854620152188,-70.97973392432468,-70.9509589510739,-70.9222225151771,-70.89352583399604,-70.86487010890552,-70.83625652535093,-70.8076862529046,-70.77916044532128,-70.75068024059289,-70.72224676100272,-70.69386111317924,-70.66552438814962,-70.63723766139331,-70.60900199289553,-70.580818427201,-70.55268799346798,-70.52461170552274,-70.49659056191447,-70.4686255459709,-70.44071762585455,-70.4128677546198,-70.38507687027082,-70.35734589582042,-70.32967573934982,-70.30206729406964,-70.27452143838183,-70.24703903594275,-70.21962093572756,-70.19226797209573,-70.1649809648578,-70.13776071934349,-70.11060802647103,-70.08352366281787,-70.05650839069274,-70.02956295820901,-70.0026880993594,-69.97588453409215,-69.94915296838839,-69.92249409434108,-69.89590859023512,-69.86939712062895,-69.84296033643736,-69.81659887501581,-69.7903133602459,-69.76410440262225,-69.73797259934062,-69.71191853438732,-69.68594277862984,-69.66004588990874,-69.63422841313074,-69.60849088036291,-69.58283381092812,-69.55725771150155,-69.53176307620825,-69.50635038672188,-69.48102011236435,-69.45577271020655,-69.43060862517,-69.40552829012942,-69.3805321260163,-69.35562054192319,-69.33079393520886,-69.30605269160438,-69.28139718531978,-69.25682777915154,-69.23234482459074,-69.20794866193185,-69.18363962038215,-69.15941801817169,-69.13528416266382,-69.11123835046627,-69.08728086754256,-69.06341198932401,-69.039631980822,-69.01594109674063,-68.99233958158979,-68.96882766979836,-68.9454055858278,-68.92207354428584,-68.89883175004044,-68.87568039833386,-68.85261967489677,-68.82964975606261,-68.8067708088818,-68.78398299123604,-68.7612864519527,-68.73868133091891,-68.71616775919578,-68.69374585913242,-68.67141574447977,-68.64917752050435,-68.62703128410173,-68.60497712390976,-68.58301512042159,-68.56114534609836,-68.53936786548154,-68.51768273530502,-68.49609000460671,-68.47458971483985,-68.45318189998379,-68.43186658665442,-68.4106437942141,-68.38951353488103,-68.36847581383823,-68.34753062934186,-68.32667797282907,-68.30591782902523,-68.28525017605057,-68.26467498552617,-68.24419222267942,-68.22380184644868,-68.20350380958739,-68.18329805876742,-68.16318453468176,-68.14316317214643,-68.12323390020175,-68.1033966422128,-68.08365131596906,-68.06399783378345,-68.04443610259038,-68.02496602404315,-68.00558749461047,-67.98630040567214,-67.967104643614,-67.94800008992188,-67.92898662127484,-67.91006410963752,-67.89123242235152,-67.87249142222608,-67.85384096762766,-67.8352809125689,-67.81681110679642,-67.79843139587786,-67.78014162128802,-67.76194162049407,-67.74383122703978,-67.7258102706289,-67.70787857720762,-67.69003596904611,-67.67228226481905,-67.65461727968531,-67.63704082536673,-67.61955271022582,-67.60215273934271,-67.58484071459104,-67.56761643471292,-67.55047969539304,-67.53343028933176,-67.51646800631733,-67.49959263329708,-67.48280395444786,-67.4661017512453,-67.44948580253241,-67.43295588458702,-67.41651177118848,-67.40015323368334,-67.38388004105012,-67.3676919599632,-67.3515887548558,-67.33557018798201,-67.31963601947803,-67.30378600742232,-67.28801990789508,-67.27233747503668,-67.25673846110529,-67.24122261653359,-67.22578968998465,-67.2104394284069,-67.19517157708829,-67.17998587970955,-67.16488207839662,-67.14985991377225,-67.13491912500673,-67.12005944986787,-67.10528062477003,-67.09058238482245,-67.07596446387672,-67.06142659457345,-67.04696850838815,-67.03258993567636,-67.01829060571791,-67.00407024676049,-66.98992858606242,-66.97586534993465,-66.96188026378208,-66.94797305214401,-66.93414343873398,-66.92039114647883,-66.90671589755702,-66.89311741343626,-66.87959541491045,-66.86614962213592,-66.85277975466694,-66.83948553149062,-66.82626667106108,-66.81312289133295,-66.80005390979431,-66.78705944349885,-66.77413920909748,-66.76129292286929,-66.74852030075184,-66.73582105837092,-66.72319491106963,-66.71064157393688,-66.69816076183534,-66.68575218942871,-66.67341557120854,-66.66115062152035,-66.64895705458933,-66.63683458454538,-66.62478292544765,-66.6128017913085,-66.60089089611704,-66.58904995386204,-66.57727867855438,-66.56557678424895,-66.55394398506613,-66.54237999521273,-66.53088452900242,-66.51945730087577,-66.50809802541974,-66.49680641738675,-66.48558219171332,-66.4744250635382,-66.46333474822016,-66.45231096135521,-66.44135341879354,-66.430461836656,-66.41963593135009,-66.40887541958568,-66.39818001839025,-66.38754944512372,-66.37698341749301,-66.3664816535661,-66.35604387178581,-66.34566979098322,-66.33535913039063,-66.3251116096543,-66.3149269488468,-66.304804868479,-66.29474508951174,-66.28474733336724,-66.27481132194009,-66.26493677760803,-66.25512342324234,-66.24537098221799,-66.23567917842351,-66.22604773627046,-66.2164763807028,-66.2069648372058,-66.19751283181483,-66.18812009112379,-66.17878634229332,-66.16951131305875,-66.1602947317378,-66.15113632723808,-66.1420358290642,-66.1329929673249,-66.12400747273972,-66.11507907664557,-66.10620751100303,-66.0973925084025,-66.08863380207006,-66.07993112587319,-66.07128421432623,-66.06269280259572,-66.05415662650553,-66.04567542254175,-66.03724892785742,-66.02887688027715,-66.0205590183015,-66.01229508111118,-66.00408480857114,-65.99592794123446,-65.98782422034611,-65.97977338784655,-65.97177518637513,-65.96382935927342,-65.95593565058836,-65.94809380507529,-65.9403035682008,-65.93256468614554,-65.9248769058068,-65.91723997480099,-65.90965364146611,-65.9021176548639,-65.89463176478208,-65.8871957217363,-65.87980927697217,-65.87247218246698,-65.8651841909315,-65.85794505581154,-65.85075453128952,-65.84361237228586,-65.83651833446034,-65.82947217421335,-65.82247364868705,-65.81552251576645,-65.80861853408038,-65.80176146300248,-65.79495106265198,-65.78818709389449,-65.78146931834273,-65.7747974983571,-65.7681713970463,-65.7615907782678,-65.75505540662829,-65.748565047484,-65.74211946694116,-65.73571843185609,-65.72936170983549,-65.72304906923661,-65.71678027916731,-65.71055510948614,-65.70437333080234,-65.69823471447579,-65.69213903261692,-65.68608605808663,-65.68007556449606,-65.67410732620644,-65.66818111832879,-65.66229671672369,-65.65645389800095,-65.65065243951925,-65.64489211938577,-65.63917271645579,-65.63349401033221,-65.62785578136516,-65.62225781065139,-65.61669988003388,-65.61118177210118,-65.60570327018691,-65.60026415836916,-65.59486422146985,-65.58950324505412,-65.58418101542969,-65.57889731964616,-65.57365194549433,-65.56844468150551,-65.5632753169508,-65.55814364184033,-65.55304944692256,-65.54799252368345,-65.54297266434577,-65.53798966186822,-65.53304330994474,-65.52813340300362,-65.52325973620671,-65.5184221054486,-65.51362030735578,-65.50885413928583,-65.50412339932652,-65.499427886295,-65.4947673997369,-65.49014173992553,-65.48555070786092,-65.48099410526902,-65.47647173460078,-65.47198339903126,-65.46752890245881,-65.46310804950409,-65.45872064550923,-65.45436649653693,-65.45004540936958,-65.4457571915083,-65.44150165117215,-65.43727859729708,-65.43308783953518,-65.42892918825368,-65.4248024545341,-65.42070745017135]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1368\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1369\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1364\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\"}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1365\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.1}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1366\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1376\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1370\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1371\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1372\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.9999887728352,-64.99995628441064,-64.99989892130402,-64.99981776440134,-64.99971593404454,-64.99959696409681,-64.9994640945174,-64.99932005820553,-64.99916707959999,-64.99900694572524,-64.99884109066289,-64.99867067185168,-64.99849663240401,-64.99831974967087,-64.99814067221564,-64.9979599476568,-64.99777804356196,-64.99759536315324,-64.99741225717617,-64.99722903294513,-64.997045961312,-64.99686328210359,-64.99668120842533,-64.99649993011919,-64.99631961658532,-64.99614041911998,-64.99596247288079,-64.99578589856121,-64.99561080383481,-64.99543728461397,-64.99526542615743,-64.99509530405204,-64.99492698508901,-64.99476052804992,-64.99459598441516,-64.9944333990045,-64.99427281055823,-64.99411425226526,-64.99395775224443,-64.99380333398332,-64.9936510167393,-64.99350081590609,-64.99335274334918,-64.9932068077131,-64.9930630147029,-64.99292136734223,-64.99278186620997,-64.99264450965734,-64.99250929400716,-64.99237621373675,-64.99224526164582,-64.99211642901071,-64.99198970572593,-64.99186508043432,-64.99174254064651,-64.99162207285073,-64.99150366261364,-64.9913872946731,-64.99127295302327,-64.99116062099287,-64.99105028131714,-64.99094191620388,-64.99083550739412,-64.99073103621798,-64.99062848364582,-64.99052783033534,-64.99042905667477,-64.99033214282261,-64.99023706874397,-64.99014381424404,-64.9900523589988,-64.98996268258311,-64.9898747644965,-64.98978858418687,-64.98970412107208,-64.98962135455983,-64.9895402640658,-64.98946082903024,-64.98938302893315,-64.98930684330816,-64.98923225175508,-64.98915923395158,-64.98908776966351,-64.98901783875456,-64.98894942119492,-64.98888249706904,-64.9888170465829,-64.98875305007034,-64.98869048799891,-64.98862934097504,-64.98856958974879,-64.98851121521798,-64.98845419843201,-64.98839852059504,-64.98834416306907,-64.98829110737641,-64.98823933520198,-64.98818882839521,-64.98813956897175,-64.98809153911486,-64.98804472117659,-64.98799909767875,-64.98795465131361,-64.9879113649446,-64.98786922160656,-64.98782820450614,-64.9877882970218,-64.98774948270386,-64.98771174527435,-64.98767506862673,-64.98763943682557,-64.9876048341061,-64.98757124487368,-64.9875386537032,-64.98750704533843,-64.98747640469125,-64.98744671684085,-64.98741796703293,-64.98739014067873,-64.98736322335415,-64.98733720079875,-64.98731205891472,-64.98728778376584,-64.98726436157636,-64.98724177873002,-64.98722002176875,-64.98719907739162,-64.98717893245369,-64.98715957396473,-64.9871409890881,-64.98712316513955,-64.9871060895859,-64.98708975004389,-64.98707413427894,-64.98705923020385,-64.98704502587759,-64.987031509504,-64.98701866943061,-64.9870064941473,-64.98699497228505,-64.98698409261473,-64.98697384404576,-64.98696421562494,-64.98695519653506,-64.98694677609379,-64.98693894375232,-64.98693168909415,-64.98692500183381,-64.9869188718157,-64.98691328901273,-64.98690824352518,-64.98690372557944,-64.98689972552677,-64.98689623384209,-64.98689324112283,-64.98689073808761,-64.98688871557513,-64.98688716454295,-64.98688607606633,-64.986885441337,-64.986885251662,-64.9868854984626,-64.98688617327304,-64.98688726773939,-64.98688877361852,-64.9868906827768,-64.98689298718915,-64.98689567893776,-64.98689875021108,-64.98690219330271,-64.98690600061028,-64.98691016463434,-64.98691467797738,-64.98691953334263,-64.9869247235331,-64.98693024145048,-64.9869360800941,-64.9869422325599,-64.98694869203939,-64.98695545181864,-64.98696250527728,-64.98696984588742,-64.98697746721274,-64.98698536290749,-64.98699352671547,-64.98700195246904,-64.98701063408822,-64.98701956557971,-64.9870287410359,-64.98703815463395,-64.98704780063491,-64.98705767338271,-64.98706776730327,-64.98707807690363,-64.98708859677099,-64.98709932157186,-64.98711024605112,-64.9871213650312,-64.98713267341117,-64.98714416616588,-64.86376388641288,-64.56012809680759,-64.09788405384492,-63.525534650797084,-62.88803648979496,-62.21858459598274,-61.539493055277575,-60.86507809147945,-60.204229408806796,-59.56225797847086,-58.94213429298255,-58.34530165570769,-57.77221026321137,-57.22267038219435,-56.69608775206539,-56.191621405032045,-55.7082897102032,-55.24504146533477,-54.80080318543771,-54.37451008788273,-53.96512588069313,-53.57165486367927,-53.19314877022207,-52.82871003599158,-52.477492668119545,-52.13870153150518,-51.81159061952994,-51.495460701676045,-51.189656617889284,-50.89356440343344,-50.6066083675992,-50.32824820735274,-50.0579762074922,-49.79531455835541,-49.53981280792832,-49.29104545545978,-49.04860968706254,-48.81212324933257,-48.581222454080375,-48.355560305367796,-48.25819667610626,-48.34567643625619,-48.59604507707921,-48.96050265321379,-49.39380460188035,-49.862476327232656,-50.34393231334646,-50.82359322957844,-51.29231512828626,-51.744542450700706,-52.177070701560616,-52.58823411561729,-52.9773724655454,-53.34447863772187,-53.689963795123624,-54.014499906198445,-54.31891382149986,-54.60411607686768,-54.87105328702959,-55.12067665057911,-55.353921484948486,-55.57169430944725,-55.7748650768658,-55.964262894854784,-56.14067408924823,-56.30484181586158,-56.45746667382862,-56.59920794527629,-56.7306852057324,-56.85248013280515,-56.96513839829809,-57.069171568682776,-57.165058966115,-57.253249460724625,-57.33416317738725,-57.40819310846238,-57.47570662936453,-57.5370469172352,-57.59253427504167,-57.64246736458597,-57.687124352468764,-57.72676397322681,-57.76162651379147,-57.79193472319379,-57.81789465113103,-57.8396964186512,-57.8575149238299,-57.871510484922304,-57.88182942308017,-57.888604586330985,-57.891955816124074,-57.891990357353066,-57.88880321236231,-57.882477439030076,-57.87308439258811,-57.860683910377986,-57.84532443825125,-57.82704309678353,-57.80586568488234,-57.78180661771161,-57.75486879511972,-57.72504339592537,-57.692309592467865,-57.656634178743055,-57.61797110419609,-57.576260903795315,-57.53143001332983,-57.48338995690977,-57.43203639134792,-57.37724798939611,-57.318885140617326,-57.25678844489668,-57.190776969107574,-57.12064623210772,-57.04616587686002,-56.967076980835806,-56.88308894668994,-56.793875904167976,-56.699072540907956,-56.598269263738466,-56.491006572647514,-56.376768506073375,-56.25497498767451,-56.12497287023313,-55.9860254306292,-55.83730001952648,-55.677853509072996,-55.50661511008907,-55.322366045728394,-55.12371547103409,-54.909071918370586,-54.67660943169743,-54.42422743801439,-54.1495033118708,-53.849636555168246,-53.5213836038636,-53.16098259447895,-52.764068155182095,-52.3255777123681,-51.839653358554585,-51.29954764555369,-50.69754861441213,-50.02495000048198,-49.27210781119795,-48.428644359483386,-47.48388232456722,-46.42760471264653,-45.25122099230149,-43.94934505679929,-42.521635205966355,-40.974533524540654,-39.32237051813115,-37.58731409186115,-35.79791965306104,-33.98649298675688,-32.18588146360579,-30.42645351408116,-28.733868710577145,-27.1279074998832,-25.622300095623434,-24.225287537992614,-22.940587952924236,-21.768485954655652,-20.7068538968882,-19.75200504549239,-18.89934804400514,-18.143854421132016,-17.480370957382,-16.903813940030776,-16.40927940578464,-15.99209713895315,-15.647849264651043,-15.372368126722959,-15.161723255774158,-15.01220362850498,-14.920298904664229,-14.882681655388383,-14.896191535061774,-14.957821709167051,-15.064707490499087,-15.21411695398858,-15.403443226729763,-15.630198138759292,-15.892006942434769,-16.186603845922306,-16.511828148741294,-16.86562080868202,-17.246021306793516,-17.651164709370192,-18.079278852778952,-18.528681598925534,-18.99777812675783,-19.485058239125625,-19.989093675218275,-20.50853542728445,-21.042111066915332,-21.588622091275482,-22.146941303629596,-22.716010245611987,-23.2948367011028,-23.88249229344524,-24.478110199133223,-25.08088300204249,-25.690060712754285,-26.304948977479103,-26.92490750045368,-27.549348702365013,-28.177736635259773,-28.80958617143334,-29.444462479890475,-30.081980799078245,-30.721806508690257,-31.3636554964287,-32.00729480770315,-32.65254355734271,-33.299274072469544,-33.94741322460986,-34.59694389666121,-35.24790651607832,-35.90040056894494,-36.55458598956946,-37.2106842957091,-37.86897930905447,-38.52981726255638,-39.19360604883973,-39.86081330576883,-40.53196296519275,-41.20762980912714,-41.888431486261204,-42.575017346135965,-43.26805335901835,-43.968202323882956,-44.676098551937265,-45.39231628721207,-46.11733133951114,-46.85147581882896,-47.59488653599989,-48.347448617863776,-49.10873717848643,-49.87796141026428,-50.6539170069302,-51.43495405683057,-52.21896798163886,-53.003420254557255,-53.785393182669225,-54.561679021176055,-55.32889866240822,-56.08364015397298,-56.82260360529571,-57.542737675594196,-58.241354209542536,-58.91621131988448,-59.56556029728421,-60.18815690396856,-60.78324180949961,-61.350497543214665,-61.889990271182135,-62.40210425057961,-62.88747545952659,-63.3469291458291,-63.78142428046357,-64.192006390934,-64.57976909883013,-64.94582390684221,-65.29127732503498,-65.617214220556,-65.92468624288294,-66.21470425218573,-66.48823381055865,-66.74619294923845,-66.98945157692913,-67.21883203235977,-67.4351104024443,-67.63901832453212,-67.83124506842039,-68.01243975348521,-68.18321360137196,-68.34414215801245,-68.49576744287346,-68.63860000046235,-68.77312084098956,-68.89978326511412,-69.01901457294998,-69.13121766080008,-69.23677251101225,-69.33603758135139,-69.42935110067167,-69.51703227766916,-69.59938242925442,-69.67668603470825,-69.74921172134329,-69.81721318693216,-69.88093006370899,-69.94058872831923,-69.9964030616942,-70.04857516246221,-70.09729601718004,-70.14274613037416,-70.18509611711931,-70.22450726064768,-70.26113203727448,-70.29511461074034,-70.32659129790584,-70.35569100758508,-70.38253565417315,-70.40724054760223,-70.42991476105331,-70.45066147775242,-70.46957831809098,-70.48675764822835,-70.50228687125977,-70.51624870196432,-70.52872142608386,-70.53977914502526,-70.54949200682374,-70.55792642415481,-70.56514528013467,-70.57120812260561,-70.5761713475612,-70.58008837232843,-70.58300979908715,-70.58498356927412,-70.58605510938692,-70.58626746867346,-70.58566144916463,-70.58427572848193,-70.58214697582633,-70.57930996153245,-70.57579766054917,-70.57164135018817,-70.56687070246171,-70.56151387131317,-70.55559757502651,-70.54914717408441,-70.54218674472986,-70.53473914847127,-70.52682609775779,-70.51846821803858,-70.50968510640763,-70.50049538702477,-70.49091676349191,-70.48096606835455,-70.47065930988789,-70.46001171631893,-70.44903777762642,-70.43775128505357,-70.42616536845986,-70.41429253163207,-70.402144685667,-70.38973318053309,-70.37706883491103,-70.36416196440882,-70.35102240824062,-70.33765955445422,-70.32408236378716,-70.3102993922266,-70.29631881234468,-70.2821484334762,-70.26779572080235,-70.25326781340057,-70.23857154131682,-70.22371344171418,-70.20869977414804,-70.19353653501561,-70.17822947122482,-70.1627840931254,-70.14720568674186,-70.13149932534695,-70.11566988041095,-70.09972203196108,-70.08366027838282,-70.06748894569353,-70.05121219631692,-70.03483403738545,-70.01835832859607,-70.00178878964364,-69.98512900725464,-69.96838244184289,-69.95155243380758,-69.93464220949289,-69.91765488682748,-69.900593480661,-69.88346090781391,-69.8662599918561,-69.84899346762873,-69.83166398552325,-69.81427411553044,-69.79682635107183,-69.77932311262535,-69.76176675115589,-69.74415955136152,-69.72650373474511,-69.70880146252051,-69.69105483836258,-69.67326591100881,-69.65543667672111,-69.63756908161466,-69.61966502386129,-69.601726355774,-69.58375488577889,-69.56575238028054,-69.54772056542669,-69.52966112877732,-69.51157572088353,-69.49346595678081,-69.47533341740143,-69.45717965091023,-69.43900617396791,-69.42081447292568,-69.40260600495505,-69.3843821991161,-69.36614445736777,-69.34789415552291,-69.32963264415152,-69.31136124943464,-69.29308127397174,-69.27479399754401,-69.25650067783606,-69.23820255111822,-69.21990083289157,-69.20159671849783,-69.18329138369596,-69.16498598520731,-69.14668166123104,-69.12837953193154,-69.11008069989924,-69.09178625058654,-69.07349725271992,-69.05521475868987,-69.0369398049198,-69.01867341221487,-69.0004165860924,-68.98217031709436,-68.96393558108332,-68.94571333952275,-68.92750453974247,-68.90931011519018,-68.89113098566999,-68.87296805756854,-68.85482222406958,-68.8366943653576,-68.81858534881138,-68.80049602918768,-68.78242724879622,-68.76437983766594,-68.74635461370345,-68.72835238284412,-68.71037393919607,-68.69242006517777,-68.67449153164955,-68.65658909803936,-68.63871351246338,-68.62086551184153,-68.60304582200853,-68.58525515782055,-68.56749422325811,-68.54976371152493,-68.53206430514379,-68.51439667604895,-68.49676148567566,-68.47915938504718,-68.4615910148591,-68.44405700556149,-68.42655797743893,-68.4090945406887,-68.39166729549709,-68.37427683211426,-68.35692373092759,-68.33960856253375,-68.32233188780958,-68.30509425798193,-68.28789621469663,-68.27073829008651,-68.25362100683874,-68.23654487826164,-68.21951040835073,-68.20251809185447,-68.18556841433957,-68.16866185225592,-68.15179887300131,-68.13497993498589,-68.11820548769653,-68.10147597176103,-68.08479181901235,-68.06815345255266,-68.05156128681764,-68.03501572764063,-68.01851717231692,-68.0020660096683,-67.98566262010749,-67.96930737570298,-67.95300064024384,-67.93674276930487,-67.92053411031189,-67.9043750026073,-67.88826577751576,-67.87220675841026,-67.85619826077833,-67.84024059228855,-67.82433405285722,-67.80847893471545,-67.79267552247633,-67.7769240932024,-67.76122491647347,-67.74557825445454,-67.729984361964,-67.71444348654211,-67.69895586851966,-67.68352174108682,-67.66814133036225,-67.65281485546235,-67.6375425285708,-67.6223245550081,-67.60716113330142,-67.59205245525455,-67.57699870601795,-67.56200006415904,-67.54705670173242,-67.53216878435035,-67.51733647125324,-67.50255991538023,-67.48783926343974,-67.47317465598022,-67.45856622746079,-67.44401410632194,-67.42951841505621,-67.41507927027887,-67.40069678279853,-67.38637105768775,-67.3721021943535,-67.35789028660767,-67.34373542273728,-67.32963768557487,-67.3155971525684,-67.30161389585137,-67.28768798231255,-67.27381947366557,-67.26000842651844,-67.24625489244274,-67.23255891804267,-67.21892054502386,-67.20533981026195,-67.19181674587085,-67.17835137927086,-67.16494373325641,-67.15159382606349,-67.13830167143692,-67.12506727869716,-67.11189065280679,-67.09877179443686,-67.08571070003254,-67.07270736187877,-67.0597617681653,-67.04687390305142,-67.03404374673032,-67.02127127549306,-67.00855646179207,-66.99589927430422,-66.98329967799363,-66.9707576341738,-66.95827310056946,-66.94584603137795,-66.9334763773301,-66.92116408575056,-66.90890910061793,-66.8967113626241,-66.88457080923324,-66.87248737474036,-66.86046099032924,-66.84849158412993,-66.83657908127574,-66.82472340395972,-66.81292447149052,-66.8011822003479,-66.78949650423759,-66.77786729414562,-66.7662944783922,-66.75477796268495,-66.74331765017166,-66.73191344149252,-66.72056523483172,-66.70927292596859,-66.69803640832815,-66.68685557303107,-66.67573030894317,-66.66466050272427,-66.65364603887652,-66.64268679979217,-66.63178266580083,-66.62093351521607,-66.6101392243815,-66.59939966771637,-66.58871471776052,-66.57808424521879,-66.56750811900483,-66.55698620628448,-66.54651837251849,-66.53610448150468,-66.5257443954196,-66.51543797485957,-66.50518507888127,-66.49498556504166,-66.48483928943743,-66.47474610674392,-66.46470587025337,-66.45471843191281,-66.44478364236124,-66.43490135096646,-66.42507140586108,-66.41529365397838,-66.40556794108727,-66.39589411182702,-66.38627200974123,-66.37670147731146,-66.36718235599025,-66.35771448623368,-66.34829770753335,-66.33893185844792,-66.32961677663415,-66.32035229887738,-66.3111382611216,-66.30197449849891,-66.29286084535869,-66.28379713529606,-66.27478320118001,-66.26581887518105,-66.2569039887983,-66.24803837288621,-66.2392218576808,-66.23045427282536,-66.22173544739583,-66.21306520992563,-66.20444338843015,-66.19586981043062,-66.18734430297776,-66.17886669267487,-66.17043680570055,-66.16205446783091,-66.15371950446156,-66.14543174062895,-66.13719100103144,-66.12899711005001,-66.12084989176844,-66.11274916999321,-66.10469476827295,-66.09668650991755,-66.08872421801688,-66.08080771545909,-66.07293682494861,-66.06511136902381,-66.05733117007412,-66.0495960503571,-66.04190583201483,-66.03426033709025,-66.02665938754289,-66.01910280526457,-66.01159041209442,-66.00412202983391,-65.99669748026132,-65.98931658514599,-65.98197916626229,-65.9746850454032,-65.96743404439367,-65.96022598510356,-65.95306068946049,-65.94593797946217,-65.93885767718866,-65.93181960481414,-65.9248235846186,-65.91786943899909,-65.9109569904809,-65.90408606172824,-65.89725647555483,-65.89046805493425,-65.88372062300985,-65.87701400310469,-65.87034801873101,-65.86372249359954,-65.85713725162863,-65.8505921169531,-65.84408691393283,-65.8376214671612,-65.83119560147328,-65.82480914195384,-65.81846191394504,-65.8121537430541,-65.80588445516054,-65.79965387642348,-65.7934618332885,-65.7873081524945,-65.78119266108025,-65.77511518639079,-65.7690755560837,-65.76307359813515,-65.75710914084573,-65.75118201284623,-65.74529204310315,-65.73943906092408,-65.73362289596294,-65.727843378225,-65.72210033807191,-65.71639360622633,-65.7107230137766,-65.70508839218125,-65.69948957327327,-65.69392638926436,-65.68839867274895,-65.68290625670814,-65.67744897451352,-65.67202665993084,-65.6666391471235,-65.66128627065606,-65.65596786549753,-65.65068376702452,-65.64543381102438,-65.64021783369813,-65.63503567166339,-65.62988716195706,-65.62477214203801,-65.61969044978969,-65.61464192352251,-65.60962640197626,-65.60464372432233,-65.59969373016598,-65.59477625954833,-65.58989115294843,-65.58503825128516,-65.58021739591909,-65.57542842865423,-65.5706711917397,-65.56594552787135,-65.56125128019326,-65.55658829229927,-65.55195640823429,-65.54735547249571,-65.54278533003455,-65.53824582625676,-65.53373680702424,-65.529258118656,-65.52480960792913,-65.52039112207972,-65.51600250880382,-65.51164361625823,-65.50731429306127,-65.50301438829361,-65.49874375149881,-65.49450223268408,-65.49028968232085,-65.48610595134524,-65.48195089115863,-65.47782435362812,-65.47372619108688,-65.46965625633462,-65.46561440263781,-65.46160048373012,-65.45761435381257,-65.4536558675538,-65.44972488009024,-65.44582124702634,-65.44194482443461,-65.43809546885578,-65.43427303729881,-65.430477387241,-65.42670837662797,-65.42296586387361,-65.41924970786012,-65.41555976793786,-65.41189590392533,-65.40825797610897,-65.40464584524317,-65.40105937254997,-65.39749841971896,-65.39396284890705,-65.39045252273833,-65.38696730430372,-65.38350705716083,-65.3800716453336,-65.37666093331212,-65.37327478605226,-65.36991306897538,-65.36657564796796,-65.36326238938138,-65.35997316003143,-65.35670782719805,-65.35346625862488,-65.35024832251892,-65.34705388755016,-65.34388282285106,-65.34073499801626,-65.3376102831021,-65.33450854862615,-65.33142966556687,-65.32837350536306,-65.32533993991343,-65.3223288415762,-65.3193400831685,-65.31637353796607,-65.3134290797026,-65.31050658256937,-65.3076059212147]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1377\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1378\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1373\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1374\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.1,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1375\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"red\",\"line_alpha\":0.2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1385\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1379\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1380\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1381\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99928144540712,-64.99859895156952,-64.99794940680333,-64.9973300246924,-64.99673830824379,-64.99617201809848,-64.99562914432974,-64.99510788141654,-64.9946066060273,-64.99412385729227,-64.99365831927994,-64.99320880542628,-64.99277424469419,-64.99235366926698,-64.99194620360169,-64.99155105468868,-64.99116750338113,-64.99079489667402,-64.99043264082597,-64.99008019522934,-64.98973706694485,-64.98940280582678,-64.98907700017278,-64.98875927284017,-64.98844927777704,-64.9881466969224,-64.98785123743474,-64.98756262921283,-64.98728062267692,-64.98700498678193,-64.98673550723724,-64.98647198491092,-64.98621423439829,-64.98596208273723,-64.9857153682545,-64.98547393952902,-64.98523765445972,-64.98500637942695,-64.98477998853737,-64.98455836294382,-64.98434139023209,-64.98412896386783,-64.98392098269719,-64.98371735049578,-64.983517975561,-64.98332277034311,-64.98313165111144,-64.98294453765189,-64.98276135299274,-64.98258202315591,-64.9824064769311,-64.98223464567062,-64.98206646310275,-64.9819018651621,-64.9817407898349,-64.98158317701817,-64.9814289683912,-64.98127810729832,-64.98113053864175,-64.98098620878365,-64.98084506545659,-64.98070705768147,-64.9805721356924,-64.98044025086774,-64.98031135566687,-64.98018540357205,-64.98006234903502,-64.97994214742788,-64.97982475499778,-64.97971012882525,-64.97959822678573,-64.97948900751403,-64.97938243037156,-64.97927845541591,-64.9791770433728,-64.97907815561007,-64.97898175411346,-64.9788878014643,-64.97879626081858,-64.9787070958877,-64.97862027092032,-64.9785357506856,-64.97845350045755,-64.97837348600032,-64.97829567355454,-64.9782200298245,-64.97814652196608,-64.97807511757554,-64.9780057846789,-64.97793849172193,-64.97787320756085,-64.97780990145338,-64.97774854305051,-64.97768910238845,-64.9776315498813,-64.97757585631382,-64.97752199283481,-64.97746993095068,-64.97741964251931,-64.97737109974432,-64.97732427516951,-64.97727914167352,-64.97723567246483,-64.97719384107685,-64.9771536213633,-64.97711498749368,-64.977077913949,-64.97704237551761,-64.9770083472912,-64.97697580466092,-64.97694472331361,-64.97691507922819,-64.97688684867218,-64.97686000819819,-64.97683453464067,-64.97681040511269,-64.97678759700268,-64.97676608797151,-64.97674585594939,-64.97672687913294,-64.97670913598238,-64.97669260521867,-64.97667726582083,-64.97666309702313,-64.9766500783126,-64.97663818942627,-64.97662741034874,-64.97661772130961,-64.97660910278103,-64.97660153547525,-64.97659500034226,-64.97658947856735,-64.97658495156888,-64.97658140099591,-64.97657880872596,-64.97657715686276,-64.97657642773403,-64.9765766038893,-64.97657766809775,-64.97657960334604,-64.97658239283625,-64.97658601998371,-64.976590468415,-64.97659572196584,-64.97660176467907,-64.97660858080268,-64.9766161547877,-64.9766244712864,-64.97663351515013,-64.97664327142752,-64.97665372536251,-64.97666486239241,-64.97667666814606,-64.97668912844189,-64.97670222928612,-64.97671595687085,-64.97673029757227,-64.97674523794883,-64.97676076473941,-64.97677686486156,-64.97679352540973,-64.97681073365345,-64.97682847703564,-64.97684674317082,-64.97686551984347,-64.97688479500621,-64.97690455677817,-64.97692479344329,-64.97694549344864,-64.97696664540278,-64.97698823807407,-64.97701026038908,-64.97703270143091,-64.97705555043765,-64.97707879680073,-64.97710243006331,-64.97712643991879,-64.97715081620915,-64.97717554892344,-64.97720062819626,-64.97722604430616,-64.97725178767422,-64.97727784886246,-64.97730421857236,-64.97733088764339,-64.97735784705155,-64.97738508790788,-64.97741260145702,-64.97744037907576,-64.97746841227163,-64.97749669268147,-64.97752521207002,-64.97755396232851,-64.97758293547331,-64.97761212364452,-64.97764151910464,-64.97767111423715,-64.97770090154528,-64.97773087365056,-64.97776102329156,-64.93574457233484,-64.85603107134953,-64.7425561849794,-64.59888243382579,-64.42823515001812,-64.2335341433277,-64.01742158735108,-63.78228660553825,-63.53028698675557,-63.263368403368204,-62.983281449297074,-62.69159676504926,-62.38971847282316,-62.07889610755887,-61.760235198634824,-61.43470663089454,-61.10315489183886,-60.76630529320368,-60.424770238920985,-60.07905459690366,-59.729560218573944,-59.37658963702781,-59.02034896170885,-58.66094997400927,-58.29841141388766,-57.93265943194693,-57.56352716396737,-57.190753365087225,-56.813980018014625,-56.432748803052206,-56.04649628633946,-55.654547645346994,-55.25610870574274,-54.85025600933105,-54.4359245663318,-54.01189286360922,-53.57676459946282,-53.12894648996217,-52.66662133474284,-52.187715332933706,-51.731668972552356,-51.29149036637782,-50.860539913925415,-50.4324556134965,-50.00107263438687,-49.56033494549257,-49.104196865813094,-48.62651222149463,-48.12090837031101,-47.58064168700881,-46.99843018515454,-46.366257774701616,-45.675143218399896,-44.914865179471356,-44.07363293631904,-43.13769060078945,-42.09084150449501,-40.9138798070514,-39.58392024856878,-38.07362787485458,-36.35037388485424,-34.37539250391297,-32.103105179148066,-29.480940653131384,-26.45025164966562,-22.949350943529865,-18.920254305653504,-14.321220458573212,-9.14689670437361,-3.455288511886385,2.6056964294503313,8.788153079416178,14.769246724340578,20.21596432384039,24.866211680914404,28.585931546920133,31.376184552018287,33.33696849987077,34.61537132893462,35.36258689586046,35.70942917647042,35.758059372414074,35.58337940749597,35.23836211173165,34.75991586860555,34.173821879399426,33.49840091121786,32.747051237216276,31.929933894795134,31.055065570406178,30.129019006538627,29.157370225139104,28.144984632346116,27.09620110514066,26.014951452175527,24.90483879143735,23.769189690186472,22.611089480083635,21.433406760745424,20.238810963302814,19.02978548311428,17.808638014519932,16.577509150653036,15.338379936807073,14.093078817983017,12.843288255954475,11.590551181173613,10.336277371493665,9.081749801024001,7.8281309711542475,6.57646921519072,5.327704955732241,4.082676886365044,2.8421280450694546,1.6067117444893815,0.37699732316870205,-0.8465243187575682,-2.0634354364984775,-3.2733864480407213,-4.476091271007403,-5.67132302958227,-6.858910174086132,-8.038733058082906,-9.210721020447771,-10.374850022004335,-11.531140888406826,-12.679658211814393,-13.820509963696313,-14.95384786919075,-16.07986858897131,-17.19881574788528,-18.310982839352405,-19.416717021442707,-20.516423803633867,-21.61057260323371,-22.699703127111906,-23.784432508347336,-24.86546309869277,-25.943590786653317,-27.01971367721496,-28.094840931946266,-29.170101525165048,-30.246752620544502,-31.326187207331532,-32.40994055080164,-33.499694898262945,-34.59728173012739,-35.704680642969635,-36.824013685207554,-37.95753362286099,-39.107604182351025,-40.276669794860766,-41.46721175952998,-42.68168707984854,-43.92244557342514,-45.191620329938814,-46.49098639737174,-47.82178302564809,-49.18449634060599,-50.57860255443983,-52.00227743352294,-53.452086383977345,-54.92268146198746,-56.406546268651226,-57.89384486127425,-59.372442074597615,-60.82816324365488,-62.24534348254105,-63.60767496224928,-64.89929695493396,-66.1060012713213,-67.21636951148272,-68.22264486557155,-69.12118438387701,-69.91242847766351,-70.60043162513509,-71.1920838771391,-71.69619141379782,-72.12257342140288,-72.48128804575325,-72.7820448298543,-73.03381300554926,-73.2446030813561,-73.42138389320351,-73.57009462214545,-73.69571604971397,-73.80237319080464,-73.89344960089198,-73.97170065810323,-74.03935848164521,-74.09822491159237,-74.14975142033704,-74.19510628764236,-74.23523015180223,-74.27088138819563,-74.3026728373665,-74.33110132617298,-74.35657127398377,-74.3794134980082,-74.39990015427722,-74.4182565873684,-74.43467071866982,-74.44930048124179,-74.4622797081557,-74.47372279839887,-74.48372841746132,-74.49238243599783,-74.49976026713412,-74.50592872900741,-74.51094753226145,-74.51487047102172,-74.51774637918379,-74.51961990071833,-74.52053211237329,-74.52052102904102,-74.5196220156808,-74.51786812467361,-74.51529037354197,-74.51191797486207,-74.50777852775028,-74.50289817837621,-74.49730175543235,-74.49101288528627,-74.4840540905896,-74.47644687536288,-74.46821179897718,-74.45936854097728,-74.44993595831315,-74.43993213624424,-74.42937443394082,-74.41827952561357,-74.40666343784842,-74.39454158370019,-74.38192879399838,-74.36883934623874,-74.3552869913692,-74.34128497872639,-74.3268460793364,-74.31198260775884,-74.29670644262505,-74.2810290459984,-74.26496148166524,-74.24851443245026,-74.23169821663629,-74.21452280355861,-74.19699782843482,-74.17913260648363,-74.16093614638015,-74.14241716308977,-74.12358409011856,-74.10444509121395,-74.0850080715468,-74.06528068840268,-74.04527036140824,-74.02498428231608,-74.00442942437017,-73.98361255127182,-73.96254022576514,-73.94121881785962,-73.91965451270609,-73.89785331814174,-73.87582107191866,-73.8535634486296,-73.83108596634399,-73.8083939929666,-73.78549275233034,-73.76238733003444,-73.7390826790385,-73.7155836250225,-73.69189487152231,-73.66802100484983,-73.64396649880665,-73.61973571919931,-73.59533292816442,-73.5707622883111,-73.54602786668809,-73.52113363858264,-73.49608349115772,-73.47088122693421,-73.44553056712397,-73.42003515482001,-73.39439855804923,-73.36862427269322,-73.34271572528253,-73.31667627566915,-73.29050921958233,-73.26421779107216,-73.23780516484547,-73.21127445849841,-73.1846287346496,-73.15787100297814,-73.13100422216989,-73.10403130177616,-73.07695510398786,-73.04977844532881,-73.02250409827144,-72.99513479277776,-72.96767321776902,-72.94012202252661,-72.91248381802716,-72.88476117821455,-72.8569566412113,-72.82907271047195,-72.8011118558807,-72.77307651479582,-72.74496909304271,-72.71679196585816,-72.68854747878756,-72.66023794853706,-72.63186566378292,-72.60343288593933,-72.57494184988695,-72.5463947646637,-72.5177938141193,-72.48914115753539,-72.46043893021253,-72.43168924402575,-72.40289418794978,-72.37405582855565,-72.34517621047965,-72.3162573568661,-72.28730126978515,-72.25830993062654,-72.2292853004708,-72.20022932043867,-72.17114391201983,-72.14203097738215,-72.11289239966212,-72.08373004323755,-72.0545457539835,-72.02534135951207,-71.99611866939702,-71.96687947538413,-71.93762555158773,-71.90835865467446,-71.87908052403476,-71.84979288194289,-71.82049743370595,-71.79119586780284,-71.76188985601334,-71.73258105353831,-71.70327109911123,-71.67396161510177,-71.64465420761192,-71.61535046656506,-71.5860519657885,-71.55676026308996,-71.52747690032838,-71.49820340347952,-71.46894128269663,-71.4396920323667,-71.41045713116259,-71.38123804209144,-71.35203621253955,-71.32285307431418,-71.2936900436826,-71.2645485214085,-71.23542989278617,-71.20633552767278,-71.17726678051876,-71.1482249903968,-71.11921148102948,-71.0902275608159,-71.06127452285737,-71.0323536449825,-71.00346618977177,-70.97461340458173,-70.94579652156918,-70.9170167577152,-70.88827531484947,-70.85957337967474,-70.83091212379189,-70.8022927037253,-70.77371626094912,-70.74518392191409,-70.7166967980754,-70.68825598592136,-70.65986256700316,-70.63151760796579,-70.60322216058013,-70.57497726177627,-70.54678393367819,-70.51864318363982,-70.49055600428257,-70.46252337353421,-70.4345462546695,-70.40662559635217,-70.3787623326786,-70.35095738322313,-70.32321165308498,-70.29552603293689,-70.26790139907538,-70.2403386134728,-70.21283852383104,-70.18540196363696,-70.15802975221958,-70.13072269480892,-70.10348158259674,-70.07630719279874,-70.04920028871868,-70.02216161981417,-69.99519192176406,-69.96829191653758,-69.94146231246516,-69.91470380431083,-69.88801707334626,-69.86140278742648,-69.83486160106705,-69.80839415552288,-69.78200107886852,-69.75568298608002,-69.72944047911815,-69.70327414701319,-69.677184565951,-69.65117229936052,-69.62523789800271,-69.59938190006058,-69.57360483123068,-69.54790720481576,-69.52228952181862,-69.49675227103712,-69.47129592916038,-69.44592096086593,-69.42062781891808,-69.39541694426713,-69.37028876614968,-69.34524370218985,-69.32028215850127,-69.29540452979009,-69.27061119945868,-69.24590253971019,-69.22127891165371,-69.19674066541032,-69.17228814021958,-69.14792166454677,-69.12364155619066,-69.0994481223918,-69.07534165994133,-69.05132245529018,-69.0273907846588,-69.0035469141472,-68.97979109984522,-68.95612358794337,-68.93254461484366,-68.90905440727084,-68.88565318238372,-68.86234114788668,-68.83911850214137,-68.81598543427837,-68.79294212430901,-68.7699887432371,-68.74712545317077,-68.72435240743413,-68.70166975067893,-68.67907761899612,-68.65657614002714,-68.63416543307522,-68.6118456092163,-68.58961677140985,-68.56747901460929,-68.54543242587228,-68.52347708447054,-68.50161306199944,-68.47984042248707,-68.45815922250316,-68.43656951126727,-68.41507133075677,-68.39366471581428,-68.37234969425455,-68.3511262869709,-68.3299945080411,-68.3089543648327,-68.28800585810778,-68.26714898212705,-68.24638372475343,-68.22571006755489,-68.20512798590674,-68.18463744909317,-68.16423842040813,-68.14393085725548,-68.12371471124852,-68.10358992830865,-68.08355644876336,-68.06361420744349,-68.04376313377962,-68.02400315189776,-68.00433418071422,-67.98475613402964,-67.96526892062222,-67.94587244434018,-67.92656660419328,-67.90735129444353,-67.8882264046951,-67.8691918199833,-67.8502474208627,-67.83139308349442,-67.81262867973246,-67.79395407720921,-67.77536913942002,-67.7568737258069,-67.73846769184127,-67.72015088910588,-67.70192316537575,-67.68378436469818,-67.66573432747197,-67.6477728905255,-67.62989988719417,-67.61211514739662,-67.59441849771028,-67.5768097614458,-67.55928875872071,-67.54185530653204,-67.52450921882809,-67.50725030657921,-67.49007837784772,-67.47299323785687,-67.45599468905891,-67.43908253120219,-67.4222565613974,-67.40551657418288,-67.388862361589,-67.37229371320164,-67.3558104162248,-67.33941225554226,-67.32309901377837,-67.30687047135797,-67.29072640656534,-67.2746665956024,-67.2586908126459,-67.2427988299038,-67.22699041767083,-67.21126534438304,-67.19562337667162,-67.18006427941589,-67.1645878157953,-67.14919374734076,-67.13388183398497,-67.11865183411209,-67.10350350460642,-67.08843660090044,-67.0734508770219,-67.05854608564019,-67.04372197811186,-67.02897830452544,-67.01431481374537,-66.99973125345528,-66.98522737020035,-66.9708029094291,-66.95645761553426,-66.94219123189303,-66.92800350090653,-66.91389416403848,-66.89986296185334,-66.88590963405355,-66.87203391951613,-66.85823555632862,-66.84451428182435,-66.83086983261688,-66.81730194463401,-66.80381035315088,-66.79039479282261,-66.77705499771618,-66.7637907013417,-66.75060163668311,-66.73748753622813,-66.72444813199769,-66.71148315557475,-66.69859233813253,-66.68577541046206,-66.67303210299926,-66.6603621458514,-66.64776526882297,-66.63524120144103,-66.62278967298002,-66.61041041248596,-66.5981031488002,-66.5858676105826,-66.57370352633419,-66.56161062441933,-66.5495886330874,-66.53763728049391,-66.52575629472125,-66.5139454037988,-66.50220433572274,-66.49053281847527,-66.47893058004344,-66.46739734843752,-66.45593285170887,-66.4445368179675,-66.43320897539911,-66.42194905228169,-66.4107567770018,-66.3996318780704,-66.38857408413824,-66.37758312401097,-66.36665872666374,-66.35580062125551,-66.34500853714297,-66.33428220389408,-66.32362135130126,-66.31302570939427,-66.30249500845271,-66.29202897901817,-66.2816273519061,-66.2712898582173,-66.2610162293492,-66.25080619700664,-66.24065949321256,-66.23057585031826,-66.2205550010134,-66.2105966783357,-66.20070061568047,-66.19086654680966,-66.1810942058608,-66.17138332735568,-66.16173364620869,-66.15214489773494,-66.1426168176582,-66.13314914211847,-66.12374160767946,-66.11439395133574,-66.1051059105197,-66.09587722310829,-66.08670762742956,-66.07759686226898,-66.06854466687551,-66.0595507809676,-66.05061494473883,-66.04173689886349,-66.03291638450193,-66.0241531433057,-66.01544691742257,-66.00679744950133,-65.99820448269651,-65.98966776067277,-65.98118702760934,-65.97276202820412,-65.96439250767777,-65.9560782117776,-65.94781888678125,-65.93961427950036,-65.93146413728405,-65.92336820802221,-65.91532624014876,-65.90733798264473,-65.89940318504127,-65.89152159742241,-65.88369297042796,-65.87591705525601,-65.86819360366555,-65.86052236797885,-65.85290310108381,-65.84533555643623,-65.83781948806187,-65.8303546505586,-65.8229407990983,-65.81557768942875,-65.80826507787546,-65.80100272134337,-65.79379037731847,-65.78662780386946,-65.77951475964916,-65.77245100389597,-65.76543629643527,-65.75847039768071,-65.75155306863545,-65.74468407089333,-65.73786316664005,-65.73109011865421,-65.72436469030832,-65.71768664556984,-65.71105574900206,-65.70447176576499,-65.69793446161621,-65.69144360291166,-65.68499895660642,-65.6786002902554,-65.67224737201407,-65.66593997063906,-65.6596778554888,-65.65346079652413,-65.64728856430885,-65.64116093001023,-65.63507766539952,-65.62903854285246,-65.6230433353497,-65.61709181647727,-65.61118376042695,-65.60531894199673,-65.59949713659111,-65.59371812022152,-65.58798166950666,-65.5822875616728,-65.57663557455412,-65.571025486593,-65.56545707684035,-65.55993012495584,-65.55444441120824,-65.54899971647562,-65.54359582224565,-65.53823251061586,-65.53290956429385,-65.52762676659756,-65.52238390145551,-65.51718075340703,-65.51201710760249,-65.50689274980353,-65.50180746638327,-65.4967610443266,-65.49175327123035,-65.48678393530354,-65.4818528253676,-65.47695973085662,-65.47210444181759,-65.46728674891061,-65.46250644340913,-65.45776331720022,-65.45305716278479,-65.44838777327786,-65.4437549424088,-65.43915846452161,-65.43459813457515,-65.43007374814346,-65.42558510141598,-65.42113199119787,-65.41671421491029,-65.41233157059067,-65.40798385689304,-65.40367087308834,-65.3993924190647,-65.39514829532776,-65.39093830300105,-65.38676224382625,-65.3826199201636,-65.37851113499218,-65.3744356919103,-65.37039339513589,-65.36638404950678,-65.36240746048114,-65.35846343413787,-65.35455177717695,-65.35067229691985,-65.34682480130995,-65.34300909891289,-65.33922499891705,-65.33547231113393,-65.3317508459986,-65.32806041457012,-65.32440082853196,-65.3207719001925,-65.31717344248541,-65.31360526897015,-65.31006719383242,-65.30655903188463,-65.30308059856635,-65.2996317099448,-65.29621218271534,-65.29282183420189,-65.28946048235753,-65.28612794576487,-65.28282404363664,-65.27954859581611,-65.27630142277762,-65.27308234562712,-65.26989118610257,-65.26672776657458,-65.26359191004678,-65.26048344015646,-65.25740218117497,-65.25434795800828,-65.25132059619749,-65.24831992191932,-65.24534576198664,-65.24239794384897,-65.23947629559298,-65.23658064594301,-65.23371082426156,-65.23086666054982,-65.22804798544813,-65.2252546302365,-65.22248642683513,-65.21974320780485,-65.21702480634765,-65.21433105630713,-65.21166179216901,-65.20901684906158,-65.20639606275621,-65.20379926966774,-65.20122630685502,-65.1986770120213,-65.19615122351475,-65.19364878032879,-65.19116952210261,-65.18871328912158,-65.18627992231764,-65.18386926326971,-65.18148115420415,-65.17911543799507,-65.17677195816474,-65.17445055888399]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1386\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1387\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1382\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1383\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1384\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1395\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1389\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1390\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1391\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99997874916157,-64.99993844542642,-64.99988107768425,-64.99980844652296,-64.99972218281401,-64.99962376436807,-64.9995145308698,-64.99939569727732,-64.99926836585125,-64.99913353695976,-64.99899211879017,-64.99884493608293,-64.99869273799125,-64.99853620515829,-64.99837595609382,-64.99821255292329,-64.99804650657433,-64.99787828145885,-64.99770829970237,-64.99753694496685,-64.99736456590843,-64.99719147930682,-64.99701797289947,-64.99684430794994,-64.99667072157698,-64.99649742886784,-64.99632462479723,-64.99615248597061,-64.99598117220926,-64.99581082799196,-64.99564158376748,-64.99547355714982,-64.99530685400761,-64.99514156945739,-64.99497778877,-64.994815588198,-64.99465503573143,-64.9944961917886,-64.99433910984773,-64.99418383702482,-64.99403041460269,-64.99387887851545,-64.99372925979235,-64.99358158496477,-64.99343587643945,-64.99329215284085,-64.99315042932555,-64.99301071787083,-64.99287302753986,-64.99273736472541,-64.9926037333739,-64.99247213519136,-64.99234256983308,-64.99221503507799,-64.99208952698925,-64.99196604006214,-64.9918445673602,-64.99172510064076,-64.99160763047051,-64.9914921463321,-64.99137863672239,-64.99126708924301,-64.99115749068393,-64.99104982710053,-64.99094408388461,-64.99084024583009,-64.99073829719339,-64.99063822174936,-64.99054000284278,-64.99044362343584,-64.9903490661521,-64.99025631331698,-64.99016534699503,-64.9900761490245,-64.98998870104913,-64.98990298454746,-64.98981898085992,-64.98973667121383,-64.9896560367464,-64.98957705852588,-64.98949971757125,-64.98942399487014,-64.98934987139546,-64.9892773281207,-64.98920634603395,-64.98913690615088,-64.98906898952656,-64.98900257726648,-64.98893765053649,-64.98887419057203,-64.98881217868662,-64.98875159627947,-64.98869242484263,-64.9886346459674,-64.98857824135025,-64.98852319279817,-64.98846948223351,-64.98841709169851,-64.9883660033592,-64.98831619950913,-64.98826766257258,-64.98822037510752,-64.98817431980825,-64.98812947950776,-64.9880858371798,-64.98804337594072,-64.98800207905113,-64.98796192991725,-64.98792291209219,-64.98788500927692,-64.98784820532121,-64.9878124842243,-64.98777783013549,-64.98774422735457,-64.98771166033217,-64.98768011366994,-64.98764957212067,-64.98762002058831,-64.98759144412784,-64.98756382794518,-64.98753715739689,-64.98751141798986,-64.987486595381,-64.98746267537672,-64.9874396439325,-64.98741748715236,-64.9873961912882,-64.98737574273923,-64.9873561280513,-64.98733733391619,-64.98731934717081,-64.98730215479654,-64.98728574391833,-64.98727010180396,-64.98725521586312,-64.98724107364659,-64.98722766284536,-64.98721497128967,-64.98720298694816,-64.98719169792689,-64.98718109246839,-64.98717115895073,-64.98716188588654,-64.987153261922,-64.98714527583591,-64.98713791653866,-64.98713117307122,-64.98712503460418,-64.9871194904367,-64.9871145299955,-64.98711014283387,-64.98710631863064,-64.98710304718912,-64.98710031843616,-64.98709812242105,-64.98709644931454,-64.98709528940779,-64.98709463311138,-64.98709447095429,-64.98709479358283,-64.98709559175967,-64.9870968563628,-64.98709857838455,-64.98710074893054,-64.98710335921871,-64.98710640057824,-64.98710986444867,-64.98711374237878,-64.98711802602568,-64.98712270715377,-64.98712777763379,-64.9871332294418,-64.98713905465823,-64.9871452454669,-64.98715179415404,-64.98715869310735,-64.98716593481497,-64.98717351186464,-64.98718141694266,-64.98718964283297,-64.98719818241622,-64.98720702866882,-64.98721617466202,-64.98722561356098,-64.98723533862385,-64.98724534320085,-64.98725562073341,-64.98726616475317,-64.98727696888116,-64.98728802682693,-64.98729933238756,-64.98731087944688,-64.98732266197452,-64.9873346740251,-64.98734690973734,-64.9873593633332,-64.98737202911701,-64.98738490147467,-64.98739797487276,-64.98741124385774,-63.856073677385005,-62.78261482162386,-61.7629545471178,-60.79333532362923,-59.87029507172453,-58.990642396338366,-58.1514339637036,-57.34995380992661,-56.583694393468484,-55.85033922481919,-55.147746924916554,-54.47393657966243,-53.827074271548774,-53.205460681238975,-52.607519662229905,-52.03178770068421,-51.47690418036222,-50.94160237945546,-50.42470113215015,-49.92509709302435,-49.44175754697692,-48.973713711350975,-48.52005448028291,-48.07992056409946,-47.65249897880376,-47.237017842329564,-46.832741435277285,-46.43896548423968,-46.05501262552325,-45.68022800599927,-45.3139749758752,-44.95563082523262,-44.6045825120608,-44.26022232400922,-43.92194340890346,-43.58913509985845,-43.26117794911526,-42.937438369928024,-42.6172627671713,-42.299971013840704,-43.11619314151757,-43.87593884740354,-44.58248804220521,-45.238757850687854,-45.84732775882958,-46.41046080852388,-46.93012075221825,-47.407985016065865,-47.84545324722229,-48.24365113211787,-48.60342906132001,-48.92535507651288,-49.2097013600223,-49.45642331212673,-49.66513000393923,-49.83504449845964,-49.96495221826577,-50.053135252422074,-50.097290338923685,-50.0944284335955,-50.04075466095261,-49.931529721889994,-49.760918693957116,-49.52184256079368,-49.205864757088385,-48.80317354427807,-48.3027647433452,-47.69298560027448,-46.962645489644515,-46.10286509066524,-45.1096121320175,-43.98640068282933,-42.74610536225663,-41.41076397068106,-40.00899222736258,-38.571846921023116,-37.128699905672015,-35.70440180220883,-34.31813006035077,-32.983569587052514,-31.70980791107555,-30.50242735206401,-29.36449782703708,-28.2973591594238,-27.301188291783017,-26.375390281475052,-25.51886003645291,-24.730155057247337,-24.007609141047986,-23.349407710361806,-22.753638416788377,-22.2183258241057,-21.741455783329986,-21.32099306570955,-20.954894523893156,-20.64111923438025,-20.377636557943895,-20.162432726465916,-19.99351635438805,-19.868923137283097,-19.786719911865724,-19.745008194190667,-19.741927275130724,-19.77565692765477,-19.844419764491526,-19.946483274567544,-20.08016156020701,-20.243816793190184,-20.43586040552274,-20.654754029567986,-20.89901020166766,-21.167192843240972,-21.457917533448434,-21.76985158772061,-22.10171395672143,-22.452274960601585,-22.820355873685997,-23.204828375030825,-23.604613880582107,-24.018682772982384,-24.44605354542067,-24.88579187630441,-25.33700965196961,-25.7988639551286,-26.270556037281548,-26.751330293873647,-27.240473261537062,-27.73731265727118,-28.241216479852074,-28.751592194038178,-29.267886018208667,-29.789582335825127,-30.31620325049621,-30.8473083033407,-31.382494369725926,-31.92139575024147,-32.46368446789097,-33.009070779917735,-33.55730390838186,-34.10817298853644,-34.661508228150886,-35.21718226406558,-35.77511169425295,-36.335258754143084,-36.89763309446463,-37.46229360360492,-38.02935019951563,-38.59896549317854,-39.17135619598397,-39.74679410514187,-40.32560645231892,-40.908175338919676,-41.494935904987024,-42.086372786718016,-42.68301431116255,-43.28542376037264,-43.89418692140423,-44.50989504215653,-45.13312226740715,-45.764396681824834,-46.40416430242698,-47.0527458226582,-47.710286698813114,-48.37670234943675,-49.051621804130505,-49.734334953672516,-50.42375028987203,-51.11837114009802,-51.81629822491563,-52.515264316976875,-53.21270270467371,-53.90584564409439,-54.59184335207374,-55.267890039282314,-55.93134233089778,-56.57981750306313,-57.21126346538707,-57.82399782533403,-58.41671816334939,-58.98848886891851,-59.53871130070108,-60.06708395089005,-60.573558271139255,-61.058294397289444,-61.52161958687485,-61.96399097689176,-62.38596335977645,-62.788162055667726,-63.17126057929307,-63.53596259884633,-63.88298760525883,-64.21305970782146,-64.52689901302874,-64.82521510533583,-65.10870221706612,-65.37803574170111,-65.63386980588528,-65.87683566884529,-66.10754076318615,-66.32656822862965,-66.53447682102677,-66.73180110386716,-66.91905184947375,-67.09671659298064,-67.26526029480686,-67.42512607730043,-67.57673600907037,-67.72049191668268,-67.85677620822248,-67.98595269699888,-68.1083674166152,-68.22434942092406,-68.33421156417141,-68.43825125801914,-68.53675120320719,-68.62998009444199,-68.7181932977313,-68.80163349986886,-68.88053133013784,-68.95510595457591,-69.0255656433466,-69.09210831190842,-69.1549220367759,-69.21418554673606,-69.27006869042725,-69.32273288121043,-69.37233152027119,-69.41901039888694,-69.46290808078157,-69.50415626547087,-69.54288013347859,-69.57919867427626,-69.61322499777064,-69.64506663013243,-69.6748257947285,-69.70259967888852,-69.72848068720552,-69.75255668203908,-69.77491121185925,-69.79562372804003,-69.81476979068282,-69.83242126402187,-69.84864650193795,-69.86351052408008,-69.87707518307134,-69.88939932325052,-69.90053893137943,-69.91054727972407,-69.91947506189707,-69.9273705218299,-69.93427957622401,-69.9402459308132,-69.94531119075178,-69.94951496542784,-69.95289496798524,-69.9554871098238,-69.95732559033297,-69.95844298210183,-69.95887031183538,-69.95863713719547,-69.9577716197736,-69.95630059439222,-69.95424963492098,-69.95164311678504,-69.94850427633314,-69.94485526722507,-69.94071721398939,-69.93611026289516,-69.93105363027345,-69.92556564841806,-69.91966380918772,-69.9133648054263,-69.9066845703111,-69.89963831473406,-69.89224056281519,-69.88450518564247,-69.87644543332762,-69.86807396546277,-69.85940288005843,-69.85044374103931,-69.84120760437054,-69.83170504288304,-69.8219461698636,-69.81194066147147,-69.80169777804058,-69.79122638432301,-69.78053496872703,-69.76963166159979,-69.75852425260271,-69.74722020722481,-69.73572668247706,-69.72405054180868,-69.71219836928422,-69.7001764830583,-69.68799094818296,-69.67564758878085,-69.66315199961595,-69.65050955709161,-69.63772542970449,-69.62480458798132,-69.61175181392431,-69.59857170998943,-69.5852687076207,-69.57184707536268,-69.55831092657183,-69.54466422674668,-69.53091080049559,-69.5170543381602,-69.50309840211125,-69.48904643273326,-69.47490175411319,-69.46066757944783,-69.44634701618367,-69.43194307090243,-69.41745865396493,-69.4028965839249,-69.38825959172438,-69.37355032468113,-69.35877135027854,-69.34392515976754,-69.32901417158983,-69.31404073463133,-69.29900713131384,-69.28391558053325,-69.26876824045154,-69.25356721114987,-69.23831453714962,-69.22301220980766,-69.2076621695923,-69.19226630824551,-69.17682647083717,-69.1613444577166,-69.14582202636633,-69.13026089316308,-69.11466273505033,-69.09902919112696,-69.08336186415602,-69.06766232199757,-69.05193209896939,-69.03617269713894,-69.02038558755021,-69.00457221138849,-68.98873398108623,-68.97287228137276,-68.95698847027089,-68.94108388004277,-68.92515981808776,-68.90921756779449,-68.89325838934953,-68.87728352050483,-68.86129417730594,-68.84529155478295,-68.82927682760618,-68.81325115070818,-68.79721565987393,-68.78117147230067,-68.76511968712913,-68.7490613859474,-68.73299763326895,-68.71692947698607,-68.70085794880008,-68.6847840646294,-68.66870882499671,-68.65263321539626,-68.63655820664232,-68.62048475519987,-68.60441380349835,-68.58834628022943,-68.57228310062965,-68.55622516674872,-68.54017336770426,-68.52412857992373,-68.50809166737419,-68.49206348178065,-68.47604486283358,-68.46003663838616,-68.44403962464192,-68.42805462633324,-68.41208243689125,-68.39612383860772,-68.38017960278916,-68.36425048990388,-68.34833724972225,-68.33244062145054,-68.3165613338589,-68.30070010540356,-68.28485764434399,-68.26903464885487,-68.25323180713363,-68.23744979750356,-68.22168928851288,-68.20595093903003,-68.19023539833546,-68.17454330621001,-68.15887529302037,-68.14323197980158,-68.12761397833692,-68.11202189123533,-68.09645631200651,-68.08091782513402,-68.06540700614634,-68.04992442168617,-68.03447062957808,-68.01904617889464,-68.00365161002124,-67.98828745471954,-67.97295423618989,-67.9576524691326,-67.94238265980836,-67.92714530609781,-67.91194089756031,-67.8967699154921,-67.88163283298383,-67.86653011497756,-67.85146221832342,-67.8364295918357,-67.8214326763488,-67.8064719047728,-67.79154770214882,-67.77666048570423,-67.76181066490776,-67.74699864152444,-67.7322248096706,-67.71748955586868,-67.7027932591023,-67.68813629087107,-67.67351901524579,-67.65894178892343,-67.64440496128248,-67.6299088744382,-67.61545386329824,-67.60104025561822,-67.58666837205755,-67.57233852623553,-67.55805102478747,-67.54380616742111,-67.52960424697321,-67.51544554946634,-67.5013303541659,-67.48725893363734,-67.47323155380356,-67.45924847400254,-67.44530994704519,-67.43141621927337,-67.41756753061816,-67.4037641146582,-67.3900061986784,-67.37629400372869,-67.36262774468297,-67.34900763029829,-67.3354338632741,-67.32190664031172,-67.30842615217392,-67.29499258374459,-67.28160611408859,-67.26826691651172,-67.2549751586207,-67.24173100238332,-67.22853460418865,-67.21538611490726,-67.20228567995154,-67.18923343933608,-67.17622952773799,-67.16327407455732,-67.15036720397745,-67.13750903502547,-67.12469968163252,-67.11193925269411,-67.09922785213041,-67.08656557894642,-67.07395252729214,-67.0613887865226,-67.0488744412578,-67.03640957144255,-67.02399425240621,-67.01162855492221,-66.9993125452675,-66.98704628528185,-66.97482983242689,-66.96266323984506,-66.95054655641827,-66.93847982682652,-66.92646309160607,-66.91449638720755,-66.90257974605382,-66.89071319659747,-66.87889676337822,-66.86713046707987,-66.85541432458714,-66.84374834904213,-66.83213254990044,-66.82056693298712,-66.80905150055217,-66.79758625132577,-66.78617118057319,-66.77480628014932,-66.7634915385529,-66.75222694098031,-66.74101246937909,-66.72984810250104,-66.71873381595493,-66.70766958225884,-66.69665537089213,-66.68569114834695,-66.67477687817942,-66.66391252106033,-66.65309803482549,-66.64233337452562,-66.63161849247581,-66.62095333830456,-66.61033785900241,-66.59977199897011,-66.58925570006629,-66.57878890165479,-66.56837154065148,-66.55800355157064,-66.54768486657085,-66.53741541550046,-66.52719512594263,-66.51702392325979,-66.50690173063775,-66.49682846912931,-66.48680405769733,-66.47682841325742,-66.46690145072016,-66.45702308303272,-66.44719322122018,-66.4374117744262,-66.42767864995338,-66.417993753303,-66.40835698821436,-66.39876825670366,-66.38922745910232,-66.37973449409486,-66.3702892587564,-66.3608916485895,-66.35154155756068,-66.34223887813637,-66.33298350131845,-66.32377531667927,-66.31461421239625,-66.30550007528593,-66.29643279083766,-66.28741224324669,-66.27843831544696,-66.26951088914326,-66.26062984484304,-66.25179506188769,-66.24300641848347,-66.23426379173188,-66.22556705765955,-66.21691609124785,-66.20831076646192,-66.19975095627922,-66.19123653271777,-66.18276736686387,-66.17434332889941,-66.16596428812872,-66.15763011300501,-66.14934067115642,-66.14109582941157,-66.13289545382474,-66.12473940970068,-66.11662756161888,-66.10855977345759,-66.10053590841726,-66.09255582904376,-66.08461939725107,-66.07672647434364,-66.06887692103832,-66.06107059748595,-66.05330736329252,-66.04558707753998,-66.03790959880668,-66.03027478518743,-66.02268249431319,-66.01513258337037,-66.00762490911985,-66.00015932791557,-65.99273569572279,-65.985353868136,-65.97801370039656,-65.97071504740985,-65.96345776376224,-65.9562417037376,-65.94906672133364,-65.94193267027774,-65.9348394040426,-65.92778677586158,-65.92077463874357,-65.91380284548778,-65.90687124869805,-65.89997970079696,-65.89312805403961,-65.8863161605271,-65.87954387221977,-65.87281104095013,-65.86611751843546,-65.85946315629029,-65.85284780603841,-65.8462713191248,-65.83973354692715,-65.83323434076725,-65.826773551922,-65.82035103163432,-65.81396663112363,-65.80762020159632,-65.80131159425574,-65.7950406603121,-65.78880725099215,-65.78261121754858,-65.77645241126918,-65.77033068348585,-65.76424588558335,-65.75819786900783,-65.7521864852752,-65.74621158597925,-65.74027302279961,-65.73437064750946,-65.72850431198312,-65.72267386820332,-65.7168791682685,-65.71112006439972,-65.70539640894748,-65.69970805439834,-65.69405485338146,-65.6884366586748,-65.68285332321129,-65.6773047000848,-65.67179064255596,-65.66631100405775,-65.66086563820106,-65.65545439878001,-65.65007713977714,-65.64473371536849,-65.6394239799285,-65.63414778803478,-65.62890499447278,-65.62369545424026,-65.61851902255171,-65.61337555484256,-65.60826490677337,-65.60318693423378,-65.59814149334642,-65.59312844047071,-65.58814763220647,-65.58319892539755,-65.5782821771352,-65.57339724476141,-65.56854398587224,-65.56372225832082,-65.5589319202205,-65.55417282994773,-65.54944484614492,-65.54474782772321,-65.54008163386514,-65.5354461240272,-65.53084115794238,-65.52626659562253,-65.52172229736075,-65.51720812373361,-65.51272393560335,-65.50826959411997,-65.5038449607233,-65.49944989714494,-65.49508426541017,-65.49074792783978,-65.48644074705183,-65.48216258596338,-65.47791330779212,-65.47369277605796,-65.46950085458455,-65.46533740750078,-65.46120229924219,-65.45709539455233,-65.45301655848407,-65.4489656564009,-65.44494255397815,-65.44094711720415,-65.43697921238135,-65.43303870612743,-65.42912546537639,-65.42523935737944,-65.4213802497061,-65.41754801024507,-65.41374250720511,-65.40996360911595,-65.40621118482905,-65.40248510351846,-65.39878523468155,-65.39511144813979,-65.39146361403935,-65.38784160285189,-65.38424528537517,-65.38067453273365,-65.37712921637912,-65.37360920809125,-65.3701143799782,-65.36664460447709,-65.36319975435454,-65.35977970270717,-65.35638432296206,-65.35301348887718,-65.3496670745419,-65.34634495437733,-65.3430470031368,-65.3397730959062,-65.33652310810436,-65.33329691548344,-65.33009439412928,-65.32691542046169,-65.32375987123487,-65.32062762353763,-65.31751855479376,-65.31443254276232,-65.3113694655379,-65.30832920155092,-65.30531162956792,-65.30231662869181,-65.29934407836211,-65.29639385835524,-65.29346584878476,-65.29055993010158,-65.28767598309423,-65.28481388888912,-65.28197352895069,-65.27915478508169,-65.27635753942342,-65.2735816744559,-65.27082707299813,-65.26809361820828,-65.2653811935839,-65.26268968296218,-65.26001897052008,-65.25736894077461,-65.254739478583,-65.25213046914295,-65.24954179799279,-65.2469733510117,-65.24442501441995,-65.24189667477906,-65.23938821899205,-65.23689953430366,-65.2344305083005,-65.23198102891133,-65.22955098440721,-65.22714026340178,-65.22474875485142,-65.2223763480555,-65.22002293265659,-65.21768839864068,-65.21537263633739,-65.21307553642023,-65.21079698990678,-65.20853688815895,-65.20629512288319,-65.20407158613074,-65.20186617029785,-65.19967876812602,-65.19750927270223,-65.1953575774592,-65.19322357617561,-65.19110716297635,-65.18900823233277,-65.18692667906289,-65.18486239833173,-65.18281528565149,-65.1807852368818,-65.17877214823005,-65.17677591625154,-65.17479643784982,-65.1728336102769,-65.17088733113351,-65.16895749836944,-65.16704401028366,-65.16514676552472,-65.16326566309094,-65.16140060233066,-65.15955148294258,-65.15771820497594,-65.15590066883087,-65.15409877525857,-65.15231242536167,-65.1505415205944,-65.14878596276293,-65.14704565402562,-65.14532049689325,-65.14361039422934,-65.14191524925039,-65.14023496552612,-65.13856944697979,-65.13691859788841,-65.13528232288303,-65.13366052694899,-65.13205311542619,-65.13045999400933,-65.12888106874817,-65.1273162460478,-65.12576543266886,-65.12422853572782]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1396\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1397\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1392\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_width\":2,\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1393\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.1,\"line_width\":2,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1394\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.2,\"line_width\":2,\"line_dash\":[6]}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1404\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1398\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1399\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1400\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.99935513261319,-64.99876372655443,-64.99821046775223,-64.99768760284877,-64.99719024284995,-64.9967149504044,-64.99625914620756,-64.99582080888742,-64.99539830409073,-64.99499027876743,-64.99459559173746,-64.9942132659803,-64.99384245467667,-64.99348241634011,-64.99313249616334,-64.99279211172957,-64.99246074185916,-64.99213791775158,-64.9918232158369,-64.99151625192148,-64.99121667632834,-64.99092416981388,-64.9906384400996,-64.99035921889781,-64.9900862593399,-64.98981933373693,-64.98955823161761,-64.98930275800073,-64.98905273186749,-64.98880798480567,-64.98856835980287,-64.98833371016954,-64.98810389857603,-64.98787879618985,-64.98765828190169,-64.98744224163005,-64.98723056769579,-64.98702315825905,-64.98681991681177,-64.98662075172,-64.98642557581078,-64.98623430599895,-64.98604686294976,-64.98586317077384,-64.98568315675092,-64.98550675107974,-64.98533388665128,-64.98516449884323,-64.98499852533341,-64.98483590593034,-64.98467658241935,-64.98452049842264,-64.98436759927196,-64.9842178318927,-64.98407114469833,-64.9839274874941,-64.98378681138925,-64.98364906871686,-64.98351421296057,-64.98338219868768,-64.98325298148782,-64.98312651791689,-64.98300276544562,-64.98288168241243,-64.98276322798012,-64.9826473620961,-64.98253404545586,-64.98242323946921,-64.98231490622933,-64.98220900848413,-64.98210550960985,-64.98200437358663,-64.98190556497596,-64.98180904889972,-64.98171479102083,-64.98162275752524,-64.98153291510515,-64.98144523094348,-64.98135967269936,-64.98127620849456,-64.98119480690092,-64.98111543692838,-64.98103806801403,-64.98096267001164,-64.98088921318191,-64.98081766818328,-64.98074800606325,-64.98068019825023,-64.98061421654577,-64.98055003311731,-64.98048762049119,-64.98042695154606,-64.98036799950668,-64.98031073793787,-64.98025514073888,-64.98020118213792,-64.98014883668696,-64.98009807925678,-64.98004888503208,-64.98000122950698,-64.97995508848057,-64.97991043805256,-64.97986725461925,-64.97982551486949,-64.97978519578083,-64.97974627461582,-64.97970872891828,-64.97967253650988,-64.97963767548666,-64.97960412421568,-64.9795718613318,-64.97954086573448,-64.97951111658465,-64.97948259330174,-64.97945527556065,-64.9794291432889,-64.9794041766637,-64.97938035610927,-64.97935766229399,-64.97933607612775,-64.97931557875931,-64.97929615157369,-64.9792777761896,-64.97926043445693,-64.97924410845425,-64.97922878048635,-64.97921443308188,-64.97920104899089,-64.97918861118255,-64.9791771028428,-64.97916650737206,-64.97915680838297,-64.97914798969815,-64.97914003534801,-64.97913292956854,-64.97912665679917,-64.97912120168063,-64.97911654905283,-64.9791126839528,-64.97910959161258,-64.9791072574572,-64.97910566710264,-64.97910480635385,-64.9791046612027,-64.97910521782612,-64.97910646258404,-64.97910838201756,-64.97911096284695,-64.97911419196981,-64.97911805645921,-64.97912254356177,-64.97912764069588,-64.97913333544982,-64.97913961558001,-64.97914646900918,-64.97915388382462,-64.97916184827639,-64.97917035077559,-64.97917937989264,-64.97918892435557,-64.9791989730483,-64.97920951500899,-64.97922053942833,-64.9792320356479,-64.97924399315858,-64.97925640159885,-64.97926925075322,-64.97928253055065,-64.97929623106292,-64.97931034250308,-64.97932485522395,-64.97933975971648,-64.9793550466083,-64.97937070666218,-64.97938673077451,-64.97940310997384,-64.97941983541942,-64.97943689839968,-64.97945429033085,-64.97947200275546,-64.97949002734096,-64.9795083558783,-64.97952698028051,-64.97954589258138,-64.979565084934,-64.97958454960943,-64.9796042789954,-64.9796242655949,-64.9796445020249,-64.97966498101505,-64.97968569540632,-64.97970663814978,-64.97972780230526,-64.97974918104013,-64.97977076762804,-64.97979255544764,-64.97981453798143,-64.9798367088144,-64.979859061633,-64.97988159022377,-64.97912877810928,-64.97537830883218,-64.96513428443001,-64.94439613799555,-64.909460902096,-64.85743621705501,-64.78642657801804,-64.69549066863921,-64.58448340007544,-64.45386413566418,-64.30451598904799,-64.13759495001477,-63.954412725020894,-63.75635021120106,-63.54479609068881,-63.32110483846234,-63.08656916396713,-62.84240288727034,-62.58973118783356,-62.32958595158336,-62.062904561493774,-61.790530945743456,-61.51321804368475,-61.23163110119376,-60.946351387188336,-60.657880051009286,-60.36664193025925,-60.072989181192085,-59.77720464658083,-59.47950490474596,-59.18004296208784,-58.8789105628682,-58.57614009611442,-58.27170608175908,-57.96552621741555,-57.65746196414589,-57.34731864457439,-57.03484501993044,-56.7197323041077,-56.40161256251531,-56.080830191283525,-55.759108688827354,-55.43937696697119,-55.125006683409424,-54.819022303314185,-54.52360389029945,-54.23991720235226,-53.96817093664932,-53.70778604092444,-53.45759487452032,-53.21602511380045,-52.98124976000802,-52.751299662161166,-52.52414202213191,-52.29773079749236,-52.07003507920705,-51.83905072823499,-51.602799484924496,-51.35931872129964,-51.106644099881734,-50.84278665406426,-50.565705197096406,-50.273274469768396,-49.96324901967326,-49.63322243853138,-49.280581242779675,-48.90245234345072,-48.495642693242196,-48.05656930184684,-47.58117735632505,-47.06484365445567,-46.50226194207692,-45.88730603496521,-45.212865813186546,-44.47065034548635,-43.65095163970967,-42.74236204191774,-41.73143854102729,-40.6023089415961,-39.336219389795374,-37.91103237116964,-36.300702834413954,-34.474793562274044,-32.39814843020745,-30.030936558693828,-27.329427118268125,-24.24806593826191,-20.743689172474834,-16.78293374983011,-12.353804999515726,-7.481353237778422,-2.2447894525978054,3.2107332925755045,8.677548602538156,13.911393547292107,18.676390043693505,22.79263785974381,26.16606839365036,28.790223161901057,30.72510816940556,32.06708349143666,32.922270534398116,33.38926581501202,33.55106971654703,33.47342294875586,33.20653416871225,32.78804620186645,32.2460498968769,31.601640390291998,30.870894616711418,30.066321916696594,29.19789491620327,28.273768771499476,27.30077822734096,26.28477997579199,25.23088873354455,24.14364079159426,23.02710819527817,21.884979316369275,20.720616513465256,19.53709814079852,18.33724984276716,17.12366850047305,15.898741130850215,14.664660313007792,13.423437219531639,12.176912988733758,10.92676893795172,9.674535954788213,8.421603289658893,7.169226894686864,5.918537399306985,4.6705477753873685,3.426160718553967,2.1861757545598897,0.9512960669557229,-0.2778649664103947,-1.5007775468197089,-2.71698956174368,-3.926121053199127,-5.127859078448086,-6.321952997425844,-7.508210224175122,-8.686492482610504,-9.856712609228463,-11.018831947543614,-12.17285837989144,-13.318845042210064,-14.456889765400966,-15.587135282977666,-16.709770237952092,-17.825031012546255,-18.933204391435936,-20.03463105326555,-21.129709865586097,-22.21890293589418,-23.30274134609237,-24.3818314698291,-25.45686174239586,-26.528609721046173,-27.597949239698895,-28.66585742463824,-29.733421295804582,-30.801843627832326,-31.872447682754242,-32.94668034592072,-34.02611309232519,-35.11244007371556,-36.20747244031099,-37.31312778670769,-38.43141333466721,-39.56440113501077,-40.71419319422809,-41.88287402970291,-43.0724477729592,-44.28475664722546,-45.521377562480914,-46.78349387559362,-48.0717403029553,-49.38602086731957,-50.72530297728284,-52.087395625198745,-53.46872643752962,-54.8641407210048,-56.266754812277014,-57.667904013835866,-59.0572290438183,-60.422940224402524,-61.75228182561429,-63.032188616198574,-64.250086002762,-65.39474345839076,-66.45706208588766,-67.43067439600892,-68.31226348050386,-69.10156338942599,-69.80106572355952,-70.41550919238725,-70.95125519121211,-71.41565055056202,-71.81645575962735,-72.16138497602752,-72.45777366089564,-72.71236704302807,-72.93120956335429,-73.1196106318804,-73.28216280634375,-73.42279225826819,-73.5448261596249,-73.6510662013142,-73.74386126963448,-73.82517519882671,-73.8966475520601,-73.95964671945677,-74.01531543693136,-74.0646092808511,-74.10832890496485,-74.14714684861988,-74.18162972178635,-74.21225650410018,-74.23943360780987,-74.26350726341825,-74.28477370029978,-74.30348751668606,-74.31986856560219,-74.33410762560574,-74.34637107677702,-74.35680476225737,-74.36553718256941,-74.37268214286584,-74.37834095113492,-74.38260424736819,-74.38555352902733,-74.38726242621324,-74.38779777023191,-74.38722049134911,-74.38558637508916,-74.38294670118559,-74.37934878500874,-74.37483643779602,-74.36945035914803,-74.3632284729091,-74.3562062156276,-74.34841678521244,-74.33989135610372,-74.33065926620606,-74.32074817995222,-74.31018423113677,-74.29899214855817,-74.28719536700997,-74.27481612574944,-74.26187555622934,-74.24839376059438,-74.23438988220708,-74.21988216927056,-74.20488803245141,-74.18942409726797,-74.17350625189471,-74.1571496909366,-74.14036895564682,-74.12317797099266,-74.10559007991773,-74.08761807509991,-74.06927422846357,-74.05057031867048,-74.03151765678398,-74.0121271102765,-73.99240912552898,-73.97237374895295,-73.95203064685013,-73.93138912411159,-73.9104581418467,-73.88924633402259,-73.8677620231859,-73.84601323533184,-73.82400771397853,-73.80175293349951,-73.77925611176211,-73.75652422211522,-73.73356400476635,-73.71038197758412,-73.68698444635996,-73.66337751455963,-73.63956709259325,-73.61555890663017,-73.59135850698318,-73.56697127608506,-73.54240243607853,-73.51765705603988,-73.49274005885458,-73.46765622776257,-73.44241021258973,-73.41700653568077,-73.39144959754842,-73.36574368225246,-73.33989296252177,-73.31390150463146,-73.28777327304695,-73.2615121348459,-73.23512186392847,-73.20860614502584,-73.18196857751633,-73.15521267905821,-73.12834188904755,-73.10135957190931,-73.07426902022935,-73.0470734577346,-73.01977604212853,-72.99237986778843,-72.9648879683309,-72.93730331905164,-72.90962883924517,-72.88186739441022,-72.85402179834571,-72.82609481514271,-72.79808916107676,-72.77000750640556,-72.74185247707598,-72.7136266563448,-72.6853325863172,-72.65697276940654,-72.6285496697194,-72.60006571436912,-72.57152329472126,-72.54292476757412,-72.51427245627742,-72.48556865179201,-72.45681561369328,-72.42801557112121,-72.39917072367923,-72.3702832422847,-72.34135526997295,-72.31238892265749,-72.28338628984825,-72.25434943532993,-72.2252803978025,-72.19618119148572,-72.16705380668918,-72.13790021035011,-72.10872234653996,-72.07952213694186,-72.05030148130005,-72.02106225784297,-71.99180632368122,-71.96253551518184,-71.93325164831998,-71.90395651900933,-71.87465190341231,-71.8453395582313,-71.81602122098168,-71.78669861024798,-71.7573734259239,-71.72804734943713,-71.69872204395999,-71.66939915460651,-71.64008030861693,-71.61076711553028,-71.58146116734584,-71.55216403867405,-71.5228772868777,-71.49360245220394,-71.46434105790769,-71.43509461036707,-71.40586459919147,-71.37665249732261,-71.34745976112923,-71.31828783049586,-71.28913812890616,-71.26001206352107,-71.2309110252525,-71.2018363888326,-71.17278951287938,-71.14377173995857,-71.1147843966425,-71.08582879356607,-71.05690622548,-71.02801797130215,-70.99916529416647,-70.9703494414705,-70.94157164492121,-70.91283312057965,-70.88413506890454,-70.85547867479504,-70.82686510763278,-70.7982955213236,-70.76977105433882,-70.74129282975653,-70.7128619553028,-70.68447952339311,-70.65614661117407,-70.6278642805655,-70.59963357830318,-70.57145553598212,-70.54333117010064,-70.51526148210527,-70.48724745843656,-70.4592900705759,-70.43139027509349,-70.40354901369727,-70.37576721328323,-70.34804578598688,-70.32038562923606,-70.29278762580502,-70.26525264387,-70.23778153706616,-70.2103751445459,-70.18303429103884,-70.155759786913,-70.12855242823777,-70.10141299684827,-70.07434226041121,-70.04734097249239,-70.0204098726256,-69.99354968638325,-69.96676112544829,-69.94004488768792,-69.91340165722863,-69.88683210453286,-69.86033688647704,-69.83391664643128,-69.80757201434037,-69.78130360680633,-69.75511202717232,-69.72899786560795,-69.70296169919605,-69.67700409202068,-69.65112559525654,-69.62532674725965,-69.59960807365927,-69.5739700874511,-69.54841328909167,-69.52293816659385,-69.49754519562356,-69.47223483959759,-69.44700754978237,-69.42186376539392,-69.3968039136987,-69.37182841011544,-69.34693765831788,-69.32213205033844,-69.29741196667264,-69.27277777638446,-69.24822983721229,-69.22376849567581,-69.19939408718339,-69.17510693614022,-69.15090735605709,-69.12679564965963,-69.10277210899821,-69.07883701555826,-69.05499064037109,-69.03123324412506,-69.00756507727726,-68.98398638016542,-68.96049738312017,-68.93709830657761,-68.91378936119206,-68.89057074794903,-68.86744265827836,-68.8444052741675,-68.82145876827484,-68.79860330404313,-68.77583903581296,-68.7531661089362,-68.73058465988932,-68.70809481638679,-68.6856966974943,-68.66339041374177,-68.64117606723636,-68.61905375177513,-68.59702355295757,-68.57508554829779,-68.55323980733657,-68.53148639175289,-68.50982535547534,-68.488256744793,-68.46678059846604,-68.44539694783583,-68.42410581693466,-68.40290722259495,-68.38180117455806,-68.36078767558249,-68.33986672155157,-68.3190383015807,-68.29830239812385,-68.2776589870796,-68.25710803789654,-68.23664951367799,-68.21628337128611,-68.19600956144534,-68.17582802884517,-68.15573871224218,-68.13574154456138,-68.11583645299683,-68.0960233591115,-68.07630217893639,-68.05667282306884,-68.03713519677012,-68.0176892000622,-67.99833472782362,-67.97907166988472,-67.95989991112188,-67.94081933155104,-67.92182980642026,-67.90293120630156,-67.88412339718174,-67.86540624055245,-67.84677959349936,-67.82824330879039,-67.80979723496309,-67.7914412164111,-67.77317509346979,-67.75499870250084,-67.73691187597606,-67.71891444256018,-67.7010062271928,-67.68318705116941,-67.6654567322214,-67.64781508459527,-67.63026191913082,-67.61279704333847,-67.5954202614756,-67.57813137462196,-67.56093018075424,-67.54381647481956,-67.52679004880817,-67.50985069182511,-67.49299819016105,-67.4762323273621,-67.45955288429876,-67.44295963923392,-67.42645236788994,-67.41003084351482,-67.39369483694749,-67.37744411668211,-67.36127844893151,-67.34519759768976,-67.32920132479371,-67.31328938998384,-67.29746155096399,-67.28171756346038,-67.26605718127968,-67.25048015636617,-67.23498623885806,-67.21957517714299,-67.20424671791255,-67.18900060621611,-67.17383658551361,-67.15875439772766,-67.14375378329474,-67.12883448121553,-67.11399622910454,-67.09923876323877,-67.08456181860566,-67.0699651289502,-67.05544842682124,-67.04101144361704,-67.02665390962999,-67.0123755540906,-66.99817610521069,-66.98405529022581,-66.97001283543696,-66.95604846625152,-66.9421619072234,-66.92835288209258,-66.91462111382384,-66.90096632464474,-66.887388236083,-66.87388656900309,-66.8604610436422,-66.84711137964545,-66.83383729610048,-66.82063851157133,-66.80751474413172,-66.79446571139763,-66.78149113055926,-66.7685907184123,-66.75576419138866,-66.74301126558655,-66.73033165679985,-66.71772508054707,-66.70519125209955,-66.69272988650911,-66.68034069863518,-66.66802340317128,-66.65577771467102,-66.64360334757346,-66.63150001622797,-66.61946743491856,-66.60750531788763,-66.59561337935924,-66.58379133356183,-66.5720388947505,-66.5603557772287,-66.54874169536943,-66.53719636363607,-66.52571949660262,-66.51431080897346,-66.50297001560277,-66.49169683151332,-66.48049097191497,-66.46935215222267,-66.45828008807396,-66.44727449534615,-66.43633509017303,-66.42546158896117,-66.41465370840581,-66.40391116550634,-66.39323367758146,-66.38262096228385,-66.37207273761454,-66.3615887219369,-66.3511686339902,-66.34081219290292,-66.3305191182056,-66.32028912984346,-66.31012194818854,-66.30001729405164,-66.28997488869386,-66.27999445383786,-66.27007571167876,-66.26021838489477,-66.25042219665752,-66.24068687064207,-66.23101213103664,-66.22139770255207,-66.21184331043098,-66.20234868045667,-66.19291353896176,-66.18353761283657,-66.17422062953719,-66.16496231709337,-66.15576240411615,-66.14662061980519,-66.13753669395598,-66.12851035696667,-66.11954133984483,-66.11062937421386,-66.10177419231925,-66.09297552703467,-66.0842331118677,-66.07554668096557,-66.06691596912052,-66.05834071177506,-66.04982064502705,-66.04135550563456,-66.0329450310205,-66.02458895927725,-66.0162870291709,-66.00803898014546,-65.99984455232692,-65.99170348652706,-65.98361552424714,-65.9755804076815,-65.96759787972094,-65.95966768395594,-65.95178956467986,-65.94396326689184,-65.93618853629971,-65.92846511932268,-65.92079276309394,-65.91317121546315,-65.90560022499878,-65.89807954099031,-65.89060891345042,-65.88318809311696,-65.87581683145487,-65.86849488065796,-65.86122199365066,-65.85399792408957,-65.846822426365,-65.83969525560235,-65.83261616766349,-65.82558491914794,-65.81860126739407,-65.81166497048014,-65.80477578722528,-65.79793347719047,-65.7911378006793,-65.78438851873875,-65.77768539315996,-65.77102818647873,-65.76441666197623,-65.75785058367936,-65.75132971636128,-65.74485382554177,-65.73842267748749,-65.73203603921233,-65.72569367847757,-65.71939536379205,-65.71314086441225,-65.70692995034243,-65.70076239233455,-65.6946379618883,-65.688556431251,-65.6825175734175,-65.67652116213,-65.67056697187789,-65.66465477789748,-65.6587843561718,-65.65295548343018,-65.64716793714805,-65.64142149554652,-65.63571593759195,-65.63005104299558,-65.62442659221304,-65.61884236644391,-65.61329814763123,-65.60779371846087,-65.60232886236113,-65.59690336350205,-65.59151700679489,-65.58616957789148,-65.58086086318362,-65.5755906498024,-65.57035872561754,-65.56516487923675,-65.56000890000499,-65.55489057800378,-65.54980970405047,-65.54476606969752,-65.5397594672317,-65.53478968967342,-65.52985653077585,-65.52495978502425,-65.52009924763512,-65.51527471455537,-65.51048598246162,-65.50573284875928,-65.5010151115818,-65.49633256978979,-65.49168502297023,-65.48707227143564,-65.4824941162232,-65.4779503590939,-65.47344080253175,-65.46896524974288,-65.46452350465466,-65.46011537191491,-65.45574065689097,-65.45139916566887,-65.4470907050525,-65.44281508256266,-65.43857210643624,-65.43436158562537,-65.4301833297965,-65.42603714932959,-65.42192285531716,-65.4178402595635,-65.41378917458378,-65.40976941360314,-65.40578079055587,-65.4018231200845,-65.39789621753897,-65.39399989897576,-65.390133981157,-65.38629828154966,-65.38249261832458,-65.37871681035573,-65.3749706772193,-65.37125403919282,-65.36756671725436,-65.36390853308163,-65.36027930905114,-65.35667886823735,-65.35310703441185,-65.34956363204245,-65.34604848629239,-65.34256142301948,-65.33910226877525,-65.33567085080414,-65.3322669970426,-65.32889053611832,-65.32554129734937,-65.32221911074335,-65.31892380699657,-65.31565521749322,-65.31241317430455,-65.30919751018803,-65.30600805858651,-65.30284465362745,-65.299707130122,-65.29659532356426,-65.29350907013043,-65.29044820667797,-65.28741257074478,-65.28440200054843,-65.28141633498524,-65.27845541362956,-65.27551907673286,-65.27260716522301,-65.26971952070333,-65.26685598545188,-65.26401640242058,-65.26120061523439,-65.25840846819051,-65.25563980625752,-65.25289447507458,-65.2501723209506,-65.24747319086337]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1405\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1406\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1401\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1402\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.1}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1403\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1413\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1407\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1408\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1409\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",[0.0,0.025,0.05,0.075,0.09999999999999999,0.12499999999999999,0.15,0.17500000000000002,0.20000000000000004,0.22500000000000006,0.25000000000000006,0.2750000000000001,0.3000000000000001,0.3250000000000001,0.35000000000000014,0.37500000000000017,0.4000000000000002,0.4250000000000002,0.45000000000000023,0.47500000000000026,0.5000000000000002,0.5250000000000001,0.55,0.575,0.5999999999999999,0.6249999999999998,0.6499999999999997,0.6749999999999996,0.6999999999999995,0.7249999999999994,0.7499999999999993,0.7749999999999992,0.7999999999999992,0.8249999999999991,0.849999999999999,0.8749999999999989,0.8999999999999988,0.9249999999999987,0.9499999999999986,0.9749999999999985,0.9999999999999984,1.0249999999999984,1.0499999999999983,1.0749999999999982,1.099999999999998,1.124999999999998,1.149999999999998,1.1749999999999978,1.1999999999999977,1.2249999999999976,1.2499999999999976,1.2749999999999975,1.2999999999999974,1.3249999999999973,1.3499999999999972,1.3749999999999971,1.399999999999997,1.424999999999997,1.4499999999999968,1.4749999999999968,1.4999999999999967,1.5249999999999966,1.5499999999999965,1.5749999999999964,1.5999999999999963,1.6249999999999962,1.6499999999999961,1.674999999999996,1.699999999999996,1.7249999999999959,1.7499999999999958,1.7749999999999957,1.7999999999999956,1.8249999999999955,1.8499999999999954,1.8749999999999953,1.8999999999999952,1.9249999999999952,1.949999999999995,1.974999999999995,1.999999999999995,2.024999999999995,2.0499999999999954,2.0749999999999957,2.099999999999996,2.1249999999999964,2.149999999999997,2.174999999999997,2.1999999999999975,2.224999999999998,2.2499999999999982,2.2749999999999986,2.299999999999999,2.3249999999999993,2.3499999999999996,2.375,2.4000000000000004,2.4250000000000007,2.450000000000001,2.4750000000000014,2.5000000000000018,2.525000000000002,2.5500000000000025,2.575000000000003,2.600000000000003,2.6250000000000036,2.650000000000004,2.6750000000000043,2.7000000000000046,2.725000000000005,2.7500000000000053,2.7750000000000057,2.800000000000006,2.8250000000000064,2.8500000000000068,2.875000000000007,2.9000000000000075,2.925000000000008,2.950000000000008,2.9750000000000085,3.000000000000009,3.0250000000000092,3.0500000000000096,3.07500000000001,3.1000000000000103,3.1250000000000107,3.150000000000011,3.1750000000000114,3.2000000000000117,3.225000000000012,3.2500000000000124,3.275000000000013,3.300000000000013,3.3250000000000135,3.350000000000014,3.375000000000014,3.4000000000000146,3.425000000000015,3.4500000000000153,3.4750000000000156,3.500000000000016,3.5250000000000163,3.5500000000000167,3.575000000000017,3.6000000000000174,3.6250000000000178,3.650000000000018,3.6750000000000185,3.700000000000019,3.725000000000019,3.7500000000000195,3.77500000000002,3.8000000000000203,3.8250000000000206,3.850000000000021,3.8750000000000213,3.9000000000000217,3.925000000000022,3.9500000000000224,3.9750000000000227,4.000000000000023,4.0250000000000234,4.050000000000024,4.075000000000024,4.1000000000000245,4.125000000000025,4.150000000000025,4.175000000000026,4.200000000000026,4.225000000000026,4.250000000000027,4.275000000000027,4.300000000000027,4.325000000000028,4.350000000000028,4.375000000000028,4.400000000000029,4.425000000000029,4.4500000000000295,4.47500000000003,4.50000000000003,4.5250000000000306,4.550000000000031,4.575000000000031,4.600000000000032,4.625000000000032,4.650000000000032,4.675000000000033,4.700000000000033,4.725000000000033,4.750000000000034,4.775000000000034,4.8000000000000345,4.825000000000035,4.850000000000035,4.8750000000000355,4.900000000000036,4.925000000000036,4.950000000000037,4.975000000000037,5.000000000000037,5.025000000000038,5.050000000000038,5.075000000000038,5.100000000000039,5.125000000000039,5.150000000000039,5.17500000000004,5.20000000000004,5.2250000000000405,5.250000000000041,5.275000000000041,5.300000000000042,5.325000000000042,5.350000000000042,5.375000000000043,5.400000000000043,5.425000000000043,5.450000000000044,5.475000000000044,5.500000000000044,5.525000000000045,5.550000000000045,5.5750000000000455,5.600000000000046,5.625000000000046,5.6500000000000465,5.675000000000047,5.700000000000047,5.725000000000048,5.750000000000048,5.775000000000048,5.800000000000049,5.825000000000049,5.850000000000049,5.87500000000005,5.90000000000005,5.9250000000000504,5.950000000000051,5.975000000000051,6.0000000000000515,6.025000000000052,6.050000000000052,6.075000000000053,6.100000000000053,6.125000000000053,6.150000000000054,6.175000000000054,6.200000000000054,6.225000000000055,6.250000000000055,6.275000000000055,6.300000000000056,6.325000000000056,6.3500000000000565,6.375000000000057,6.400000000000057,6.4250000000000576,6.450000000000058,6.475000000000058,6.500000000000059,6.525000000000059,6.550000000000059,6.57500000000006,6.60000000000006,6.62500000000006,6.650000000000061,6.675000000000061,6.7000000000000615,6.725000000000062,6.750000000000062,6.7750000000000625,6.800000000000063,6.825000000000063,6.850000000000064,6.875000000000064,6.900000000000064,6.925000000000065,6.950000000000065,6.975000000000065,7.000000000000066,7.025000000000066,7.050000000000066,7.075000000000067,7.100000000000067,7.1250000000000675,7.150000000000068,7.175000000000068,7.200000000000069,7.225000000000069,7.250000000000069,7.27500000000007,7.30000000000007,7.32500000000007,7.350000000000071,7.375000000000071,7.400000000000071,7.425000000000072,7.450000000000072,7.4750000000000725,7.500000000000073,7.525000000000073,7.5500000000000735,7.575000000000074,7.600000000000074,7.625000000000075,7.650000000000075,7.675000000000075,7.700000000000076,7.725000000000076,7.750000000000076,7.775000000000077,7.800000000000077,7.8250000000000774,7.850000000000078,7.875000000000078,7.9000000000000785,7.925000000000079,7.950000000000079,7.97500000000008,8.00000000000008,8.025000000000079,8.050000000000077,8.075000000000076,8.100000000000074,8.125000000000073,8.150000000000071,8.17500000000007,8.200000000000069,8.225000000000067,8.250000000000066,8.275000000000064,8.300000000000063,8.325000000000061,8.35000000000006,8.375000000000059,8.400000000000057,8.425000000000056,8.450000000000054,8.475000000000053,8.500000000000052,8.52500000000005,8.550000000000049,8.575000000000047,8.600000000000046,8.625000000000044,8.650000000000043,8.675000000000042,8.70000000000004,8.725000000000039,8.750000000000037,8.775000000000036,8.800000000000034,8.825000000000033,8.850000000000032,8.87500000000003,8.900000000000029,8.925000000000027,8.950000000000026,8.975000000000025,9.000000000000023,9.025000000000022,9.05000000000002,9.075000000000019,9.100000000000017,9.125000000000016,9.150000000000015,9.175000000000013,9.200000000000012,9.22500000000001,9.250000000000009,9.275000000000007,9.300000000000006,9.325000000000005,9.350000000000003,9.375000000000002,9.4,9.424999999999999,9.449999999999998,9.474999999999996,9.499999999999995,9.524999999999993,9.549999999999992,9.57499999999999,9.599999999999989,9.624999999999988,9.649999999999986,9.674999999999985,9.699999999999983,9.724999999999982,9.74999999999998,9.774999999999979,9.799999999999978,9.824999999999976,9.849999999999975,9.874999999999973,9.899999999999972,9.92499999999997,9.949999999999969,9.974999999999968,9.999999999999966,10.024999999999965,10.049999999999963,10.074999999999962,10.09999999999996,10.12499999999996,10.149999999999958,10.174999999999956,10.199999999999955,10.224999999999953,10.249999999999952,10.27499999999995,10.29999999999995,10.324999999999948,10.349999999999946,10.374999999999945,10.399999999999944,10.424999999999942,10.44999999999994,10.47499999999994,10.499999999999938,10.524999999999936,10.549999999999935,10.574999999999934,10.599999999999932,10.62499999999993,10.64999999999993,10.674999999999928,10.699999999999926,10.724999999999925,10.749999999999924,10.774999999999922,10.79999999999992,10.82499999999992,10.849999999999918,10.874999999999917,10.899999999999915,10.924999999999914,10.949999999999912,10.97499999999991,10.99999999999991,11.024999999999908,11.049999999999907,11.074999999999905,11.099999999999904,11.124999999999902,11.1499999999999,11.1749999999999,11.199999999999898,11.224999999999897,11.249999999999895,11.274999999999894,11.299999999999892,11.324999999999891,11.34999999999989,11.374999999999888,11.399999999999887,11.424999999999885,11.449999999999884,11.474999999999882,11.499999999999881,11.52499999999988,11.549999999999878,11.574999999999877,11.599999999999875,11.624999999999874,11.649999999999872,11.674999999999871,11.69999999999987,11.724999999999868,11.749999999999867,11.774999999999865,11.799999999999864,11.824999999999863,11.849999999999861,11.87499999999986,11.899999999999858,11.924999999999857,11.949999999999855,11.974999999999854,11.999999999999853,12.024999999999851,12.04999999999985,12.074999999999848,12.099999999999847,12.124999999999845,12.149999999999844,12.174999999999843,12.199999999999841,12.22499999999984,12.249999999999838,12.274999999999837,12.299999999999836,12.324999999999834,12.349999999999833,12.374999999999831,12.39999999999983,12.424999999999828,12.449999999999827,12.474999999999826,12.499999999999824,12.524999999999823,12.549999999999821,12.57499999999982,12.599999999999818,12.624999999999817,12.649999999999816,12.674999999999814,12.699999999999813,12.724999999999811,12.74999999999981,12.774999999999809,12.799999999999807,12.824999999999806,12.849999999999804,12.874999999999803,12.899999999999801,12.9249999999998,12.949999999999799,12.974999999999797,12.999999999999796,13.024999999999794,13.049999999999793,13.074999999999791,13.09999999999979,13.124999999999789,13.149999999999787,13.174999999999786,13.199999999999784,13.224999999999783,13.249999999999782,13.27499999999978,13.299999999999779,13.324999999999777,13.349999999999776,13.374999999999774,13.399999999999773,13.424999999999772,13.44999999999977,13.474999999999769,13.499999999999767,13.524999999999766,13.549999999999764,13.574999999999763,13.599999999999762,13.62499999999976,13.649999999999759,13.674999999999757,13.699999999999756,13.724999999999755,13.749999999999753,13.774999999999752,13.79999999999975,13.824999999999749,13.849999999999747,13.874999999999746,13.899999999999745,13.924999999999743,13.949999999999742,13.97499999999974,13.999999999999739,14.024999999999737,14.049999999999736,14.074999999999735,14.099999999999733,14.124999999999732,14.14999999999973,14.174999999999729,14.199999999999728,14.224999999999726,14.249999999999725,14.274999999999723,14.299999999999722,14.32499999999972,14.349999999999719,14.374999999999718,14.399999999999716,14.424999999999715,14.449999999999713,14.474999999999712,14.49999999999971,14.524999999999709,14.549999999999708,14.574999999999706,14.599999999999705,14.624999999999703,14.649999999999702,14.6749999999997,14.699999999999699,14.724999999999698,14.749999999999696,14.774999999999695,14.799999999999693,14.824999999999692,14.84999999999969,14.87499999999969,14.899999999999688,14.924999999999686,14.949999999999685,14.974999999999683,14.999999999999682,15.02499999999968,15.04999999999968,15.074999999999678,15.099999999999676,15.124999999999675,15.149999999999674,15.174999999999672,15.19999999999967,15.22499999999967,15.249999999999668,15.274999999999666,15.299999999999665,15.324999999999664,15.349999999999662,15.37499999999966,15.39999999999966,15.424999999999658,15.449999999999656,15.474999999999655,15.499999999999654,15.524999999999652,15.54999999999965,15.57499999999965,15.599999999999648,15.624999999999647,15.649999999999645,15.674999999999644,15.699999999999642,15.72499999999964,15.74999999999964,15.774999999999638,15.799999999999637,15.824999999999635,15.849999999999634,15.874999999999632,15.89999999999963,15.92499999999963,15.949999999999628,15.974999999999627,15.999999999999625,16.024999999999626,16.049999999999624,16.074999999999623,16.09999999999962,16.12499999999962,16.14999999999962,16.174999999999617,16.199999999999616,16.224999999999614,16.249999999999613,16.27499999999961,16.29999999999961,16.32499999999961,16.349999999999607,16.374999999999606,16.399999999999604,16.424999999999603,16.4499999999996,16.4749999999996,16.4999999999996,16.524999999999597,16.549999999999596,16.574999999999594,16.599999999999593,16.62499999999959,16.64999999999959,16.67499999999959,16.699999999999587,16.724999999999586,16.749999999999584,16.774999999999583,16.79999999999958,16.82499999999958,16.84999999999958,16.874999999999577,16.899999999999576,16.924999999999574,16.949999999999573,16.97499999999957,16.99999999999957,17.02499999999957,17.049999999999567,17.074999999999566,17.099999999999564,17.124999999999563,17.14999999999956,17.17499999999956,17.19999999999956,17.224999999999557,17.249999999999556,17.274999999999554,17.299999999999553,17.32499999999955,17.34999999999955,17.37499999999955,17.399999999999547,17.424999999999546,17.449999999999545,17.474999999999543,17.49999999999954,17.52499999999954,17.54999999999954,17.574999999999537,17.599999999999536,17.624999999999535,17.649999999999533,17.67499999999953,17.69999999999953,17.72499999999953,17.749999999999527,17.774999999999526,17.799999999999525,17.824999999999523,17.849999999999522,17.87499999999952,17.89999999999952,17.924999999999518,17.949999999999516,17.974999999999515,17.999999999999513,18.024999999999512,18.04999999999951,18.07499999999951,18.099999999999508,18.124999999999506,18.149999999999505,18.174999999999503,18.199999999999502,18.2249999999995,18.2499999999995,18.274999999999498,18.299999999999496,18.324999999999495,18.349999999999493,18.374999999999492,18.39999999999949,18.42499999999949,18.449999999999488,18.474999999999486,18.499999999999485,18.524999999999483,18.549999999999482,18.57499999999948,18.59999999999948,18.624999999999478,18.649999999999476,18.674999999999475,18.699999999999473,18.724999999999472,18.74999999999947,18.77499999999947,18.799999999999468,18.824999999999466,18.849999999999465,18.874999999999464,18.899999999999462,18.92499999999946,18.94999999999946,18.974999999999458,18.999999999999456,19.024999999999455,19.049999999999454,19.074999999999452,19.09999999999945,19.12499999999945,19.149999999999448,19.174999999999446,19.199999999999445,19.224999999999444,19.249999999999442,19.27499999999944,19.29999999999944,19.324999999999438,19.349999999999437,19.374999999999435,19.399999999999434,19.424999999999432,19.44999999999943,19.47499999999943,19.499999999999428,19.524999999999427,19.549999999999425,19.574999999999424,19.599999999999422,19.62499999999942,19.64999999999942,19.674999999999418,19.699999999999417,19.724999999999415,19.749999999999414,19.774999999999412,19.79999999999941,19.82499999999941,19.849999999999408,19.874999999999407,19.899999999999405,19.924999999999404,19.949999999999402,19.9749999999994,19.9999999999994,20.024999999999398,20.049999999999397,20.074999999999395,20.099999999999394,20.124999999999392,20.14999999999939,20.17499999999939,20.199999999999388,20.224999999999387,20.249999999999385,20.274999999999384,20.299999999999383,20.32499999999938,20.34999999999938,20.37499999999938,20.399999999999377,20.424999999999375,20.449999999999374,20.474999999999373,20.49999999999937,20.52499999999937,20.54999999999937,20.574999999999367,20.599999999999365,20.624999999999364,20.649999999999363,20.67499999999936,20.69999999999936,20.72499999999936,20.749999999999357,20.774999999999356,20.799999999999354,20.824999999999353,20.84999999999935,20.87499999999935,20.89999999999935,20.924999999999347,20.949999999999346,20.974999999999344,20.999999999999343,21.02499999999934,21.04999999999934,21.07499999999934,21.099999999999337,21.124999999999336,21.149999999999334,21.174999999999333,21.19999999999933,21.22499999999933,21.24999999999933,21.274999999999327,21.299999999999326,21.324999999999324,21.349999999999323,21.37499999999932,21.39999999999932,21.42499999999932,21.449999999999317,21.474999999999316,21.499999999999314,21.524999999999313,21.54999999999931,21.57499999999931,21.59999999999931,21.624999999999307,21.649999999999306,21.674999999999304,21.699999999999303,21.7249999999993,21.7499999999993,21.7749999999993,21.799999999999297,21.824999999999296,21.849999999999294,21.874999999999293,21.89999999999929,21.92499999999929,21.94999999999929,21.974999999999287,21.999999999999286,22.024999999999284,22.049999999999283,22.07499999999928,22.09999999999928,22.12499999999928,22.149999999999277,22.174999999999276,22.199999999999275,22.224999999999273,22.24999999999927,22.27499999999927,22.29999999999927,22.324999999999267,22.349999999999266,22.374999999999265,22.399999999999263,22.42499999999926,22.44999999999926,22.47499999999926,22.499999999999257,22.524999999999256,22.549999999999255,22.574999999999253,22.599999999999252,22.62499999999925,22.64999999999925,22.674999999999248,22.699999999999246,22.724999999999245,22.749999999999243,22.774999999999242,22.79999999999924,22.82499999999924,22.849999999999238,22.874999999999236,22.899999999999235,22.924999999999233,22.949999999999232,22.97499999999923,22.99999999999923,23.024999999999228,23.049999999999226,23.074999999999225,23.099999999999223,23.124999999999222,23.14999999999922,23.17499999999922,23.199999999999218,23.224999999999216,23.249999999999215,23.274999999999213,23.299999999999212,23.32499999999921,23.34999999999921,23.374999999999208,23.399999999999206,23.424999999999205,23.449999999999203,23.474999999999202,23.4999999999992,23.5249999999992,23.549999999999198,23.574999999999196,23.599999999999195,23.624999999999194,23.649999999999192,23.67499999999919,23.69999999999919,23.724999999999188,23.749999999999186,23.774999999999185,23.799999999999184,23.824999999999182,23.84999999999918,23.87499999999918,23.899999999999178,23.924999999999176,23.949999999999175,23.974999999999174,23.999999999999172,24.02499999999917,24.04999999999917,24.074999999999168,24.099999999999167,24.124999999999165,24.149999999999164,24.174999999999162,24.19999999999916,24.22499999999916,24.249999999999158,24.274999999999157,24.299999999999155,24.324999999999154,24.349999999999152,24.37499999999915,24.39999999999915,24.424999999999148,24.449999999999147,24.474999999999145,24.499999999999144,24.524999999999142,24.54999999999914,24.57499999999914,24.599999999999138,24.624999999999137,24.649999999999135,24.674999999999134,24.699999999999132,24.72499999999913,24.74999999999913,24.774999999999128,24.799999999999127,24.824999999999125,24.849999999999124,24.874999999999122,24.89999999999912,24.92499999999912,24.949999999999118,24.974999999999117,24.999999999999115]],[\"y\",[-65.0,-64.9999887728352,-64.99995628441064,-64.99989892130402,-64.99981776440134,-64.99971593404454,-64.99959696409681,-64.9994640945174,-64.99932005820553,-64.99916707959999,-64.99900694572524,-64.99884109066289,-64.99867067185168,-64.99849663240401,-64.99831974967087,-64.99814067221564,-64.9979599476568,-64.99777804356196,-64.99759536315324,-64.99741225717617,-64.99722903294513,-64.997045961312,-64.99686328210359,-64.99668120842533,-64.99649993011919,-64.99631961658532,-64.99614041911998,-64.99596247288079,-64.99578589856121,-64.99561080383481,-64.99543728461397,-64.99526542615743,-64.99509530405204,-64.99492698508901,-64.99476052804992,-64.99459598441516,-64.9944333990045,-64.99427281055823,-64.99411425226526,-64.99395775224443,-64.99380333398332,-64.9936510167393,-64.99350081590609,-64.99335274334918,-64.9932068077131,-64.9930630147029,-64.99292136734223,-64.99278186620997,-64.99264450965734,-64.99250929400716,-64.99237621373675,-64.99224526164582,-64.99211642901071,-64.99198970572593,-64.99186508043432,-64.99174254064651,-64.99162207285073,-64.99150366261364,-64.9913872946731,-64.99127295302327,-64.99116062099287,-64.99105028131714,-64.99094191620388,-64.99083550739412,-64.99073103621798,-64.99062848364582,-64.99052783033534,-64.99042905667477,-64.99033214282261,-64.99023706874397,-64.99014381424404,-64.9900523589988,-64.98996268258311,-64.9898747644965,-64.98978858418687,-64.98970412107208,-64.98962135455983,-64.9895402640658,-64.98946082903024,-64.98938302893315,-64.98930684330816,-64.98923225175508,-64.98915923395158,-64.98908776966351,-64.98901783875456,-64.98894942119492,-64.98888249706904,-64.9888170465829,-64.98875305007034,-64.98869048799891,-64.98862934097504,-64.98856958974879,-64.98851121521798,-64.98845419843201,-64.98839852059504,-64.98834416306907,-64.98829110737641,-64.98823933520198,-64.98818882839521,-64.98813956897175,-64.98809153911486,-64.98804472117659,-64.98799909767875,-64.98795465131361,-64.9879113649446,-64.98786922160656,-64.98782820450614,-64.9877882970218,-64.98774948270386,-64.98771174527435,-64.98767506862673,-64.98763943682557,-64.9876048341061,-64.98757124487368,-64.9875386537032,-64.98750704533843,-64.98747640469125,-64.98744671684085,-64.98741796703293,-64.98739014067873,-64.98736322335415,-64.98733720079875,-64.98731205891472,-64.98728778376584,-64.98726436157636,-64.98724177873002,-64.98722002176875,-64.98719907739162,-64.98717893245369,-64.98715957396473,-64.9871409890881,-64.98712316513955,-64.9871060895859,-64.98708975004389,-64.98707413427894,-64.98705923020385,-64.98704502587759,-64.987031509504,-64.98701866943061,-64.9870064941473,-64.98699497228505,-64.98698409261473,-64.98697384404576,-64.98696421562494,-64.98695519653506,-64.98694677609379,-64.98693894375232,-64.98693168909415,-64.98692500183381,-64.9869188718157,-64.98691328901273,-64.98690824352518,-64.98690372557944,-64.98689972552677,-64.98689623384209,-64.98689324112283,-64.98689073808761,-64.98688871557513,-64.98688716454295,-64.98688607606633,-64.986885441337,-64.986885251662,-64.9868854984626,-64.98688617327304,-64.98688726773939,-64.98688877361852,-64.9868906827768,-64.98689298718915,-64.98689567893776,-64.98689875021108,-64.98690219330271,-64.98690600061028,-64.98691016463434,-64.98691467797738,-64.98691953334263,-64.9869247235331,-64.98693024145048,-64.9869360800941,-64.9869422325599,-64.98694869203939,-64.98695545181864,-64.98696250527728,-64.98696984588742,-64.98697746721274,-64.98698536290749,-64.98699352671547,-64.98700195246904,-64.98701063408822,-64.98701956557971,-64.9870287410359,-64.98703815463395,-64.98704780063491,-64.98705767338271,-64.98706776730327,-64.98707807690363,-64.98708859677099,-64.98709932157186,-64.98711024605112,-64.9871213650312,-64.98713267341117,-64.98714416616588,-64.8226332357688,-64.41778156738606,-63.80145217128179,-63.03831557341678,-62.18831391158637,-61.29570722092817,-60.39024761721431,-59.4910233982442,-58.60988749695634,-57.75392118949451,-56.927085087972195,-56.13130350606939,-55.36717653914236,-54.63445092653982,-53.93233386986974,-53.25970339579402,-52.61524967172253,-51.99756970584687,-51.4052302971892,-50.83680923525851,-50.290921558275485,-49.76623554945303,-49.26148170823225,-48.775456944531996,-48.30702556021708,-47.8551181060268,-47.41872886947415,-46.99691251596802,-46.58878024162663,-46.19349568117315,-45.81027073345513,-45.43836141035957,-45.07706377506207,-44.72571000761371,-44.3836646162662,-44.05032079913798,-43.725096951032924,-43.40743330315792,-43.09678867822293,-42.79263733927961,-42.6589884792718,-42.7711561975713,-43.09977936836421,-43.579692562741236,-44.15045953859587,-44.76732524785613,-45.40004077570644,-46.02901917726002,-46.641907645785466,-47.23112490055146,-47.79221152309151,-48.32274691427315,-48.82163831558356,-49.28865064821866,-49.72409285701662,-50.128607068722566,-50.503026086002755,-50.84827673999734,-51.16531420642551,-51.45507726476405,-51.71845767131426,-51.95627893974634,-52.16928125159719,-52.35811018755721,-52.523307626950846,-52.66530360437226,-52.7844082029479,-52.880802745815764,-52.95452964956876,-53.00548034431715,-53.03338065662088,-53.03777300102487,-53.01799463728619,-52.97315112576454,-52.902083954742416,-52.80333112450072,-52.67507926320949,-52.515105640142664,-52.32070827539312,-52.08862230450679,-51.8149209916326,-51.494900560018955,-51.12294977181336,-50.692408671862104,-50.19542725616767,-49.62284571455597,-48.964135545947855,-48.20746752516809,-47.340008660423855,-46.3485895872387,-45.220903966570546,-43.94735530545774,-42.52349259615904,-40.95265303708587,-39.24806418977852,-37.43350312320612,-35.54190650622487,-33.61203736298314,-31.684064473089375,-29.79525944269362,-27.976813607237943,-26.252228349325097,-24.63717728567521,-23.140403785885955,-21.765139567105084,-20.510624551130586,-19.373465621024426,-18.34871665913084,-17.430662497977867,-16.61334373546541,-15.890879680251627,-15.25764688697881,-14.708361609361912,-14.238102762214007,-13.842301073260899,-13.516711341354608,-13.257378279837955,-13.060601992504253,-12.922906240384581,-12.841010869333875,-12.811808724415792,-12.832346813780159,-12.899811218543164,-13.011515153979152,-13.164889592900593,-13.35747591616178,-13.586920129155306,-13.850968260858616,-14.147462635014055,-14.4743387675712,-14.829622699381202,-15.2114286185253,-15.617956663481351,-16.04749082775383,-16.498396909816172,-16.96912047036994,-17.45818477300453,-17.96418869519276,-18.485804604886468,-19.021776204363405,-19.570916347882005,-20.132104843498297,-20.704286252373553,-21.286467701276777,-21.87771672592091,-22.47715916438013,-23.083977121183143,-23.69740702379543,-24.316737794082787,-24.94130915795737,-25.57051011667555,-26.203777603108218,-26.840595345632945,-27.48049296100269,-28.12304529551764,-28.767872030972796,-29.414637568095184,-30.063051195463157,-30.71286754618675,-31.36388733790426,-32.0159583839093,-32.668976854431016,-33.32288875717276,-33.977691594994106,-34.633436145788366,-35.29022829465814,-35.94823083068625,-36.607665098925004,-37.2688123713749,-37.932014767112896,-38.59767550956457,-39.26625825633301,-39.938285172334496,-40.6143333392106,-41.29502900336728,-41.98103906415167,-42.67305909903443,-43.37179712640545,-44.077952239116634,-44.79218723450883,-45.515094463775725,-46.2471543832171,-46.988686780430726,-47.73979543746207,-48.50030812605424,-49.2697152966176,-50.04711251006987,-50.83115331284281,-51.620020450175005,-52.41142351272139,-53.20262979353107,-53.99053200843183,-54.77175178562545,-55.54277223972023,-56.30008777820408,-57.04035592290026,-57.76053534699729,-58.45799671818894,-59.13059762078411,-59.77671853985172,-60.39526226054423,-60.985623034478316,-61.54763402405995,-62.081501929211974,-62.587736762683285,-63.06708303613453,-63.520456668450905,-63.948890105399265,-64.35348665621751,-64.73538398016186,-65.09572597364584,-65.43564194670658,-65.75623185085887,-66.05855634863549,-66.34363063278899,-66.61242106226175,-66.86584385067198,-67.10476520211009,-67.33000242870719,-67.54232570113712,-67.74246017711994,-67.9310883263047,-68.10885232568397,-68.2763564411642,-68.43416934109294,-68.58282630903533,-68.72283133805428,-68.8546590988999,-68.97875678118605,-69.09554581083744,-69.20542344957879,-69.30876428355758,-69.40592160873787,-69.49722872075132,-69.58300011663789,-69.66353261548177,-69.73910640443762,-69.80998601610207,-69.87642124265324,-69.93864799167466,-69.99688908811274,-70.0513550263912,-70.10224467632341,-70.14974594612242,-70.19403640550561,-70.23528387162183,-70.27364696029181,-70.30927560484143,-70.34231154462071,-70.37288878513519,-70.40113403156741,-70.42716709733371,-70.45110128920163,-70.47304377038543,-70.49309590293922,-70.51135357067835,-70.5279074837784,-70.54284346612643,-70.55624272643094,-70.56818211403366,-70.57873436030788,-70.58796830647387,-70.59594911861186,-70.60273849060576,-70.60839483570766,-70.61297346737176,-70.61652676996886,-70.61910435995622,-70.62075323804454,-70.621517932872,-70.6214406366663,-70.62056133334744,-70.61891791949802,-70.61654631860377,-70.6134805889434,-70.60975302548538,-70.60539425612905,-70.60043333260785,-70.59489781635477,-70.58881385961244,-70.58220628205505,-70.57509864317336,-70.56751331066012,-70.55947152501993,-70.5509934606145,-70.5420982833426,-70.53280420514253,-70.52312853549456,-70.51308773009059,-70.50269743682854,-70.491972539281,-70.48092719777797,-70.4695748882369,-70.45792843886467,-70.4460000648499,-70.43380140115686,-70.42134353352633,-70.4086370277824,-70.3956919575392,-70.38251793039566,-70.36912411270222,-70.35551925297777,-70.34171170405156,-70.32770944400025,-70.31352009594625,-70.2991509467801,-70.28460896486592,-70.2699008167857,-70.25503288317519,-70.24001127370117,-70.22484184122703,-70.20953019521097,-70.194081714379,-70.17850155871194,-70.16279468078432,-70.1469658364899,-70.13101959518772,-70.1149603493,-70.0987923233915,-70.08251958275879,-70.06614604155584,-70.0496754704811,-70.03311150404983,-70.0164576474741,-69.99971728317172,-69.98289367692402,-69.96598998370166,-69.94900925317611,-69.93195443493403,-69.91482838341018,-69.89763386255453,-69.88037355024727,-69.86305004247579,-69.84566585728611,-69.828223438521,-69.81072515935614,-69.79317332564536,-69.77557017908487,-69.75791790020655,-69.74021861120917,-69.72247437863636,-69.70468721590953,-69.6868590857235,-69.6689919023121,-69.6510875335909,-69.6331478031834,-69.61517449233725,-69.59716934173588,-69.57913405321179,-69.5610702913662,-69.54297968510042,-69.52486382906349,-69.50672428502077,-69.4885625831475,-69.47038022325157,-69.45217867592915,-69.43395938365688,-69.41572376182407,-69.39747319970799,-69.37920906139558,-69.3609326866542,-69.34264539175437,-69.32434847024714,-69.30604319369832,-69.28773081238215,-69.26941255593661,-69.25108963398237,-69.23276323670738,-69.21443453541912,-69.1961046830661,-69.17777481473063,-69.15944604809401,-69.14111948387615,-69.12279620625065,-69.10447728323699,-69.08616376707106,-69.06785669455516,-69.04955708738876,-69.03126595248106,-69.01298428224646,-68.99471305488376,-68.97645323464035,-68.9582057720619,-68.93997160422877,-68.9217516549796,-68.90354683512311,-68.8853580426386,-68.8671861628661,-68.84903206868651,-68.8308966206926,-68.81278066735128,-68.79468504515773,-68.77661057878207,-68.75855808120868,-68.7405283538691,-68.72252218676854,-68.70454035860682,-68.68658363689354,-68.6686527780587,-68.65074852755819,-68.63287161997526,-68.61502277911778,-68.59720271811184,-68.57941213949185,-68.56165173528747,-68.54392218710764,-68.52622416622178,-68.50855833363863,-68.49092534018276,-68.47332582656892,-68.45576042347467,-68.4382297516111,-68.42073442179208,-68.40327503500207,-68.38585218246268,-68.36846644569815,-68.35111839659962,-68.33380859748883,-68.3165376011807,-68.29930595104554,-68.28211418107043,-68.26496281592027,-68.24785237099837,-68.23078335250669,-68.21375625750584,-68.19677157397487,-68.17982978087096,-68.16293134818903,-68.14607673702126,-68.12926639961671,-68.11250077944095,-68.09578031123583,-68.0791054210794,-68.06247652644596,-68.04589403626628,-68.02935835098815,-68.01286986263712,-67.99642895487747,-67.98003600307358,-67.96369137435138,-67.94739542766045,-67.93114851383605,-67.91495097566181,-67.8988031479326,-67.88270535751772,-67.86665792342453,-67.85066115686232,-67.83471536130662,-67.8188208325638,-67.80297785883597,-67.78718672078634,-67.77144769160468,-67.75576103707343,-67.74012701563377,-67.7245458784523,-67.70901786948775,-67.69354322555816,-67.67812217640831,-67.66275494477725,-67.64744174646634,-67.63218279040728,-67.6169782787305,-67.60182840683372,-67.5867333634507,-67.57169333072021,-67.55670848425504,-67.54177899321134,-67.52690502035793,-67.51208672214581,-67.49732424877776,-67.482617744278,-67.46796734656198,-67.45337318750606,-67.43883539301751,-67.4243540831042,-67.40992937194456,-67.39556136795736,-67.38125017387154,-67.36699588679599,-67.3527985982892,-67.33865839442895,-67.32457535588176,-67.31054955797241,-67.2965810707531,-67.28266995907276,-67.2688162826459,-67.25502009612154,-67.2412814491518,-67.22760038646037,-67.21397694791071,-67.20041116857409,-67.1869030787973,-67.1734527042702,-67.16006006609291,-67.14672518084282,-67.13344806064117,-67.12022871321949,-67.10706714198557,-67.0939633460892,-67.08091732048753,-67.06792905601003,-67.05499853942324,-67.04212575349493,-67.02931067705805,-67.01655328507421,-67.0038535486968,-66.99121143533357,-66.978626908709,-66.96609992892607,-66.95363045252762,-66.94121843255733,-66.92886381862017,-66.91656655694244,-66.90432659043131,-66.89214385873386,-66.88001829829575,-66.86794984241924,-66.85593842132084,-66.84398396218839,-66.83208638923767,-66.8202456237685,-66.8084615842203,-66.79673418622713,-66.78506334267223,-66.77344896374204,-66.76189095697961,-66.7503892273376,-66.73894367723062,-66.72755420658714,-66.71622071290072,-66.70494309128084,-66.69372123450309,-66.68255503305885,-66.67144437520435,-66.66038914700931,-66.6493892324049,-66.63844451323118,-66.627554869284,-66.61672017836139,-66.6059403163093,-66.59521515706678,-66.58454457271074,-66.57392843350001,-66.56336660791891,-66.55285896272025,-66.54240536296778,-66.53200567207809,-66.52165975186192,-66.511367462565,-66.5011286629083,-66.49094321012765,-66.48081096001297,-66.47073176694684,-66.4607054839426,-66.45073196268183,-66.44081105355137,-66.43094260567977,-66.42112646697323,-66.411362484151,-66.40165050278019,-66.39199036731021,-66.38238192110656,-66.3728250064841,-66.36331946473993,-66.35386513618563,-66.34446186017907,-66.33510947515565,-66.32580781865914,-66.31655672737195,-66.30735603714488,-66.29820558302656,-66.2891051992921,-66.28005471947158,-66.27105397637786,-66.26210280213402,-66.25320102820025,-66.24434848540037,-66.2355450039478,-66.22679041347119,-66.21808454303945,-66.20942722118652,-66.20081827593546,-66.1922575348224,-66.1837448249198,-66.17527997285941,-66.16686280485482,-66.15849314672346,-66.15017082390841,-66.1418956614996,-66.1336674842547,-66.12548611661958,-66.11735138274841,-66.10926310652339,-66.10122111157393,-66.09322522129577,-66.08527525886934,-66.0773710472781,-66.06951240932622,-66.06169916765619,-66.05393114476576,-66.0462081630248,-66.03853004469173,-66.03089661192945,-66.0233076868212,-66.01576309138585,-66.00826264759306,-66.00080617737794,-65.99339350265555,-65.98602444533496,-65.97869882733305,-65.97141647058803,-65.96417719707264,-65.95698082880705,-65.94982718787143,-65.94271609641837,-65.93564737668478,-65.92862085100383,-65.92163634181627,-65.91469367168176,-65.90779266328983,-65.90093313947051,-65.89411492320482,-65.88733783763499,-65.88060170607432,-65.87390635201692,-65.86725159914722,-65.86063727134916,-65.85406319271512,-65.84752918755478,-65.84103508040364,-65.83458069603134,-65.82816585944973,-65.82179039592083,-65.8154541309645,-65.80915689036593,-65.80289850018292,-65.79667878675298,-65.7904975767002,-65.78435469694203,-65.77824997469573,-65.77218323748477,-65.76615431314494,-65.7601630298304,-65.75420921601948,-65.74829270052027,-65.74241331247623,-65.73657088137139,-65.73076523703561,-65.72499620964955,-65.7192636297495,-65.71356732823219,-65.70790713635925,-65.70228288576172,-65.69669440844427,-65.69114153678937,-65.68562410356137,-65.68014194191025,-65.67469488537552,-65.66928276788975,-65.66390542378218,-65.65856268778198,-65.65325439502165,-65.6479803810401,-65.64274048178574,-65.6375345336194,-65.63236237331719,-65.62722383807322,-65.62211876550218,-65.61704699364196,-65.61200836095601,-65.60700270633572,-65.60202986910264,-65.59708968901066,-65.59218200624807,-65.58730666143954,-65.58246349564803,-65.5776523503766,-65.57287306757019,-65.5681254896172,-65.56340945935118,-65.55872482005228,-65.55407141544869,-65.5494490897181,-65.54485768748889,-65.54029705384147,-65.53576703430939,-65.53126747488051,-65.52679822199805,-65.52235912256153,-65.5179500239278,-65.51357077391185,-65.50922122078772,-65.50490121328919,-65.50061060061056,-65.49634923240734,-65.49211695879688,-65.48791363035895,-65.48373909813621,-65.47959321363487,-65.475475828825,-65.47138679614099,-65.46732596848196,-65.46329319921207,-65.45928834216082,-65.4553112516233,-65.45136178236044,-65.44743978959923,-65.44354512903283,-65.43967765682075,-65.43583722958893,-65.4320237044298,-65.42823693890237,-65.4244767910322,-65.42074311931145,-65.41703578269876,-65.41335464061927,-65.40969955296455,-65.40607038009239,-65.40246698282678,-65.39888922245775,-65.39533696074115,-65.39181005989853,-65.38830838261688,-65.38483179204846,-65.3813801518105,-65.37795332598505,-65.37455117911858,-65.37117357622178,-65.36782038276927,-65.3644914646992,-65.36118668841303,-65.35790592077512,-65.35464902911245,-65.35141588121414,-65.34820634533122,-65.34502029017614,-65.34185758492244,-65.3387180992043,-65.3356017031162,-65.33250826721243,-65.32943766250672,-65.32638976047174,-65.32336443303873,-65.32036155259703,-65.31738099199362,-65.31442262453264,-65.31148632397496,-65.30857196453772,-65.30567942089378,-65.30280856817137,-65.29995928195348,-65.29713143827742,-65.29432491363436,-65.29153958496882,-65.28877532967812,-65.28603202561196,-65.28330955107187,-65.28060778481071,-65.27792660603217,-65.27526589439026,-65.2726255299888,-65.2700053933809,-65.26740536556844,-65.26482532800158,-65.26226516257822,-65.25972475164347,-65.2572039779892,-65.25470272485342,-65.25222087591983,-65.2497583153173,-65.24731492761927,-65.24489059784335,-65.2424852114507,-65.24009865434553,-65.23773081287464,-65.2353815738268,-65.2330508244323,-65.23073845236237,-65.22844434572875,-65.22616839308303,-65.22391048341629,-65.22167050615842,-65.21944835117772,-65.21724390878029,-65.21505706970962,-65.2128877251459,-65.2107357667057,-65.20860108644126,-65.20648357684013,-65.2043831308245,-65.2022996417508,-65.20023300340915,-65.1981831100228,-65.19614985624764,-65.19413313717166,-65.1921328483145,-65.19014888562681,-65.18818114548984,-65.18622952471485,-65.18429392054261]]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1414\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1415\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1410\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_dash\":[6]}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1411\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.1,\"line_dash\":[6]}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1412\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_alpha\":0.2,\"line_dash\":[6]}}}}],\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"p1240\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"PanTool\",\"id\":\"p1253\"},{\"type\":\"object\",\"name\":\"WheelZoomTool\",\"id\":\"p1254\",\"attributes\":{\"renderers\":\"auto\"}},{\"type\":\"object\",\"name\":\"BoxZoomTool\",\"id\":\"p1255\",\"attributes\":{\"dimensions\":\"both\",\"overlay\":{\"type\":\"object\",\"name\":\"BoxAnnotation\",\"id\":\"p1256\",\"attributes\":{\"syncable\":false,\"line_color\":\"black\",\"line_alpha\":1.0,\"line_width\":2,\"line_dash\":[4,4],\"fill_color\":\"lightgrey\",\"fill_alpha\":0.5,\"level\":\"overlay\",\"visible\":false,\"left\":{\"type\":\"number\",\"value\":\"nan\"},\"right\":{\"type\":\"number\",\"value\":\"nan\"},\"top\":{\"type\":\"number\",\"value\":\"nan\"},\"bottom\":{\"type\":\"number\",\"value\":\"nan\"},\"left_units\":\"canvas\",\"right_units\":\"canvas\",\"top_units\":\"canvas\",\"bottom_units\":\"canvas\",\"handles\":{\"type\":\"object\",\"name\":\"BoxInteractionHandles\",\"id\":\"p1262\",\"attributes\":{\"all\":{\"type\":\"object\",\"name\":\"AreaVisuals\",\"id\":\"p1261\",\"attributes\":{\"fill_color\":\"white\",\"hover_fill_color\":\"lightgray\"}}}}}}}},{\"type\":\"object\",\"name\":\"SaveTool\",\"id\":\"p1263\"},{\"type\":\"object\",\"name\":\"ResetTool\",\"id\":\"p1264\"},{\"type\":\"object\",\"name\":\"HelpTool\",\"id\":\"p1265\"}]}},\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1248\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1249\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1250\"},\"axis_label\":\"v (mV)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1251\"}}}],\"below\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1243\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1244\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1245\"},\"axis_label\":\"t (ms)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1246\"}}}],\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1247\",\"attributes\":{\"axis\":{\"id\":\"p1243\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1252\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"p1248\"}}},{\"type\":\"object\",\"name\":\"Legend\",\"id\":\"p1275\",\"attributes\":{\"items\":[{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1276\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.075\"},\"renderers\":[{\"id\":\"p1272\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1295\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"\"},\"renderers\":[{\"id\":\"p1292\"},{\"id\":\"p1330\"},{\"id\":\"p1367\"},{\"id\":\"p1404\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1314\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.15\"},\"renderers\":[{\"id\":\"p1311\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1351\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.225\"},\"renderers\":[{\"id\":\"p1348\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1388\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"amp=0.3\"},\"renderers\":[{\"id\":\"p1385\"}]}}]}}]}}]}};\n", " const render_items = [{\"docid\":\"442af86a-e340-4e06-b706-a4c962f450a2\",\"roots\":{\"p1232\":\"f63f4f05-a0f0-4dfa-b522-30795cedbebe\"},\"root_ids\":[\"p1232\"]}];\n", " void root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", " }\n", " if (root.Bokeh !== undefined) {\n", " embed_document(root);\n", " } else {\n", " let attempts = 0;\n", " const timer = setInterval(function(root) {\n", " if (root.Bokeh !== undefined) {\n", " clearInterval(timer);\n", " embed_document(root);\n", " } else {\n", " attempts++;\n", " if (attempts > 100) {\n", " clearInterval(timer);\n", " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", " }\n", " }\n", " }, 10, root)\n", " }\n", "})(window);" ], "application/vnd.bokehjs_exec.v0+json": "" }, "metadata": { "application/vnd.bokehjs_exec.v0+json": { "id": "p1232" } }, "output_type": "display_data" } ], "source": [ "f = plt.figure(x_axis_label=\"t (ms)\", y_axis_label=\"v (mV)\")\n", "amps = [0.075 * i for i in range(1, 5)]\n", "colors = [\"green\", \"blue\", \"red\", \"black\"]\n", "for amp, color in zip(amps, colors):\n", " stim.amp = amp\n", " for my_cell.dend.nseg, width in [(1, 2), (101, 1)]:\n", " h.finitialize(-65)\n", " h.continuerun(25)\n", " f.line(\n", " t,\n", " list(soma_v),\n", " line_width=width,\n", " legend_label=\"amp={:.3g}\".format(amp) if my_cell.dend.nseg == 1 else \"\",\n", " color=color,\n", " )\n", " f.line(t, list(dend_v), line_width=width, line_dash=\"dashed\", color=color)\n", "plt.show(f)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This code has only two changes to the previous code: (1) addition of the `for` loop for `dend.nseg` values and width with accompanying indentation changes, (2) a modification to the legend formula to only generate a legend for the `nseg=1` case since the colors are unchanged. (The calls to `f.line` are split onto multiple lines but this is only for readability; there is no difference to Python if it is on one line or on multiple lines.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here we see with the high-resolution simulation that the soma peaks should be reduced and delayed and the dendrite peaks increased relative to what was seen in the `nseg=1` case." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Exercise\n", "\n", "Modify the above example, increasing the low resolution case from `nseg=1` to find a low value of `nseg` that gives negligible error relative to the high-resolution `nseg=101` case. Hint: a non-quantitative way to proceed would be to find values such that all the thin and thick curves of a given color overlap. (Note that since we're plotting from the center of the dendrite, `nseg` should be odd, otherwise the center will fall on the segment boundaries and be ill-defined.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Advanced exercise" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Calculate the approximate absolute error for your low `nseg` solution that graphically overlaps the high `nseg` solution. Compare this to the error for the `nseg=1` case. (Since the true solution is unknown, approximate it with the high `nseg` solution.)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "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.12.10" } }, "nbformat": 4, "nbformat_minor": 2 }