{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Hacker's approach to NHST\n", "\n", "[Dataset download](https://s3.amazonaws.com/bebi103.caltech.edu/data/bee_sperm.csv)\n", "\n", "
" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "nbsphinx": "hidden", "tags": [] }, "outputs": [], "source": [ "#| code-fold: true\n", "\n", "# Colab setup ------------------\n", "import os, sys, subprocess\n", "if \"google.colab\" in sys.modules:\n", " cmd = \"pip install --upgrade polars iqplot watermark\"\n", " process = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE)\n", " stdout, stderr = process.communicate()\n", " data_path = \"https://s3.amazonaws.com/bebi103.caltech.edu/data/\"\n", "else:\n", " data_path = \"../data/\"\n", "# ------------------------------" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "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\nconst 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 \"\\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(\"fd4507dc-9ea3-458d-ba50-d7a201a7eac8\");\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.8.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.8.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.8.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.8.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.8.0.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(\"fd4507dc-9ea3-458d-ba50-d7a201a7eac8\")).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": "" }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "import polars as pl\n", "\n", "import numba\n", "\n", "import iqplot\n", "\n", "import bokeh.io\n", "bokeh.io.output_notebook()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In this lesson, we will perform null hypothesis significance tests (NHST) using the [drone sperm quality data set](https://s3.amazonaws.com/bebi103.caltech.edu/data/bee_sperm.csv). Of course, we need to load in the data set first." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "shape: (5, 18)
SpecimenTreatmentEnvironmentTreatmentNCSSSample IDColonyCageSampleSperm Volume per 500 ulQuantityViabilityRaw (%)QualityAge (d)InfertilAliveSpermQuantity MillionsAlive Sperm MillionsDead Sperm Millions
i64strstri64stri64i64i64i64i64f64f64i64i64i64f64f64f64
227"Control""Cage"1"C2-1-1"2112150000215000096.72638196.72638114020796172.152.0796170.070383
228"Control""Cage"1"C2-1-2"2122287500228750096.34980896.34980814022040012.28752.2040010.083499
229"Control""Cage"1"C2-1-3"213875008750098.7598.75140864060.08750.0864060.001094
230"Control""Cage"1"C2-1-4"2141875000187500093.28742193.28742114017491391.8751.7491390.125861
231"Control""Cage"1"C2-1-5"2151587500158750097.79250697.79250614015524561.58751.5524560.035044
" ], "text/plain": [ "shape: (5, 18)\n", "┌──────────┬───────────┬───────────┬───────────┬───┬───────────┬───────────┬───────────┬───────────┐\n", "│ Specimen ┆ Treatment ┆ Environme ┆ Treatment ┆ … ┆ AliveSper ┆ Quantity ┆ Alive ┆ Dead │\n", "│ --- ┆ --- ┆ nt ┆ NCSS ┆ ┆ m ┆ Millions ┆ Sperm ┆ Sperm │\n", "│ i64 ┆ str ┆ --- ┆ --- ┆ ┆ --- ┆ --- ┆ Millions ┆ Millions │\n", "│ ┆ ┆ str ┆ i64 ┆ ┆ i64 ┆ f64 ┆ --- ┆ --- │\n", "│ ┆ ┆ ┆ ┆ ┆ ┆ ┆ f64 ┆ f64 │\n", "╞══════════╪═══════════╪═══════════╪═══════════╪═══╪═══════════╪═══════════╪═══════════╪═══════════╡\n", "│ 227 ┆ Control ┆ Cage ┆ 1 ┆ … ┆ 2079617 ┆ 2.15 ┆ 2.079617 ┆ 0.070383 │\n", "│ 228 ┆ Control ┆ Cage ┆ 1 ┆ … ┆ 2204001 ┆ 2.2875 ┆ 2.204001 ┆ 0.083499 │\n", "│ 229 ┆ Control ┆ Cage ┆ 1 ┆ … ┆ 86406 ┆ 0.0875 ┆ 0.086406 ┆ 0.001094 │\n", "│ 230 ┆ Control ┆ Cage ┆ 1 ┆ … ┆ 1749139 ┆ 1.875 ┆ 1.749139 ┆ 0.125861 │\n", "│ 231 ┆ Control ┆ Cage ┆ 1 ┆ … ┆ 1552456 ┆ 1.5875 ┆ 1.552456 ┆ 0.035044 │\n", "└──────────┴───────────┴───────────┴───────────┴───┴───────────┴───────────┴───────────┴───────────┘" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df = pl.read_csv(\n", " os.path.join(data_path, \"bee_sperm.csv\"),\n", " null_values=[\"NO SPERM\", \"No Sperm\"],\n", " comment_prefix=\"#\",\n", ")\n", "df.head()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Because we will be using Numba'd functions to rapidly do our sampling, we will go ahead and slice out the subsets of the data frame we will use for inference as Numpy arrays. We will use the specimens that have a nonzero sperm count (including both alive and dead sperm)." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Extract Numpy arrays (only use values greater than zero for logs)\n", "inds = (pl.col(\"Alive Sperm Millions\") > 0) & (pl.col(\"Dead Sperm Millions\") > 0)\n", "dfs = df.filter(inds).partition_by('Treatment', as_dict=True)\n", "\n", "alive_ctrl = dfs[('Control',)].get_column(\"Alive Sperm Millions\").to_numpy()\n", "alive_pest = dfs[('Pesticide',)].get_column(\"Alive Sperm Millions\").to_numpy()\n", "dead_ctrl = dfs[('Control',)].get_column(\"Dead Sperm Millions\").to_numpy()\n", "dead_pest = dfs[('Pesticide',)].get_column(\"Dead Sperm Millions\").to_numpy()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Finally, so we have them available, we will define some of the utility functions we defined earlier when working with hacker stats." ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "@numba.njit\n", "def draw_bs_sample(data):\n", " \"\"\"Draw a bootstrap sample from a 1D data set.\"\"\"\n", " return np.random.choice(data, size=len(data))\n", " \n", "\n", "@numba.njit\n", "def bivariate_r(x, y):\n", " \"\"\"\n", " Compute plug-in estimate for the bivariate correlation coefficient.\n", " \"\"\"\n", " return (\n", " np.sum((x - np.mean(x)) * (y - np.mean(y)))\n", " / np.std(x)\n", " / np.std(y)\n", " / np.sqrt(len(x))\n", " / np.sqrt(len(y))\n", " )" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Permutation hypothesis tests\n", "\n", "Recall the steps for performing a NHST.\n", "\n", "1. Clearly state the null hypothesis.\n", "2. Define a **test statistic**, a scalar value that you can compute from data. Compute it directly from your measured data.\n", "3. *Simulate* data acquisition for the scenario where the null hypothesis is true. Do this many times, computing and storing the value of the test statistic each time.\n", "4. The fraction of simulations for which the test statistic is at least as extreme as the test statistic computed from the measured data is called the **p-value**, which is what you report.\n", "\n", "For one special type of hypothesis, there is a very straightforward way of simulating it. Here is our hypothesis: *the control and pesticide-treated samples have exactly the same distribution.* To simulate this, we take the following steps for two data sets, a control set with $n$ measurements and a test set the other with $m$.\n", "\n", "1. Concatenate the two data sets into one.\n", "2. Randomly scramble the order of the combined data set.\n", "3. Designate the first $n$ entries in this scrambled array to be \"control\" and the remaining to be \"test.\"\n", "\n", "This simulation is exact; it is as if the label of the data set has no meaning; hence the distributions of the two data sets are entirely equal. We test such a null hypothesis with a **permutation test**. A **permutation sample** is akin to a bootstrap sample; it is a new pair of data sets generated after scrambling the concatenated data set. A **permutation replicate** is a value of the test statistic computed from a permutation sample. For this test, we will use the difference of means as the test statistic. \n", "\n", "Let's code this up. We can write a function to draw a permutation sample, and then a function to draw permutation replicates for an arbitrary user-supplied summary statistic." ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "@numba.njit\n", "def draw_perm_sample(x, y):\n", " \"\"\"Generate a permutation sample.\"\"\"\n", " concat_data = np.concatenate((x, y))\n", " np.random.shuffle(concat_data)\n", " \n", " return concat_data[:len(x)], concat_data[len(x):]\n", "\n", "\n", "def draw_perm_reps(x, y, stat_fun, size=1):\n", " \"\"\"Generate array of permuation replicates.\"\"\"\n", " return np.array([stat_fun(*draw_perm_sample(x, y)) for _ in range(size)])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Since we will look at the difference of means specifically, we will also code up a custom function to draw replicates of the difference of means." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "@numba.njit(parallel=True)\n", "def draw_perm_reps_diff_mean(x, y, size=1):\n", " \"\"\"Generate array of permuation replicates.\"\"\"\n", " out = np.empty(size)\n", " for i in numba.prange(size):\n", " x_perm, y_perm = draw_perm_sample(x, y)\n", " out[i] = np.mean(x_perm) - np.mean(y_perm)\n", "\n", " return out" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "To perform the hypothesis test, then, with the difference of means as our test statistic, we have only to draw many replicates and then tally up how many of them are more extreme than the observed difference of means." ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "p-value = 0.0\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "OMP: Info #276: omp_set_nested routine deprecated, please use omp_set_max_active_levels instead.\n" ] } ], "source": [ "# Compute test statistic for original data set\n", "diff_mean = np.mean(alive_ctrl) - np.mean(alive_pest)\n", "\n", "# Draw replicates\n", "perm_reps = draw_perm_reps_diff_mean(alive_ctrl, alive_pest, size=10_000)\n", "\n", "# Compute p-value\n", "p_val = np.sum(perm_reps >= diff_mean) / len(perm_reps)\n", "\n", "print('p-value =', p_val)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Whoa! Wait a minute. The p-value is *zero*? This just means that in all of the 10,000 replicates we took, not one had a test statistic as extreme as was observed. We cannot resolve p-values much less than 0.001 with 10,000 permutation replicates. Let's try taking ten million replicates as see how we do. This will take a few seconds to run (which again highlights the utility of using Numpy arrays with Numba)." ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "p-value = 3.41e-05\n" ] } ], "source": [ "# Compute test statistic for original data set\n", "diff_mean = np.mean(alive_ctrl) - np.mean(alive_pest)\n", "\n", "# Draw replicates\n", "perm_reps = draw_perm_reps_diff_mean(alive_ctrl, alive_pest, size=10_000_000)\n", "\n", "# Compute p-value\n", "p_val = np.sum(perm_reps >= diff_mean) / len(perm_reps)\n", "\n", "print('p-value =', p_val)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "So, our p-value is quite small, less than $10^{-4}$. This means that the probability of getting a difference of means as extreme as was observed under the null hypothesis that the control and test samples were drawn from identical distribution is quite small." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Permutation hypothesis test for correlation\n", "\n", "As we continue to explore the data set, we might want to consider a hypothesis: dead and alive sperm counts are uncorrelated. It is possible that under this hypothesis, we could see correlation at the same level observed in the real data. We can test this hypothesis by permutation. In this case, we scramble the labels \"dead\" and \"alive\" and see what correlation we get. We will do 10 million permutation replicates. This will take a while to compute." ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "p-value control: 0.000e+00\n", "p-value pesticide: 1.600e-06\n", "\n" ] } ], "source": [ "# Compute bivariate r for actual data\n", "r_ctrl = bivariate_r(np.log(alive_ctrl), np.log(dead_ctrl))\n", "r_pest = bivariate_r(np.log(alive_pest), np.log(dead_pest))\n", "\n", "# Get permutation replicates\n", "perm_reps_ctrl = draw_perm_reps(\n", " np.log(alive_ctrl), np.log(dead_ctrl), bivariate_r, size=10_000_000\n", ")\n", "perm_reps_pest = draw_perm_reps(\n", " np.log(alive_pest), np.log(dead_pest), bivariate_r, size=10_000_000\n", ")\n", "\n", "# Compute p-value\n", "p_ctrl = np.sum(np.abs(perm_reps_ctrl) > np.abs(r_ctrl)) / len(perm_reps_ctrl)\n", "p_pest = np.sum(np.abs(perm_reps_pest) > np.abs(r_pest)) / len(perm_reps_pest)\n", "\n", "print(\n", " \"\"\"\n", "p-value control: {0:.3e}\n", "p-value pesticide: {1:.3e}\n", "\"\"\".format(\n", " p_ctrl, p_pest\n", " )\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Note that here we used the absolute value of the permutation replicates. We did this because we are interested to see if we get correlation at all, including anticorrelation. This is another essential piece of a hypothesis test: you need to define what it means to be more extreme. \n", "\n", "The p-value for both is tiny; not one in 10 million permutations for the control sample gave a correlation as high as was observed, and only 10 or so of the pesticide treated group. So, we would report something like $p < 10^{-6}$ for control and $p < 10^{-5}$ for pesticide." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Bootstrap hypothesis tests\n", "\n", "Permutation tests are great: they exactly simulate the null hypothesis that the two samples come from the same generative distribution. But they are limited to this specific null hypothesis. What if we had a different hypothesis, say only that the means of the two distributions we are comparing are equal, but other properties of the generative distributions need not be identical? In this case, we cannot use the permutations to simulate the null hypothesis.\n", "\n", "Instead, we can simulate the null hypothesis by *shifting* the means of the control and test distributions so that they are equal. We then take a bootstrap sample out of each of the shifted data sets. We compute our test statistic from these two bootstrap samples to get a bootstrap replicate. Then, the number of bootstrap replicates that are at least as extreme as the test statistic computed from the original data is used to compute the p-value. Let's see this in action. First, we'll see how to shift the data sets and what the resulting ECDFs look like." ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "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 = {\"06e3c2a9-a2b3-45f9-b439-88076f7cbc40\":{\"version\":\"3.8.0\",\"title\":\"Bokeh Application\",\"config\":{\"type\":\"object\",\"name\":\"DocumentConfig\",\"id\":\"p1099\",\"attributes\":{\"notifications\":{\"type\":\"object\",\"name\":\"Notifications\",\"id\":\"p1100\"}}},\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"p1008\",\"attributes\":{\"x_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1009\"},\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1010\"},\"x_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1017\"},\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1018\"},\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"p1015\"},\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1048\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1042\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1043\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1044\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/03FezwUBhwA8HN3Mq8PbjqMCckjHxTJ+mzK6o7NPM6q+2T6OER6aO6OzQjHLR8xrlU+i+tBXENePUjZ7iOxD5V3yckzj+u8dk0457D9s34/33++kt5Llok6zxok/89gcKp5F5/Co5QoyYBFK0zwbXGOaW2Gje33J6f0PIEJw1NhpuUbrk7ObfbFGdYLQeTYBjhUSzQtvvUHzO6XV58Lr4dTSXKtcdNa2DPsS2mnpBIOnfs2hiIqhRkBWTtG/O7s+/CJst7mAPtGOFQakWTF7YbvzJbTOyb7YPJJuQ0/uB+WNSi6XUfxI/6nz4guvIZldZIMnmoEfhdgac3gjsP+lKaB1ulJuCozuTMnRApb7PFxICW9hd2cck1q0mXw9uT8xRLiFGx8k2GWboLzIz8NNjyNf2csfCg8NQ3vfTDUTfObgbkefJkgdhYepA5537edgz/hJCTwduI9qfO0w414tFL5p+05ORw7kNjFjX8HN1boOHLO4so3g2X7TP6B4+iTZe3UeTh1ufYn98r3sHqLZaQPcQFOuOKd1uyHW7wXa9KO4zVtw9e6+PhRj3H6pBg/lKsRnbNlERbSJ/Yul+BRzlf6uibw35JK6/46uATH1cuqygvxG/lmjb4uCvh20S5zhwt4fIzajMJ0GXbl9qRsp+MlR69Li4vxV1Yhli5NuOcvYd2uhkrYkXXwVK057pozViCxxPsYNg+N5PjxYmcNwrYV2P4Rr7okTgX70Lf8GFmFZ+r2vPJex20DZ1Jvl67CZ9fZrylduLYeUxptvAZfbvZXRX+O97H9yDuS8FtP0262n8drd8U+bxfg2nlJu3eqNmxTf5clWIczRuM2GwzilWRvX72wf+GgTLcR72ycmzVbWkkgeH64cPSxZqsXTiuhF33MwT8zGiroEOHPni+bXa3A9Xvn7SQduJcGf5tQjvsvkw7kb1aDRYLZGN8Q/G+9+YK7GxbWaPCI8fgJ3S/MCrcS4d2sn8d/aMPX5/StXVT4y6EXKzcIJDhxnUI94owX2TnNVtBxpkHbUkQ7TmwQMQdW8XuUQA6LSobtCpIK5ixw69AeD6c9OIUa67Z4EtdpCRzWYuMhVA7LJ1od9rLnmemz8ewmxdbzfJyZ6qeyF+PhLvcXJr7eBFfIzlxUBOF5q5VPykLwlM7fv1Lj4BNZU1GOLzes3+k+2Y9bqan9yiRrwBZp1x/X5eF2S04kA4OPYKYvKcLBHU+kjj1QCnBjSaOUJcQF1VfjR1I1YcNjiv20fjwiSFBL5GrBbO2FKnEKfo/v8c0LPR2Y5i++fMkPr6kIyl47hH+fMZF5LBuXEba8UaTowupr42MzK3qwdV5+a5a6PtzVF6ycNsdXNx3Of3sNnx1+ZBOebgT/Bwy2V8cwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1049\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1050\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1045\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1046\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1047\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1057\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1051\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1052\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1053\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1058\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1059\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1054\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1055\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1056\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1066\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1060\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1061\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1062\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1067\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1068\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1063\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1064\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1065\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1075\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1069\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1070\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1071\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/0XFWUwSABgAYMAzNDTX1EFtVobZ3PJomctG5ZboTNPMdDqHydRZbKUzz9KaNtGheWUebJTmqKF4rZSxzikFIXNWC0VNDEsTwQtlI+ml/v97+ZgflV2Vp9UM5r8JuZUrrxqn4E+TwfVUFy38vGYhnXcMH+q1fjFf/wG7xTGVnC1cuFzBL7DRwe1JGqqPBGfW3tjsf7IAfye1dkzzF+HAcC9zixiXyDsPmEuX4L3sJo4p9DdcTH2bNmTA6zrkit77y3AElWP8/A235FMI18h6ODbHM/PgYzzDqqR/ncGfjWouhpeswLkM51SrnxG+2tefOVmCV8ynRmZx8arjCVG9JryULFKSw1ZhysShrVLnNdi7Tqs8fAkX+tOiOwM34LUTbQVutXg7/RHNw3kTrplzn67wxkf5wVZJLE4blKaoKCY4613y+GoMPnnhcnVDIX7IUXo7zYgvzRiII+e34KJ7voMv3bbh/VWZEi0Lj5QRn4r4eKNeSAuS4XrFzlHFGG7SGoNCBsxwOm92xH6XBS7a8htu2od7UgfPBvjj8eUE+VI8nroUVW0nxauyBPM9mj/wYlKeg1S+A3OpfYS+dCs8kiH6KR7D2dEWUsU27v++SUgIJpz5P71PIrecw8sCNXmJArzVlRscr8B75k7q1iOIcJSKTNTycG42S8CbwkPr5ziydfxNW7lM4EaCHfe8vvLQB6c6dJcMheFhLSl3yV149impJsLGBi6rZperO/CNB4zdxFl8ipSoZhFs4RyxNmLjJq7oylFpSHYwiy64E9KPy6xBDC8Dbut0a4jhbg/nywq4Ex/wmBfNvqpkB9hg1Mc5i3Fh4bTH8CieoBkbKA5whGsHrKbUNifYrNOybRso8PiR3F/uahe4TM00NpNc4bRunYiVj/8FPVXBr0AFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1076\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1077\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1072\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1073\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1074\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1084\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1078\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1079\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1080\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1085\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1086\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1081\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1082\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1083\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1093\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1087\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1088\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1089\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1094\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1095\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1090\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1091\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1092\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}}],\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"p1016\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"PanTool\",\"id\":\"p1029\"},{\"type\":\"object\",\"name\":\"WheelZoomTool\",\"id\":\"p1030\",\"attributes\":{\"renderers\":\"auto\"}},{\"type\":\"object\",\"name\":\"BoxZoomTool\",\"id\":\"p1031\",\"attributes\":{\"dimensions\":\"both\",\"overlay\":{\"type\":\"object\",\"name\":\"BoxAnnotation\",\"id\":\"p1032\",\"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\":\"p1038\",\"attributes\":{\"all\":{\"type\":\"object\",\"name\":\"AreaVisuals\",\"id\":\"p1037\",\"attributes\":{\"fill_color\":\"white\",\"hover_fill_color\":\"lightgray\"}}}}}}}},{\"type\":\"object\",\"name\":\"SaveTool\",\"id\":\"p1039\"},{\"type\":\"object\",\"name\":\"ResetTool\",\"id\":\"p1040\"},{\"type\":\"object\",\"name\":\"HelpTool\",\"id\":\"p1041\"}]}},\"toolbar_location\":\"above\",\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1024\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1025\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1026\"},\"axis_label\":\"ECDF\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1027\"}}}],\"right\":[{\"type\":\"object\",\"name\":\"Legend\",\"id\":\"p1096\",\"attributes\":{\"location\":\"center\",\"click_policy\":\"hide\",\"items\":[{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1097\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"control\"},\"renderers\":[{\"id\":\"p1048\"},{\"id\":\"p1066\"},{\"id\":\"p1057\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1098\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"pesticide\"},\"renderers\":[{\"id\":\"p1075\"},{\"id\":\"p1093\"},{\"id\":\"p1084\"}]}}]}}],\"below\":[{\"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\":\"alive sperm (millions)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1022\"}}}],\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1023\",\"attributes\":{\"axis\":{\"id\":\"p1019\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1028\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"p1024\"}}}],\"frame_width\":375,\"frame_height\":275}}]}};\n const render_items = [{\"docid\":\"06e3c2a9-a2b3-45f9-b439-88076f7cbc40\",\"roots\":{\"p1008\":\"d6c3507c-3809-4672-9fe6-f44bd87b94c0\"},\"root_ids\":[\"p1008\"]}];\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": "p1008" } }, "output_type": "display_data" } ], "source": [ "# Shift data sets\n", "total_mean = np.mean(np.concatenate((alive_ctrl, alive_pest)))\n", "alive_ctrl_shift = alive_ctrl - np.mean(alive_ctrl) + total_mean\n", "alive_pest_shift = alive_pest - np.mean(alive_pest) + total_mean\n", "\n", "# Plot the ECDFs\n", "df_shift = pl.DataFrame(\n", " data={\n", " \"treatment\": [\"control\"] * len(alive_ctrl_shift)\n", " + [\"pesticide\"] * len(alive_pest_shift),\n", " \"alive sperm (millions)\": np.concatenate((alive_ctrl_shift, alive_pest_shift)),\n", " }\n", ")\n", "p = iqplot.ecdf(df_shift, q=\"alive sperm (millions)\", cats=\"treatment\")\n", "\n", "bokeh.io.show(p)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The distributions now have the same mean, but nothing else about them has changed. They still have the same shape as before. Now, let's draw bootstrap samples out of these shifted distributions and see how they compare to the original ECDFs." ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "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 = {\"daaf949b-421e-4ddc-8507-19288a6ec194\":{\"version\":\"3.8.0\",\"title\":\"Bokeh Application\",\"config\":{\"type\":\"object\",\"name\":\"DocumentConfig\",\"id\":\"p6596\",\"attributes\":{\"notifications\":{\"type\":\"object\",\"name\":\"Notifications\",\"id\":\"p6597\"}}},\"roots\":[{\"type\":\"object\",\"name\":\"Figure\",\"id\":\"p1105\",\"attributes\":{\"x_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1106\"},\"y_range\":{\"type\":\"object\",\"name\":\"DataRange1d\",\"id\":\"p1107\"},\"x_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1114\"},\"y_scale\":{\"type\":\"object\",\"name\":\"LinearScale\",\"id\":\"p1115\"},\"title\":{\"type\":\"object\",\"name\":\"Title\",\"id\":\"p1112\"},\"renderers\":[{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1145\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1139\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1140\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1141\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/8XW6TMcdhjAcXEfa8XSULFiFxFxZbqkmBhxreqiSCKupTKoCl1iZepoaRIhQqaupliso51s2tCqK0g3lQwRyUpEiWucdS1lEVdtdcrkefof9Pvm8/b34nme+UlI/L/N1312dZBVYvfWqhhbxf5KLhi+1/dgUeG/8cDZh5euEaZ+Bltlv5hb7K4HRRxT3TqdBnBhW6YlZAjlWChnTh9oBb/2YG6ZdPPBNr68Fu3GQ7Dx+I2FqyaPwKNnYz63d2oHdUXGfTE5HeD+OzvBg/PUtNrlHlB0/GLxRGw/6F5aW1RtOAbGU3xSroVMgtzRDVaQ9hSoppTs3BiEfthjmcdqQEnpUbrMqBlQJak8dXFsHoyydbQK91sEn9WJjY2fo7ahT9O583+CZ/zUL3utLYH6vQRehdUyeDg84pSqE+r5RDD0OgptpWQrchbQ6mUzDRFTBH5g8RX1kAgVc828jzFWQG3BTiTRE908d99z6zbqTHqQdSFhFZQUNX/5m9ka6NnmNsR/D83Y0Pa99QKl7fUGlAow8NUWoCrE9aPXQzfA/OEQtcL7qPy9dHM1mU2wRv7vxlwy6jihwzhigwq99dZo8egkz0VruA81CtBfpAdvgetO/WlHOKhB7myYutI2KPXiGHP7PGpaE8gqnkOtm9jPEuh/gbJp9oX0V2hbOsk0YQc9eWkkf8V/BwyzKu1OTUS7ueUpV7rQVnaepnQf2lZB9TAcQPfXWAy+aWLVewyjTQI+c914FxzwD9avC0M19Uhp39SjAb8U3N4xlzj9VplM38c/OaLuJMbTkU9Q1eiOXmYCuneEUlHaI7ofvxAtWhozJHJR6ncDp4iV6HOfoBW7gf9IFpv3Uw+ASkmD4zWuqE62o9gsC2V3N9O7ylGbAoLEuWE0Qjj2MYsqCRJqw7aa3dBding9PhXN6dNkO2Sg/aOk1JS7KJFUkWzfhb4jpV90WoReLCR0rFpLgfVapA1fG/QC37CP542aawbGueyi4k8rbch3pMH2zRNJA31o8eyqF30Y3ZuDadRBgRa9qygDRtI8HM9SULL2gjuBh3Z2Pr535TWaSI59IruCLvE46/k76ELkSv7v6rLgoG5eFscZ7X0Za1nLQA0oOQ0iFzlQ2aIsrpGBnhFoJJkHoTo3o71ffosa2b5iZBnIg3Gr2bOllmiwnOBdLxvUebC97I4b+kOBAr+3Bv3x8NKtrHp0TokyIx5FZ24+0AhmK4BLEh/5Ny2g5PN6LT0kRdCBIkksj0RHJ8Zt5S6jPs0tguuBSuBQtEaRsA41Ca0m3HUngO8fUpcN80cTs5kViUJlkOA3Mm9tRASTGxMmq06gJ3OlxxUj0BolO6syfxVwWkqyxFV4EMwoMWIHraK0EWHVrwRVMJjwh1NLJrr/61AHPadceyzjNMF/AMp3H9kQCQAA\"},\"shape\":[290],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWZ0jWURQGcEMiszAkNAsxIpoUEU2ikLCFEfE2JIyKxofCokGEpWFItCORsh0VWkbb1KzEzJlZao6GqTkyc2ZIVBbS/94nnofeLz8Qve895zznopsbPp0/s3udCIwM/N9jNLl7yeybE05R/PwCjYsYsvbR9SsUv5dAS3cfHXbxYSLF392iXuF/6vbl36U45z4d8WSqKynsAcW5KTRoxtaJ8V2pFN+TRp1DvOMiHlN8bzqNml777aB7BsU9ntLilf2b03MzKe71jK4+P/p9yuEsintm0/bKOQV3FuVQ3DuXRppjvPMo6pD9QvfeuFyRT1HXc3rurPkUUNT5go5xbhW7qpCi7pc0zc+c9IqiD0V0/oqOTfsbJfpSTFsX9r6dsayEok8yKWyg04rXFH2Te0wZfqUUfZROk3ySuyX6Wkb7Fs46fq9Kos/ltKTFXEyi7xX0jKdtLMUc3tA1Yzd+T4iWmIscFbxry9UNbynmJE3XLs17RzE3mepMxSmVYo7SnHLas5JirnKuU+XJNok5f6BmCjFFEnOvouUetnEUOaimdgyxErmooesXNI0/sFMiJ9K2LeQjRW7kL3MN/1qKHMnqMnMxiVzJzIYBfWb2SOSsjsZ3+TqjksidPOQe4JQikcN6utkc45LIpVw8fNyPyVkSOZWT7KeBIrdykA2SRI7lbxNTn08UuZY160zjJXIus3aYm0nkvpFeiw5xoi2xB/KIjaXEXnymJvQjgyX2RLrsICT2Rk6xF2ui2CM52C6KxF5Jk6KhXl8o9kyalAZESeydzDGx65TYw2aa6G2SIrGXEs+WxJ62UFOlb5DE3sqlNigSeyyn2ca1Uuy1tGOIk9hz2bPNbEYbxd7LetO2cIl3QObFFDmbJvEutFNbZqjEOyHNo+xRKPFudNDtdnEl3hG53AZZ4l2R9piArxTvjPS3hUq8O/Lff0GBfwHPDqTrEAkAAA==\"},\"shape\":[290],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1146\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1147\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1142\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1143\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1144\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1154\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1148\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1149\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1150\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1155\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1156\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1151\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.0},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1152\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.0},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1153\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.0},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1163\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1157\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1158\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1159\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1164\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1165\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1160\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":6.11251},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1161\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":6.11251},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1162\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":6.11251},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":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\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/7XS/S8UABzH8dN5LK6dnrjzkCFrK/xAO5qnIhktcqEdeSwjrm4exmwilIbWEocrhEVhd6TlaRepcU6JGkXcebi4xZEb3eUuTZvv9y/o/cvr8wd8CIT/2z1J2HpWerXbjhXl27WAhAscWodIAKZYBN3MjRwEJ+hTlpzGEbCIzTTM6RkF24ekrWVf0Oqnpc3rXp9BJfl1lMGhMdDm3/gGCrPN4ift0cl8m67ykSnwfpdu4ENfEWi3n2daGCIGvR533MldQdX7QpsaPGZAHkvd5ZqEaiXoWG7ozYIUZffsM280rEeoT5WgFWk6aaNv5sH0UHpBfpQE5Pc0+ddloP1RHLpD0HewleQdLJWhw1Unnn/KXgRV1LZg871SkMiwDjH5sASWx1o3K24vg8tnzOUa2TJwuNskVdSCujle7vTRXwHX7ducnU6vgqfcArmMXLRt0C9O3Yyqc18whFY/wbeMBZFtBkrfOvzAwnsN/KUdXuZXglp5Km8dHEWZ8dXKR5to/9kNXUeiHPwYvkiuXUBddo/X3nDZAOnJVuwtf3SttNGcE4Paaijq6XdRWqxn3PVVNEbC7jUiK8C+sQSJ9RYazW6YppQpwaq52nfGxN+gq1Aulh1DnYmWdtdq0COihKToTnRihiugpGyCpEq9c4ZC1NE9riFgQAWyqAbi4/5qcCmg3SzvBxrwpLNDQf0DMtoIiY2XUGllSlFpDmpQEDA+0YVGcHnizKwtcFz5SphpSnDfcdknIonERyPPn1Q5KtGzvYEDJRQNUJQ4TTtaiNKuMPlk013g+3lOInMIdeDb2V7UI4IsAas+2R6dz0tO051Du5OLjTRTNcFQrtTDQ4AeoH3VlonRvorBGp6vFqhibUqKX+qCV+umA52a94CuC8xxX7k+mMgqGo4xNwDtjLefSQL/AvvD4/igBQAA\"},\"shape\":[180],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XSK0hDYRwF8BUtJsssS5ZZtFhm2YpFixbTyiymFS0mi4JosSiCliGoQQ2KMBAHMsUXbvh+u/nYfMx30LLk/f4HzsHDBz8Yu/d+/4fPh9TE0/54ejDy33FabZmi+H2WBra7vbNA8b8lOhYujYZLyxTPJenkhMsKxXtSNPHT4p01ivem6VGwzzvrFN/ZoB2WTYrvbtGL/nrv7FDcY5dGFyu8s0dxrwzN51yyFPfcp/ZY9IDi3oe0x14kUccRbbQcU9Qlf91nEicUdZ7SZKzKO2cUdcteyzlFHy5o00ghNFKQ6MslLU+3eeeKok/XNLXqItG3G2pVBnMUfZQRV+ZonqKvtxRbfEfRZ9npyk5K9P2eui744xJzkLWWB4q5yAFrk8ScCrQYssZRzE02W4oUc5Qzrq1libk+0kprtMScn2iXRWLu0sYQeKbYA1lng5HYixc6POQisSfSxhYuUeyNbLVBSuzRK52fc5HYqzdqY41J7Jm0Mv3vFHsnsxkXiT38oA1WqMReSisz9ElRqPz6tFDs7Rdtt0Il9vg78gc0eX2koAUAAA==\"},\"shape\":[180],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"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\":\"#ff7e0e\",\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1170\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1171\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"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\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1182\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1183\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1178\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.0},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1179\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.0},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1180\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.0},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1190\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1184\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1185\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1186\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1191\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1192\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1187\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.754376},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1188\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.754376},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1189\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.754376},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1202\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1196\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1197\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1198\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/43FezDTcQAA8M1IXkdLmoiRMM65qFx/hLSlcx6TbkfcJs9C2aYSMaNccajk8ihRVsixrlpKt/PsUnnnMW8aC+NUHptn/dX3+9f37vf55yPpyzVL1P5aL0FMp3OEKfe/IJ8gRkqGya3ISRS3ZF5PExgnTM5r8cQ+3WI5QDWuHnmwpmBO/PwjcvbgovBWSB2YT1jUlBqJwK7nT8g6JdXg4IUzsURBBfILlX0tPpRGl/8Hy8KSzLnd4FfzVbSO6QGw6sVFy7TAQfBMvaLbcQLu7x19SXB3CPO/fMws6Fwp5msykjuzmTIw+ZiHLSHpJ9gmuXClXGUWOekp3TjdEJ4Wvj9QPxp+jlT0vihqDuz8brSb6iUHjxiMur+xWgDv4yQkpByCr02OVLoY/gbzlaLrTtVLyBPy3VNbvJbB5CWxBjUC/rZt7HFXGjzouJQ2Lcb+2Tz1mGzTFcwX0aacleXwSPv8ga4p+MOkitpPfqvgK3UzNVWl8PhYvFxhpMS8I7eHZ0ODlwcVy8rK0PebM80cmtHbsfyiRCZryCPK7NVxB9fBHjTTa+E1G+AMnZ5+9224la+c/7JiE3xjmz1E7MK+li5DFkPaAosOx31rz4EHZBwZd8/6C+ZmzldU43CuqEsnGjRaT8Gp5bRnuzlwvb4/1pIOuLeScLJwDx75UdZN6dU2FfD2gp6Fwwa8d/T7+hMcAZy4TTTwt0fP2NW2GtYOV6kXMIY34a+JvhyWgSrYuiSpZIGMXvuz75gmGz3TgMPyiFHD/ClKirEeG57VrDhwJw09g++1QRHDCzarmyqZO5DzOl+cxnPgU5mzkXa96M3x+HsMVXXMk1OLG2oL4AxPQpit004wSdIoYxXBc4SP4sf5GmD9UIUbdRB9WECOSIWriZyttVwj5qGneosf5HppY/7y7amM0Cz4DM50UsHTAattSX/I13Ux3zUQuDZnood8fuyDZUj6XvA/MnXyhDAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1203\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1204\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1199\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1200\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1201\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1211\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1205\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1206\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1207\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1212\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1213\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1208\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1209\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1210\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1220\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1214\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1215\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1216\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1221\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1222\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1217\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1218\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1219\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":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\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8cNENxx7t9U27D6TO3zCdJ8T+C0zs2/L/6M+cJnBYK8jib+x1Br3jTOreC+Smc9ugv+Lpp0TOc9AOmWYvvzn0Jp43cFX7OXI+gRVKm5n6zeQ2nq6UOJu54j5ueuPjU6Q1tb+D0n3I+hmyut3A6sEgiXWkhgl557E6Ae807nHSxPU/cf50PcLr1cZxXRieCrudac5bL+SNOmu+y8vd6nk9wWmXio7OqwQh6hYG03xKjL3D6k9nsCqF+3PQctRnS4jxf4XTfQ7G7rSoI+thc8/+7AnHT0lv2xJzn+4aTzjgUffGjP4K+5RvaPbkSQStz7KlN/ICgX917z3jU7TtOuqpJc8t2oR9wWrYrfdejBNy013HGpWvm4qa/PfpgbLn5J0666rvOzqkyf+B03CufbtY9CLorY8HjdXf+4qRfRpay7zn1D053Sm1k2Jj8n2g6xe8PU+sPBG1weOoKBnMGBxittnHXqT9OuGmf81yMj3oZcdKdWQkLem8jaJtJD3OPf0bQUuxra3Y4M8HpLOs9dzyZmXHSDd0pLTcX46ZPLys6f4eJFU4f/29sr/AeQbNwl+2wF2OD0+XHKzovnyCffv/hbRDPenY4vaLyrvjOYwg67M65zdWGHDjphpseH6YzCRBNJ659uiahnHgaAJXduBRABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"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_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1227\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1228\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1238\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1232\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1233\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1234\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1239\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1240\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1235\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1236\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1237\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1247\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1241\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1242\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1243\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1248\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1249\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1244\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1245\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1246\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1256\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1250\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1251\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1252\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/7XFazATcAAAcLNlha7dTovIK5XHoTxOrhN33epyw5Rc4jaklFy2cSeMLZeTYtXlLoYU7pjXemzp3Lk13KWEcWnTyiMb8zoSbcuoL/X/f/p3O1e/Lz8qlSnk3Hsjof5+nJisUDr2IDehvPZO6+lGPzqTYNvUCRfmlnZT4FSXlRhcugTMGFkU3khsB3Oxi+aTtmJw/MKpNGJdA/iSYLg7wk0a/Of4qSS2M2sQ/GS+idyvloM1Eu2g7/jI5m9TFHLWxox+KcLJhcqaRB5O7FL2zKqRtxblDpTQpsCOgaEeWPY02N+r1EZUoEHunlu+Wm86g9z6MdWuwAaef2FPrNUV+Dlr/kt+yix4NzMri3NoAZyuzJaxMpeQS5stPZk5cP3EJ0GwzVdwBlkt6CMtI+fqxNcCWr4hF70brZTlryCPC5okqzvgUaX41BKHVTCfrDqqq4cnez+Qy1TwjHZNa9Oj78gflttJKT5a5I01fvYed+CZaZg5ra0O7MsaynMnw+vjqqZqa+EfnGlOPl3GH3I7YdDXSg/2pJ9OEdvDL9Z64032/QAfiJzjNjYYwDkbjI9EmfHf7w5fSz2yDpYzwnAH2XCxX3pvHw9usb/9KZ23AW7BnaDsSPgJPrzrc3V/nUmIsb/t1dlVNMMJw8uuin54uA57rHwnBjlfhOeYZsKzN4iks95YcI2r13wz2fhNJXXRSgP8GTGSSSfhkLtWs6sXHP/dLvFDQV6B6ImkdP/Vy8ZPIzHpoalbjP64G8eOwNj8xV3avTfz4dHcsDW3Dniiz/MV1UkzcJmhpVNAg6tuzSR7vv/LhIEA9QjcGYO5G43Dgx2vV71qK4Nnk7680PO2gq0V0ik6Hz1PWJE5xt0GTorhiU1Z5mCGxUprRx5c1BxTvB5lifxqoarofDFcY+Iwoc3bDpbJY/Wz9gTkBrMz5dOV/+9fmRlMVTAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1257\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1258\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1253\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1254\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1255\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1265\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1259\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1260\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1261\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1266\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1267\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1262\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1263\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1264\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1274\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1268\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1269\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1270\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1275\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1276\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1271\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1272\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1273\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":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\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8i6TO3zCdJ8T8imt6x4f/VnzlPiKaFgjzO5n4nnl7xpnVuBfNTnLRHf8HXTYuewWkjd4WfM9e/xEmLpEzN/WbzGic9cfGp0xva3uCkPaVyP1y5gZsOLJJIV1r4Fk6n/T+rdu0egk7auCn9Vs0HON1lEuaz4Rtuup5rzVku5484ab7Lyt/reT7B6RUG0n5LjL7A6U9msyuE+hF030Oxu60qX3HSx+aa/98ViJuW3rIn5jzfNzidcSj64kd/BH3LN7R7ciWCVubYU5v4AUHLdqXvepTwAyf99vQ/rdPncNPfHn0wttz8k2g6uff+UTbOP3C66rvOzqkyuGkJqS2OhgYIOqSF4dSrEAQd98qnm3UPgu7KWPB43Z2/cPplZCn7nlP/4HSn1EaGjcn/4fTRtDXP159D0Cl+f5hafyDoWQKd5iGnGRxg9LqHFk8/ezLipG0mPcw9/hlBS7GvrdnhzASnnWfGNHItI57Ost5zx5OZGU43dKe03FyMm/4ywZ6X8T5u+jZTxM0EBhY4naC2oM5yEyucZuEu22Evxgan/bdN1zwfzY6Tfv/hbRDPegS9ovKu+M5juOmwO+c2VxtywOn+zf+/xc3mhtM/nz5KYZnMB6cvahS/ELvJD6cBjIMupEAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"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\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1281\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1282\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"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\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1293\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1294\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1289\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1290\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1291\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1301\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1295\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1296\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1297\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1302\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1303\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1298\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1299\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1300\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1310\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1304\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1305\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1306\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FWUgTYAAAYHUeeYBu6VwppiHqCpXUoAhJbJMSXRNzaMLMK9OsdkjitS1RJJNJGeVVMxl5uw6XBw3PcOXRWto8ckrNUpstbB5rU3qp/+/lj+H38lGpTBH39ute6p8XcGlTs+5SMIEYWsCRDyA3US4nurT8s6jg7lCE8VM9tXHm7F4wY1ojKkrqMXoeRmPz2UUMvtQ0OXSW2H8S9RN1C3l8UWH05ukar8L4aXAs5fIVYfkMeKlzqoSrn0dOwQ3OSlcWkRMeUV2L9y2DzxOqu6ozVsCs4MIlPluNfD8zJ4d7ZNXo5bw1Ukw/+kyd7qV3kQbc32rny8z7AbYY9kgNN9OC3X9KrEkX4R2jylpZIfo0//sKmWodfC+/sfNV9AY4q2epvaUOfXN9kNvh8k1wIEvOOUTeAn84SPcIGEQfcivxXaCjDuybEJ0hdjN+BdWry1kDJ3ZzRQ1ZenA4+cD11Ha4d9Q3XnOjAXneDmMGJ0Nva0/7kknY3vUVQxR95gn04iD2yBgffclClhP24w5yVqm6sc3EJOTvdQt91tIw9KQGcv1eJvyY85xgXAh/M7LlWtMKd5hc85ka3/2ULcypKidTsJCvvhZBh3+3XxM8/c/VHVZcs2zjn5h7/+uhCQZ57g4OH+uPnoYd3UgZg5v1Cmmzht3/DBfFTMCbI/cR5AtW3eGeF+TBfsfR4/Dso+vp6O2Go5Q2DOOn45kJ4ZkW4DAi19WBYfw0XqSeKIEnBTzXqs5YIq80tA000eGct49PmzLhqtLlNN8JuPuNB32dlVZgnw0/DBa7B5yL//RCx4fzRTXZ8zxrsGPyZihpGp4SxxebsWyQM2y17RIOnESRVNyJtAN3tMaVbZ9Df7VEdTO5DO5ZWSUttXAAyxTxuhU3uMEypuprLXq1stsrqdgZ/Btj/+jeMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1311\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1312\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1307\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1308\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1309\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1319\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1313\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1314\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1315\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1320\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1321\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1316\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1317\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1318\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1328\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1322\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1323\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1324\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1329\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1330\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1325\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1326\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1327\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1337\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1331\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1332\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1333\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNtE06v6niX36j+C00JBHmdzvz+B0yvetM6tYH4Kpz36C75uWvQMToukTM39ZvMaTldLHUzc8R43/aecjyGb6y2cDiySSFdaiJtO+39W7do93PTKY3cC3Gvewel6rjVnuZw/4qRXGEj7LTH6Aqc/mc2uEOpH0Mfmmv/fFfgVTktv2RNznu8bnFbm2FOb+AFBVzVpbtku9ANOT3m7Qtr4OPH029P/tE6fQ9DfHn0wttz8Eyed3Hv/KBvnH7JpCaktjoYGCDrulU836x4E3ZWx4PG6O3/hdKfURoaNyf/h9NG0Nc/Xn0PQaht3nfrjxOBALN1gdKc0YgGCniXQaR5yGkGve2jx9LMnI5z2Oc/F+KgXN20z6WHu8c+46QOzW44vEGKC084zYxq5lhFPZ1nvuePJzAynv0yw52W8j5suWv/I80shC5w+vazo/B0mVpx0gtqCOstN5NPH/xvbK7wnnmbhLtthL8YGp8uPV3RePkE+/f7D2yCe9exwekXlXfGdxxB02J1zm6sNOXDSP58+SmGZzIeTvqhR/ELsJj+cbrjp8WE6kwBOOnHt0zUJ5cTTAAeu1gBABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1338\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1339\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1334\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1335\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1336\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1346\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1340\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1341\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1342\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1347\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1348\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1343\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1344\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1345\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1355\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1349\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1350\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1351\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1356\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1357\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1352\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1353\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1354\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1364\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1358\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1359\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1360\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FbSzUcRwA8HNIHprbZZdFHko4GxWTtabUHFt151SzxBxrJZy4o12Uu3O1eQgNbbjmIQ9DnqLE1A3xgpY855BODjvOdeahcw71Jt//q1+7WZ83H/Fojm2iyad28d/pdFYDL7sXNidfTOIOfYRx3xfCLGqwQ43KF0UV72G+rtJIatGs9V5hF+b7xXX/7VDF1RhieRVM90s/KaG+Pr/73erRbj9yJ6wXobQXBI3DsnbVoNs0+hu0qOjyZxPIZS3iFJ5GAi/72drR2VKYRuya7Fmcg52SCtYr8Quw4PaRILMo7JvmwlZh5CJ87t3UoDdVDrM9BbKsuCX4G2nK942DAj7MSkjgnULPVKs/ODxRwnGTiQNszjIcT5mr7iOtIOdvND/wqFuFE/J8k7upa7DNqsjQ+w52sKeUMifS/uvPDZiZ1utw+Im8sYHZvR/fJquvKfmFvKjAsvOKqwrmxOjIVRYbyN3YQ1wnCnZlcOF8WRn216Mhtq5d6L2ehg26man3vDPjWmSzFbZb5kyx2Bb9GN2+9ZASvYO/nP+qagt+uBM7QRzQfmPTgHmm+bbW53bTNMyz2BW9yS/7UtEb27c1MrJ24MA0d4lvxm+Ynb5UVYfDee1eMt1h2OOD7V1JKT3IQk8YXXEUf0HvYyA4LlRq/0/TleLGEB1Y+NaAh+dgn2Y8lt7/jId3FAQ7Vw36kanhzSKcLlzq6LJUS9n7+PbygMkt7CaiP4tB0oMdix8VK2zQ24UOebqcwSaS4tzXI7BDSCzGJaY+7EPmWRJi0Wd0qY6lCtAH8Kkasgi7VhadrQrcB8+mL4Q7j/xjQr/H3Di2TXJhR0u+AWwu7pxnCPfDWQ0vOBK+IfJY47V6EdcIeZPA8/KwqQlyb5ooN4eK/l7KbNqtDO2X4ax/qLgHYP1t6Yx80xS2yy/oSdcnwANjQepFK+3/A/TJiq4wCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1365\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1366\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1361\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1362\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1363\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1373\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1367\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1368\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1369\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1374\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1375\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1370\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1371\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1372\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1382\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1376\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1377\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1378\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1383\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1384\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1379\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1380\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1381\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1391\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1385\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1386\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1387\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ofeaW+SQp/kdwelXfs+Refdz0jg3/r/7MeQKnHzDNWnx37kuctJG7ws+Z63HTu04tUfxZ/wpOi6RMzf1m8xonXS11MHHHe9z0xMWnTm9oewOnPaVyP1y5gZv+U87HkM31Fk4HFkmkKy0knk77f1bt2j0EXWzPE/df5wOcTtq4Kf1WDYJufRznldGJoOu51pzlcv6Ik15hIO23xOgLnJ6jNkNanOcrTvrYXPP/uwKJp5U59tQmfviGk65q0tyyXegHnPY6zrh0zVzi6ben/2mdPoegvz36YGy5+SecTu69f5SN8w/RdNV3nZ1TZYinQ1oYTr0KQdBxr3y6WfcQT7+MLGXfc+ofnO6U2siwMfk/nD6atub5+nO46RS/P0ytP3DTBoenrmAwZ3CA0Wobd53644SgG4zulEYsQNA+57kYH/UywunOrIQFvbcRNIfg/vBp6kxwWop9bc0OZ9y088yYRq5lCDrLes8dT2ZmoumG7pSWm4sR9G2miJsJDCxwOkFtQZ3lJlY47b9tuub5aHac9PsPb4N41uOmV1TeFd95DEGH3Tm3udqQg2i64abHh+lMAnA6ce3TNQnlxNMAynNr+UAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1392\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1393\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1388\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1389\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1390\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1400\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1394\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1395\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1396\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1401\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1402\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1397\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1398\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1399\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1409\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1403\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1404\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1405\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1410\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1411\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1406\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1407\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1408\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1418\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1412\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1413\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1414\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FezDTcQAA8MWQo5PFbnXllUfqELpcfwyVcWljpXYVtyGP0i6GqzBh584jdle5siWEDpfZIXQut4YuLi5DTIg8lmeT95hd/9T3659v9zuffz50Okec8rhDQv/7GCFSPmTRjhxH/eQU3d4GJtmfS37Y04IcJ07Oa6PC6dYr1/FxEszHDCrF6aFNmPcMOav4IheBgxcuRxPKKsC3Kr+2+dtLPVAHK8K4VrEyMP620pYXOAielqzLXMd23CjPSNkaBS/6W1rTYycwfzxZsFquNQPmhR8JNLkDv0ESvhNGzYLdG0ZkXrQ5cCyZN82Pm0c+TBzxqbNbwPwhTkJCijOcrVK9t0tXgqVVhg6cpEWw6sdwpcfB35iPp0xVdhGXwKkb9Q/cRMvghOc+aW20FbDFcrO+VwT233Z+L+jmwYPIE5SpZvRX8vTYuearyIWUSfeNcvTPuBWNHwPWwPFN09VviuGFgsNSqss6uDzopaK0dAPz/VZMS5dW9J6PQmSuJirkDqyAqHoz9K6540Vyy90fUeqkh7PZRO5LMb8XXr0FztrX0++jgSdpYr4RutVgAyOGgk3aBg/E0PAnuehfd6S96sqE15+K+9zFhxvkc087b+3YtqmGxdeAM8biTY2H4bHZ8xUiHM7z38VjH/TbveFe5ZSSAxy4tx7PRqhE77ehfV5gugfzZfz5aCoT/S+jpaKa/9w30rtZiNMGJ2oIxGtO6EuOOc5XUdAzjDvXwrrQa0nKGENqeC3hEodFxIOtg3vIjmfQM4kcli9bB5zTun40kwdnpNK27JvRh7rUrUxe0AXnq0UtlUzsT2bPRDr0YZ9B1Q474bYXeSJxvEHFh5PkUgVLiJ4vfnF/NFUfXMsjX+w1MgR7+TU/fUKD382YzLqZA9fZnhif2zTa9db5gvZsnf3g7oFA1awZXK17VfCzAP4H/6XRWTAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1419\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1420\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1415\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1416\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1417\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1427\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1421\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1422\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1423\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1428\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1429\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1424\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1425\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1426\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1436\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1430\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1431\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1432\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1437\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1438\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1433\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1434\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1435\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1445\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1439\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1440\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1441\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8cNENxx7t9U27D6TO3zCdJ8T8iml7V9yy5Vx9B79jw/+rPnCdwWijI42zudwS94k3r3Armp3B6TuQdKfVduOkHTLMW3537Ek7vOrVE8Wf9K5z0xMWnTm9oe4OT9pTK/XDlBm46sEgiXWnhW5x0sT1P3H+dD0TTrY/jvDI6cdNdJmE+G74h6HquNWe5nD/Cab7Lyt/reT4RTX8ym10h1P8FTs9RmyEtzvMVTh+ba/5/VyCClt6yJ+Y83zectGxX+q5HCT+Ipr2OMy5dMxdBT3m7Qtr4OIJ+e/qf1ulzCDq59/5RNs4/cLrqu87OqTK4aQmpLY6GBgg67pVPN+se3HSn1EaGjcn/4XSK3x+m1h8IusHoTmnEAgYHGL3uocXTz56MOGmf81yMj3oRdGdWwoLe2wjaZtLD3OOfETSH4P7waepMOGnnmTGNXMsQdJb1njuezMxwuqE7peXmYuLpLxPseRnvI+jbTBE3ExhY4HTR+keeXwoR9OllRefvMLHC6eP/je0V3iNoFu6yHfZibHC6/HhF5+UTuGn/bdM1z0ezw+kVlXfFdx4jng67c25ztSEHTrp/8/9vcbO54fTPp49SWCbz4aQvahS/ELvJD6cbbnp8mM4kQDQNAP2eCXJABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1446\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1447\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1442\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1443\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1444\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1454\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1448\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1449\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1450\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1455\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1456\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1451\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1452\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1453\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1463\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1457\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1458\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1459\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1464\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1465\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1460\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1461\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1462\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1472\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1466\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1467\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1468\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FbTDTcQAAYIwUOuzERNq6ndezYlGuE8naXQ3rsEu6adRV2mXmOoeNtbhuYneV6zbUrs5dZLNeSLmcvHQnxKzDNG9ZXjc3dZi1WX3q9/fld7fzfHlUIw9xhS59HSorp1Jz5SUPvkCfQV9TqbG9YExQHLdY2QW2mVpi+DRuW86t6qFYP2tcLy/NbAPzUHonjU8L9FjGqfkhlQz69YaRnqSgzpj/v9I1kgbnxsD2N/T+/PRx6IsdhmHiDPJqEg5PZWvAiehude/yHLhJwB2qpM+DsVFnQ1CcBegRhCrv5rJFcDBXvP7Cbgk65hnVt8wbPv/qgXSPm8gXMdXvq7OXwSffTQ7HJ2jB7Gj+ojBPB33Cc5L8NmAFvD+3oKAkDL6S9zs+tdP6mUbjx4BSPfQ8daGCnb8K7pS6hOYWIRt/TDTEeP8CNw9M1Sr4a9AvRWtIc+3IKVWOzMqD69Afc+pbPydvgJ+KfTsp4Qbo+Tm2WoPPJnQiW1kcTNr5o4fouPBu+LH3GcNEDyM4NCM5u8UPmVg5K1HhkAV7laNkiwl6wHkt72W9GVxkYX1HK6zf2ZU2z8RsgR/1JJqYJ5DHWAn2RzjILUfz+r8K4TuLOJFhpm37t73OEFrAMnsyxZXx1+rTBBHT5Ar47HJdvczGJhb2ca9JyWAdcl//pm+NFDlxE3VavM8WXCfU5VDoyJEZdzW3B+zAlhU3fLgJudCC9rxwGGX1zwMJOikJvl1HHU1tRg6UcCQrWHvo+MvKaEIU8pmgEl83lgN0Gi/BFNRu/SKzrKuBvguMvfPkU6vIcccHbhBQ7u67wTQK6krIMfhCeU3+NG8P2CPLEBc/Dp/lvNbUXuwE/Q0/+tw3VxdwszStYisF+da9n4KsCvgOW5pZ7R9Xq8eLxL3lDm5gxVi6cdkPvnlXqnihFlk39cE/s8wL/A9W+i1fMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1473\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1474\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1469\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1470\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1471\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1481\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1475\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1476\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1477\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1482\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1483\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1478\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1479\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1480\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1490\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1484\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1485\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1486\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1491\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1492\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1487\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1488\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1489\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1499\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1493\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1494\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1495\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNtw+swt80lS/I/gtFCQx9nc70/g9Io3rXMrmJ/CaY/+gq+bFj3DST9gmrX47tyXOOldp5Yo/qx/BaerpQ4m7nj/Gk57SuV+uHLjDdH0n3I+hmyut3A6sEgiXWkhgl557E6Ae807nHSxPU/cf50PcDpp46b0WzUIuvVxnFdGJ4Ku51pzlsv5I06a77Ly93qeT3B6hYG03xKjL3B6jtoMaXGer0TTx+aa/98ViJu+5RvaPbnyG05amWNPbeIH3PSre+8Zj7p9h9NVTZpbtgv9gNOyXem7HiUQT3sdZ1y6Zi6CnvJ2hbTxcQT99vQ/rdPncNPfHn0wttz8E04n994/ysb5h2i66rvOzqkyuOmQFoZTr0KIp19GlrLvOfUPTh9NW/N8/bn/cDrF7w9T6w8EbXB46goGcwYHGL3uocXTz56McLozK2FB723c9IHZLccXCDGRTXMI7g+fpo6gpdjX1uxwRtDOM2MauZYh6C8T7HkZ7zPjpG8zRdxMYGAhmy5a/8jzSyGCPr2s6PwdJlY4XX68ovPyCTY4/f7D2yCe9ew46bA75zZXG3LA6f7N/7/FzebGSf98+iiFZTIfnG646fFhOpMA0TQAYD8mu0AFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1500\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1501\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1496\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1497\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1498\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1508\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1502\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1503\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1504\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1509\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1510\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1505\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1506\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1507\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1517\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1511\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1512\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1513\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1518\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1519\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1514\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1515\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1516\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1526\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1520\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1521\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1522\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAAcHsg1G12HnOEShgX5Zkr0WN0mlHJnXQedzmPdDRKD4+1cp1iPbhjSyZc3lOddepyot21u+SZ2+S1PGaYVvKajfqS/9+X/92u35eflBQvGbIVtUn/rUP75JoiEiInU45lZfd1aL3O6EysZf2Wm7KKhDQ4E6c0nLAUgP1jj8q6JY3gmPkzKaSqGuQJtQPCEEq73+YvFfXUrikxGJ+otGdFDiKXt630ukvhP0N22YUyJsB00sch0ewUmJ+X1V0QJUNu6xPkjMucBnu6FFk058r/e6cszlI1dgZMfh5qlWsBZ8XtjDS5hP48mdvCTZpFzvBlydlpCnCySvXe4a4SrPo+XOtn8Qs5c1Vw3bvxN/hGceBtYfAi8ubO0dIeFjysSD+5wGYJzKVOHlmthse7Fot7JuHp7+T8+vJl5GUcq3aa2wryugoPa+eH8IwUzNyK5SrYndGX7USFV194JqushPs/iO11N1Fp/b7os0kCa7h7wThPsgu9ONS+xVwJp7zNaapOV4ODqDbX4vjoHU7PMetqNOBbG6nfSD3ojQjhsmTyOrhQSFcnH9J+cWowfn8mXOCR9vkLG25Ukul1QK3996TppsbDG8gb8YE0Quwf5BF5nmOB+dpfLv1gIArQ8d/8oPkIr6sKThxYcJR0wQP0WXu5Sjh9FXecY4pBXsVWpNCi4D8IC7xXW+Y26+dgM+AJOw5ble/Bgr2i70xc7YRvzBPt3NTwryP9a2U6OK2vcHRRNFDh2Laq8CENekdeJm/eFg+2i+nzdfFBTzJL81xKhAdQcqyIqbrgcGawmtKq/Q3yy49XIvTAJZrGjtooeHb3i5OYK/BJYrf31CD63RjMo3C8Pthx2QVnbLwNfNNs/I2KDSdL2mXRXDi76WnGGNMA+cUItgDLMASnGi3yW7PRv2b5nuonbEd+gt5a+CQY3twQkb8eBtddnxifWyMgtyvhiO7rEsE94kjVrDV6jd45znQp+r9otyrUMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1527\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1528\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1523\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1524\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1525\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1535\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1529\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1530\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1531\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1536\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1537\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1532\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1533\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1534\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1544\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1538\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1539\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1540\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1545\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1546\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1541\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1542\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1543\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1553\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1547\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1548\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1549\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYofeaW+SQp/kdwelXfs+RefQS9Y8P/qz9znsBpoSCPs7nfEfSKN61zK5ifkk3Pibwjpb4LQRu5K/ycuf4l2bRIytTcbzav4bSnVO6HKzfewOnAIol0pYVv4XTa/7Nq1+4h6GJ7nrj/Oh9w0nyXlb/X83yC0yoTH51VDSaeXmEg7bfE6AtOeo7aDGlxnq846WNzzf/vCkTQ0lv2xJzn+0Y0nXEo+uJHfwStzLGnNvEDgpbtSt/1KOEHnH57+p/W6XMI+tujD8aWm3/C6eTe+0fZOP/A6ZAWhlOvQhB03CufbtY95NNdGQser7vzF06/jCxl33PqH5zulNrIsDH5P9Xoo2lrnq8/h6BT/P4wtf5A0AaHp65gMGdwgNFqG3ed+uOEoGcJdJqHnMZNr3to8fSzJyNO2uc8F+OjXtx0Z1bCgt7bCPrA7JbjC4SYcNIcgvvDp6njpqXY19bscEbQWdZ77ngyM+OkG7pTWm4uRtAJagvqLDexwmkW7rId9mJsRNPlxys6L59A0P7bpmuej2bHSfdv/v8tbjY3nP759FEKy2Q+oumLGsUvxG7yE0033PT4MJ1JAE4DAJaiY2RABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1554\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1555\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1550\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1551\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1552\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1562\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1556\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1557\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1558\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1563\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1564\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1559\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1560\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1561\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1571\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1565\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1566\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1567\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1572\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1573\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1568\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1569\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1570\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1580\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1574\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1575\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1576\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FbTDTYQAA8NlI3s7s2BExL5V0KDv5UKQyOjdvca6lMw6RlLYpRxrWOS+Nu8oVU6GbkNHLTTqdG9GRiCn8nbC83bCdThjG6ks9z6fnbuf35YcNP7DPNO6VYP+WkRKxcUoPGEfvdk/t6YJPLsRaN3wEhzqtMnQ5EuQxhsLFtpoP4BzCsuGMdTPYN/b0/ADWiDxGeT6VJKwDh4YUHZ0Ken3q/0n1w10hhzuQx8zHZzmwpWC5RCWlysbgLVh+tnoK7OlWaiXOk4Nd7pSv1eIXkFtWh9rkWcF5CfujzK/CL1oK3guSF8E+7yakfkFLyNnePHkJRwHex8rIyD6m3PWc8cxBdvovcIfI2JV1G30aba6+n7yCXK/bPiEQv4qc8rvNwO8yenHf5JNBHvyS9wxtrg0eUaqfUmy3BhbQZn02auGJ7o9HB2fRP8qqa/kUvg5Oa5U3NVTBqewhrgttA/mIQ7S9R6f2+96LlVLNN5G7MsOTm23h1OLpSswefSDN7lZCkxp5ocnQSIAG/aGwpZyXddvgh13B6pQTO+Caz7nV/QVwo4Otb5glGnC+LM3C7Ae8UTeAbhr7B8wo9JwK4MPZRYq6RhzOd7dXydoNevzR937ZsKkQoScOrzhjX+H++rwDgmV48AbhbLmFDnJhiSKVHg0XiPWz8enwJJOTNlWOePBx5t2Zm33oNUqik4ca/n3i29YzHEHrMzUk8gV3+HNnN4WIpv2RZn3r8f3o8RJh5Pg2+rekMBaTrAt2rsyqVFLQk8gcz7Ur6KPJLGZgih5yfqfKsYAHF8mv3Vcx9iDnDrw4p8OCzxIHvObG0FNyn7a3lOmDI+mE+CNee7XeEuuYZwrQl7yqSJ/KMQCbx6nO+I3BbxitNrVxDcFiEYO/E2Gs9dfzZwvj+Novx9n9VHFNwHo7M9NLW6Zgp7LyniI9otYPjkZtLtrC/wJDcnvMMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1581\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1582\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1577\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1578\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1579\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1589\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1583\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1584\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1585\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1590\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1591\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1586\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1587\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1588\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1598\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1592\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1593\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1594\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1599\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1600\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1595\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1596\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1597\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1607\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1601\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1602\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1603\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8cNENxx7t9U27D6VV9z5J79R8RTe/Y8P/qz5wncFooyONs7nfi6RVvWudWMD+F03Mi70ip70LQHv0FXzcteganHzDNWnx37ks4beSu8HPmegS969QSxZ/1r+C0SMrU3G82r+F0tdTBxB3vEfSfcj6GbK63cDqwSCJdaSHxdNr/s2rX7iHolcfuBLjXvIPTxfY8cf91PsDppI2b0m/VIOh6rjVnuZw/wmmViY/OqgZ/Ipr+ZDa7Qqj/C5yeozZDWpznK9Xovodid1tVEPSxueb/dwUi6Fu+od2TK7/BaWWOPbWJH3DTr+69Zzzq9h1OVzVpbtku9AMnLduVvutRAm7a6zjj0jVziaenvF0hbXwcQSf33j/KxvkHTld919k5VQY3HdLCcOpVCG66K2PB43V3/hJNv4wsZd9z6h9OOsXvD1Prj/84aYPDU1cwmDM4wOhZAp3mIacR9LqHFk8/ezLCaZtJD3OPf8ZNcwjuD5+mzgSnpdjX1uxwRtDOM2MauZYh6CzrPXc8mZlx0g3dKS03F+Omv0yw52W8j6BvM0XcTGBggdNF6x95finETR//b2yv8J4VTr//8DaIZz07nA67c25ztSEHnL6oUfxC7CY/nE5c+3RNQrkAThoAzp3Ss0AFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1608\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1609\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1604\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1605\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1606\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1616\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1610\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1611\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1612\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1617\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1618\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1613\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1614\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1615\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1625\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1619\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1620\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1621\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1626\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1627\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1622\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1623\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1624\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1634\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1628\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1629\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1630\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAA8DFaHp3HaTjCRMh5nJG6jqRNl4xJ7XJ15v2h1MaUbmSzONRaoeuyLlJz5NnJo9ROopPylmw5lI0m3ByyedaX+v8//e92/b78JCOFBLbhxzbJ36nU5HpOQTdyTEiXB+NDJ3ILl8DrmUPvwJiJ2RirajjVYSVSh9UGjtYX/RSXvwYzpcr67NhWMBer1JdZNYEDYo7O9EtqNT564RTDVFSJnBp203OS8vzIvxVtqkHiNym8RZLL2ZhEvhhGcKCmyMB2h4JdsRk/kPu437NszFGALcqo1jmWsxrPS9hzzuwi3L95fJBEmQOn+PEUAtY8eIi7RDrTvvDfJ62tvXHKVoJZY+yBlLRFcHuNoVtyOjyVPP2sF7+EnKtuuuZbuwy2WxbrkRJXwOf9ZORpMXohWe6vrvgFvp9R2fI+YhWc2qqoq34MLym2bg/xUoGrnnjbuN7R/DSG1pzKSg0mpgxl7iej/2IfRfDqQB9wK2aQaLYGdqNHXGiygRNvT5VKCOhHqftemivhiU89cBjHdbDLK059ReoGOJhsezWhDu4UPsetqtwEp28zv5oOwA2MaDNJFlvgos7QjaTD8FEmRcczA315d1ZZbx68yZv1qVeAPjLfZ/I4/zf4oPl4aZ8IE4DaeGTJWdIHD8LxHIVKzQ9VY48V79YCiwTzjJAouLARx9FOgx+g35Bd6dFG/nl8eL0EgwWzt03xZz3gNJOe1fheuHabiDa2CW8wDU+m43XAzqUZpQt2cMOu8Al9JjwKn0wPTtL974NcONbGTDi/Q7U3j4eexqVsuIjhsV4vVuQndiCvUVwqUEXC5cb9vtNS9PZaWndpOjiwXdajty0P0DuvumNNTHZqPC0EG+/qC2fjp5rXBHALSfsMXQgX1D9Mm+Tqgc3iVIEkKXqmwUqdOFMfeQPP7+SwkSFyUqi4qJCCvrEmkr91Gn45V54fx9d8Bcb2uypzl8brbsmm5taNkP8BEdhk0jAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1635\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1636\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1631\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1632\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1633\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1643\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1637\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1638\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1639\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1644\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1645\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1640\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1641\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1642\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1652\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1646\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1647\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1648\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1653\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1654\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1649\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.9975202298952603},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1650\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.9975202298952603},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1651\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.9975202298952603},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1661\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1655\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1656\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1657\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYofeaW+SQp/kdwelXfs+Refdz0jg3/r/7MeQKnhYI8zuZ+x03Pibwjpb7rKU7ao7/g66ZFz+C0kbvCz5nrX8LpXaeWKP6sfwWnRVKm5n6zeU00XS11MHHHe9z0xMWnTm9oewOnPaVyP1y5gaADiyTSlRa+JZpO+39W7do94umVx+4EuNe8w0kX2/PE/df5AKe7TMJ8NnxD0NJb9sSc5/sGp2/5hnZPrkTQyhx7ahM/EE+/uvee8ajbdzgt25W+61HCDzjtdZxx6Zq5uOkpb1dIGx/HTb89/U/r9DkE/e3RB2PLzT9x0hJSWxwNDf7A6ZAWhlOvQnDTXRkLHq+78xcn3Sm1kWFj8n84fTRtzfP15xC0weGpKxjMGRxgtNrGXaf+OCFon/NcjI96GeF0Z1bCgt7bxNM2kx7mHv+Mm3aeGdPItYyJbDrLes8dT2ZmnHRDd0rLzcUI+jZTxM0EBhY4XbT+keeXQgR9elnR+TtMrDjpBLUFdZabEPTx/8b2Cu8RNAt32Q57MTai6fLjFZ2XT+CmV1TeFd95jJ1o+ufTRyksk/lw0hc1il+I3eSH0w03PT5MZxLASQMAL1uUgkAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1662\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1663\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1658\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1659\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1660\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1670\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1664\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1665\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1666\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1671\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1672\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1667\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1668\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1669\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1679\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1673\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1674\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1675\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1680\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1681\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1676\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1677\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1678\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1688\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1682\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1683\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1684\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FeyzUcQAA8Dt3uhRzbrmIrcMJa1xIaqUk7lo7j7Zm1ZrHGGq3uDubnMdhGW7cWtlwG0cUxRWLNKsht3U9PPP4Cblx7HDSPO9crv7q+/XPt/1mff75YCMPnUSWnzoxxGpaIjbBUCEncD+wklVK3Nt5BGVlD73HPeH7QqxD4z9+mVWq5MIjmOs3yMJO5DmklQOzDm3IA2MvzvdjCnBEuOTEdGjzhb8nPRtRhnt0g2Pm4zOdBYPgZl1jSN/cGHJt59agr3oc3o4ViI3TuA+j9UyoFufAfl6l9q35WrBdTYRjvv0C+Kad7I3sziJYEJCnlQp14En6FOeV2zLyI/z0dLE3nGcwvHW7vwIWTogGBGk/kXc3WXryM9Dn6Nvu+SvWwOllnFxl6DqYsfbOIjgBfq2Uwis5uoF7WYjmvL7+/53IKhsb0KBP7dC+aKzeRF5/q3K+tlYPHnWOcvLpQe9bMiPHnAy4T6hlUQiu2+Aiq6FRjsmIe7erSznPG36BM0wp32gD8EfKMCPv7A7yJx9za3oL0bedFH7ulcIPlmee8jbu+lhHS7TUBC5Qp9raTMIVZA7XOvY3WCDRNSgIhMC9Xq3uslCx0Z8+PCXvq4NTR1bdsT44m5LnKlvBf5iedKnClgiuk+qSuVHwH9ar8pZdy1opYrM0eJLVOcdqFzOwaZnK9DGiH576ul1FICEXmWj06yz4Y3cvXVMI+kibL5vxvXB3eaZ8mUFGzowZCvA6A6fRhX4bt/d+FJ0ffYVnDmZ7iB2pKeiLe7ZcCvPg2f1PLxP5+5BrJAuJnsO7pvb7z43DnYnEB5FkCnJGbmVXezn6SC4p/rj/fuQi+sxrgxT/h+K2goLHLcB3CzRFccWWYPOd2Zmlbes9zyyvUEnMqeA/H6hYaDAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1689\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1690\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1685\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1686\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1687\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1697\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1691\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1692\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1693\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1698\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1699\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1694\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1695\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1696\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1706\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1700\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1701\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1702\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1707\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1708\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1703\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.00541222989526},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1704\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.00541222989526},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1705\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.00541222989526},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1715\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1709\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1710\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1711\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNtw+swt80lS/I/g9Kq+Z8m9+gh6x4b/V3/mPMFJCwV5nM39jqBXvGmdW8H8FE7Pibwjpb4LQXv0F3zdtOgZnH7ANGvx3bkv4bSRu8LPmetx0yIpU3O/2byG09VSBxN3vEfQExefOr2h7Q2c/lPOx5DN9RZOrzx2J8C95h3RdNLGTem3aj7gpLtMwnw2fMNNq0x8dFY1+BPR9AoDab8lRl/g9Cez2RVC/Qi676HY3VaVr2TTx+aa/98VSDx9yze0e3LlNzj96t57xqNu33HSXscZl66Z+4NoesrbFdLGxxH029P/tE6fw01/e/TB2HLzTzid3Hv/KBvnH5x01XednVNlELSE1BZHQwMEHdLCcOpVCG467pVPN+se3HRXxoLH6+78hdNH09Y8X3/uP046xe8PU+sPBK22cdepP04MDjC6wehOacQCBL3uocXTz56McNrnPBfjo14E3ZmVsKD3NoLmENwfPk2dCU5Lsa+t2eGMm3aeGdPItQxBZ1nvuePJzIyTbuhOabm5GDd9myniZgIDC066aP0jzy+FCDpBbUGd5SZWOM3CXbbDXowNJ+2/bbrm+Wh2OP3+w9sgnvUIekXlXfGdx3DT/Zv/f4ubzY2Tbrjp8WE6kwCcBgAKiy6BQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1716\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1717\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1712\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1713\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1714\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1724\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1718\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1719\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1720\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1725\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1726\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1721\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1722\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1723\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1733\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1727\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1728\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1729\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1734\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1735\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1730\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1731\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1732\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1742\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1736\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1737\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1738\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAA8LFp5XHDiXU5VMsjR4rIB+Vkp5PHFK513UbW46Rso3Q180iHxVydD/O6hckjLM4i5ZbHXd6yksmxCjNMOsm860v9/335dzu/Lz/50ON9dw27pfI/UygscdKjLq0nOvgkcmVtYIw4MbcjAE4hLVFxcdJtH6Evmm0pewVmjiyI0y41gyPmz8aaiirAlGCeiyLw+UnU1yqHOoIdWsERSgZnP3sQuUqqGXT9PIL8fND1G6KcT1qvapSnJ60rkAeZto92zk6BazMTB7JpSrCNp78jljMNJhZTLB/smQFfIOY35UfPIj/xYmzQN3AOzPZKVfHj1GBZ8qJvWOs8OGZ19bVd2gK4tdrQiXXvOziePFXZZ76IPHlFcsej5ge4oXe88F3qEvLQXHxMtvVPcHyzqvbZk2VwVYmblWOOBpwQqzOn2bui9a5sGfcQGV5+sUhZWgr3fhg56Gq2ityJfi5aYgUfptg2WSzAr5QexmMOroEdXiaJy+PXwf5k69uXa+GZRrKPflvo7ULmkqsqNsAGhHBlDHET+TAzEOfCQV/WlVLclwGXuMX19PHRGwg47kfW/9m2uY7O3wLX4PwCCJG/wNTMYwq/LDibp66owWC8/37cYkzYL4J396xYFlSjNx5atJf3ow9awZ7K262j9SK+OjaAhv4bYVFY95/zG/BJugno3en3J2716iLfmjcmHV2Hl9g7q6vJ2G0fbtK7zOjb/rpSUfjoBrzeNIRFN8dpvb2QI5y3QU+KkHk5e6I3fBsyrs+E08xZdP8YPeRZ7ZoDGanoBRs1bZW0HWDuwNPTOiz0k7yZq04f4DYpRW8aBXiw/bIz1sRkJzg8AMtw9IAT5a1Kej56vrggQZG8C2wWpfHxHYEzqHyJLlsfzDRYqm3hwutTvc68JxiCG6qpWZuh6G+mT2ZGZcFVGOsvGq4RWG9z4uvcGgE5SZDXydMzBm/sCMubLoT/BgDa7pkwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1743\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1744\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1739\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1740\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1741\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1751\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1745\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1746\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1747\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1752\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1753\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1748\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1749\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1750\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1760\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1754\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1755\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1756\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1761\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1762\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1757\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1758\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1759\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1769\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1763\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1764\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1765\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8c9I4N/6/+zHkCp1e8aZ1bwfwUTs+JvCOlvgtBe/QXfN206BmcfsA0a/HduS/h9K5TSxR/1r+C0yIpU3O/2byG055SuR+u3HhDNv2nnI8hm+st2XRgkUS60kIEvfLYnQD3mnc46WJ7nrj/Oh+Ipuu51pzlcv6Ik+a7rPy9nucTnFaZ+OisajCCnqM2Q1qc5ytOuu+h2N1WFdz0sbnm/3cFIuhbvqHdkyu/wWlljj21iR8QdFWT5pbtQj9w0t8efTC23PwTTif33j/KxvmHaFpCaoujoQGCDmlhOPUqBDcd98qnm3UPgu7KWPB43Z2/cPplZCn7nlP/4PTRtDXP15/7D6dT/P4wtf4gnjY4PHUFgzmDA7H0LIFO85DTCHrdQ4unnz0Z4bTPeS7GR724aZtJD3OPf8ZNH5jdcnyBEBNOmkNwf/g0dQTtPDOmkWsZgv4ywZ6X8T4zTvo2U8TNBAYWOH16WdH5O0yscDpBbUGd5Sbi6eP/je0V3pNP+2+brnk+mh1Ov//wNohnPYJeUXlXfOcxBB1259zmakMOnHT/5v/f4mZzw+mfTx+lsEzmg9MXNYpfiN3kh9MNNz0+TGcSwEkDAOatYypABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1770\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1771\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1766\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1767\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1768\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1778\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1772\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1773\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1774\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1779\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1780\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1775\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1776\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1777\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1787\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1781\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1782\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1783\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1788\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1789\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1784\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1785\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1786\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1796\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1790\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1791\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1792\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FazATcAAA8GFaXmeWRpcymveVO67UXR65jdKEwp24mFeUYrNeHsNyp4QrdZWdoqhxjA4h1046ndV5d85WaBhGdhNjlkd9qf//07/buX5ffqKhYqs0w0/toj9LCOdFX0lCMIbW5Zws7ERu7uCdyR58jxwzNkvfXYM+kKwMw6a2g1PEivrc6DawF/3YdJ+ID46Sn04mVFYhT6ge6gxw6PD8e9R0bIY1cwD8ar6G2js1DMYmKmw54WKNl7WrBlwl/7hFlJe19g28EGBFDmROgklH/Jx0MmbAjpklyzztWTAnbk+46UX4WXNuK/fCHNijeXSA4v8dPEIc9W20k4MHsxcpIR3ok9Tqt3a5CnBHreF+RvoCWD0+Uu256weYRZ2q7iEugrNXX1934y8h1+2yivPTVoJvPPLN6fTf+qQlgR4lHt7UPVbaz4FHuE9SpwTw4Ae4pELLZTCXKvVY5cEfZlS1fDizgpzVJqurKYc/LbHooLmowK7MQbYjdVXjeRFPpisq4F536AOupmqwa+FEmcjq/z0caNtqpkAfX+GMw9j8BDu8yarnsdbAflTLq3F18PTNlC+E/nWwgXHodJL5BvjFx5xnPbe2fp6EtdNkZBM5H+tLM6b/AjPz56v4GIwX6nLJOz2hD5zCoz7fwUB/2Gy0rLcSjh9atBf1wn1wHBuuQvMri+aTaee0kHObcFna1+AJRkctyvdpIz8UeXPySrfmb8rxZJc19A2EIEYkEYvcviyjTE6CE4ipB5cT4YZdQWP6KfBol0al9MQ2cK3s0j1VGJzd9/K4FgMuxfe5TYk131pL624oFqfx9isHdExMtiMPpenEOrnB04gTzeoi9KYxKm+KWG/Lpxgo6wRsfXADx/3kZ2NDMOWU4H6xP/qm2rCCjWD0l/Okt2MK4DKM5biKbQQmPy4R5uvikfcPh6vn9sLXt4WUzJSi/w1IinDMMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1797\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1798\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1793\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1794\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1795\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1805\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1799\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1800\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1801\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1806\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1807\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1802\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1803\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1804\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1814\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1808\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1809\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1810\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1815\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1816\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1811\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1812\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1813\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1823\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1817\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1818\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1819\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYofeaW+SQp/kdE00JBHmdzvz/BSa940zq3gvkpnJ4TeUdKfReC9ugv+Lpp0TM4/YBp1uK7c18STRu5K/ycuR5BV0sdTNzx/jWcnrj41OkNbW9w0p5SuR+u3CCf/lPOx5DN9RZOBxZJpCstRNBp/8+qXbuHm1557E6Ae807sumkjZvSb9V8wEm3Po7zyuhE0PVca85yOX/ESfNdVv5ez/MJJ60y8dFZ1WAEPUdthrQ4z1c43fdQ7G6rCm762Fzz/7sCEfSre+8Zj7p9J5uuatLcsl3oB5yW7Urf9SgBQXsdZ1y6Zi6CnvJ2hbTxceLpt6f/aZ0+h6CTe+8fZeP8A6clpLY4Ghog6JAWhlOvQhD0y8hS9j2n/sHpFL8/TK0//sNpg8NTVzCYMzgQS6tt3HXqjxNuusHoTmnEAtz0LIFO85DTCHrdQ4unnz0Z4bTNpIe5xz8j6AOzW44vEGKC0xyC+8OnqSPoLOs9dzyZmeF0Q3dKy83FuOnTy4rO32FihdMJagvqLDch6OP/je0V3iNoFu6yHfZibHDaf9t0zfPR7HA67M65zdWGHHD659NHKSyT+YimL2oUvxC7yQ+nG256fJjOJACnE9c+XZNQjpsGADdNEx1ABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1824\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1825\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1820\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1821\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1822\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1832\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1826\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1827\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1828\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1833\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1834\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1829\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1830\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1831\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1841\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1835\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1836\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1837\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1842\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1843\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1838\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1839\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1840\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1850\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1844\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1845\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1846\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FbTDTYQAA8M0mebtsaVdZGHnLRax03SW6M+52VFI7O91GN3rBmVHObpmWOymm+tAxSiedtyFFLrUTrquTvN3hL/KaGaZJMstLffI8vjx3/9vvyw/rf8QQW3W0YIjHqVewYcfPyAmjszF21W3gaIuyOdWLd2DhkK4u63IzODDmtLobqwFHL5xPopZVwNUCiZOoN2Drl9pqVtf0IJh8TecqixpCrmnR9zLH8R95Jj6xLP8b7jVNWLZ0bQz54lnGwXOiKXBtzq3uPJ4a7HiC7UmSzIBlsQeibONnwSJ/mUaeogWP0L6HvHZbAO9PTk+X+hh/gsHw3i1LB04ZFveI0hbBhomRyoB9v8CmnxixbJNlsONvlXlQHLyhc7S4R4b+kv8Ua1oFV7B+nFot/4P7x5KKpo8RK7h/WkhvDfXVg6tKj9p75sPTkojzertVMFPUl3GIhX7AicfwbYcH3o/pZdoacH+YH3G90R7OzJsswRjo4557mxFc/oI93krrylPXkLNZDjdja+E51n0DIZvo3cLnM6sq1o1+UBhGPiLZAFsWSPx81rbt2lzPl2+Cs8dT91BGjJ+bc2wsJPcfctE9bUUNgRC4dVA5q3R3Mrzjyyq9SInepn/JHeuCB5vJXBQ6/JfJtUmhPCL4566lkvptKxrMpCZp8KvWJ+nPnE2Q+/HvTN3ohIs3qbRIbxK41N1Lq2TBOZTOFcFX+CtqeDKfRgbzaMl8doIpONhDSrcR4j+3Xe98VwbnZIateaiMX6lJfKjn7gAXrNe0VfLQOxGJDzhkM+SOt598aCqAu694kSiUnbjnhJIEnsfhYtrkG4Mc/V6sVc1X4F9eV5Q2lmkOFnDljSYiC7DQcrlWlWH8DUpu7sYFK+QagsOEPsMaec9glGHO3gb5+o6LhTPF8P8WkS1uMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1851\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1852\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1847\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1848\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1849\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1859\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1853\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1854\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1855\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1860\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1861\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1856\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1857\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1858\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1868\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1862\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1863\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1864\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1869\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1870\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1865\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1866\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1867\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1877\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1871\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1872\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1873\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYofeaW+SQp/kdwelXfs+RefQQtFORxNvf7E5z0ijetcyuYn8LpOZF3pNR3IegHTLMW3537Ek4buSv8nLkeQe86tUTxZ/0rnLRIytTcbzav4XS11MHEHe+JpycuPnV6Q9sbOO0plfvhyg3cdGCRRLrSwrdweuWxOwHuNe/gdOvjOK+Mzg9wusskzGfDNwRdz7XmLJfzR5w032Xl7/U8n3DSKhMfnVUNRtBz1GZIi/N8hdN9D8Xutqog6GNzzf/vCkTQ0lv2xJzn+wanMw5FX/zoj5tW5thTm/gBQb+6957xqNt3smnZrvRdjxJ+wOlvjz4YW27+STSd3Hv/KBvnHzhd9V1n51QZBB33yqebdQ+C7spY8Hjdnb846U6pjQwbk//D6aNpa56vP0c8neL3h6n1B4I2ODx1BYM5gwMuusHoTmnEAgQ9S6DTPOQ0brozK2FB721GnLTNpIe5xz8jaA7B/eHT1JngtBT72podzrjpLxPseRnvM8Pp20wRNxMYWOB00fpHnl8KEXSC2oI6y02sOOnj/43tFd4jaBbush32Ymw46fLjFZ2XT+Cm/bdN1zwfzU40/f7D2yCe9Qh6ReVd8Z3HcNNhd85trjbkgNP9m/9/i5vNDacvahS/ELvJD6cT1z5dk1AugJMGAOMeJdBABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1878\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1879\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1874\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1875\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1876\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1886\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1880\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1881\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1882\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1887\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1888\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1883\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1884\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1885\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1895\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1889\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1890\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1891\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1896\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1897\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1892\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1893\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1894\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1904\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1898\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1899\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1900\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/7XFaywUcAAA8PO8vOZReYx5FCKLhlIrkd3R6nDCLcsckqw07miqnfMok8ZZsTyG8zh5HjFS2s0jDcurU90J5315nBRyuKO+5P/35b/dl35ffkQipT7hWW8b8d/61m7xdG4nGCNYCDGs2Xd9fHYXAX2wKmuRU/4OHD2yUv84tBXsGnJROMhng4OXr0bpsCqRR1R96fK27nDZO1gYRjtC/QR+JarBD8zxwNe87txlZX4Dz7fwUxMkE+Cf3mbmROoM2Evn/WjP4tx/W7+EaJRisACmOifPM2JEMs9NXMX5dyyDt6bGqlwMfoETN5vvO7HXkCt1m928LL8u8w9yPJK6POGmaxwVXDj6pj5BwVAy+kDnGfwcB+6XjY3MMPmNPB8/e2GzAn7LLoc3NAt/Qats+eC7gTy2db6uphh9UZ5RB8FeDK4udTS2yUQfFyW3JDbcBDtQufTjePQVgYXCsjL0J8i+t5uNt5A7ZEwz+WZwHtHyjd4KPLzMDoux2AanaXC/euxKkB/zWUqsrpQiV9MkCSP1d8BZXV6SyHPoedGeiidp8PLepJL+J7Lf7BjzsZ8h+2qWrQ1kxi44dTL2sPYYnK3oQdAM+YM8IO3UhEc6nPpUVMnGYFz3Lp5sV+lxh+Mq8KUHKfAzeuPMARbcHZtskb+CnsUQRRGC5MA/NFeZDfvOb8ImyMehj9A4b1R8VB58mvxo5l4ffHdZy9xeIvufx4e3izAK4FIrW1EtXvZJ2n0bYf3o5dtYpFEp+kYdHwpZVxFsxaQxl03h5sFcZ9uzsq/e7SNQjYaTEj0l1hwlcK6U3VkVpAymD768JEeBmyYVtrfkYpFbbdgqaGsfAJMICmE2Tugf6k6/3mLA9fkdQnI+/NANsRtuRAUcrbZex6GrghuTna8Ma6qDcV6crOee6JtqA9J3/ODzGJMpMV1D5od417cWjbXAUmX/vO8FcJHgrWVoih7yv/HWuCAwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1905\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1906\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1901\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1902\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1903\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1913\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1907\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1908\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1909\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1914\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1915\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1910\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1911\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1912\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1922\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1916\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1917\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1918\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1923\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1924\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1919\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1920\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1921\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1931\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1925\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1926\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1927\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNs46VV9z5J79R/B6R0b/l/9mfMEJ73iTevcCuanOOk5kXek1Hfhpj36C75uWvQMTu86tUTxZ/0rOC2SMjX3m81rouk/5XwM2VxvcdKBRRLpSgsRdNr/s2rX7iHolcfuBLjXvIPTXSZhPhu+fcBJz1GbIS3O8xVO9z0Uu9uqgqCPzTX/vysQQUtv2RNznu8bTjrjUPTFj/4I+pZvaPfkSty0Msee2sQPCPrVvfeMR92+E01XNWlu2S70A07LdqXvepSAm/Y6zrh0zVwE/fb0P63T5xB0cu/9o2ycf+C0hNQWR0MDBB3SwnDqVQhuuitjweN1d/7ipF9GlrLvOfUPThscnrqCwZzBAUY3GN0pjViAm54l0GkechpBr3to8fSzJyNO2uc8F+OjXty0zaSHucc/I+gDs1uOLxBiwklzCO4Pn6aOoKXY19bscEbQWdZ77ngyM+Okv0yw52W8j6BvM0XcTGBggdNF6x95filE0AlqC+osN7HipI//N7ZXeI+gWbjLdtiLseGky49XdF4+QTztv2265vlodjj9/sPbIJ71uOmwO+c2Vxty4KT7N///FjebGyd9UaP4hdhNfjjdcNPjw3QmAaLpxLVP1ySUI2gAl63WFUAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1932\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1933\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1928\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1929\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1930\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1940\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1934\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1935\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1936\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1941\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1942\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1937\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1938\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1939\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1949\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1943\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1944\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1945\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1950\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1951\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1946\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1947\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1948\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1958\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1952\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1953\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1954\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FaywUcAAA8Dt3ktfO3fIai5PpZB6dRW2JynWlO24tt4l5XqNm4VQWN841E4uVbLjkFMIQhdKa6bB1mlded/J25xzdRSavQ31p/39f/tvN78tPNlpATjX52iH7N4uV1JjxtAc8S4qVTdhLwBjGF/cESTd8einKpq4TzHJcD8End+h8pFHlcnvVJ+R83IqR3KYV7Bd1XjkgawBHaq4lkCprwKygXI8ZZpMv6rja0e4gZzHySCWH58D9hrxJXUfrX5CC8bdWnASh42DVB1l2hnYG+WoQ2ZHFlSMPJHVNSJYXwPZnAlxwvEXwKbdC65YsFfIbVsI24e1lMNdHoMpPVuv8pMUUvfm4BjzEX/MPFsPF9SauSWmr4O25yVpf6186/6CIntnNXEfe0jtdOiiAh/nIaQvt8OuFBvF5dr+RC2mKc1vV6GPdi6SDioNfVmIrZlA3dd6TO5R+grYFrg57oayogI85hJOpXeg98+ZFMvI2WMpyarNcgQfQ7O7ffKMF55gOjdH34Wn7id9Jg7vIjQlsZbzVHnJpIhPvwUNf1ZP5su8R3LiY53VSiz579q45cXIf3ICnMwhRf8DcXHVNAwbjh7p89rOh5BL605ZTov5K9GajaxRZv+4HbuEulphjD/xPwprobTh6YYtBhl4KPM70rG35MT2wV8RD+b1e+L7GzJGqRT8yNbxThsGBX1Hc1PU0OJvYu8HpQ08R8UQaezxyNp+pdW7XB0dTm9cVVw7pfPFuQ2dtODx94PVlbBJckbsU6zry32YD3gvjcAcs9gkbb4CcsuGGIxIPg9kMHMfFG32qxfz77Xz0VjKxMkIIz298njLDN0R+JGbzgv84nBOS36rHNQK/E/hcHSaYIPcPbH9WwITfyVbkxDyGqzB2c5vppmD9Pfn8jx0C8kFp6PbyUTPku4eCSxZL0aunPzpFZ1mC/wIh4RbwMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1959\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1960\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1955\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1956\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1957\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1967\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1961\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1962\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1963\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1968\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1969\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1964\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1965\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1966\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1976\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1970\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1971\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1972\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1977\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1978\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1973\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1974\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1975\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1985\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1979\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1980\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1981\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYc9I4N/6/+zHkCp4WCPM7mfkfQK960zq1gfgqnPfoLvm5a9AxOP2Catfju3Jc4aSN3hZ8z1xNPV0sdTNzx/jVO+k85H0M211s4HVgkka60EEGn/T+rdu0egl557E6Ae807nHSxPU/cf50PcLrLJMxnwzcEzXdZ+Xs9zyeiaZWJj86qBuOmVxhI+y0x+gKnP5nNrhDqx03PUZshLc7zlWi676HY3VYVBH3LN7R7cuU3OP3q3nvGo27fcdKyXem7HiX8gNNvT//TOn2OePrbow/Glpt/4qSrvuvsnCrzh2g6pIXh1KsQ3HRXxoLH6+78hdOdUhsZNib/x0kfTVvzfP054ukUvz9MrT8QtMHhqSsYzBkccNFqG3ed+uOEoNc9tHj62ZMRJ31gdsvxBUJMOGkp9rU1O5wRtPPMmEauZbjpLxPseRnvM+Oki9Y/8vxSyAKnTy8rOn+HiRVOH/9vbK/wHkGzcJftsBdjw0mXH6/ovHwCN+2/bbrm+Wh2nPT7D2+DeNYTT6+ovCu+8xiCDrtzbnO1IQec7t/8/1vcbG6c9M+nj1JYJvPB6YsaxS/EbvLjpAGUI7ePQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1986\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1987\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1982\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1983\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p1984\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p1994\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1988\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1989\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1990\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p1995\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p1996\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1991\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1992\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p1993\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2003\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p1997\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p1998\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p1999\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2004\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2005\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2000\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2001\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2002\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2012\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2006\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2007\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2008\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/7XFeyzUcQAA8Mszr7mki81CLo9aGHqtrqSTrTzOwlLmGEuPE+40SziuTC6dKYvziLhGnGcepW7yaMnzXOGQyKvDiQlHx62/fL/++W6/tfX55yPue2Iard3eKEZMoURUMNM+Ix/TCxEPm7SBca6fbMLaWjFvYOUUGydqBlOIy74qjMZ/PkCTNyt4+Q7sGHh2ukdchpziwbYddas8s3WltNS5e2oArHJjwZx1dRAsaZT12o/BL7vfCuWlDoEl9eIkpnwUvOhhSqTQJ8BHrNMNaxIl4IOx3JUipRnkBi8oRomG6K8YZL3JujmL/HTdSC/ZbQ5MJ7EkHIYU+TfCiMtri3nkovglsncTnLa+/t7iwQKYMRwtpEctIr+b4ZLQ6raM3OS3QIN8DV7T+T1HyIL7kSacpwRwr3R12mPjFXCITcaAcBL+LKa4/uOlVeSRDZLy0nz4c65Rk6udDFxS4LDvUCr6Ir/c6cLCNXD/fn9Tuxa446PAXnv9dbDVW2ZFUaQcnKwj6ndRwC085+JLijeQ31OED+kJ4Vq6PtM0g03w01Z3Oe0k+oFwNxXbGHitA6OjiwPXMm+oonIUmKezpcVlOJzj1uQi54LdEeiP7x3J6+Zhv71jzSibD8f3LVmKu9GfV2cdyFqAu68pn+Pu2YGcx5GGufrDf+ku5VVtO6tGnakUhf66zimjfDMl8FHq/Yk7nXDFPJ5oJ8d+gaW1lO+s/N/22dW5GtwFr9bzjKASVMDEABHJ+gTcnxBBvUBTBae0yMwesrDPl4SmyXzVkGdulDW/8sf+JHsm5PDXbeN7jk0Nwk0Scj/UZ6pjPpowXrfO2YmcU5EdNRqvgXn9IJkTeRB9sC+nVomuCQ7XWi4XxMGrWaSLX3S1kdfwfVM2vbB/O2kyOSgFLsEZ/5DF6YBVNyfG5/7ogomZ3Da2Kh68oebN/ZkD/wsl+Bi6MAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2013\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2014\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2009\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2010\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2011\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2021\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2015\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2016\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2017\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2022\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2023\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2018\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2019\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2020\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2030\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2024\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2025\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2026\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2031\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2032\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2027\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2028\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2029\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2039\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2033\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2034\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2035\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/9ux4f/VnzlP7HfgoIWCPM7mfsdNr3jTOreC+SmcnhN5R0p9F/n0A6ZZi+/OfQmnjdwVfs5cj6B3nVqi+LP+FZwWSZma+83mNZyuljqYuOM9gp64+NTpDW1v4PTKY3cC3Gvewelie564/zof4HTSxk3pt2oQdOvjOK+MTuLpLpMwnw3fcNP1XGvOcjl/hNMqEx+dVQ3+BKdXGEj7LTH6gpP+ZDa7QqgfQc9RmyEtzvMVJ933UOxuqwqClt6yJ+Y83zecdMah6Isf/RG0Msee2sQPCPrVvfeMR92+w+kpb1dIGx//Aae/PfpgbLn5J9F0cu/9o2ycf+B01XednVNlELSE1BZHQwMEHdLCcOpVCILuyljweN2dvzjpTqmNDBuT/8PpFL8/TK0/ELTB4akrGMwZHGB0g9Gd0ogFCHqWQKd5yGnyaZ/zXIyPehnhdGdWwoLe27hpm0kPc49/RtAHZrccXyDEBKc5BPeHT1NH0FLsa2t2OJNPO8+MaeRahqCzrPfc8WRmhtNfJtjzMt4nnk5QW1BnuYkVJ338v7G9wnvyaf9t0zXPR7PD6fcf3gbxrMdNr6i8K77zGIIOu3Nuc7UhB5zu3/z/W9xsbjj98+mjFJbJfHD6okbxC7Gb/HC64abHh+lMAnAaAJyCsVlABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2040\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2041\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2036\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2037\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2038\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2048\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2042\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2043\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2044\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2049\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2050\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2045\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.6383027248062012},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2046\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.6383027248062012},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2047\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.6383027248062012},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2057\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2051\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2052\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2053\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2058\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2059\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2054\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2055\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2056\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2066\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2060\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2061\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2062\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FaywUcAAA8Ht2OcwRhzFk5z00kqyJlaPZ4VS7Zezu1PXQbNzRNHlcykS5WtnyqLzzJptTKROzkbzOJmfD4bhwdCWcc1x96v/vy3+79fvyk04+PZpuNNQjRYyZW423aeqDt2UW9TPQM2lbMYSUHjCXXLPWXfsBLMSryHIbMXLuxvkks5p6MDOq4Jgs4k3Q3280TPZHufWCuQpehqNAAiYkqJxzYqeRr/SoJb7z//xWmpetlSFvzc8cK2Qr9N4hINwDn/ENuZ9XkXVH7grYPbNkuw63CraqZNrmWsNPd85KQiKU4ESN5qPLfRXy3mYjT/6dH8g1CzMNQdY/kQt3xbf9W36BiQNHr4bjtpB3DM+9GM+BxwXK6cvd8ItFpMRC+23wde/nU+NL6FO7VlqbKnbAr0psexk+anBj1XE7j8fo05KwSrXNLthXMJHlTofXxb1UVFfDgx/GS3zNNcg9ORduiu30f4rp/M5SBb9W7U3COO2B840nvobptGCXaKWwsX4f/Kw/Upt46kDvaz/frRx5oP+Gzl3tHJFO7/PmUy1MZ9C3EMIYJvG/kcfk+8nCHqEXFKzXt2Awwagr5j8ZDIaiD6mjVx3hw09azpaP1sCHvuzaljWjp0xuukpH0YeScpxKVfDIXfzZEgss+LvJZnk7G17aQcrGpcFPcO7Jbw3j9F63QaH5aNGn68yol7zxyKtcvdab6XCW6fAObwS9a3lG+YYDAUzjTgR6Bei/GTXFbzsBbjQQPUdORs+m8jnhiURwqFu2LSUZPUsYoXXrhhfvt/Q1sA+Bs8Zen8Py0S9RxvyXp+GOWOwTFoEEZjHwPA//w8jTqYudGhHcStqr4JTqv6itLE0mNACbX1GfCZlGz4sRiXECMjjZcKu1Owu+grFfUGcZg4kH8kXlngmYVlwyWECkgMenYjVrdv//+tx758u5luA/3ZosITAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2067\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2068\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2063\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2064\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2065\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2075\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2069\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2070\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2071\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2076\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2077\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2072\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2073\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2074\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2084\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2078\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2079\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2080\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2085\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2086\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2081\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2082\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2083\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2093\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2087\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2088\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2089\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8iaYbijnf7ptyG02dumU+S4n8Ep1e8aZ1bwfwUJz0n8o6U+i7iaY/+gq+bFj3DST9gmrX47tyXcNrIXeHnzPUIetepJYo/61/hpEVSpuZ+s3mNk66WOpi44z2Cnrj41OkNbW9w0p5SuR+u3MBNrzx2J8C95h2cTtq4Kf1WzQecdOvjOK+MTgRdz7XmLJfzR6JpvsvK3+t5PsHpT2azK4T6vxBN9z0Uu9uq8hUnfWyu+f9dgQj6lm9o9+TKb3BamWNPbeIHBP3q3nvGo27fcdJVTZpbtgv9gNOyXem7HiXgpr2OMy5dMxc3PeXtCmnj4wj67el/WqfPIehvjz4YW27+iZOu+q6zc6rMHzgtIbXF0dAANx33yqebdQ+CfhlZyr7n1D84neL3h6n1x384bXB46goGcwYHGN1gdKc0YgGCniXQaR5yGkGve2jx9LMnI5z2Oc/F+KgXQdtMeph7/DOCPjC75fgCISacNIfg/vBp6rhpKfa1NTucEXSW9Z47nszMcLqhO6Xl5mIE/WWCPS/jfQR9/L+xvcJ7Vpw0C3fZDnsxNrLp8uMVnZdPIGj/bdM1z0ezw+mwO+c2VxtywOn+zf+/xc3mxklf1Ch+IXaTHyfdcNPjw3QmATgNAALpcChABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2094\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2095\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2090\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2091\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2092\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2102\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2096\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2097\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2098\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2103\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2104\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2099\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2100\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2101\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2111\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2105\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2106\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2107\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2112\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2113\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2108\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2109\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2110\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2120\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2114\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2115\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2116\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAAcNs8ijkseWTFxIRDOJwrdN1GyZgcl+NwolTubKPkkbHOqa5c0RWSR2iUR2KJznWLziOOSE3e5rE8moTNsz75//vy73b7ffkJBrJIifjO9wLEdDqzhv2gQ+7HCRcFQ0btyMNUS+eay97JfCpOrCo04IHDFs/GEErLwXSfO0fHaK/cdo+qGGj1MecjV7wkJnOCBpGLGgQZ7M0xmV/yIZnQWULk3oSWofa5abCRs6clLnkWuYP1Q/36dBHY4kbuKhf7A6xXTCem66PnRB4M0r6C3vXNyGcKbR45y4UjyoxdAA/rjHjUmS0iP8BMSGDbwvtSlyn+fPmPHUrsZcUvgfmVeCtmEnx9YrjCTf8XOFXKu+5U9Ru5Uhsp0hO7Ak547JHWSoPXd43m93LgwS5C6nQzPI865SrlroIfJZc3fPRbA8c1iapfFsELcol8LzsJOD4GMy8xkILtWX0pFlQ4N/jpTEkJ/KtxCMmuBW4V6neZd2gdbH9vslBAQv+NTn6rK4ZfKLFRUTDdAJs3smu4cZvIPamG1yKrZd/Mdz71RfkW8qQdxndCL1xNI2AmWm8beXar92b0MfRlHWnF3bfQq+UkO9pu/mdyU21o5g44Yzxuv9YwPPC2w5jH3T9gCpf6bB9T4cTunZ+kxCeVcHcVjmmeGH1p5kKMVwgG/FNjubD2n/PqVdjYePRR6seJRYexyB1DbwqvdqH/MtK/UaCAQ564Q9A5ZwMP0Opai+iWfZOwPhdrZ0Uwvs13VJUBdzdnEzUZSuBwu7qVqdPKyHO2qj5UhKBP6Xl+CsOET2n2OE0Pwo0xmPsBiirgI2vWOC2tPXIf4IWLsHSC6wn4M6F56LXPS05SBveCIwIzeViWKpihtlLdnAJ/zXE506+BB1O8m7OzaPIvUjCckKSog5W2hZPzGxrIt5T9c2fzNcELo43k8HRd8F8CChpKMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2121\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2122\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2117\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2118\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2119\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2129\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2123\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2124\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2125\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2130\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2131\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2126\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2127\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2128\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2138\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2132\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2133\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2134\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2139\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2140\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2135\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2136\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2137\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2147\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2141\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2142\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2143\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8c9Jlb5pOk+B/B6VV9z5J79RG0UJDH2dzvT3DScyLvSKnveoqTNnJX+Dlz/Uui6V2nlij+rH+FkxZJmZr7zeY1TvpPOR9DNtdbOB1YJJGutBA3vfLYnQD3mndwutieJ+6/zgecdNLGTem3ahB06+M4r4xO3HQ915qzXM4f4bTKxEdnVYM/wekVBtJ+S4y+wOlPZrMrhPoRdN9DsbutKl9x0tJb9sSc5/sGp2/5hnZPrsRNv7r3nvGo23ei6aomzS3bhX7gpGW70nc9SkDQXscZl66ZSzz97dEHY8vNP3HSyb33j7Jx/oHTVd91dk6VQdAhLQynXoVQj+7KWPB43Z2/cPplZCn7nlP/4PTRtDXP15/7D6dT/P4wtf5A0AaHp65gMGdwgNFqG3ed+uOEoBuM7pRGLEDQswQ6zUNOE0+ve2jx9LMnI5zuzEpY0HsbQdtMeph7/DOCPjC75fgCISacNIfg/vBp6gjaeWZMI9cy3HSW9Z47nszMcLqhO6Xl5mLc9JcJ9ryM9xF00fpHnl8KWeD06WVF5+8wscLpsDvnNlcbcuCk+zf//xY3mxsnnbj26ZqEcgGq0QCaNofPQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2148\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2149\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2144\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2145\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2146\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2156\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2150\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2151\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2152\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2157\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2158\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2153\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2154\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2155\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2165\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2159\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2160\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2161\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2166\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2167\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2162\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2163\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2164\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2174\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2168\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2169\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2170\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FWUwSYAAAYMSMPDaJeaZ55ZlTEjPrQbMltkwU01xO55VHKxfoXE7DIKbzSGmVK7XlkTY8Esw80sXMo6ltqXgEVh4rYB4Ym2mIKPXk//fyN9b6Xj7xzAP7XKP3fWLEVGoGn3l/FDkmZJhIGxmCzy8nWrUMaD19VsHPT+pFHpB4RjYubgUnrF2kERoa/3lqWMmxBUrb6b2vNs0Mhbn1gxNkyQyHTCHyNnkLeUwqQr7UpxR6L87Cu8WFTPUC8lDC4OeRFSlyXnHeeFmcDOzjWW7ZUbCE/Ghe5SYXuwy2qKNaF1jC2SmHY0yuw/275oSBlFXwoYycHKbXGniStR54qR+erlK9cclXINcbtk8Jxm4gt/sh0A9Mhcf6fSNLBfDIclx6me0m8iqyxH+LC08jPhZNSOCPGI3d7yJ+an1W7xKvpRZeXWndH0JSIm9+dtzG/Z72Z9N0VpVWW2Bu7FNZfT36jw5x9qRB9AF3E4XeJiqt94iPuNZpAxdRnV+bK+Cp9UQcxmkb7NbD5HOz1OBgsu3NFB56l/BVVnPjDviWhv6JMAE3NI6SpVvsgp+P3qn7UAQ3rGCc8FLDCxezTA9+0Wh9dLHPwrnSX+DMEnljKwYTsHft4lv9kaD/90nzuZqxBvT4mXVX8Zj2B+HYTlUKeOiW7tlKUx1wA0dOC4mDfzder3n5l6s6cExsNnrNGt6RpMaCp+emtqsxushzNQSzy0TtbyeEZ8Sb7QO71jBq1uzgjgmTfp6n4EbD4fMGdO0vHVQeKWLrIY9iUdRuAngS6dWG5Px+cMVO60BTHFxSspzmMf3H+HFf6Sw8KkQ32d33APJcs69dKg56Dv9J9gJLH3lyNKcTm2mAnG64wRPchrez/S5MGRuBA0MFDx9Q4B0vokt3I9HfKJQUXymFT4hiVCs2eLB8vsc5qcAc+W+0F0BrMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2175\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2176\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2171\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2172\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2173\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2183\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2177\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2178\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2179\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2184\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2185\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2180\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2181\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2182\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2192\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2186\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2187\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2188\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2193\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2194\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2189\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2190\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2191\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2201\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2195\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2196\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2197\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ofeaW+SQp/kdweseG/1d/5jyB00JBHmdzvyPoFW9a51YwP8VJe/QXfN206BmcfsA0a/HduS9x0kbuCj9nrkfQu04tUfxZ/wpOi6RMzf1m8xonPXHxqdMb2t7AaU+p3A9XbhBPBxZJpCstfEs0nfb/rNq1e7jplcfuBLjXvIPTfJeVv9fzfILTKhMfnVUNRtCfzGZXCPV/gdNz1GZIi/N8JZs+Ntf8/65ABJ1xKPriR/9vOGlljj21iR9w06/uvWc86vYdJy3blb7rUcIPnLTXccala+Yi6ClvV0gbH0fQb0//0zp9Djed3Hv/KBvnHzgtIbXF0dAAQce98ulm3YOb7pTayLAx+T9O+mjamufrz+GmU/z+MLX+QNBqG3ed+uPE4ACjG4zulEYsQNCzBDrNQ07jptc9tHj62ZMRJ92ZlbCg9zaCPjC75fgCISactBT72podzuTTzjNjGrmWEU9nWe+548nMTDRdtP6R55dCFpz06WVF5+8wscLpBLUFdZabEPTx/8b2Cu9x0/7bpmuej2bHSa+ovCu+8xhuun/z/29xs7nh9M+nj1JYJvPB6YsaxS/EbvLDaQDgziFBQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2202\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2203\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2198\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2199\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2200\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2210\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2204\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2205\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2206\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2211\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2212\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2207\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2208\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2209\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2219\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2213\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2214\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2215\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2220\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2221\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2216\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2217\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2218\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2228\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2222\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2223\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2224\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FbTDTcQAA4G0mxRztGI5kuGlcyKK6CndZLmfM1e1IZ4giK9voXGtZFqckeruwq9O5dQiHLG+1W6KjTtq60yYsL5u8rCbR7Bb1pX7/vvy6nefLoxq+TeTh3shUf6bTOc2CW6+ho9RzKa4NL8F07+UEbI4MerK1eF766Bl09oi+uTC1G0yPLQn8RGsJ+3tG/XBfLLkHnDyTxvfkKqC36BqoQ1olGJupJwkTR6DPygwKyoT5x8dknRWXfwQvxhK96dxp6DH43tGBeS10j31Rfhb8z+Bg/7sukqJZ6L6XqlZqMXMbXpi+LdEhC/5xZ1Gn6Mw8OLR9XBFBWwCPEcYj23y+gFlG43OfQj04Z5Qn5+YtgnsacTs5F5GNk2P1YS7fzD6Xqq1/S1gCW/YT06Mwy9AvVEQW9NGQPb5Lt0ScQpYMqu/LhfBPHJymaqXIIqomdLV2BXw6oEIp1yDf49d1vDr6A/rjmt3ufuUGcF42esHgugqmcN/n+1KRP3gmEYN6kcOvpygoDsYNT7kxVa0iIivppE4nPXxyl6C5NtcE3caOMcNyXgPf6YsxsfbDV7Jp2EA+sk0lP2SX6Z9J3a3MsnVw8USu49Yx5CZsZLRdyi8wt0RX14RChW/0vU7j1UNi+DGrFoeqHNHQxWW67Ogk5K92S9Wt/1kksRJg8sw/w/aA20MvDDiEeWX6/CAybx1PiA+wgF6zw1/XSEXGyMSM0Z/wn+DjOEwCFown5ASvZMLH9ceprdnwkwgcZhTLEvphssDNnm3+pb0Gr6tCZMZlmoksRU4NalvWHNkE1ti/26MdQfZEo28ysFbQPQoevOioNH8eYardWLYZ7KzqmWGK4KcllD3FcK2hSxoTSteO4cDnijXXTpaa/yxq+6Qh3xa6d2XVQImlPXS5MtE47w5fp+4ipRY5gX8Dh8+QoDAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2229\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2230\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2225\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2226\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2227\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2237\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2231\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2232\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2233\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2238\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2239\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2234\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2235\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2236\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2246\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2240\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2241\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2242\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2247\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2248\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2243\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2244\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2245\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2255\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2249\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2250\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2251\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8cNENxx7t9U27D6TO3zCdJ8T+C0zs2/L/6M+cJTlooyONs7nfy6RVvWudWMD+F03Mi70ip7yKf9ugv+Lpp0TM4/YBp1uK7c1/CaSN3hZ8z1+Omd51aoviz/hWcrpY6mLjj/Ws4PXHxqdMb2t7gpD2lcj9cuYGg/5TzMWRzvYXTgUUS6UoLcdNp/8+qXbuHm259HOeV0fkBTneZhPls+Iag+S4rf6/n+YSTVpn46KxqMG56hYG03xKjL3D6k9nsCqF+3HTfQ7G7rSpfcdLSW/bEnOf7hpPOOBR98aM/8fSre+8Zj7p9h9NVTZpbtgv9IJuW7Urf9SgBQU95u0La+DiC/vbog7Hl5p846arvOjunyvyB0xJSWxwNDXDTIS0Mp16F4KbjXvl0s+5B0F0ZCx6vu/MXTh9NW/N8/bn/cNrg8NQVDOYMDjBabeOuU3+cELTPeS7GR72McLozK2FB720EfWB2y/EFQkxwmkNwf/g0dQTd0J3ScnMxM5z+MsGel/E+gr7NFHEzgYEFJ52gtqDOchMrnD7+39he4T1umoW7bIe9GBuc9t82XfN8NDtOun/z/29xs7nh9M+nj1JYJvPB6YsaxS/EbvLjpBtuenyYziQApxPXPl2TUI6gAdo0xtpABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2256\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2257\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2252\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2253\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2254\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2264\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2258\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2259\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2260\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2265\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2266\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2261\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2262\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2263\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2273\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2267\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2268\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2269\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2274\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2275\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2270\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2271\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2272\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2282\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2276\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2277\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2278\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FezDTcQAA8NnGyuPYLq/skFfk2npJrjwq090aVodr6Wwuim41Qw9vVs4jlHJX1gvNIRtyRA+HcueRd+c2RTjMa24lbMuj/um+v7++d79zff75yIYe7IrX72qW/ZvJ5Fen5HeCMYx2Kq+jDWzmdCIpefAjdMz3uVCLSvhMu2UWPqYZzNEVzTeVvoeeilPqTlrUg71Cj8v7ZBLonMWzPJKoHMz0z9435lvjCTuiYqjN36kVzJGHJdpED6C+RlFJ652WgvGRSgdB8DB4tkGWkbI2Bq7KSurLDZFDt3ajO+MSZ6C7UArM69JnwXuSClfKsHPQzYqZ5HRz+OfNhI3CK/NgjzejA96+C+Cd/Li4lP2L4MHUJe/A1v83V6P5sPuOEtwq1t/LT/gBXTMxUuFp/hOcqq6/5Sr5BdZu3xVOxy6DL7hP0qab0B9QQODmWq2AhbQpD3UZ+i9TH0n7p5CfF5JbGQdU4Fclhyyd7yHf5GktqCzUYK+7oQMHd2jAUqZDo6kS/ZdeUgkY+99gp7cp1WWxa2A6zepGeNXWT9iM+krqXwfrGQbJuWYbqH/Y5rfGPYpc2plW3JOJrOfw7jU7bxN6xnisMXEEWYI/xTAM/QM9OltRLsFgvLZ60XjL9g4f+EdMR1/0ipC7PqvJT8TIRkNLjrJe9PsQBPZCJbKfGney0FgLuihPwWOEwI8wOEYussWCD7NvT17vRo7fJJmco+LAJY4UhZiGHETsXg3rQT+2WRT0bR25lnSGzzbBQ7fjDLpT3JBJJjEuK5HwQ0z4bDpXG5zzSWWbKUAWz17NV7F0wFNGfa7Tw8g2Wlr3g/AEsHXas5aGx/AdVyk4InEb9DBWXj02Whccpbdc1ZSM/lqB++kvhvrQ68SsnI0A+NcyprIu5qB/FmM1oUo2APdLgzXzlkbQ13UCC2eeIv8FBN+HQzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2283\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2284\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2279\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2280\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2281\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2291\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2285\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2286\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2287\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2292\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2293\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2288\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2289\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2290\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2300\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2294\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2295\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2296\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2301\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2302\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2297\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2298\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2299\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2309\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2303\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2304\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2305\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYovWPD/6s/c54QTQsFeZzN/Y6gV7xpnVvB/BROP2Catfju3Jdw2shd4efM9bjpP+V8DNlcb+F0YJFEutJC3HTa/7Nq1+4h6GJ7nrj/Oh/gdNLGTem3ahB06+M4r4xO3HQ915qzXM4f4TTfZeXv9TyfcNKfzGZXCPV/gdPSW/bEnOf7BqczDkVf/OiPm1bm2FOb+AFBv7r3nvGo23c4LduVvutRwg+ctNdxxqVr5hJPV33X2TlV5g+clpDa4mhoQDwd0sJw6lUIgu7KWPB43Z2/OOmjaWuerz/3H06n+P1hav2BoA0OT13BYM7gAKPVNu469ccJN91gdKc0YgFuepZAp3nIaQS97qHF08+ejHDa5zwX46NeBN2ZlbCg9zZu2mbSw9zjn4mnOQT3h09TZ4LTUuxra3Y4k087z4xp5FqGoLOs99zxZGbGSTd0p7TcXIyb/jLBnpfxPoK+zRRxM4GBhWi6aP0jzy+FCPr0sqLzd5hY4XSC2oI6y03E08f/G9srvEfQLNxlO+zF2OB0+fGKzssncNP+26Zrno9mJ5r++fRRCstkPjh9UaP4hdhNfqLpxLVP1ySUC8BpAPIdt1hABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2310\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2311\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2306\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2307\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2308\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2318\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2312\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2313\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2314\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2319\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2320\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2315\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2316\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2317\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2327\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2321\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2322\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2323\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2328\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2329\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2324\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2325\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2326\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2336\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2330\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2331\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2332\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAA8NkmIWcWQ5aGKXIecVJ3ieRRmuzq7HKcoUUPnQ2dI0zixMnlzl02aRXXctF6kOraLY+7VGTUsUV5bGa6W5PGLFp9qf+/L/9u1+/Lj07niLh1ryT0308RM2XjlH4whvbSP7u/D+zkHVFcMtKDHPNpPs3l7j8WFdf30eB0qi4RnysBs+VaUXn6M3ApTmulcOkEh6ftUw3J2pGnao5kE1vumDw9vjpgMu5+GOpUFavIPWcYrJboh4Om5Oi7ZJXc1UnwQrwblZ6jAFN2x/rgiuaQB/vVO3dUqE1+ezFvSYidBzvdpJMrnOFlJzYn2Z+Bb+IUFHB3aMAjpYuRCd3wLIPh+bZyLfLc8UJpTv4C2DA90Rrm/BV5XtRs6yBpETnlm9gyMkNn8smhiqhZsenzo5R7V4RL4Ez/q2NSJfw6j9xNC9SDhclNqubmFfCoe4pbYC/cl3n0dKerAXnQ5RmBzA0+Rt/6xFFr+hnN/hYYz+9g76dckTBvFVxlMzIaY0R/3sj+QJSuIbe2ZaiynH4gH2PH4QOK4JVTeQ52E0bk7fgYmm3aT+SJVcGTMTXwSGHUrY0cTPifdzl+FLxtMf3Xb1bIjW3ooy3KPPla+OEV3H6egxn4i+2i4EEKen6HBRebDz9ps4d8wwNr8juZFxXnBuBGDYEauAovNBJJx/xxYIbdwDJrEI6VtDDG1/5/L0GRQEPBIyeScoOXTsFTSBxmbJY58mhvLpnAhtf06j0ulaFnlMateovh6YGPdMqD68Bt6rN1+kR4w1p7T2sK+pKh2wfMOHBl9Xym7/u/JgyFzMrh7mZmVxh4CzDlQtOLrga417Ifzs5uPXIGDcfyCYEXkmYeG2rhTrJuFZOPvlbUmD9Zagm2P66PiJSbPiuxthObYwVmW+vuiUvQPywLPfTOdgNyNWbLtL7EBkxt4PVXmxOQS8eSDJ9d4WvrEnhz1+C/ALZZ0ZYwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2337\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2338\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2333\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2334\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2335\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2345\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2339\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2340\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2341\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2346\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2347\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2342\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2343\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2344\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2354\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2348\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2349\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2350\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2355\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2356\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2351\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2352\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2353\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2363\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2357\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2358\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2359\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYofeaW+SQp/kdwelXfs+RefQS9Y8P/qz9znsBpoSCPs7nfiac9+gu+blr0DCf9gGnW4rtzX8JpI3eFnzPX46ZFUqbmfrN5DaerpQ4m7niPoCcuPnV6Q9sbOO0plfvhyg0EHVgkka608C1OOu3/WbVr9xB0sT1P3H+dDzjppI2b0m/VEE+3Po7zyuhE0F0mYT4bviHoFQbSfkuMvuCkP5nNrhDqR9Bz1GZIi/N8xUn3PRS726qCoI/NNf+/KxBBS2/ZE3Oe7xtOOuNQ9MWP/gj6lm9o9+RK3LQyx57axA+46Vf33jMedfsOp2W70nc9SvgBp6e8XSFtfBw3/e3RB2PLzT/hdHLv/aNsnH/gdFfGgsfr7vyF0y8jS9n3nPoHp4+mrXm+/tx/OG1weOoKBnMGBxittnHXqT9OCLrB6E5pxAIEPUug0zzkNG7a5zwX46NeRjhtM+lh7vHPuOkDs1uOLxBigtMcgvvDp6kjaCn2tTU7nImnv0yw52W8z4yTvs0UcTOBgQVOn15WdP4OEyucTlBbUGe5CUEf/29sr/AeQbNwl+2wF2Mjm37/4W0Qz3p2nHTYnXObqw05cNL9m/9/i5vNDacvahS/ELvJTzTdcNPjw3QmATiduPbpmoRy4mkAR+OsYEAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2364\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2365\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2360\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2361\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2362\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2372\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2366\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2367\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2368\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2373\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2374\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2369\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2370\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2371\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2381\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2375\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2376\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2377\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2382\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2383\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2378\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2379\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2380\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2390\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2384\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2385\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2386\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FWUgTYAAA4B2aeaEuTzSYZh5JFppIkAe1tTKPWTSywCuvMnNugmBzHijmspURoaPyyFLzLM8k8chwlkudmvOapptNnWg2jzm1XuL/e/lj9L18opFH1sl6n9pFf6ZSE2pT83rBM4Ro0QSRDzZ3PJ3CFnaBMeKFMMvKf1yb8rjbF061VQRpMNvB9LGV2szwVuShyxfjCaXlYGoA5/i0X50X6piKke4Ax05w6HwEy4YxCK6TV5K/SEfBsvbNQdeZMfAV/9i40gfjyGXNouxU1TTy1QBrWypjDuxP+DDBX5SqfU1OSv/94Hkw8aSPE571Hezm/NiiIUum9ubFVKssiwVwRuTBa8ax8KvmvBbezUWwZ9PUIMlvSe0ZHhkyLlOOfNJ0ilJvv4xcmLZGutwJv6VUvrfPXEHOnEgeYCStgpXfJiu8LH4gTyRLKwSma8g1e6wjfXAKMPFnmzYpCt7QJ346kIGeR5Z4bpWtI3/CKm/+eGkDnNgqq6ksgifFY5c2LbfArgwh+wgZvfe9sEFXYyV4lGrXYraCPurFMS3M4W1wjr7wK2VPBbYPXEp7Xb6D/M4efZwwgP5lb3qx4O4uuPEE87OAC9e1a30Twt0DZ88kmhhNoq/WoPgahP1CHpTjNk3J/f8ZHHl5NQbjjbpopkObfxY9qYxcciAB7r+FP1NgggXzGrRScUnoY/RPWRUdwoH3lg1tXVToh6eGtp9j8Gpf4uAsryKjpxn1bUQI0OPaS2kTO3CHQlbhMlEDTDBluq3fgOv1BIp16HBamp/KsU1T7cNd6hWS8/vAVbK4vM0geP5OdVdFMHp2/6tz2AS4hLMQfXT4rw373aVjcBss9iFNQws5Mf1ZR3M+3GHDGW9ktB9M88VHOLnDk01nm5RcuLmocz6Ehz4iiNuIY+iA6bqKmjY2/G2Gx4UhAz3kt7MlOddz4Zq7c7NL2wbIbfML+BxNQ7WXi9/ZhWeZIf8N9nOfPDAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2391\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2392\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2387\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2388\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2389\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2399\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2393\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2394\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2395\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2400\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2401\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2396\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2397\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2398\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2408\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2402\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2403\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2404\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2409\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2410\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2405\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2406\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2407\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2417\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2411\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2412\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2413\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYovarvWXKv/iM4vWPD/6s/c57A6RVvWudWMD/FSc+JvCOlvgtBe/QXfN206BnR9AOmWYvvzn0Jp3edWqL4s/4V2bSnVO6HKzfe4KTT/p9Vu3bvLU565bE7Ae4173DSxfY8cf91PsDppI2b0m/VIOh6rjVnuZw/wmm+y8rf63k+wWmViY/OqgYj6DlqM6TFeb7C6WNzzf/vCkTQ0lv2xJzn+wanX917z3jU7TucrmrS3LJd6AdO2us449I1cxH0lLcrpI2P46bfnv6ndfocbvrbow/Glpt/4qSrvuvsnCrzh2xaQmqLo6EBgg5pYTj1KgRBx73y6Wbdg6C7MhY8XnfnL076ZWQp+55T/+B0p9RGho3J/3HSR9PWPF9/DkEbHJ66gsGcwQEXrbZx16k/Tgi6wehOacQC3PQsgU7zkNMIet1Di6efPRnhNIfg/vBp6kw4aeeZMY1cy3DTWdZ77ngyM8Pphu6UlpuLEfSXCfa8jPdx07eZIm4mMLDA6dPLis7fYWKF0wlqC+osNyHo4/+N7RXeI2gW7rId9mJsZNPlxys6L5/ATftvm655PpodTofdObe52pADJ92/+f+3uNnccPqiRvELsZv8cLrhpseH6UwCRNMAGijbREAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2418\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2419\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2414\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2415\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2416\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2426\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2420\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2421\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2422\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2427\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2428\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2423\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2424\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2425\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2435\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2429\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2430\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2431\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2436\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2437\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2432\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2433\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2434\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2444\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2438\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2439\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2440\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAAcHtID84jjx7yzvNuriK5cqm2U8Kti12L85wkE9uUaG1aHLo1eVyZdBOrScNVU7ic63V5WzoZSoqQR+uEbXnUJ/9/X/53O78vP0VvgW26fluzAjGZzKjl5reCh03iFIM2LWCywxwVz2oGJ/crazOjG5H7Rh0a61ZUgyPHaGw75vuDq+PjlY680H7wqaCERHHeAHIbb383HHsc7Eko2irLmgC7XhHOS7A/kPNid4SaJsBPbympLzk3Cd7GSEvj7poB92TMEkNeoqdrNC+cMpXIWYPpcmbqL+QZ6rpLXtW/keu+s431x86BZR1DpXIePMxnhPS9CR5cpEe/YT0PjnO/3Scfhd9iVz5/e3IBnNI4UfOoTPuryj2s3PJU4NQkzJRqu1rr9zB7OK4k9JKwu2MVFfA+smO9hVKz5s9UuOvp7PyD3KWBWytJWdR6f5L1xdga7c816PnotwJ3OjGVUVW5tOYvryQPmMjhhW+CFun7l5Hfb716rzMHXufBau8UwLOHU8yMP60gr8b7BRhG/QVTcz2/+PHhRAmpfDNDx3f1fRafRV1ieFu72vKOFL1R76yzogsepMYdEZphwGLBdFJAOPyn4azo8X+XyPS42FT4WYMDlmX2WK3fG3Ft5EIH+nJnwrSUhENOMe5YoHXCsc1iyuAS3FnEFs3Y4JE7RPb4ELzRm5izPOfj4eHmjAh/ui5y/muVfQ5v7VMyAhddmuDRu5/OjR5bB5ZOJOarqPDipepXD8PRc7ofHMUw0NthMDcpeD2w8wIBZ2y8HkwJwNHcvNCnm397phHATWNUh4n9G7SeRhXUYZkbwcmb5mqaOOif8HyOfzDUBxODmgoLArVfJqXyl4Ph57NHc2P46Cd0rL+qOAbIHYqFLdd1jZDL+0I1k1bol9aFCMdL4dNDDY7RWRbgfyvEoYgwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2445\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2446\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2441\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2442\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2443\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2453\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2447\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2448\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2449\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2454\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2455\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2450\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2451\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2452\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2462\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2456\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2457\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2458\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2463\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2464\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2459\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2460\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2461\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2471\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2465\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2466\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2467\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNs46TO3zCdJ8T8imhYK8jib+/0JnH7ANGvx3bkv4fSuU0sUf9a/gtMiKVNzv9m8xkn/KedjyOZ6i5NO+39W7do9BL3y2J0A95p3cLrYnifuv84HON36OM4roxM33WUS5rPhG4L+ZDa7Qqj/C5yeozZDWpznK0762Fzz/7sCcdPSW/bEnOf7BqczDkVf/OiPm1bm2FOb+AFBv7r3nvGo23c4XdWkuWW70A84LduVvutRAvH0lLcrpI2PE0+/Pf1P6/Q5BP3t0Qdjy80/cdLJvfePsnH+gdNV33V2TpXBTUtIbXE0NMBNh7QwnHoVgpuOe+XTzbqHeLorY8HjdXf+wumXkaXse079g9NH09Y8X3/uP5xO8fvD1PoDQRscnrqCwZzBAUY3GN0pjViAoGcJdJqHnCae9jnPxfiolxEn3ZmVsKD3NoK2mfQw9/hnBM0huD98mjoTTlqKfW3NDmcEnWW9544nMzOcbuhOabm5GEHfZoq4mcDAgpMuWv/I80shgk5QW1BnuYkVJ338v7G9wnsEzcJdtsNejA1Ov//wNohnPTucXlF5V3znMdx02J1zm6sNOXDSP58+SmGZzEc2nbj26ZqEcgE4DQAL4vVHQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2472\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2473\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2468\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2469\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2470\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2480\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2474\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2475\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2476\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2481\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2482\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2477\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2478\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2479\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2489\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2483\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2484\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2485\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2490\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2491\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2486\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2487\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2488\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2498\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2492\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2493\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2494\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FezATcBwA8M0med3WTqPjPEpjOXFU6sqRsNIwPXY5nXlV6la20enksZOuI3ap/gh/zHUK503uonZS7ixvOpnzNlse0+QRy1H/1Pf31+9u+fzzUQw+dUgx62hR/J3DEdZk5H/GPkm7oRixl8MEdrtbgrwNtmL6paUPfNzxhPG5aOsKNMdxNZyc2AJHmZTMy169gwXD2pqsmGZYTNKaKK0bsftGn1b3KqqwRy1eSKCVlMGc0Bz3ieBan3/Hlw+2hTJb4Sh1XOp+UT9cq6kI6FENweSbWkZmxDC8FOrgyBEp4RDapxH5vAquzk7rzYtUw/YnglxIqd/gQ2kFa6UGc7DIO3NWkqiBR+ljrAanRXhAvOx/uRXN1+neO2Vp9T5xJKVPlLwEt1aauQrvo3VTo+U++37ASQGq8m76MizeaLznVbUCG7Y7XAsyWIXtV2TG/tfRV72VASoZ/kvPjfh5dmvYkxOIC+vWG9h9H0f3e1roYFfexVuNtvg986alCgf9H+Iw3lpq8TObMmpKkzaxZ5sPfGVto00pXDXfakvvn7WFbPJP4h8SBJPdU9GNRxI7uyX6b8poruNJtuEqMotNif4Nh2cfnWDlokU5mrIqAsEXd/HkB2N5IPq45Zi0pwTd0blhU1SJnzq47KzoQQcaZR4s1KJDNkhnCvYS4RKJJoEdif5OWZbW/ceFb4wyDJL1P978lE3xAQO9P8Z7oLzbhd5epDp6bKJTtmn0K26kHf/S+bCmMgA/d0/Xz7hudD0tTMijk2Fnaap00R5t1h42biJAR9KFvCC+IRzIzLChCvBzxcGbTBk6xqNhdebcLrhy9nb+ejg6vff1WaIQ/wy110s1jN5PJD7hko2wc9mkOBev3ditFK1qXiFaUlOUPCE2hi1i1/38h9EC09VqWboJ9vpM7/NfKGZ6f+fRTHZsLv5Zgt3Uero5bLilnF74RcHu+KJAnmNIhfuGInTztvg1402MmIeW8B/mKeBoMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2499\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2500\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2495\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2496\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2497\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2507\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2501\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2502\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2503\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2508\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2509\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2504\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2505\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2506\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2516\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2510\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2511\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2512\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2517\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2518\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2513\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2514\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2515\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2525\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2519\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2520\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2521\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ovarvWXKv/iM4vWPD/6s/c57A6RVvWudWMD+F03Mi70ip70LQHv0FXzcteoaTfsA0a/HduS9x0rtOLVH8Wf8KTldLHUzc8f412fTExadOb2h7g5P+U87HkM31Fk6n/T+rdu0egl557E6Ae807OF1szxP3X+cDnE7auCn9Vg1uuvVxnFdGJ25aZeKjs6rBn+D0CgNpvyVGX3DSn8xmVwj146bnqM2QFuf5Cqf7HordbVVB0Mfmmv/fFYibzjgUffGj/zei6Vu+od2TKxG0Msee2sQPCPrVvfeMR92+E017HWdcumbuDzg95e0KaePjCDq59/5RNs4/cLrqu87OqTIIOqSF4dSrEATdlbHg8bo7f+H0y8hS9j2n/sHpo2lrnq8/9x9OGxyeuoLBnMGBWFpt465Tf5wQdIPRndKIBQh6lkCnechpBL3uocXTz56MOGmbSQ9zj39G0AdmtxxfIMQEpzkE94dPU0fQUuxra3Y4I2jnmTGNXMtw018m2PMy3meG07eZIm4mMLDA6aL1jzy/FCLo08uKzt9hYsVJH/9vbK/wnnyahbtsh70YG5wuP17RefkEgvbfNl3zfDQ7nF5ReVd85zHcdNidc5urDTng9EWN4hdiN/lx0g03PT5MZxLASSeufbomoRw3DQBHKVfJQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2526\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2527\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2522\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2523\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2524\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2534\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2528\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2529\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2530\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2535\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2536\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2531\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2532\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2533\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2543\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2537\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2538\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2539\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2544\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2545\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2540\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2541\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2542\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2552\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2546\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2547\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2548\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FeyzUcQAA8ONweTRcHI2Jhcg4dahWLemOZh5XYanNOZbXrrg7zXZeR0zEtbDFpTyikvNYI3rc0G6j8o7dXcWZNzs7Ex2Oq/++X/982299/vnIJkodeCZfumUYxwX1kZP7JcitXf0ys8Y+gXFTy0ybpn/cmlkuCUIfbVS/Im74gDxFrmrNi3kP5uNVRrM2HWBf5sWFYVkzOHr1ajKx/hWYHlrkqQhuu4D1hMYJSahrL7hN2UQbmpdiXi9R5Zx7Uw5e6laPUqb33SkryNYokK+FOjjSObPglsLM4ZKoBeT2ZwLd8BmLYOtaum3+4WXkN6yFXcKkFTDnfO6SgKsEj/HXqeG9q8hZ29sfj+WpkHN/8EY4aWvgXpGJOzsdnkqbbxwkrYP1+xxuBepuILf/JTakxqFvH5iqGslFH1ZOYJUc2UQeT34sHZmDv67zsnN7qAZTOGNZx2lbYN8HzFGKxTZyd8a1pA47OKVkplrmgF5Kd+6yUqGPe04m4Jx2kKdrU74TR3Yxb2wascCy3kNeJgnRsM7CpSnBep4Z2G/4nFM7eB99hxf366AAblyR4XNCg/2C6VRL859acLNeQJAp8w/yyEJvRUAxvGa6x7DfH+eLmvqSVneIDT9tNVk9VA/3J+Q6CVXoQ7bwlyotdTBfL1AmB0X9/8J2QrZuGjzh4DnbmqO6YB/Gvdm7A3DtqpnjSQ368clvO89weOQ8LZF0nYy+zsVDKaLB3xCvsBkkPTCRxPXeTIRHkdiMQJY+OIIfrHEVw0VLtx+pIw2QZw2/uKzDhs8VLce7j+/bbPjUvBy9fc7Tns4KAtjltwfe3PwAch5p5u22AC5ofZKm4Bti3iJW7UeVo08x3mgRZxmBqSHistJgE3C7KLJ4Lwz9nYK5wthiuGNFZX+Rvhl41yC8crEKrpx65xyTbwX+C9cTuHswCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2553\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2554\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2549\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2550\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2551\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2561\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2555\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2556\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2557\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2562\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2563\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2558\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2559\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2560\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2570\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2564\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2565\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2566\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2571\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2572\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2567\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2568\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2569\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2579\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2573\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2574\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2575\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/ztzy3ySFP8j+zM46FV9z5J79RH0jg3/r/7MeQKnhYI8zuZ+J55e8aZ1bgXzUzjt0V/wddOiZ3D6AdOsxXfnvsRJ7zq1RPFn/Ss4XS11MHHH+9dweuLiU6c3tL2B055SuR+u3CCeDiySSFda+BYn3fo4ziuj8wOcrudac5bL+SOcVpn46Kxq8Cc4PUdthrQ4z1ecdN9DsbutKgj62Fzz/7sCEbT0lj0x5/m+wemMQ9EXP/ojaGWOPbWJH3DTr+69Zzzq9h1OVzVpbtku9AMnLduVvutRAoL2Os64dM1c3PSUtyukjY8TT789/U/r9DncdNV3nZ1TZf7A6ZAWhlOvQsin4175dLPuwU13ZSx4vO7OXzj9MrKUfc+pfzjpTqmNDBuT/+OkU/z+MLX+wE0bHJ66gsGcwQFGq23cdeqPE266wehOacQC4mmf81yMj3oZ4XRnVsKC3tsI+sDsluMLhJjgtBT72podzgg6y3rPHU9mZjh9myniZgIDC5xOUFtQZ7mJFU4f/29sr/AeQbNwl+2wF2OD0+XHKzovn8BN+2+brnk+mh1Ov//wNohnPW56ReVd8Z3HEHTYnXObqw054PRFjeIXYjf5yaYbbnp8mM4kAKcT1z5dk1COmwYAKNuDN0AFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2580\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2581\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2576\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2577\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2578\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2588\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2582\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2583\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2584\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2589\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2590\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2585\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2586\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2587\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2597\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2591\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2592\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2593\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2598\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2599\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2594\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2595\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2596\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2606\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2600\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2601\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2602\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FazATcAAAcI9peR12jOKENI+uxER3FSrjroYp7Sp31ujO43aZRyeiraWTQoW7bFyT00nRjii5nJQ781geHduKWZkVWSsl243VJ/+/L/9u5/p9+UnGy93zrAa6JYgplAwB604/cjkuWfLBTYjciNznly7sNXzZHN358Wu4oKCylwxnStWCwsTODc82VVvMOLeDw+iHlMOSZvBZ1fF0XP1D5CmN470xPj2ha2NS1QROvNTgv3QvjxLl634uKWLppsHfY9w9KZkzyJ8UFwyXJiiR+xZwlxpM5sBnnHgdvLR5cMizqdHwqK/gSfxU5FMvFXhrRm4uyx/O0GpfehWqkWs/TjaGbvkBzibNNorwi2C2pv1icPNPcNuQrGaE8wt5XCWWUbptCTmPpAjRNMCT/e6KRxTwe1yXHnLAssE/qgt03XnL8ImZY5d9SRrkEx4J7gFv0IfdpI8S7bXId9FOpLW7womln/gSd7iYQuhwVKMvth6biNTrwJf0zPe4kRWwpQ1VyXBaRV7RG61j7EcvZkZh9uTDH/RfuS+6Dm8PzBoUlcEtq/KD/HXrJnS20Mr0yIvk2Q52k4bfjIkk29D/gGvlr8yFEUZha+9znOK/rUc/MKhxqW6CR2A5O3hqeLTG9AjXwRhcX7aQTk4w/G82i/yWf8xrw7JMcuAp1gdcarebIA+iXZ25MATXq2w9A3TwPD0Of8rPFHmd9+6FJhJ6qt3Q73Oi/3crLjaDhseAvfn5fJUbehw+a+9SKtyqL1ZmwYQn4DNoRxlmYCo7SufTBVfYDgfPSjch9zA2vk3FYJE7SXqUNN5mcJmgOmeabQ62T1o+HC6Ft3IOHntnY7Xhw6O7Ksqj4G1Np0tW49CfL1IUJ5XAPau4whtmtshHxPHaeVf0K5tOcj/XwBdkLwiJ1xyR/wUzmounMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2607\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2608\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2603\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2604\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2605\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2615\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2609\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2610\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2611\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2616\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2617\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2612\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2613\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2614\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2624\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2618\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2619\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2620\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2625\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2626\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2621\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2622\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2623\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2633\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2627\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2628\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2629\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/ztzy3ySFP8j+zNQelXfs+RefQS9Y8P/qz9znsBpoSCPs7nfEfScyDtS6rue4qQfMM1afHfuS5z0rlNLFH/Wv8JJi6RMzf1m85poeuLiU6c3tL2B03/K+Riyud7C6cAiiXSlhQh65bE7Ae4173DSxfY8cf91PsDp1sdxXhmdCFpl4qOzqsGf4PQKA2m/JUZf4PQns9kVQv0Ieo7aDGlxnq9wuu+h2N1WFdz0sbnm/3cFImjpLXtizvN9g9MZh6IvfvTHTStz7KlN/ICbrmrS3LJd6Aeclu1K3/UoAUF7HWdcumYugn57+p/W6XMI+tujD8aWm38STSf33j/KxvkHTld919k5VQY3LSG1xdHQAEHHvfLpZt2Dm+7KWPB43Z2/cPpo2prn68/9h9Mpfn+YWn8gaLWNu079cWJwgNENRndKIxYg6FkCneYhpxH0uocWTz97MsJpm0kPc49/Jp4+MLvl+AIhJjjNIbg/fJo6blqKfW3NDmcE7TwzppFrGYLOst5zx5OZGU5/mWDPy3gfQd9miriZwMACp4vWP/L8UoigTy8rOn+HiRUnnaC2oM5yE4I+/t/YXuE9bpqFu2yHvRgbnC4/XtF5+QSC9t82XfN8NDucfv/hbRDPetz0isq74juPIeiwO+c2VxtywOn+zf+/xc3mxkn/fPoohWUyH076okbxC7Gb/DjpxLVP1ySUC+CkAShDAKFABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2634\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2635\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2630\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2631\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2632\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2642\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2636\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2637\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2638\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2643\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2644\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2639\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2640\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2641\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2651\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2645\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2646\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2647\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2652\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2653\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2648\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2649\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2650\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2660\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2654\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2655\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2656\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAA8DFaeRx2eWV5v5Yz5VG5EpVxOYYertcZjhI6mZUUNsqRy9zFXcx5xJznPMrOo5yGO8orSlberzVMSti8qk/+/77873b9vvwm8TcFI4ZdrZOIMZ6dNpFdHch1iGfiEwbbkGPG5wP1KtEHKHEWWkpeI2dil5Vm9HjIXQJPC/sFXHDA0vlIPKcMuY932uEJr1rn3UPLhzq8iXxwgDA4zpg2AK4VV5L75oaRi1olA3aTX8CXKeG3ORlfwaIGQQpjawI5Bd8+0rUwB65+Et+f7i9EbujoYYWN+wZ2IGXp1ieLwEkhB6/tD59HflWH3cgOW0BOc0oSsaLFMn8gKjaWcWQJPMhccb3Eh0dsbLyxeLyMPHrkwQdazA8wv0rFOuohfGNqtNxZ9ydyOnmuvFdr5b9nSnn3j3F/gRU7jUI85FfBsc/dEzu80F/MwkWkG6whZ5NnT0lL4fRmUXVl4To4P4fA97SVIK8oste3ykAfEym3KNGTgu1ogwmHyOhLr+cJi4vhn439jWzb0VtTL4Tx9DfAdunTBQIj9MM+5o3ay7J/o9gGhzHbBBObGDWl9C3kHmSDeyHVcAvfRWZF2TZYWc1PGKGzA87soGxFnEBf8i7xRW8qep59dHcvC65s3lxHZf2W+ZRJuqbGKHqugrunWuAfMC1NXMbFYFx2P649VtDHgb/vlhJyq+DqQyuWgj64Gy7JjL0Mp0ixZ3M05cAcljjS0x/+XW2loO6f2fU4hnwMPFT1JKHQRF7mj1IfzdztgX8a+7iZj8GCiyxJ4ioy3E+jZz24F/4S7xtF1VJAbhow6ERyhOO1oh3WbqF3IzII6ncUkT9tl5ikJsH9mF5bxBZ4kO2r1dlze8DZ29y2cn+4YWLe24ZsHNhynYTV0NgL1hHwhVS27LNqcmMmmPvAwVdYPHmaEnJXSkvmMy8VsAhjMCVJUAUr7sxML26qITfNzulKU1QHi8ebzIOStZH/BZUqEKkwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2661\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2662\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2657\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2658\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2659\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2669\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2663\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2664\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2665\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2670\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2671\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2666\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2667\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2668\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2678\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2672\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2673\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2674\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2679\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2680\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2675\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2676\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2677\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2687\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2681\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2682\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2683\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYofeaW+SQp/kdwelXfs+RefQQ9J/KOlPqup3DayF3h58z1L+H0rlNLFH/WvyKaFkmZmvvN5jXN6Gqpg4k73iPoiYtPnd7Q9oZo+k85H0M211ucdGCRRLrSQgSd9v+s2rV7uOmVx+4EuNe8g9NJGzel36r5AKdbH8d5ZXTipuu51pzlcv4Ip/kuK3+v5/kEp1UmPjqrGoybnqM2Q1qc5yuc7nsodrdVBUEfm2v+f1cggpbesifmPN83OJ1xKPriR3/cdFWT5pbtQj/gtGxX+q5HCQh6ytsV0sbHEfTb0/+0Tp9D0BJSWxwNDf4QTXdKbWTYmPwfJ53i94ep9Qdu2uDw1BUM5gwOuGi1jbtO/XHCTTcY3SmNWEA+7XOei/FRLyOctpn0MPf4ZwR9YHbL8QVCTHCaQ3B/+DR1BC3FvrZmhzPxdJb1njuezMxwuqE7peXmYgR9myniZgIDC046QW1BneUmVpw0C3fZDnsxNrLp8uMVnZdPIOj3H94G8axnx0mvqLwrvvMYgg67c25ztSEHnO7f/P9b3GxunPTPp49SWCbzwemGmx4fpjMJ4KQT1z5dk1COoAEUM5TWQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2688\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2689\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2684\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2685\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2686\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2696\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2690\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2691\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2692\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2697\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2698\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2693\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2694\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2695\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2705\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2699\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2700\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2701\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2706\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2707\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2702\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2703\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2704\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2714\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2708\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2709\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2710\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FaywUcAAA8HtJkd0xzpmLPPKcI0dq5TE5mhxnNcu0uxSjupY7lhJHt0wulNg4ba7M4uRU1qm2zDy2Hobz6k7ez51cnZTuLlKf+v/78m83vy8/Fov3JL/8XQcLMcUzPE8w1AXGTC0n2z+GF+C1ZvP2cjArTuQ3zXwaut3TpaM9cZ6dyAnntW7CpDGwukM3SJ/5zy9URfkb0+DVOCdXFn8e3FKcN1DKXgIH0irtnheqkXvlidcbcMtgykMWtdAOvTB1T5L1RXhI2+RgBHMFzA8WqssyNci5BsNr95ta5JnjOQp+9qrRG2YnpKF2X8FZjEVpH3kNXKCXXw2SfQObvHFKjcZ9B1+rirrRw4SfDp5nLLajP1lpyi11XAfXMBZC9A3wNN8qpWIBfa2Y2hnjrwM31QU4eN9Bn30Zu6Kz14Pp/CGBFwP+wZnt5N+NPux28iDd2gD24Zy4IHdATy+dk6ic0CtZbi9tteijGY5XUls2wO7xKwVNjZvg61sZH60Uxm9OTFjiUn4hr+iJ3eAehiszmAS/XLg8ILO3rwy9eXXugf0b8KKZLBvLiS3kMkJUDDH5NzixOHA6qsT4+SJNowyDCfv7QdtJSX89/H2vnnq/GU4aXfNQ9aOPNBXuq9HCY/X4o2IbLPIvxDXJMzY83eII9YELDvnI5PDPWgwenLNlRT7lC6/zoGmaGXBcR33C+Ca81SqexyETwB6SXMnnvcbvemYomHYIzibzONFcE3CkZz6VlIG+pFvncku4/ZvVl8p1iTvA1ZuyLikbvWDg0TEsD/2CaDnNZ+SfSQNBi2NwZyz2bgLBFOzxg4a3tNwJTojBp3gHGX8Oea7NUAanqDqXODVw63O68IixXUafklgmx/HNkLcKg48PE3cjj4htr7jHhKsxjrM6gQXYtVr8VmRCAiuUSYZPDttfM/XK7WyhLfI/X/ngkDAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2715\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2716\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2711\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2712\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2713\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2723\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2717\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2718\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2719\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2724\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2725\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2720\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2721\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2722\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2732\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2726\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2727\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2728\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2733\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2734\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2729\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2730\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2731\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2741\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2735\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2736\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2737\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYc9Jlb5pOk+B/hpFf1PUvu1UfQcyLvSKnveoqT9ugv+Lpp0TM4vevUEsWf9a/IpicuPnV6Q9sbnLSnVO6HKzdw04FFEulKC9/ipFceuxPgXvMOThfb88T91/kAp5M2bkq/VYOgu0zCfDZ8w03Xc605y+X8ESfNd1n5ez3PJzitMvHRWdVg4ulPZrMrhPq/EE3PUZshLc7zFU73PRS726pCPC29ZU/Meb5vcDrjUPTFj/4IWpljT23iBwQt25W+61HCDzj97dEHY8vNP3HSyb33j7Jx/oHTVd91dk6VQdASUlscDQ0QdNwrn27WPQj6ZWQp+55T/3DSR9PWPF9/7j+cTvH7w9T6AzdtcHjqCgZzBgcYrbZx16k/TsTTswQ6zUNOI+h1Dy2efvZkhNOdWQkLem/jpqXY19bscGaC084zYxq5lpFPf5lgz8t4nxknXbT+keeXQhY4fXpZ0fk7TKxwOkFtQZ3lJtw0C3fZDnsxNpx0+fGKzssncNP+26Zrno9mh9PvP7wN4lmPm+7f/P9b3GxunPTPp49SWCbz4aQvahS/ELvJD6cT1z5dk1AugJMGAPQR4JpABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2742\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2743\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2738\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2739\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2740\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2750\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2744\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2745\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2746\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2751\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2752\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2747\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2748\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2749\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2759\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2753\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2754\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2755\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2760\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2761\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2756\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2757\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2758\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2768\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2762\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2763\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2764\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FazATcAAA8G0meR0ttxKdN8UhFq67RHeNWpNVdztOhznC4bStEjGsXFKt3Lm8CmlC5lXkejhEFyHPmJTnaDIpYZvV6tv/78u/2+36ffnRaMza1OyuFhriKUKkcNy887+NmVhgmFS9htem5HRQ1Z9mvRqIZ7eofagO/2tz2UuwN+PwfJ+wGhy6dCqewK9QeZp/1r5Jvzov1FGVHzr897Yhr5NUkd/PjYLx0cu23KAxsLhFOkCaggeciInj3/4IFjcJr6UqJsHmBygOGslfkLs55Rg3ZIiR26fkr5XjFsDciN1BRjFwlidXzGNLVH4XMzEx1WUJHCuXv7K7ugxmjyf1sxK+q3ybQM+ReRkun/5U6WX8A3yePFfZS1xBniZrvORR/ROs+dYigoJbVfvEXN/0Dj94Q8/EvX4u/IznLHmuGV5AFh2Sla+BI51zR/tF6O8mVzS9Ob2OvCjftI3qKgUnxGMXpSYyMIk1yLEnw0csgy1c2+HeNxgDJCM5mHRrplhoAT/70FkLY7MBppDNLkbUKMDX9QdHfJVwu5OLaY8rfiHXNaDPx+78DS7rSn/Qm6n6jfvZ3b08uG5esruLYtO2L+pDeEpwNd6XasD4g7xkqlW70wfjjfpIObl0OxP+rltmWihA76PFtSlYRs/nSeKpwVjk3wxWius3HaV/0LTECofcPeTK7IUeuHLJ0NpVAR/+PLRRhNEAJykJxABn9KV7nCQCsurTt/Wsh/eiJxDZbmvReHAwkRlCidUE32yXWmVy4WGuT1dFx7aovEAcly0NhHP6Hh3FMtVflLUQ6Tj8jw37PObG0FtisXfoeC3k5un3W5vy4HSqRriDx1ZwEnHmmZwH59UWJkymaYPDA3mNOJYO+Jzuak0zB/6E63l8yEAPuRhjNi3l6IOt8/I7szQNwZKJ57ZhGTvAfwHM0QJEMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2769\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2770\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2765\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2766\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2767\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2777\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2771\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2772\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2773\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2778\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2779\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2774\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2775\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2776\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2786\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2780\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2781\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2782\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2787\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2788\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2783\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2784\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2785\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2795\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2789\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2790\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2791\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8iaYbijnf7ptyG02dumU+S4n+Ek96x4f/VnzlP4LRQkMfZ3O+46TmRd6TUdz2F0w+YZi2+O/clnDZyV/g5cz2C3nVqieLP+ldwWiRlau43m9dweuLiU6c3tL2B055SuR+u3EDQf8r5GLK53uKkkzZuSr9V8wFOtz6O88roxE3Xc605y+X8ESfNd1n5ez3PJzitMvHRWdVg3PQKA2m/JUZf4PQns9kVQv0Ieo7aDGlxnq9w+thc8/+7AnHT0lv2xJzn+wanMw5FX/zoTzx9yze0e3Ilgq5q0tyyXegHnPY6zrh0zVzc9JS3K6SNjyPob48+GFtu/omTTu69f5SN8w9Ouuq7zs6pMgg6pIXh1KsQBB33yqebdQ/xdFfGgsfr7vyF0y8jS9n3nPqHk+6U2siwMfk/nD6atub5+nPE0yl+f5haf+CmDQ5PXcFgzuAAoxuM7pRGLMBNr3to8fSzJyOc7sxKWNB7G0HbTHqYe/wzgpZiX1uzw5kJJ51lveeOJzMznG7oTmm5uRg3ffy/sb3Ce1Y4XX68ovPyCTY4/f7D2yCe9exE0/2b/3+Lm81NNP3z6aMUlsl8OOmLGsUvxG7y46Qbbnp8mM4kQDQNAL/eHj9ABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2796\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2797\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2792\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2793\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2794\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2804\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2798\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2799\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2800\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2805\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2806\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2801\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2802\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2803\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2813\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2807\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2808\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2809\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2814\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2815\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2810\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2811\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2812\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2822\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2816\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2817\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2818\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FWUwSYAAAYESMPDaNEimdiqmVm8Nj5UOzrMRWQ8NqLtPhkcd0FgguUsFrOZWUlbqFODPTpjbRWpnWxvDaJJsTzQKz1CkyL6IpDhSjXvL/ffk35vfyqb5Wk/McRmSq/2NowxSmfGjfk05d5BdMDCDHdPFrh2jo6d76WBxHBmZN6boeJn8EF1nr7BZcu8FhSRc0YyoJ8kTtdSahpQ1MvyYImI18fX73RE0Kz4s9DsZl6HxL4qbASzLDePDcnntUZYWmWeRRhMFp+coiuLOCP1bF0ID9+HWbrdhlMKmJ7lZ6FH6bJO4VZ66A2aElS0LOGvhYdm5uYaAWzJnOU7C5v5H3dzj4Z+fDc6iL7aPEdXCRsftBiGQDbDNMTr2K1SP33JDahqfB40MXqItS9Ddr8VlVHptgMVV9zthq+emUp0qF2vK5TKtVg6sRHMyeKPCjwlvjGzTNzei/eTHIQYOWH/YoaTz4yJbF+yfcyOx2Rx9cNd+oIsOVdN9eF93+T2um4DE+28ivUj3up3aawCeiV4tete2A882s7wQFenvHGE0W6Q/ymqEoU9ZZuJIViQvgwV9+Km4aLUdvL+KdCTTBy+ZynA/9MIMluMs0x6S/yNmCtTYJBhO2+/O5Plt5BDy8lfricDZ85LPRrb4DHoEv8RHr0EcZrS/VOVuBW4RrTBoD/S/H9cY3exa/wxdiuZZv1jp5B5mw4MmfX7afYayR55kJxFsUOFbWEjO9Az/ZyGvUeuL2PYHIOb2Zgd5hOHrGjoW+ctBwvLzEBnly0Fu9+soB5B1Ld58YYuGiHclAOwOuFiyn+0/u2WksZHEK7mVl9TgGhwd7Fjf09YjQ5xHn328JDyInqfo1CWK4sKueO1tkC06JFXZj2XZglr2+U1oAD4+S1lRHOoDvlakr7lSi9xbVyQU2ThavUMZtrbijX5v54Jtc6oL8H33dl7AwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2823\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2824\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2819\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2820\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2821\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2831\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2825\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2826\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2827\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2832\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2833\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2828\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2829\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2830\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2840\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2834\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2835\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2836\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2841\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2842\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2837\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2838\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2839\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2849\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2843\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2844\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2845\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNs0o8/cMp8kxf8ITq940zq3gvkpnH7ANGvx3bkv4fSuU0sUf9a/gtMTF586vaHtDZz2lMr9cOUGgv5TzseQzfUWJ532/6zatXvE0yuP3Qlwr3mHky6254n7r/MBTidt3JR+q4Z4usskzGfDN+Lpeq41Z7mcP8JpvsvK3+t5PsFplYmPzqoGI+gVBtJ+S4y+wOlPZrMrhPoR9By1GdLiPF/hdN9DsbutKrjpY3PN/+8KRNDSW/bEnOf7hpPOOBR98aM/glbm2FOb+AFBVzVpbtku9ANOex1nXLpmLoKe8naFtPFxBC0htcXR0OAPTjqkheHUqxAEHffKp5t1D4LuyljweN2dv3D6ZWQp+55T/+D00bQ1z9ef+w+nG4zulEYsYHCA0bMEOs1DTuOm1z20ePrZkxFO+5znYnzUi6A7sxIW9N5G0AdmtxxfIMQEpzkE94dPU0fQUuxra3Y4E087z4xp5FqGoBu6U1puLmbGSd9miriZwMCCkz69rOj8HSZWnHSC2oI6y00I+vh/Y3uF9wiahbtsh70YG9F0+fGKzssnELT/tuma56PZ4fT7D2+DeNYj6BWVd8V3HsNNh905t7nakANO92/+/y1uNjdO+ufTRyksk/ngdMNNjw/TmQRw0gC3lQzbQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2850\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2851\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2846\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2847\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2848\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2858\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2852\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2853\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2854\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2859\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2860\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2855\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2856\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2857\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2867\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2861\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2862\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2863\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2868\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2869\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2864\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2865\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2866\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2876\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2870\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2871\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2872\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FWUwSYAAAYEXQvOYxQy0yNULJqXnl2iqdU1kNFx2ymM0rrSybB24mHhDTNS3pmJtnaUrzCK8pLi1GlpvOI5EtlTzzyhSjFENCqSf/v5e/Mb+Xb/zTUyeWWb94fI/rUXs9k/p6wHbkoOwc6XswjahkYJlinY824a+IXr5BnixTNOfGdoE5BgqT+YNCcPTaxSRrfh2Ydr7g+ExYS8DuLfJXIR8Xx3Qem6AgcSNkyJfFqhGfWfRN+dnDhZFLYD+PIvv2vGWw3QsaIc/+G5gbfyjC5jb8TMfUSHDYKngSP0Vpc1kDH0jJyGB7waWc9eDwbt1PVKvfuuQqkDMnWJLU9B/IuwVm7imZe1/9ZbI+wP4nOC1ksX4Ivw7mbAnv+jdugHG9TvHnMErkGcWUez1h6B03RMbB19G3D05XSLjoLxcZJRYe3tT5G57FY5IF+PNSQjfVWwVuqPZ1cHsE90mV5hwL2QLXXn22VFODftQ50sn7A/rABzEjPjZqsHvUpVtCB/RjNNJrWwWc3Mlurk3TIM83l45StOhdLqxyGuq2kWdqkz9bS+BCX+bAEG8HuWlJ1gkvzX8mdbVG8bTg+7Np+60m4Y1YCtUi5g9yRr7fDOUhPLVAXteopxe4e9XsO+O+UHj/wBahXAAPNeIeLVPA+Tx5EjVSH/l3i/XK1n8uazdiY9LhN81PEaqOYHReu2ZJ9NbAWVpr/BVPA3C1q4dcEAKnWw3+ihuCY8R8+sQ23LUyq3LNEYucGC097XESvTWe6beZgD6UzCZYJuPAdE6YhiyCx3q3KRfOGoIFy3eeqBjwBcth/0UZ3Flf/zEda4ScTjWIc/PfB2bh5zrUPDivuTx9hmO8522uqYKCZfA4Bk+ISTVBnmyqbBLlwHE783Orvy2QE0tK+wpwlsglYxHqFQf4tmF46deKvS+f7iTF5tmC/wI6z9vUMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2877\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2878\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2873\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2874\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2875\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2885\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2879\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2880\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2881\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2886\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2887\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2882\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2883\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2884\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2894\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2888\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2889\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2890\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2895\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2896\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2891\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2892\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2893\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2903\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2897\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2898\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2899\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNtw+swt80lS/I9w0qv6niX36uOmd2z4f/VnzhM4LRTkcTb3O4KeE3lHSn3XU7Jpj/6Cr5sWPYPTRu4KP2eufwmnd51aoviz/hWcFkmZmvvN5jVOulrqYOKO97jpiYtPnd7Q9gZOe0rlfrhyAzf9p5yPIZvrLU46sEgiXWkhgk7auCn9Vs0HOM13Wfl7Pc8nnLTKxEdnVYMR9Cez2RVC/V/gdN9DsbutKl9x0sfmmv/fFYigpbfsiTnP9w1O3/IN7Z5ciaBf3XvPeNTtO5yuatLcsl3oB5yW7Urf9SgBQXsdZ1y6Zi7x9JS3K6SNj+Omvz36YGy5+SdOOrn3/lE2zj9E01XfdXZOlUHQca98uln3IOijaWuerz/3Hyed4veHqfUHgjY4PHUFgzmDAy5abeOuU3+cEHSD0Z3SiAXE07MEOs1DTiNon/NcjI96GeH0gdktxxcIMRFNcwjuD5+mjqCl2NfW7HBG0FnWe+54MjPjpBu6U1puLsZNf5lgz8t4H0HfZoq4mcDAAqeL1j/y/FKImz69rOj8HSZWnPTx/8b2Cu+Jp/23Tdc8H80Op1dU3hXfeQw33b/5/7e42dxw+qJG8Quxm/xwGgCx+i90QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2904\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2905\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2900\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2901\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2902\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2912\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2906\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2907\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2908\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2913\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2914\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2909\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2910\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2911\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2921\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2915\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2916\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2917\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2922\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2923\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2918\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2919\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2920\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2930\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2924\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2925\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2926\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAA8M0meR0Ws866kEKdx03Shx6utlbaNHV2XHcb8qhDDJ2SzUjniErXxUpN2oUYjqRcjqFL3lRMnjEiduu8H7P60v3/n/7d8vvyk399YJNg1Fov/zuLxStPyv4EJjme4At6G8GYkZlAq5L/uJz/sJkBjx5QlacG1YKFOJXBhFU18gDl+SiCpAg561yG6yiz4jjqgKngRNuYHnDFXAmtc7If7OcdHim59w25N6FpsOXnJLgsnd+VxZlCvp8vWirUmQGTnrPIt3eiTwnZddE8HH7szXAPlTkLHiIO06vsleBe4TzVVwaPWFt7b5+qAscOJnTHxP9CLis1cuLdRB9HmyzuIM6DhavV1z2kC8h1P9qEeOksgm/k0JObmdpvvVCnTw2Fv24fyetOQR/mktPfrVgCP0osqvlwYRl5XO10WUk++mcisoxBWUEeH4WdXbFaBffZcmwoTXDPO4E9buZrYLescbHcBt7P2vfWUgUPfeGih9m7jtzxXVJ5YdwG8nTj3j66Bm7vMyt8VaTWekMT9lQEaRPcH83Euyairz4Y29ZxF542FmdhNqRBLsXTGSaBv8H+6e6j9Ez0MRlzRVIMxnOr54816LecQk8tpBXs4KE/bDks7pTAW9tWyU9K0Xuv4k6KLLDgy8ZHyPl7dMCHuLcmrrXDNUpTO8oG+gQNgejnggMXODjPldLgOvUS9qAaXknw4XGJeLCDOFGstN76BGKs+9IVOIfI43pF6Go9W8jccKxDH0SpWlSc2ab1pdOR2Sv+8Fy1tLGYo/2CrpensTy4ImMmzOnLPzbt8pgcgNtisffZeD3k1slPG2pyt77DsjPOzGw7mM3ABR/wgJPksinuY3i04WJZncAAXJly9OxnEyPw1TRF+qVM9NOY3d9XBMZg3c2J8dl1E7BdrqglQ9cUuXqbr+hHHvwP3V6LnjAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2931\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2932\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2927\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2928\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2929\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2939\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2933\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2934\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2935\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2940\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2941\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2936\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2937\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2938\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2948\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2942\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2943\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2944\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2949\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2950\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2945\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2946\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2947\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2957\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2951\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2952\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2953\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYc9Jlb5pOk+B/hpFf1PUvu1See3rHh/9WfOU/gtFCQx9nc78TTK960zq1gfoqTfsA0a/HduS9x0rtOLVH8Wf8KJy2SMjX3m81rOF0tdTBxx3sE/aecjyGb6y1OOrBIIl1pIW467f9ZtWv3EHTSxk3pt2o+wOnWx3FeGZ0IusskzGfDNwRdz7XmLJfzRzi9wkDab4nRF5z0HLUZ0uI8X+F030Oxu60qCPrYXPP/uwIRtPSWPTHn+b7B6Vu+od2TK3HTVU2aW7YL/YDTsl3pux4l4Ka9jjMuXTMXN/329D+t0+cQdHLv/aNsnH/gdEgLw6lXIbjpuFc+3ax7EHRXxoLH6+78hdMvI0vZ95z6B6c7pTYybEz+j5M+mrbm+fpzCDrF7w9T6w8Eve6hxdPPnowOMLozK2FB720EbTPpYe7xz+TTB2a3HF8gxASnOQT3h09Tx01Lsa+t2eGMoJ1nxjRyLSOezrLec8eTmRkn/WWCPS/jfQR9myniZgIDC5w+vazo/B0mVpz08f/G9grvcdMs3GU77MXY4HT58YrOyycQtP+26Zrno9nJpi9qFL8Qu8lPNN1w0+PDdCYBOJ249umahHIEDQCYpbtyQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2958\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2959\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2954\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2955\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2956\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2966\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2960\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2961\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2962\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2967\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2968\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2963\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2964\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2965\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2975\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2969\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2970\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2971\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2976\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2977\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2972\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2973\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2974\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2984\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2978\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2979\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2980\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAAcLZJHt1YrMkqQ5guK3JddylpyyWbuTpn1RlC8jgzLkdj7LjUaR1151HXKE7CROac2jmPO1SenbbRw2FrGemEmVd9qf//0/9u1+/LTzleQsmyftup/DubndokLB4AmwT30VL6e5GTqAHZOWPdyNmuyxxcWic40rJ6Tl7zGsxTLTblR3cgz8UuWs44ysD+UWc0w8pGcHzdeG8Itev0vyM1MQJn/qjRv5yvZwypFWBtp37UZ0qFPJyVmFx9fwL5zxCKK5s/A2YReib759TIpXeyh+9FaIze6UTQIazgG9jX66FDa4EW7JldvlKL+Q4mVbHJBQ5wUey+K3aJ6C+TKtorEuaQn2r7PEpn6sB8P5FWnDaPfG9qZqbw6AI4yWB4456/iDydoa4bJC6BzfoosUGYZXBmaWBeL9P4nX7JLehx8Nb3Xx6PiNBf9ZthqOXw67RSxcjsCji9Qyutr1wFPykndwV765FnpJjq9I5rYB/+WI4nA/7ROYLi3YP+MPdigmy/weh97k1LlBT0CrZb+55F9HHPaOYmB9eRBzEO3IyVboDdQ3W5L55vgm9t8yYII3ArfJgmibSFXMFj4o4I0NcM5FUNFhq/7Fjau0Ex3Mqto5kr3gbfnkq3t/2EvhEXGIyP+g2m1zKe7k418UdtM77koRyCs9awZ8vtTcE/8EuS5gh4Rau5EJNh/PG7TpIrXTDIs7YJxHAaFjmmszpschPeQghN5RJxyD0kAsmCE5xATPNdufH/n6MKyTY8M+RFPXqXQhE8LJe5QZXDo71fLc+e3wFu0CYX6znwss3G7roI9LM2w8fVKrjHqhfW1nYnOIs43WYQoycpuzTcCri46VHG11wLsN01fQBdBY/hiGUYviWYZ7UsleegbxH5XfiAtzZ6Okv+oISJvrWBU7R1CW62NTOtW8cjdy0r779rZmP0fwCHna5mMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2985\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2986\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2981\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2982\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p2983\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p2993\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2987\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2988\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2989\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p2994\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p2995\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2990\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2991\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2992\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3002\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p2996\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p2997\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p2998\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3003\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3004\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p2999\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.00541222989526},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3000\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.00541222989526},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3001\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.00541222989526},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3011\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3005\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3006\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3007\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYc9Jlb5pOk+B8RTXv0F3zdtOgZnH7ANGvx3bkvcdITF586vaHtDZz2lMr9cOUG8fSfcj6GbK63OOnAIol0pYUIeuWxOwHuNe/gdLE9T9x/nQ846aSNm9Jv1eCmWx/HeWV0Ek93mYT5bPiGm67nWnOWy/kjTvrYXPP/uwK/wmnpLXtizvN9w0lnHIq++NEfQd/yDe2eXImgX917z3jU7TvRdFWT5pbtQj/gtNdxxqVr5iLot6f/aZ0+h5tO7r1/lI3zD5yu+q6zc6oMblpCaoujoQGCDmlhOPUqBEHHvfLpZt2DoLsyFjxed+cvnH4ZWcq+59Q/ON0ptZFhY/J/OH00bc3z9ecQdIrfH6bWHwja4PDUFQzmDA4wWm3jrlN/nBD0LIFO85DTCHrdQ4unnz0Z4bTPeS7GR70IujMrYUHvbdy0zaSHucc/I+gDs1uOLxBigtMcgvvDp6kjaOeZMY1cy3DTDd0pLTcXM8PpLxPseRnvI+jbTBE3ExhYqEYXrX/k+aUQN316WdH5O0yscDpBbUGd5Sbc9PH/xvYK7xE0C3fZDnsxNjhdfryi8/IJ3PT7D2+DeNaz46RXVN4V33kMN92/+f+3uNnccPrn00cpLJP54DQA6bpjLUAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3012\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3013\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3008\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3009\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3010\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3020\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3014\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3015\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3016\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3021\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3022\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3017\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3018\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3019\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3029\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3023\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3024\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3025\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3030\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3031\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3026\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.8217857248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3027\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.8217857248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3028\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.8217857248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3038\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3032\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3033\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3034\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FbTDTcRwA8Nlo5eHMTkOWpzyeS5eH1JWosMuNy9HudnWW0vMqRgljo5wm1pOrpq5JulTDyVZx7ZzSpaLorvoXpsKsmvQgs4Z6k+/v1a/b9XnzIV6e9sy1fdJK/P0dfSfR69EBkzQfU11v3sffkF/RzkaLKWPWg64qOCp1jfY5UQdv0aYJvQQ9kbPrWg09Ie/eoO8QJSLTAJxAf9Db8WkYrpfkPy9P0cIeK+ICKcIROCyowkVZrIOdL29gFrt8hIu2L9zkuPf/X327vyc6/jMsiCjSSTP1cB+jn9XkNwovyMjJES1F843Ge35Hx+DM3txuQfZXuE1huzgjD21833c90uUbLJ5UHQ6v+4E95xyrsD1+HLvHD/W86B34lZ2ai91F+DdHDMYMq/EnV1D55e4/4bPC2jsPkybgrBZd/c0q9CUZs40dbIBvVIe6BZ7A/8orxTP4wSQcdTy1J8TRiH0xL2mPyg0dUv5BTnjif73B967TGHrHlSVUks8vOKBZ1HAtywTHxbgf2l6PX2L34hVrxvz9Ej+Lb9ROwXkz6W/p3eZvY8/R8p2nzf5Me4KJvxJ99XHh5a5j+FWhmU+7pGgb35ZGnnQGrrNkse1Tf8NcSdgAqwwtKNXX1pFIUbMvd+qXP6tBP3k6ybygQNNefvcnnuGPpRb5VI6hEyYp62TzLeAaqf4AO8X8v9h/lzf+40olVUTORu+yW8WsWkTGvox3ZPBgp/nPjNK8g034q/2D9IoYCsxx6JxI68JPbq3h9E6hb9ETM3gMS9hfLpSPeuCnMzLDfu7Gb/soUWOdjk5hZPDi+FZmHxsgYtLS8XPE8aYANXprcNP40Po5sEK375SBi/aysDjJsaTC/hNBFAeHuTCHTUkLDEfnMj7cNkrRzkSblleJljZcyB4Qz8PuuM2wNvoNOo0rVZEF1tjTbcbr1QXo6AT1mdPxtrBSwS2bTkbvLxmSbCszfx3J/b2hwA6793lZR6kVDZ6as1E2chG/XtPsu7XYCf4DMUKYTjAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3039\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3040\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3035\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3036\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3037\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3047\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3041\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3042\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3043\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3048\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3049\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3044\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3045\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3046\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3056\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3050\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3051\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3052\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3057\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3058\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3053\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3054\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3055\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3065\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3059\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3060\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3061\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYovarvWXKv/iM4vWPD/6s/c57AaaEgj7O53xH0ijetcyuYn8Jpj/6Cr5sWPYPTD5hmLb479yVO2shd4efM9Qh616klij/rX8HpP+V8DNlcb+F0YJFEutJC3PTKY3cC3Gvewelie564/zof4HTSxk3pt2qIp1sfx3lldCLoeq41Z7mcP+Kk+S4rf6/n+YSTVpn46KxqMIL+ZDa7Qqj/C5zOOBR98aP/Nzh9yze0e3Ilglbm2FOb+IF4+tW994xH3b7Dadmu9F2PEn7Aaa/jjEvXzMVNT3m7Qtr4OPH029P/tE6fQ9DfHn0wttz8Eyed3Hv/KBvnH5y0hNQWR0MDBP0yspR9z6l/cLpTaiPDxuT/cPpo2prn688RT6f4/WFq/YGg1TbuOvXHicEBRjcY3SmNWICgbSY9zD3+mREnfWB2y/EFQkw4aQ7B/eHT1BG0FPvamh3OuGnnmTGNXMsQdJb1njuezMxwuqE7peXmYtz0lwn2vIz3cdO3mSJuJjCw4KSL1j/y/FKImz69rOj8HSZWnHSC2oI6y00I+vh/Y3uF9wiahbtsh70YG5z23zZd83w0O5x+/+FtEM96BL2i8q74zmPk02F3zm2uNuSA0/2b/3+Lm80Np38+fZTCMpkPJ91w0+PDdCYBOA0Ad6SOlEAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3066\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3067\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3062\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3063\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3064\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3074\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3068\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3069\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3070\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3075\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3076\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3071\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3072\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3073\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3083\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3077\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3078\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3079\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3084\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3085\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3080\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3081\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3082\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3092\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3086\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3087\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3088\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAA8I0hr9tOEllCUq5TGq4vJWmou2Hu4s7pZPTgctnD3c5rY8dpi1XywbzmmeSxHh6ldih3Xrkhj8mxYta8WieaedWX+v99+d/t+n35ycfynVIs+jvkf6dSGRLuoz7kGErP6cTebr23dfNL54y8R46ZWaDZ1+9Zkl7QTYFTXdYicKwO5NFm1YvSmrdg+qRGkhXTjjzDUGM2Z9+C3Jd2USWTNyKnhgg8FEHPL/w7rm6sO8StC3m06kaaM3MYjIvXuPIiJ/Ve3SbP4W4p9L6Jny7Li1LpvfepArvmbDXYtoJKzLZbAPNuHo60vgP3aZ0eJgctgZnneWohaxl8iJGczD2zAh7JWCWHdcETdLp3x7M0yFlTKUNM9g9wV4OFOyMVnuQ/Xzdoswp2/Ck1Jd9aAzd/nCkZ4sGL/JU+G7XryJPa1U315b/0vkxE7KKQtP/9s0ovh5MP4OxE7JLWfgNce61UVVWl/+POUU6kD3Df+7RhT2sd2DNvVix3gk9QXV8f1MDd3nAltUlbYL7lyHjgLvrUXfpnq6FtsDk+XJVgu4N8gh6E80iD1/RlVgzeg7d4sQYGhegbcYEUPO03OILvrQjMRc8ULD9txGB8UZd/6TTtDYCTa/0r9zPg/QMbxOIG/Q8w4R0r0sCDNwwviQ5gkVcLlxMpUfDv+FXxiz0XNZtwDdjwOMtzxPKjBsh3VwgupC30o9OfNsswhmCDjurwqW34S6tQxnUbHPiEOE284ojeyoblvR4Pt+gJnTGjwwPcuEQC3Qh5DOnVmvKKMZgje3IZy4ArBQu33Uf3TJCdnZ+EO2OxD8NxJsgdM0s72wrhKTazrTrhPuRCSTFbkWGK3DpW60eeRE83X2uScsyQk4Olj/ODLPS+uSEid+cq/G6Okh+bC1djjnzVciyRG+3MzS5t4sEuhaJegREB+dBEpG7RAb5tHCb6VoL+D5TBsRowCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3093\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3094\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3089\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3090\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3091\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3101\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3095\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3096\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3097\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3102\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3103\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3098\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3099\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3100\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3110\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3104\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3105\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3106\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3111\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3112\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3107\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3108\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3109\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3119\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3113\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3114\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3115\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8c9I4N/6/+zHmCkxYK8jib+x1Br3jTOreC+SnR9JzIO1Lqu3DTHv0FXzcteganHzDNWnx37ks4vevUEsWf9a/gtEjK1NxvNq/hdLXUwcQd73HTExefOr2h7Q2c9pTK/XDlBm76TzkfQzbXW6LptP9n1a7dw02vPHYnwL3mHZxufRznldH5AU53mYT5bPhGPF3PteYsl/NHOM13Wfl7Pc8nOK0y8dFZ1WAEvcJA2m+J0RecdN9DsbutKl+Jpo/NNf+/KxA3nXEo+uJH/2846Vu+od2TKxG0Msee2sQPCPrVvfeMR92+w+mqJs0t24V+wGnZrvRdjxJw017HGZeumYug357+p3X6HIKWkNriaGjwB07HvfLpZt2DoLsyFjxed+cvnH4ZWcq+59Q/ON0ptZFhY/J/OH00bc3z9ecQdIrfH6bWHwh6lkCnechpBgcYve6hxdPPnoxE0z7nuRgf9eKmpdjX1uxwZoLTzjNjGrmW4aazrPfc8WRmxkk3dKe03FyMm/4ywZ6X8T6Cvs0UcTOBgQUnXbT+keeXQgR9elnR+TtMrDjpBLUFdZabEPTx/8b2Cu8R9PsPb4N41rPD6f7N/7/FzeYmmv759FEKy2Q+OH1Ro/iF2E1+OJ249umahHIBOA0AcI/9IkAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3120\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3121\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3116\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3117\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3118\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3128\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3122\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3123\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3124\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3129\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3130\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3125\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3126\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3127\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3137\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3131\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3132\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3133\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3138\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3139\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3134\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3135\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3136\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3146\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3140\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3141\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3142\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FeyzUcQAA8HtJHs1j6OTGMc0dw7xrrUiOMnFWblTzqJNW13JHiY6TMiXRa+WOOYyQ1wrTy3RN837GnPLM64jI866L+iff71/f9pvPPx9p3yPTOM2Weum/mUxupeBhM3hUN0L6ldq07cl09/iEno9g3PBMmFEp9pnmK0GkqHrkoeoFs3WF75C7hR2e6pSWgy+U9DX40SWuW4dOsflmvG5woO+lywUZX5DLaqUpAuUIeNHP1JzJGwdT93tbEfnTYCebJ4bVyTKwZbxwtYgwAybnMSnJhvBTZNFr0cVZzA8aDHlVWcwj38ONjRXYoe9JXPIIkKDnKBTvLW4vIJeUaVpzbywiV4wNlrga/sR8orzmukv5MnKVRtNwb8IKmLpcp+ZxHl7dNpzdlYT+zMFxxmQdehFj4pC8aBUcYfusv2sC/pRfXPvpxBo4+q2sojQX+zlCisTHfn3bv8h3NLbKgMdcwX9fN5KDHXg9CZYMuNu9sG4HPQXY4f43sdQUPf2NoLIoWgn2ZphcC69Ar6HFmuKQN8CPG3yVnAPwwuabee134DWOUa3t6XCNTL6znRKeMhqtrzO4ibyc5OWjFfYHHHTXacQrDc5LnSsux+Hcts4d/aDW5Anft3tI3FEAb2mVU7LK0Gv3LdGkHXBP1aS9ogW4r5x4RKiPB//QWhK/DMa+qFpVQIiBO4fcGr/aRgD3Dn3+lYMjYj5uU9cg0BZ9Ps1mrowBZ+m0rbHb0b/S9eeGGJCQ08R88TwV+5qN/sPqkfBgA26IN0cF7EkXULQj4azE40p6HfysfdXKxLEd4ITO50fxXPhE6kyEde9/1u50mRyAm+HxD1gkVTBtzYaoo7MTzPIhsq1c4GSpZCpEhD69MitmJFENrHdu3d1jAM4OSq8h8NTB1WVBaRsnNTEvw5mMrSfsQm6eKWxKVdHGfFf/acWsMfrfOwKE09nwv7NyzuwwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3147\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3148\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3143\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3144\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3145\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3155\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3149\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3150\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3151\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3156\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3157\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3152\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3153\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3154\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3164\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3158\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3159\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3160\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3165\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3166\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3161\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3162\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3163\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3173\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3167\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3168\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3169\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ovWPD/6s/c57AaaEgj7O534mnV7xpnVvB/BROz4m8I6W+C0E/YJq1+O7clzhpI3eFnzPX46Z3nVqi+LP+FZwWSZma+83mNZyuljqYuOM9bnri4lOnN7S9wUl7SuV+uHIDQf8p52PI5nqLkw4skkhXWoig0/6fVbt2DzfdZRLms+HbB5x0Pdeas1zOH+E032Xl7/U8n+D0CgNpvyVGX+D0J7PZFUL9uOm+h2J3W1W+wuljc83/7wpE0NJb9sSc5/uGk844FH3xoz/x9C3f0O7JlQhamWNPbeIHBP3q3nvGo27fcdJT3q6QNj7+A06/Pf1P6/Q54ulvjz4YW27+CaeTe+8fZeP8A6ervuvsnCqDm5aQ2uJoaICbjnvl0826B0F3ZSx4vO7OXzj9MrKUfc+pf3C6U2ojw8bk/zjpFL8/TK0/ELTB4akrGMwZHHDRaht3nfrjhJte99Di6WdPRjjdmZWwoPc2graZ9DD3+GfcNIfg/vBp6kxE01Lsa2t2OCNo55kxjVzLcNNZ1nvueDIzw+mG7pSWm4tx018m2PMy3kfQt5kibiYwsOCkE9QW1FluYsVJv//wNohnPTucXlF5V3znMQQddufc5mpDDjj98+mjFJbJfHD6okbxC7Gb/HAaAPMsgKFABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3174\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3175\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3170\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3171\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3172\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3182\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3176\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3177\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3178\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3183\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3184\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3179\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3180\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3181\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3191\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3185\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3186\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3187\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3192\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3193\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3188\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3189\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3190\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3200\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3194\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3195\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3196\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FW0ySUQAAYESwNJyXGVKaRWNmNdOsVj1Yrmk0B4qrWKYTTZ1LLQHZmFeK1UxytKytRPMyMWtquFIzmzPTTbxgaCp4QUzFEHE6l+KVeqlzns72r+/l0w4XUjNJPW3av7NYPIXoaTfmcYwuvzRlJ3xyPs6j5iv2FTnPOxnoYx3kptaqz5jnji4pHtxqAbPCJf56Zv3Ff9eba0L6DRrkhNtL3uKoUczfCEu5I38yBjZ+1OaJtvTIl8OpNBZ/Bhzm2jGuNBnAx3KKVqvx85inVLA8H+6DixMPRLmloL9JkTXLkk2Yv9CkGwhmLoD5gWKjNN2MfIKso384soh8Py8jQ3QSffp4ppovXAa315J8eVlwQYjhrYq8AiZ2URND8b/ADX2TJWox+ujAmRBDK/okvxca9ewqWNBifFdTvgYuLfJsZwRYwMI0mwWLxzry6uhXc5WV6EcOx1ADOv7/oMdxA6fcNsC+nKvJjV5wDcu72X0J+0c/iRTVgi3k+Y6DI3Qr+iwrd8xVvQ3e48SeS6XsgDVcJsE/G/tV3fcrVI/gjafTe1VSeN6UYK/LhBVcR6AznOJ+gyPzz+jpBej5EvObOhwuCHX51Bd75WX4OXddWb8c3tO77llci955eMVH2w+XS81pjBgb5LKGXSK8EG5ddKYFbOExP6T7vlmKs0XOdulbS1Chx7fJ2ePb6N+7RvA4ZALYpyy7bPEQnBY7GHjiPHpSV8SkAxd9DJnHCU0lgnO/vb5iw7PD/KxkPsl3CM5m2CYcP7sbeSZ5umlDCqdo2+c4MvRSRbFQf88e7BZvuRQ8Ck+IlDbi+Q7g4LDWZ4VMEuYbaiMLdq7B7+bN5scXwI24gz8suY7IiTsz0wubTshpL4uUEqIzcrUmasPkBd+2u170swT+B57LKyAwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3201\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3202\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3197\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3198\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3199\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3209\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3203\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3204\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3205\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3210\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3211\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3206\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3207\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3208\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3218\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3212\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3213\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3214\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3219\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3220\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3215\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3216\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3217\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3227\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3221\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3222\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3223\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8c9I4N/6/+zHkCp4WCPM7mfsdNr3jTOreC+SmcnhN5R0p9F4L26C/4umnRMzj9gGnW4rtzX8LpXaeWKP6sfwWnRVKm5n6zeQ2nq6UOJu54j6AnLj51ekPbGzid9v+s2rV7b3HSK4/dCXCveQenkzZuSr9V8wEn3WUS5rPhG4Ku51pzlsv5I9G0ysRHZ1WDP8HpFQbSfkuMvsDpT2azK4T6EfQctRnS4jxfiaYzDkVf/Oj/jWhamWNPbeIH8ulX994zHnX7DqermjS3bBf6gZP2Os64dM1cBD3l7Qpp4+MI+tujD8aWm3/C6eTe+0fZOP8QTUtIbXE0NMBNv4wsZd9z6h/RdKfURoaNyf/h9NG0Nc/Xn0PQaht3nfrjxOCAi24wulMasQBB+5znYnzUy4iTtpn0MPf4Z9z0gdktxxcIMeGkOQT3h09Tx007z4xp5FqGoLOs99zxZGaG06eXFZ2/w8SKk05QW1BnuQk3zcJdtsNejI1ouvx4ReflE7hp/23TNc9Hs+Ok3394G8SzHje9ovKu+M5j5NNhd85trjbkgNM/nz5KYZnMB6cbbnp8mM4kAKcBFk59EEAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3228\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3229\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3224\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3225\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3226\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3236\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3230\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3231\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3232\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3237\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3238\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3233\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3234\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3235\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3245\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3239\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3240\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3241\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3246\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3247\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3242\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3243\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3244\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3254\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3248\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3249\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3250\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FeyzUcQAAcMfp8todedYVx4XLJnlMtowtR9PhtLplGkenaa6cY93InN2YiNOaP8LWya68X8WKuklsjDybnOd5nS5cJ8nRof7y/fbPd/vN55+PfPwpJcO0v1OOcT1G7/nkvh7kTOpWFD61EznbWLoqe/kezJvUNOXEd4DZ6mvJFtJqMDOiwEMR1hxweGLNeE8ErQvz7BVOpiN/FHnzeh19SDkBxt/VOIuiJ8GqTu2o1zz8ZnjSPWnxFFj1Vp4n1CnAGxEUKpO/hDzconu6b1WJ3MEv1M0g8xvYx73ErjVXhdz2BZOca/cdLEo4HW2ZhH7GejbkjYsafDIlPV14AT6WvRl0owvO3d394JKjAadOZ4zwBRvg3YWZmgC7n2CHXzKjoDtbyG/5L9GVsqN/vYTALbL/DU7rUDXWVWyDn5eSuxieWnBtpfcZt+KjL0jGrWlP7YC9+GNZ5+jwr44xFM9ueODjuFEvy13kXkWLEjkF+xNM53c2GjitXdhUlaYDh9LtHyQ0wl0i17Jrq/fADw94UxYj2Dchsla4tvvgCV4Y3iMT3uadOjAohps4d7TEig+Q582nWZnPoG/AhzCIcX+RR+X7KEIK4RXzH436gvUCDw+qoleeSIFftJmVDEnR9w/skMvr4aTxTVf5EDyYIDpbpsF++I7B5VIrHFgqXk9mxMB/EDclLf9d1koQ6gvgiWaXyBVO+uADNYnqqcN+pav7ej3dAMwy/7zNGUTvKsmUqB3wmKeyx/zd/bBv2hs5Z8xDH2OdEhvKNQQH04RkEg/7hd1ap0ciOCs7TEeTwZ/tNXyqiTkGzhp+dQWXAl8mDfsqJ+GOONwTFp4AZjEMOG6+x8G28q6V2DL04qZygSLbCMyJErfp843BPJOtRlkW+tci/6tfiKaYv5+3nH+7EPsqPfsFbZYZ2HB/aXHtDxE59VlpX4EhCbw+1+4cn2sD/gelmOsQMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3255\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3256\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3251\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3252\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3253\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3263\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3257\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3258\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3259\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3264\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3265\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3260\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3261\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3262\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3272\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3266\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3267\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3268\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3273\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3274\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3269\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3270\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3271\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3281\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3275\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3276\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3277\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8yaYbijnf7ptyG0zs2/L/6M+cJnBYK8jib+x1Br3jTOreC+SlOek7kHSn1XQjao7/g66ZFz+D0A6ZZi+/OfQmnjdwVfs5cj6BFUqbmfrN5jZOeuPjU6Q1tb+D0n3I+hmyut3C69XGcV0bnBzhdz7XmLJfzR5w032Xl7/U8n+C0ysRHZ1WDEfQns9kVQv1f4PQctRnS4jxfcdLH5pr/3xWIoDMORV/86P8NTt/yDe2eXEk8/eree8ajbt/htGxX+q5HCT+Ipt+e/qd1+hxu+tujD8aWm3/C6arvOjunyvyB0xJSWxwNDRB0SAvDqVchuOm4Vz7drHtw051SGxk2Jv+H00fT1jxff4582uDw1BUM5gwOuGi1jbtO/XHCTTcY3SmNWEA8ve6hxdPPnoxw2uc8F+OjXgTdmZWwoPc2btpm0sPc458RNIfg/vBp6kxwWop9bc0OZwTtPDOmkWsZgm7oTmm5uZgZTn+ZYM/LeB83fZsp4mYCAwtOumj9I88vhQj69LKi83eYWOH08f/G9grvcdMs3GU77MXYcNLlxys6L59A0P7bpmuej2aH0+8/vA3iWY+bXlF5V3znMeLpixrFL8Ru8sPphpseH6YzCcDpxLVP1ySUI2gAQ87FF0AFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3282\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3283\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3278\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3279\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3280\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3290\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3284\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3285\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3286\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3291\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3292\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3287\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3288\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3289\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3299\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3293\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3294\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3295\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3300\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3301\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3296\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3297\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3298\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3308\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3302\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3303\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3304\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FaywUcAAA8HN3kkc75DnCNfMcNTc91iwt50p3R5NbptGJJORZVh6di4nQwsot70fIK2GWunG55mrej5z3ldfh6kw4F6kv9f9/+m836/flJxzJJt7T+NQu/LtIO0g4YSZAjqF2HQkX8OHTS0yjmvfwhoRcPhV+Va18mVvxFhwxJm1I9m8Ds3BStVmjFuTOzDMLfcI68I3qEb67Ne806leSGnLv/ChyfLDUgu0ztufF7bIBkkjxL9NDwsofj4NX3YnmHlGzyOnanROC5Xmw2Uk3W1z8InJH+1zD5hQxcpsEzkYldglsUOJhnGKo+OzAQz46IeijnNjirGgJeFJvitJk+Q35IGvNxYuHPlQuf2eZLEXOq9Wwi4xbBceQ56t79NbAyl3EQDfsOvK7zyhJfBp6sx9cVZfr8Obu6fx+NvpLuSqhmaYb4KfxVa0fPDfBMW3i+ppieCHHmEd1kIFjw5VWZEZbYFLUYKIN+f9deaVgoaxM8T8f9iU6dMKdHzEHSDpysJ2f580Wk71PyvxaJCTC3cimdwLrt8GWF1dYL6t2kMftRoxr98PVCYyFUINfyHP49O3QU/DRCBr+aDy84mNSSc9DuLpFW6Nf1i7yVFGMrtYk+jo8hUpg/kbuneY4Q8mAR6VLquowGOd/F4s6VAWu6F0qyaUHI+En9KeKesvhmiNrVsJeOH0Ld5ajqwT+TlgravSFH/N7MHu7Gwsenhr6WYjBgUut7CW1ZDhDq3szoAeObS9nTOyg19aLdtwIxu95V+v7xpoRygrPYNG2rblwf4em9bnz+5DXisOeyLzRJ/a9OKcUCZ9LXwqyG4abJRV0tOapILfatMdpae0HM6i4ANvj8KyG57EzLFXwa7bThSGCBtiFzs3JpsFvpc6lXcuAizGmX2SJB5Cb53EE6cqa4P5RH/myCXxnnxdnMR8umX5j4Z+ij/wPWsXlzDAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3309\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3310\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3305\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3306\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3307\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3317\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3311\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3312\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3313\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3318\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3319\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3314\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3315\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3316\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3326\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3320\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3321\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3322\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3327\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3328\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3323\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3324\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3325\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3335\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3329\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3330\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3331\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8cNENxx7t9U27D6TO3zCdJ8T+C0zs2/L/6M+cJnF7xpnVuBfNTOD0n8o6U+i7ctJG7ws+Z61/ipP+U8zFkc70lmk77f1bt2j0EvfLYnQD3mndwOmnjpvRbNR/gdJdJmM+Gbwi6nmvNWS7nj0TTKwyk/ZYYfcFJfzKbXSHUj5ueozZDWpznK5zueyh2t1WFfFp6y56Y83zf4PQt39DuyZUIWpljT23iB9x0VZPmlu1CP4imZbvSdz1KQNBexxmXrpmLm57ydoW08XEEXfVdZ+dUmT9E03GvfLpZ9+CmuzIWPF535y+cfhlZyr7n1D84rbZx16k/TgwOxNINRndKIxYg6FkCneYhp3HT6x5aPP3syYiT9jnPxfioF0F3ZiUs6L2NoG0mPcw9/hlBH5jdcnyBEBOc5hDcHz5NHUE7z4xp5FqGm/4ywZ6X8T4znL7NFHEzgYEFJ120/pHnl0IEfXpZ0fk7TKw46QS1BXWWm6hHlx+v6Lx8gg1Ov//wNohnPTvR9IrKu+I7jyHosDvnNlcbchBNN9z0+DCdSQAnnbj26ZqEcgQNANZZaRFABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3336\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3337\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3332\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3333\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3334\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3344\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3338\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3339\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3340\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3345\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3346\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3341\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3342\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3343\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3353\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3347\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3348\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3349\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3354\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3355\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3350\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3351\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3352\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3362\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3356\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3357\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3358\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FbTATYAAA4DG1fF3stKYWOuOMiyScK5EzOhlT2pHOiLrykY11pdhYdZpbnLhLU5F2IWPlOHLn5mN3VBxNF0PG+Wgcp4RhrH71vv68d7uu589Dp7OlvKIPMjpiTGi3W1qPHEykBGRzFZ16jxmfiz9Yu2Npdok8FE4nr0QbZcjALOWS9P7lVrB//OnZ/uE6cNziuTS8uBpMD88/qqK99fu7Wqb57DGhBEeFJaeKC0fA6ubhPJ5WBf4RfphMT5/S+zB812jP/Ay4XpDd/yh2FmznE+KCzfqO3Dn76WqV4RyY+JJOemAN5185FGOVDL9IFLWIkubBB9iZmTz3ReSKnOXACx3wjcmxGj/rn2AOdaamj7AMzllvuu1d9wt55pPgXDltBdzYO/5sgA+/5DtFnWlDH1mCS3lku4pcRJ0+tV6l/5xWdX1txRr4TeVxG5dCDdgjXcF1pq4jP8I8n9Rks4F8iO7Ysn8J/dVXbjiMwyaY8p4nreJokQvMFV+Ddejv6lgj+IEtvS+Wh2lTTmyDTUuzvNy1O3Zsfccs0CHPm+DssxyDRws8VcHC38jT8xeq6zAYf9QVE+3GPUH6//HTOqlMgj4Ix3cQLcHFBQtpobEG4GvmJ0kV9oZgL+a9qZu9cN2iBfmYFv2Xb4ObLzBY8B0dnhDlBq90cl2QUNEzLHvXEvvghjIxY3QLfQM+gs0kGIGdyrPKF+3g5DiFr6sPHE/I8Fy9jt6sO2LchPXvxxLYzJCUXeAgCo9kwYILuzT2D/noGTk0LaUNLlGnFmmidyMv3arrrIlFz+1/fcaAjX7aot97RoneLvd5e3MpDrnTmivW0nIPckYoNtHFG04c7phliuAF0rJbqhxjsFWCJiBQiZ5lulLfxjUBN/B9zw7uNftvB4a1FT+mwRsl0cLtSPQ38qYFCUL0aoztpIZrjnxgKGZj3sYC/AcBMx/OMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3363\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3364\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3359\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3360\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3361\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3371\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3365\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3366\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3367\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3372\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3373\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3368\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3369\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3370\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3380\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3374\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3375\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3376\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3381\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3382\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3377\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3378\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3379\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3389\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3383\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3384\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3385\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8cNENxx7t9U27D6TO3zCdJ8T+C0yvetM6tYH4Kpx8wzVp8d+5LOG3krvBz5nrc9K5TSxR/1r+C09VSBxN3vH+Nk/aUyv1w5cYbnPSfcj6GbK63OOnAIol0pYW46ZXH7gS417yD08X2PHH/dT7A6aSNm9Jv1eCmWx/HeWV0IugukzCfDd9w0/Vca85yOX+E0yoTH51VDf4Ep4/NNf+/K/Ar0XTGoeiLH/2/4aRv+YZ2T65E0FVNmlu2C/0gmpbtSt/1KAFBT3m7Qtr4OG7626MPxpabf1KNTu69f5SN8w9Ouuq7zs6pMghaQmqLo6EBgu7KWPB43Z2/OOmXkaXse079w0kfTVvzfP25/zjpFL8/TK0/ELTB4akrGMwZHGD0uocWTz97MsJpn/NcjI96EbTNpIe5xz8j6AOzW44vEGKC0xyC+8OnqSNo55kxjVzLEHSW9Z47nszMcLqhO6Xl5mIEfZsp4mYCAwtOumj9I88vhQj69LKi83eYWHHSCWoL6iw3EU+XH6/ovHyCDU77b5uueT6anWj6/Ye3QTzriadXVN4V33kMN92/+f+3uNnccLrhpseH6UwCOOnEtU/XJJQjaADwVRcjQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3390\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3391\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3386\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3387\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3388\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3398\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3392\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3393\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3394\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3399\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3400\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3395\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3396\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3397\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3407\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3401\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3402\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3403\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3408\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3409\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3404\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3405\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3406\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3416\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3410\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3411\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3412\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FazATcAAA8BkS6WaLWZ3TRB51qEP1oYfTljsZk7OzuvOWUsKmxNFGOY80qS6MWtyckTUVoW4njw4xN4/O5Hl5xEyc14jUJ/9/X/53u67flx+dHivh5LY30BGPESIUg+Q2MMaz1TG6rQVMsnNLvtPThBwjSX7S4omebrXM1GE3/PNBBkKltPSDxscMzEvuhbwHB81diCYIRWC6d9aRUVrVme2rVC+pXZP9YH+va1HCnK/g6VpFOmdjFLzgbWFFZ42DvQjNg23KSeSHkgtWyrAzYFIx3SxtL/wiiV/Hj1SCT78b7qbQZpEPEYfd39rMgffFJiRwjsJ7uIsUv0Y4ezBRzopfQB5HnSyXERfB3LWa28fFS2DdVotwD+wyOCHPPaWFBicvSfUpl+HVnSNF8lR4hGNev3xiBfw0SVT7yXcVXFHibH44R43c9X5wt5PxOnL7QN/IGnP0Tg++CRQWmt9Pt64znYfb1XMkZXEbyD2o+2+Fv4Lb+MxyK0Sb4F04xtR10i/kpe0pxbIM9DXO7A4ZD54+FmeCH9oCi3XcPXHBv8HMTJdR92w4K0slEmMwrttTyqgle2LRnzAdFnQJ4Z871swKKzXf6MuiraILfk4v9SB/XvO91rTPFpho/beFPFW0ZwD6H7hFweu/5lfrcbDx6K/sPmn2whILPhZ4d/xmJ/q+4d6fzzHayBO3CER/R/Qltg6qSiqcge9cDZPBsQ1CxuAm3FaQJJgj64AJRLbLylX0hq0+IwYx6LOb1ZYZqbpgBpe2YSdFXzkdlatm7gDnb4qbygPQT2TNRNj3wQ9oaT1k6OiBySnPPtbmw21XHbTx+J1gkqJxKpCv+TxJYfwoVx9sHKp2owygD2PyarAsA41/k3rqfC/OEDnFS/r4EQ1+I30iMzRb8+X9l9aV5kbIN3f4FXwvQq8aqbcOSTNF/gdRXs0NMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3417\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3418\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3413\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3414\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3415\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3425\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3419\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3420\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3421\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3426\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3427\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3422\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3423\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3424\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3434\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3428\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3429\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3430\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3435\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3436\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3431\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3432\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3433\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3443\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3437\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3438\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3439\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYc9Kq+Z8m9+o/g9I4N/6/+zHmCkxYK8jib+x1Br3jTOreC+SnRtEd/wddNi57B6QdMsxbfnfsSJ73r1BLFn/Wv4LRIytTcbzavcdITF586vaHtDZz2lMr9cOUG8fSfcj6GbK63cDqwSCJdaSFueuWxOwHuNe/gdLE9T9x/nQ9wOmnjpvRbNQi69XGcV0YnbrrLJMxnwzfcdD3XmrNczh9x0ioTH51VDf6Ek15hIO23xOgL2fQctRnS4jxfiaaPzTX/vysQQUtv2RNznu8bTvrVvfeMR92+w+mqJs0t24V+4KS9jjMuXTMXN131XWfnVJk/cFpCaoujoQGCDmlhOPUqBEHHvfLpZt2DoF9GlrLvOfUPTqf4/WFq/fEfThscnrqCwZzBAUarbdx16o8TbrrB6E5pxAIEPUug0zzkNG563UOLp589GXHSNpMe5h7/jKCl2NfW7HBmwklnWe+548nMDKcbulNabi5G0F8m2PMy3kfQt5kibiYwsOCki9Y/8vxSiKBPLys6f4eJFSfNwl22w16MDU6XH6/ovHwCN+2/bbrm+Wh2OL2i8q74zmPE0z+fPkphmcwHpy9qFL8Qu8kPpxtuenyYziQApxPXPl2TUI6gAXfq+CBABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3444\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3445\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3440\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3441\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3442\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3452\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3446\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3447\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3448\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3453\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3454\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3449\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3450\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3451\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3461\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3455\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3456\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3457\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3462\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3463\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3458\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3459\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3460\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3470\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3464\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3465\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3466\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAA8Nk8wtxGZO6UKeRxHpHkA6k2ym2aK7vEeeVxJWXT5U4Mu3PZEkeuswmHidyQculxO3l0HoUsNMmjzMwrnTB51Sf/vy//u12/Lz/ZUIFlCr6nRabmDAarIT2/GzxpFCcbJXchx9A6nW91dSAn2Z1J40jbkGMa0go7aPAIPdGcpOotcp/I04p+WR2YcYHvMkF/dmp3zWtLNtyQEbCyRTXgNgm/HBCfIMr7+t/X89L6H4QpkJM9/R1wqTNgd6dCs6YsJdg+TbBajZ0Fk8oZ5llmcG7MwRDjePgVkvCV8Poc2Pvl2ACFPg9me3GVuUkLyKUZy5Sg1kXkSaMpn9jJv8CtYrwj6y5cq9Myxh+7Aib/luhSYtGHek1RpyVwIVXuvV69qvaPUmua319cA5cKzFtprirktRXHDznkqb8bW8qxp66Dq0NLFJWV6IcPh1m6tsN97kcOuBn/AcdWOutgrDfA/lSLOzH1m2CegXTYbwd+NHA+o7ZmC7k+gam4QdoGf0mka7qkwqu6M8t7s9HrF6WeOLa5Z5s3jeG5O8jvTd42MfwGr9P0oxEi/4KDee4Tfjno2fyFmjoMxmd3SjW1Yj8LftJ0rKxPBO/5sG5eLIYTh5ZtZX3ofXW41sIleMA67qzARAP5T8JyWWMYemGTTjo2Gf3OItHKdRMLHhz7vFGKwSGvsHVaEFPhTMOPa9G9cGyLiDm6hf65USAr/IAm2CpC6uXkiR7fGTiul6j+vnbp5sRELXBOu+pINhfOzKBv2knQR7m+WJGf1waLlQn5qmD0RVt1bU/D1J/T/+ScBgsu58/GOQ7umdjvMT2CnpxZ8q65SAe57ZoTztBwH5hJw0U7eMBJslZFuBB9bkNx8kSGLjhRf6VewtEDUwIkDwvoeHCTODhn+xL85j0572oOeiXG4ruKYwDW2p76Mb9BQG5VJOjiaxHBW9pBgpnH6r8w/tomKssU+T/I6wGmMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3471\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3472\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3467\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3468\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3469\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3479\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3473\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3474\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3475\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3480\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3481\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3476\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3477\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3478\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3488\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3482\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3483\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3484\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3489\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3490\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3485\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3486\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3487\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3497\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3491\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3492\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3493\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYofeaW+SQp/kc46VV9z5J79RH0nMg7Uuq7nuKkPfoLvm5a9AxOP2Catfju3Jc4aSN3hZ8z1yNokZSpud9sXsPpaqmDiTveI+iJi0+d3tD2hmjaUyr3w5UbCPpPOR9DNtdboulie564/zofiKaTNm5Kv1VDPM13Wfl7Pc8nnLTKxEdnVYMR9AoDab8lRl/g9Cez2RVC/Qh6jtoMaXGer3D62Fzz/7sCcdPSW/bEnOf7BqczDkVf/OiPoG/5hnZPrkTQsl3pux4l/MBJvz39T+v0OQSd3Hv/KBvnH5y0hNQWR0MDBB3SwnDqVQhu+mVkKfueU/9w0p1SGxk2Jv+H0waHp65gMGdwIJdW27jr1B8n3HSD0Z3SiAW46VkCneYhp3HTPue5GB/1MsLpzqyEBb23yadtJj3MPf4ZN80huD98mjoTnJZiX1uzwxlBO8+MaeRaRjydZb3njiczM5y+zRRxM4GBBU4XrX/k+aUQN316WdH5O0yscDpBbUGd5SYEffy/sb3CewTNwl22w16MDU6XH6/ovHwCQftvm655PpodTr//8DaIZz2CXlF5V3znMQTdv/n/t7jZ3HD6okbxC7Gb/HA6ce3TNQnlAnAaAFfz815ABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3498\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3499\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3494\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3495\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3496\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3506\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3500\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3501\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3502\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3507\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3508\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3503\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3504\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3505\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3515\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3509\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3510\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3511\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3516\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3517\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3512\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3513\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3514\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3524\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3518\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3519\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3520\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAAcBrJ69jKTJySR3YuLil1hU4b1dlSXY7jNuHCRcx0ImxWzuOYi65Qndc08jpJotvJozsVYZfMm8xumFbCpmnXl/r/+/Lvdn5ffqKRQpsUo/edoj/P4iJFE/v7wASid1q6sBusNb141bLun5vS7vf6wf3t1oJ0mJ3IQw14S4Lq1+D4MXnT3bAO5GyM3GDeshV56MqlOByvRuOjakd6LxC7vFCHSiJSDyQMg3Wi5Q6c4DFwIPV6LK9gfNtL20RZLNUMciquZ6JvaQF5Y07aYD5NAiZU+FtlWiyCPV9ODZMoy+AED46Uy5SBJ/FTvi0HVzR+LyM5mXUYLmSvkq50wZkTKUMJSd/Am3OTtV4W38GJ5IXaAfwqmK1sveXe8GPbJz/0zeilrIFf9E8/HuLAQzzmyQsCeClZ7Knkr4MfpNa0vb28gTyxQ9pYV47+WaWbtVOBApwUp72ssFQi54c8kVRVaf6R/C9lIptN8Ki/wytzOfxalYuelv1PMLGd1cRPVIFzjIWffdXob6vjx3FDW8gNTQIkMYRf4KJeqirmJLz6XUbFQDa81Y35YYCL3tCho5nOVSPPmk00w07Cy2ff6Pf5aJ3+O4lPrtzNQH/cfKrsIw/uo8exL5WjpyoxZ0rMtJHzuLI4Pxr8q8lqWfN/jjI+ZVVuu2PbH6Pfmb/Zj169YmrnqoKnqHH4QBcMuNLRWVZP1vwAbP9GxAD8Oe4ig47X0Xi7UKGH8wk4Ds88uh6NnoZn0M/H6IJ9iCwr03h4Xo/CNpsDD2BTVEQBPMy1ZU18bie4Xhp7TxEEL95q6K6lwdMHn57VZsDFuYuRhz5pvuOGMwaL3YU8wA8T4eQOJ4i6JPRSzec2PUqaYeuD94QrvElj8HjDtUZBugFyElVQVEgxAt/IEueE58GlWvvmFOnGyO2KS/pydU3BQ6PBm0vWcNl0u0NYpjny30gc26wwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3525\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3526\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3521\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3522\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3523\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3533\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3527\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3528\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3529\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3534\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3535\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3530\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3531\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3532\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3542\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3536\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3537\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3538\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3543\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3544\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3539\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3540\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3541\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3551\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3545\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3546\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3547\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYovarvWXKv/iM4vWPD/6s/c57AaaEgj7O53xH0ijetcyuYn8LpOZF3pNR3IWiP/oKvmxY9w0k/YJq1+O7cl3DayF3h58z1uOldp5Yo/qx/BadFUqbmfrN5Dac9pXI/XLnxBk7/KedjyOZ6C6cDiyTSlRYi6LT/Z9Wu3UPQSRs3pd+q+QCnWx/HeWV04qbrudac5XL+CKf7HordbVX5CqePzTX/vysQQUtv2RNznu8bTjrjUPTFj/646Vu+od2TK3HTr+69Zzzq9h1Ovz39T+v0uR846W+PPhhbbv5JNJ3ce/8oG+cfOC0htcXR0ABBh7QwnHoVgqDjXvl0s+4hnu7KWPB43Z2/OOmXkaXse079g9Mpfn+YWn/8J5pW27jr1B8nBgcYve6hxdPPnow4aZtJD3OPf8ZNS7GvrdnhzISTbuhOabm5mBknfZsp4mYCAwvZdNH6R55fChF0gtqCOstNrDjp4/+N7RXeI+jy4xWdl0+w4aT9t03XPB/NTjb9/sPbIJ715NMrKu+K7zyGoMPunNtcbcgBp/s3//8WN5sbJ/3z6aMUlsl8cPqiRvELsZv8OOmGmx4fpjMJEE0DAKZwbjxABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3552\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3553\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3548\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3549\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3550\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3560\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3554\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3555\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3556\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3561\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3562\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3557\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3558\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3559\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3569\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3563\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3564\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3565\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3570\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3571\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3566\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3567\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3568\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3578\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3572\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3573\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3574\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAA8LGxRJd2GlJ5NCs5JMm5zuNkXI4h7DjOPCtZYXMJw7icR6iL6zxSis4Wowcpd25Il9LKpGMkxJgzNwmbZ32p/78v/27X78vPwMItI3OgW2Dwe0xzRlmPN3o/0nIIjiUAJ4rlzdei2sEcrHznlFHrfx+xcDaBUMcFX+B97vG16HL5c8RMDNuMKUL+WNZA+SAZQo6Lk5NzQsVgqUAhspuAB1PjL9XdGAFL24bzsjbGwYu+piQ/5hTYxNHLEsueBdtblxm25EpVPif2QKhe/BzY+fmYyN1nHvm+pNTULNsFlR/gLLkHdaFnjab1M1MWwV2NOlZJ6fC1yS88F8PvyJMpEp6QuATmKFuvOvB/gDXemMZ6qS+Dw5ymKJIOeGAZnlFsvIK8kjLtrKxHf5vNbXsdsApObpc2NdTAUxLU5hVGSuR2zIHMoxT09WHVM7W1qu96PVJkp7eG3IoecLH1INyu+Nu9YVPVH/Ijv9CXoz9Xa4PHmK+DvSjGV2KbNsCH/ec5j7ibyNO3E0cI/ei1d9NmGAZb4NIe6gbjFPqhRB/cMTb6h2+z7wvz4a0nWH3CErh2Ofuk7cZfk9uf0Eu2wXycp/fuyJ/gkAL7cc8iOLNQxuVjMK6oayY6tXo9VP9dn3J/VSPcA59jXilHT1ViT1fsVUM+OPZp/S4GC07bJhCDbeAPjljLGinoaXver8YI4eqCOtroJvqnBP8kOhGHnBQx4GTtqPoEIst+JU71w4lJdC+GBrjoleJQfg486viz5ekzmuDyTX43Lxw+XTh33mrwH+t+dJCI0Zupqd2k4fDITbKrO9vK4TRvbIylww6wwXDXDL1S9Uuaq1LGOVrI9aIVbu5iuDu1o/SWjw7ylsaQoq1A9Jfzpguii+BSjPGkInMXclJ5RW+hhi54UzOoYvYOXPb1JTkqVx/8C/cEZoQwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3579\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3580\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3575\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3576\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3577\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3587\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3581\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3582\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3583\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3588\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3589\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3584\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1470487701047396},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3585\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1470487701047396},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3586\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1470487701047396},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3596\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3590\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3591\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3592\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3597\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3598\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3593\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3594\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3595\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3605\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3599\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3600\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3601\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ofeaW+SQp/kdwelXfs+Refdz0jg3/r/7MeQKnhYI8zuZ+R9Ae/QVfNy16BqcfMM1afHfuSzht5K7wc+Z6BL3r1BLFn/WvyKarpQ4m7nj/mmjaUyr3w5Ubb+D0n3I+hmyutzjpYnueuP86H3DSrY/jvDI6cdN8l5W/1/N8IppWmfjorGowgl5hIO23xOgLnJ6jNkNanOcrnD421/z/rkAELb1lT8x5vm9E0xmHoi9+9EfQt3xDuydXIuhX994zHnX7DqermjS3bBf6Aadlu9J3PUpA0FPerpA2Po6gk3vvH2Xj/AOnq77r7Jwqg6BDWhhOvQohn4575dPNugc33ZWx4PG6O39x0i8jS9n3nPqHk+6U2siwMfk/nD6atub5+nMIOsXvD1PrD9x0g9Gd0ogFDA4wujMrYUHvbUY4bTPpYe7xzwj6wOyW4wuEmOA0h+D+8GnquGkp9rU1O5wRdJb1njuezMxE0w3dKS03FyPoLxPseRnvI+ii9Y88vxSywOnTy4rO32FipRp9/L+xvcJ7BF1+vKLz8gk2OO2/bbrm+Wh2nPT7D2+DeNYTT/dv/v8tbjY3nP759FEKy2Q+OH1Ro/iF2E1+OJ249umahHIBOA0AGmCXfEAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3606\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3607\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3602\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3603\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3604\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3614\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3608\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3609\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3610\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3615\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3616\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3611\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3612\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3613\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3623\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3617\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3618\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3619\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3624\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3625\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3620\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3621\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3622\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3632\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3626\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3627\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3628\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FezDTcQAA8Nk8yuOwPOYohjzqwuX0uPKo7HSaV8mddJsVoVY2lLvMa+WYxl2XK0Y3NJnMklNKOXl0VB6jYytsCmuYo85jy6P+6vv963f3O59/PpP4BNmYQ2/7JMox5B7P5N5u1BPcT2ZmDXeCMfJZmm09PNZQMNdW8xbxHNyi4ZTtS3AA7YRyUNYAjl04m4wXCMHhYYVeipBGf6QT60a6w9w7wLHKOJZjyhC4UV1PGpiRgnWTFl3YMV/BqhZZfva6AvVLYUTn8JQpsJiTOVhEUYJ9PEpsmvNUqN+XWbZSi53d9oSqcLs8Gzg7fneMxTX4BQLvNe/qHNjv1cRQYMg84nSt9p3r3UXEU8duS1LSl8AdIuMDzAy49vt4nb/NL8T1eojxwdhlxJv75BUSNvyi7xRppg0eWWJAL7JfQZxHmvbT1MITPB9JJdPIP2QJWz6cW0U8rVUlrq+EjzpSiAe7NOCAe7Qhbwst4t5FP/gyIvqvPPE0wOz9Aw4m2d+KF6+DOSbDo0FbcNeI+Zxnwg1wxhbjG16CvJFplJJO2AQ/6A5dpx9Dv5QRouvFQn/Nx9yq/gK4kUvrC2rxFjh/Ms3SfBz9DbpBZFPaX8SjOT6KIC48pVAtbMBgAv4fWEuq3sVE/xHrCf6AAP7ps8auXAQ3G/ntJhtAPlSDO1VmqQMWFKuTyRQ4r9kgG5sOTzQ5blfphAUfot6ZutmHfLWbh1pEwoGjzPtW4/rh2HZB1NgGvAkfwaRa6YLd+Cz+ggPcOXbY1+MoHG+V6rOStP2NeyLkhgz0c7vWnArYemCR6vr9tWh9cOlGQ2cdBf1Zg09P6zDhDrmP37eUGoCjyLi4/Yd3gAmyDiWVh3zx8/J0Rc5O1DOMlsVtWYbgJrbvmS+mxuBmUTR3MxJ+I3+ac5mLvEQao53bY4b6Df3zZT8r4Gr5G5dLedbgf7YkhHIwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3633\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3634\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3629\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3630\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3631\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3641\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3635\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3636\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3637\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3642\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3643\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3638\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3639\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3640\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3650\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3644\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3645\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3646\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3651\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3652\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3647\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3648\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3649\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3659\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3653\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3654\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3655\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYy6TO3zCdJ8T8imhYK8jib+/0J0fSKN61zK5ifwmmP/oKvmxY9g9MPmGYtvjv3JdH0rlNLFH/Wv8JJi6RMzf1m8xpOV0sdTNzxHkF7SuV+uHLjDZwOLJJIV1r4Fied9v+s2rV7uOlie564/zofcNJdJmE+G77hpuu51pzlcv4Ip1UmPjqrGvwJTq8wkPZbYvQFJ/3JbHaFUD+Clt6yJ+Y83zc4rcyxpzbxA2761b33jEfdvsPpqibNLduFfsBp2a70XY8SEPSUtyukjY8j6Len/2mdPoegvz36YGy5+SdOuuq7zs6pMn/gdEgLw6lXIQg67pVPN+se3HRXxoLH6+78hdMvI0vZ95z6h5M+mrbm+fpz/+G0weGpKxjMGRyIpdU27jr1x4l4usHoTmnEAtz0LIFO85DTCHrdQ4unnz0ZcdI+57kYH/Ui6M6shAW9t3HTHIL7w6epM8FpKfa1NTuccdNF6x95filkwUkf/29sr/CelWiahbtsh70YG5z23zZd83w0O076/Ye3QTzrcdMrKu+K7zyGmw67c25ztSEHnL6oUfxC7CY/0TQA673+EUAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3660\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3661\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3656\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3657\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3658\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3668\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3662\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3663\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3664\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3669\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3670\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3665\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3666\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3667\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3677\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3671\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3672\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3673\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3678\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3679\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3674\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3675\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3676\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3686\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3680\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3681\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3682\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FaywUcAAA8OOU8hgu8xiF8ribeaRSrUVrjrLDlbpR5jxTHjl36jZd7iYmZlqPNZ2iuMXlOA15LLsd1zKvEDlvhutwdjIcjqsv9f/35b/d/L78pEPPHDKMOkXSv0/jEqRj9h3IMaSvHqkdEvjkQrRNVRtc+PCFhISe7LgWrscQIaeNKIXZMS1gDlZpMGvTAI5avpqK41WCySH5nlNBtb6ob/OHJCEEMThKFsc6Su/X+lpFFbF3fhgsF6n6T0yPgMOCk1J4T0bB8kZpLls9pfUrIQ6OZPosOBjXPtaxOI/c/mygK5b1c89bvSPb5lgvIM+KP3zTPAl+w4rbxE1cBPt8muj3C1pCPm4xEVDnsox8gLPqd12MPnlr67NLtlLrGWMZfXTmCnhrZpzva/0LeTpxnt9jsQqu75583Ze1Bo44P0ucb4VziXM+mxXr4JesysYvoRtan94ir6l6Cy95ZSsmeamQM1N1llQ2m8grIt7IysvhbtTQxIYjW8iHyc5Nlkr4rXIPfYzTNpjQzBZWpKvBgUS7+/E18DzjgR8BGrjLlSXOh8od5A80tFFcH9zQhCJLttoFP5cEq5PP7f1hWpCeJwt9w0lGV08hesMilvdx9X87t3ykFmrA1XoBJJPo32B6vqKyGoO58G+/CmLZoTTtP2M5UdrLg3d2bdoWC+CmQ6t4aS96f/0sJ64SzitUpJIidcDcen22LhPuTX00e69bFzw48X27BINFnqHBWYR5oC/DuysERDjFrHsjrgeuK+JRxna0H1/KKl221wPjLBin1u+g9yewbU1p+8AF7apjj7PgFE6QmtAKj/GqW5u7vB8skKc8VYWjL9qpbuNHwjO/vb+kk4Z+Ln8hwW0Qjt9wx5qZHQBTSNg419NwK6lYRuVqf6GwmDnFOQg2j1Vd9BtBTzNcq2nNNADXC8ILdq8ZIb+bO5cXW4BejrGbUWUagxWTzc4xOZbgP05Tj74wCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3687\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3688\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3683\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3684\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3685\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3695\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3689\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3690\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3691\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3696\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3697\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3692\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3693\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3694\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3704\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3698\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3699\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3700\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3705\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3706\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3701\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3702\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3703\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3713\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3707\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3708\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3709\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ofeaW+SQp/kc46R0b/l/9mfMETgsFeZzN/Y6b9ugv+Lpp0TM4/YBp1uK7c1/CaSN3hZ8z1xNP7zq1RPFn/Ss4LZIyNfebzWs4XS11MHHHewTtKZX74cqNNzjpP+V8DNlcb+F0YJFEutJC3HTa/7Nq1+7hplceuxPgXvMOThfb88T91/kAp5M2bkq/VUM+3fo4ziujEzddz7XmLJfzRzitMvHRWdXgT3B6jtoMaXGer0TTfQ/F7raqIOhjc83/7wpE0NJb9sSc5/sGp6uaNLdsF/qBk5btSt/1KAFBvz39T+v0Odz0t0cfjC03/ySbTu69f5SN8w+crvqus3OqDIKWkNriaGiAoENaGE69CkHQca98uln3IOiujAWP1935SzT9MrKUfc+pf3C6U2ojw8bk/3Da4PDUFQzmDA646AajO6URCxD0LIFO85DTuOl1Dy2efvZkhNOdWQkLem8jaA7B/eHT1JngtBT72podzgjaeWZMI9cyBJ1lveeOJzMznG7oTmm5uRg3/WWCPS/jfdz0baaImwkMLHC6aP0jzy+FxNOnlxWdv8PECqfLj1d0Xj7BBqfff3gbxLOeHU6vqLwrvvMY8XT/5v/f4mZzw+mfTx+lsEzmg9OJa5+uSSgXgNMAbk2ln0AFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3714\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3715\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3710\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3711\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3712\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3722\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3716\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3717\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3718\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3723\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3724\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3719\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3720\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3721\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3731\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3725\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3726\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3727\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3732\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3733\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3728\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3729\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3730\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3740\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3734\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3735\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3736\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FezDTcQAA8M0mRZ3Z1eII1YpxuChynXSdndLMenCczuhIwsmm3DnbWHXkMom7PNthQh4rj3Nd7ST+oLzyOOR9NkZbtBvDSv3l++2fr/tdn38+LFaiVJDb3cZCbE67yOMPfgLjppciLGt3WcrL72SgZ1G1IURuGzjcWLIsq3yPXn0tgSypBt+pGekMoLV77/xGVUvvU4wiJ8asnBSGjoOVbbqvbrPog5mx8ZKcb2Bl61iGQD+DfDXgKJXFmcc8k9wx0bWsQN7whNefHbaA3NbTz5GQugh24BWuVRksITcvY1k9tkAvjDoSejAWPcdLqBRxVcgnKVO+TXZqzA+maXwC2+Fxm5sf7B6tgLkTKQOc5FXkm3OTNd4WP8FJdEVNL0WD+eae6ZIBoRZ8I98oLttmDXkRXX5+owp9tMuL0QE5/HX5aWvHHB3y5AT8d53lBtiNM8h3oKOvulm6UFGB3ol9/W6L9Sby2xUuRrgTW2DaO4G0KkmP3I9u8yCqAZ7XydTHnfsNruxOL+vNhJsUpLqf0sMzZpMOmU1uY76e6MswjfgD5mSpqutxuAs7nz08Je6TwD9/2bAqroOTRjT2Y31wiUiVwAjDg3+YasRvd7mo2UhgkIzenf1w/n6PAXhbTaK66tEPTw1tvcQRkKdskynBLvBye2dVHR0eZNazHtkLbyRfTWRTiGB7capYbQunhg96OXvCyRTumbUY+NMO3fFMoSHmg9L89TQZ+luuTVr55T3gOmV8ri4Ezu9/dQmfiF6etRTtNPzPpH4PxTj8GB7/LIhohHnb9NKPrQX/v/26M8HMbC84iEGIdPRAbz7WvsAuwr5IWpw8k7YPHBkiajHgGCO/Z6JtkPHhjUKvK0Om+5H7MGV5z/3RK3E2czr+AcxTCwq7sgxJ4F97AgsXS+B/AYC32o4wCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3741\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3742\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3737\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3738\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3739\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3749\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3743\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3744\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3745\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3750\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3751\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3746\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3747\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3748\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3758\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3752\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3753\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3754\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3759\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3760\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3755\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3756\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3757\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3767\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3761\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3762\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3763\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8c9Kq+Z8m9+o/g9I4N/6/+zHkCp1e8aZ1bwfwUJz0n8o6U+i7c9K5TSxR/1r+C0yIpU3O/2byG09VSBxN3vEfQgUUS6UoL3xJNrzx2J8C95h1OutieJ+6/zgecdNLGTem3ahB06+M4r4xOBN1lEuaz4Rtuup5rzVku5484aZWJj86qBn8imv5kNrtCqP8LnJ6jNkNanOcrTrrvodjdVhXc9LG55v93BSJo6S17Ys7zfYPTGYeiL370R9C3fEO7J1ci6Ff33jMedfuOk/Y6zrh0zdwfRNNvT//TOn0OQX979MHYcvNPounk3vtH2Tj/4KTjXvl0s+5B0F0ZCx6vu/MXJ/0yspR9z6l/cLpTaiPDxuT/cPpo2prn68/hpg0OT13BYM7gAKPVNu469ceJeLrB6E5pxALc9LqHFk8/ezLipH3OczE+6sVN20x6mHv8M4I+MLvl+AIhJjjtPDOmkWsZbjrLes8dT2ZmnPRtpoibCQwscLpo/SPPL4W4af9t0zXPR7PD6fcf3gbxrEfQYXfOba425CCb7t/8/1vcbG6cdMNNjw/TmQRw0olrn65JKEfQAMazPIhABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3768\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3769\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3764\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3765\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3766\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3776\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3770\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3771\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3772\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3777\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3778\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3773\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3774\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3775\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3785\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3779\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3780\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3781\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3786\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3787\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3782\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3783\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3784\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3794\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3788\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3789\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3790\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FbTDTYQAA8NlWy+K85JgoExEdii+5Eue2dG5zE7nEbeSiWG1/utspttnpktAVJ60cMpm8rBfi1E5eOtyV2HWNvJSMvLYS1kL1qef59HT/c/2+/DgcTCW50dvGQfzROmlwmN4DJrC6fQQ9XRue5hGcKdZ0gAmqzKIuFnqO61I0Oa0N93FUxay66hly4ZBelX2qFSwl6akTDk3guIVjAmuFEvxwvpbZN6kN/Dv5rN5NFjMEPhGWck5x/T3u6f6he0kZn8GembeXq4kzyGkVHMfL9nDZ6R0xNinwkzR5izx5Fvnhp6MDDPYceMR2NOSJ+wJ4O5aeLtkP10gXGcfb4Xyj8bl7th552vDF/lTRV+TtdWZe2CW4cXykJtD+G5j+XW3KSFxC3vhq7G6/DB4bMMGcVMMjiyj8fKdlcJLPLW2/buMXZyibX0as4P5C63RDbTlcJDCZMzj8wL1fqkbsyYRXx5ZOVVbi/90urrNvJzzoWvyAn40RuRcvIrlp58b3y/9UNugM13LcWuz06BMrfSiE3T/B7uFz0gfKtf92YVfYKv/gOlgrZJP3ZaCv6s2qeJ2D/3pyCMsi/jfuU3PnlfUEQhDeGdXMe9sw+AG70bI+BVxRMC9gcU2Qf7FYLHv0j+WNFAlRhP6M+SHHchci+NeCpavvKpzYpogaXiMhf2wdjvFsyWDXOE2Atz96s+7wMaoQzrXFeKH8TeAjHhJHSyH6vE6DS44MHiVlr3qo4SVr9R013M1g8Zv7R00wuC53JsnrLZyeVfqiuYSCfM+KN8nKagvuaYPtUzw5+gLVHdEHqSnYJsEQzBjCv3DrUoNaTAUzwtSFN9lmuG+si85bj4Sfv6K7mpCHfprgNG4Qm4P/AMPW//QwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3795\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3796\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3791\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3792\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3793\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3803\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3797\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3798\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3799\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3804\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3805\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3800\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3801\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3802\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3812\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3806\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3807\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3808\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3813\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3814\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3809\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.6869962298952608},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3810\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.6869962298952608},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3811\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.6869962298952608},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3821\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3815\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3816\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3817\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYy6TO3zCdJ8T+C06v6niX36iPoHRv+X/2Z8wROCwV5nM39jqBXvGmdW8H8FE579Bd83bToGU76AdOsxXfnvsRJG7kr/Jy5HjddLXUwccf713B64uJTpze0vYHTnlK5H67cQNBp/8+qXbv3FiddbM8T91/nA5xufRznldGJm67nWnOWy/kjTvqT2ewKof4vcHqO2gxpcZ6vcLrvodjdVhUEfWyu+f9dgbhp6S17Ys7zfcNJK3PsqU38gJue8naFtPHxH3D67el/WqfPIejk3vtH2Tj/wOmq7zo7p8og6JAWhlOvQhB03CufbtY9uOmujAWP1935C6dfRpay7zn1DyfdKbWRYWPyfzh9NG3N8/XniKcbjO6URixgcMBFzxLoNA85jZte99Di6WdPRjjtc56L8VEvgu7MSljQextB20x6mHv8M/H0gdktxxcIMcFpKfa1NTuccdPOM2MauZYh6IbulJabi5nhdNH6R55fClmIpk8vKzp/h4kVJ52gtqDOchNu+vh/Y3uF9wi6/HhF5+UTbDhp/23TNc9Hs8Pp9x/eBvGsx02H3Tm3udqQA073b/7/LW42N5z++fRRCstkPpz0RY3iF2I3+eF0w02PD9OZBHDSiWufrkkoR9AAYYDJ6UAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3822\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3823\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3818\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3819\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3820\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3830\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3824\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3825\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3826\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3831\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3832\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3827\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3828\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3829\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3839\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3833\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3834\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3835\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3840\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3841\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3836\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3837\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3838\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3848\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3842\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3843\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3844\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAAcPNIHndsadYR45xHXchIfVDObVzyjBzVbYgUus24dBrG5aSYPnTlVprHOu8RlnLnPDvr8pZsHrNjdsOczmve9an//9O/2/l9+clwCeJpoqhTdsy1Avpd6KI+MMHJJzNrrAe5lnQpxqJO8xmStcZnse1gts6a4YKFEBy9epOO41cjDwl+4ToX2HQN9YOaib5gp25wtCKOZcscBTep6ihDi5NgZad6lCSTaHxkUNIjfvEUWNkmzs/enwP/DraxC2EuIA/C9U6LlheRCwoyh4uoCjChPMQy78wS8tz4s3fMktDfJnC/cBOXwUyvXCUnVQWewc/6tTisgsfY6+Rb3ejZO8Inng0byPX6beL9tTfBxI0OA/J99K0D0vcjuejDX+snF1lvIedS5Fd3quAJLm8nR+To37Cq276FbYPT2pWCujL0tRXuVueL1eB0OmZFbbGj8STmWNY5CrzqbqmishL9L1uqjVsveu+XMaMks13kF2hhiUIrzScVzfPENnB/ivXjeME+cofQFXZt9QHyp0eMKdwI+klGoK4r6xD5x+855YPP4UL31B+DHM03KmFdurj/n+3bP9E4R+B8Wdpp7Aw8qsBjzq/wD7hM1mUg8tXy/je5ilJxKgV+2XyWN8SHm06sO4qH4HyOih5AxYB/zo7vfdDSQZ5xhMNHusArHJ1V9RR4BHZgO24QfTMuNIWG1wU78li8VSLcLnrMy/kKHIdP9dh6CDfuD5UaMuBUfArNP1kP7OuUbWnKgEewA/edOuCxbi2b8usnwCUHDT011OMvNx32XJTAbTGYVxG6+siJOaVdbSVwx21nHSz2JDgDP/95lwMniLsVNC56TuO79Dm2AXKze2ofsgR9XBRHqM00RM4w2hR0ZMGbc71ujJsYI2+tjyo8DEevd7gwv7Jnglwl/Wofm2cO/guQ1EFTMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3849\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3850\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3845\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3846\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3847\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3857\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3851\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3852\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3853\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3858\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3859\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3854\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3855\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3856\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3866\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3860\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3861\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3862\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3867\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3868\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3863\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3864\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3865\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3875\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3869\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3870\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3871\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8c9Jlb5pOk+B9RjV7V9yy5Vx9B79jw/+rPnCdE00JBHmdzv+Om50TekVLf9RQnPXHxqdMb2t7AaU+p3A9XbhBP/ynnY8jmegunA4sk0pUWIuiVx+4EuNe8g9PF9jxx/3U+wOmkjZvSb9Ug6NbHcV4ZnbjpLpMwnw3fEDTfZeXv9TyfcNIqEx+dVQ3GTa8wkPZbYvQFTs9RmyEtzvMVTvc9FLvbqoKgj801/78rEDd9yze0e3LlN5y0Msee2sQPCPrVvfeMR92+w2nZrvRdjxJ+wGmv44xL18xF0N8efTC23PwTTif33j/KxvkHTktIbXE0NEDQXRkLHq+78xdOd0ptZNiY/B8nfTRtzfP15xB0it8fptYfuOkGozulEQsYHHDRswQ6zUNOI+jOrIQFvbcZ4bTNpIe5xz/jpqXY19bscGaC01nWe+54MjOTTTd0p7TcXIygv0yw52W8j6BvM0XcTGBgwUkXrX/k+aWQePr0sqLzd5hYiaYT1BbUWW5C0OXHKzovn2CD0ysq74rvPMaOkw67c25ztSEHnO7f/P9b3GxuOP3z6aMUlsl8cPqiRvELsZv8cDpx7dM1CeUCZNMA4mADpEAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3876\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3877\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3872\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3873\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3874\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3884\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3878\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3879\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3880\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3885\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3886\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3881\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3882\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3883\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3893\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3887\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3888\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3889\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3894\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3895\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3890\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3891\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3892\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3902\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3896\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3897\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3898\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/6XFezDTcQAA8JlXj901S6KTrOR5JoTrD1FnlBtRcRw3VE53FNN6YEwr59HMpa5M5bkyj1GXVC4nj84oz2jLo8Qmj+2UvBZW/+T77Z/v3e/q889HOpBLTiR0NEr/7OfHqGHfbAePkqKkQ6ZiMI7WZhcrbkVuaHU4OaWvGbl7xKGJbqkIebjyeCxJIASfLR9oPWbV5Lb+Y0UltUsuAQf5Rp8T5AyCfUktQ+JpObg6M7k7mz6BeSfKbaPatEmwdTJ/oQw/hdyw2M84zQj7nMidIfrR8IN1I70ePjPI4105k7wLCszvYCQksO2V4L7UOY+AJniMSvXK4vosuKmKYMtI+gZWfRkudzP6DmZS5eWdBnPIU5efXXER/cC8dhs50hs/jzzUdZwqb0AfZXdX0iNbAN9hCZ+/ObGInFk/WV1ZhL6Ab9xEc1gCV5TsN7HJgTvG96VYU5fBZaEPJkpL4R9208kOLejdb0T0OuqrwI7ZY4VSMnqJn/mL7bPorV6ya8qYK5j3pu66FFmN3sJ/JrVCuApOUscNknrQS+J8tPax1sAP268Wd2bAN+exnO1X/tq8/kkYTw1OH2Vu0xvGvkjLi7Yl4hfmgzOdPntx0cdnKYQiHM59/aLR1xvFnnCPMmrJVga84+2y8b0qOHFgzlLa9e976nL25s+iF/AUsTS6Bji/VpeNvwx3Drs2fvEdHrlaSTRzWEHfP/L+ZwFOE5yoJhkE2cFLLCmKKioc3ygIHFqFWxayCpWmWmCz8D5XygHsE9r8P22Kg9MNGGHeMdqY57Ys7cngYP+Uw9N52VEdcN6qqLmcDk/pfnREgwGXZU1F2fb/x8RuF/lH9JaLFE09vQ3IA2maZ2xc0CcajNWpeHAP34ZbuT4EcG1VMHftJPx8uizzNBdulscXZ2kTwT2SENW0CfpVnQD+1/vw304qY7swCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3903\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3904\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3899\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3900\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3901\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3911\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3905\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3906\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3907\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3912\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3913\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3908\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3909\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3910\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3920\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3914\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3915\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3916\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3921\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3922\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3917\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3918\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3919\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3929\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3923\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3924\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3925\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8cNENxx7t9U27D6TO3zCdJ8T+C0zs2/L/6M+cJTlooyONs7nfctEd/wddNi56RTRu5K/ycuf4lTlokZWruN5vXcDqwSCJdaeFbnHTa/7Nq1+7hpovteeL+63yA00kbN6XfqkHQKhMfnVUN/oST/mQ2u0Ko/wtO+thc8/+7Ar/ipKW37Ik5z/cNJ33LN7R7ciVuWpljT23iBwT96t57xqNu33HSsl3pux4l/IDTXscZl66Zi6CnvF0hbXwcQX979MHYcvNPOJ3ce/8oG+cfnHRIC8OpVyHk03GvfLpZ9xBPv4wsZd9z6h+c7pTayLAx+T+cTvH7w9T6AzdtcHjqCgZzBgdctNrGXaf+OCHodQ8tnn72ZMRJd2YlLOi9jaBtJj3MPf4ZQR+Y3XJ8gRATnOYQ3B8+TR1BZ1nvuePJzAynG7pTWm4uxk1/mWDPy3gfQd9miriZwMACp4vWP/L8Uoigj/83tld4zwqnWbjLdtiLscHp8uMVnZdPIGj/bdM1z0ez46Tff3gbxLMeQa+ovCu+8xj16J9PH6WwTObDSTfc9PgwnUkATieufbomoZx8GgAVAc3nQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3930\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3931\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3926\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3927\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3928\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3938\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3932\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3933\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3934\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3939\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3940\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3935\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3936\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3937\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3947\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3941\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3942\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3943\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3948\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3949\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3944\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3945\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3946\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3956\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3950\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3951\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3952\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FaTAUYBgA4F3ryDWOpC2Sq1wT4xhlSsnspoRMxSRm3ZQjLGU0WDYNGkeHGUeyjhUSptChjHHMpHKusHKOZa0rjbA5pz/1fr++mc3z5+H2P9a6K/elifv3CeVA7rBmO0xw+GQS1t4Gkw1s4+I5LTBhbNZbrfI/ronLanPA76y74iYe2QR7ybDnGks/wOFDSzVJPg1wAmlJhqdWD9t4n+V3c6tgr8XLYcrscpEXv7l0lOk+dObfgiZhr/kE+ppTcCg78zt2wVtuMmNzfNf/vKSl60znYXdSbh1un5uGq1PjutNpfFjTyt6IFDsDG8blrpaJzcLkImf1+wdEn+l/yF0lWPSvk/Pe5QXNYT/9ZrSX4jgP062ZgozIBXhEddSuVm8RPhgRE8MwRXMSlikuzfhD1tc/6iUtwVHU6YpO1WXsMdl2iW2OK7Dmr0ZpSgD+uo6x/B4m2sOaR51uRF/NkgpJP7wKB5pkD/ZM7f6oBkF1ZeEaXJCr3uxgJsT+othCwygTf3QYcV6o9hs2p3PiDanoMo9n/JIS/APaNC2zVvQxzytB9RrrIm+ePsniauEPKDGRIhzZgA3eM2rKojax21MP3/GvRqfKcwbsdtCyCq78EPI2/KTNaTPkJLr0c2JRZwq63iLya2cGftmcWEvTTXTyRNQ+pZEdmP5gobyKQLDBTSmjFu+NwH9i/yiri41W7F/W53aJ/g+FZdYrGhHOq5NiiEXjvyF/Sr1QRwy29LzHu92B/jbat1FAIMGuSh1rfp349VmxrEVNcVjXi2NtbIU+Z8BQVwyXgNNahTopTLSPWe3K1AVJ+KUg9JHQDZ2zVdVSQcMf3/38PDFC9LWJxIeu4lLY9deMSUpKe0Te1YHkZ3QcTeY28z3z0Bk1T6PHE6Sxq/gKbSlD+P3cMurF6DLwa6b1xT4FOfhW8lSqbxp+iW3e5PyGAtwz6L4+p6EIb0m65M7k4/8DG08zgDAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3957\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3958\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3953\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3954\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3955\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3965\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3959\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3960\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3961\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3966\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3967\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3962\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3963\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3964\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3974\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3968\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3969\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3970\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3975\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3976\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3971\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3972\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3973\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3983\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3977\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3978\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3979\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNs46TO3zCdJ8T8imt6x4f/VnzlPiKaFgjzO5n6nHu3RX/B106JncPoB06zFd+e+hNNG7go/Z65H0LtOLVH8Wf8KJ10tdTBxx/vXOOmJi0+d3tD2Bk57SuV+uHIDQf8p52PI5noLp9P+n1W7dg9Brzx2J8C95h1OutieJ+6/zgc4nbRxU/qtGgTd+jjOK6MTN91lEuaz4Rv5NN9l5e/1PJ9w0ioTH51VDUbQfQ/F7raqfIXT0lv2xJzn+wanMw5FX/zoj5u+5RvaPbmSeLqqSXPLdqEfcFq2K33XowQEPeXtCmnj47jpt6f/aZ0+h5uu+q6zc6rMH5y0hNQWR0MDBB33yqebdQ+C7spY8Hjdnb846ZeRpex7Tv2D051SGxk2Jv+H00fT1jxffw5Bp/j9YWr9gaAbjO6URixgcIDRswQ6zUNOI+gDs1uOLxBigtMcgvvDp6njpqXY19bscMZNZ1nvuePJzIyT/jLBnpfxPoK+zRRxM4GBBSddtP6R55dC3PTpZUXn7zCxwukEtQV1lpsQ9PH/xvYK7xF0+fGKzssn2OC0/7bpmuej2eH0isq74juP4abD7pzbXG3IgZMGAF7X0P1ABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3984\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3985\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3980\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3981\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p3982\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p3992\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3986\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3987\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3988\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p3993\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p3994\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3989\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3990\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3991\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4001\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p3995\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p3996\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p3997\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4002\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4003\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3998\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.024161724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p3999\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.024161724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4000\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.024161724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4010\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4004\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4005\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4006\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAA8DGS4qzlVZaQZDnk3V2pThud21gpd+KMizxyxza1k8dYdZWrdV0uTJpQCKEj6nKMdU1e4/JKHhnOY2tONBrqS/f/+/J3O78vPxqNUcV53NZE+z+G8tkxXiwCmxK9UtN6W8CY0dlws/JNV6VmiSjqT7NeCtJiNYHTsYpdUrM6tQ+TX4jHF5eCaf6Zx8ao1adRR5f1ifyJQuRh0xEpVswe5NWycnLX1ABYK0Zhww0eAs80KXtcxtEv+Fta05hS5H741mHx3BRyN4esfbV3ZsDcyAPBhtdmkV825TfwY+eQn3o30kOiziNnenJneCwZeD8jKYnjJEfem75IuiSEx62ufjxyW6H2rOGbEiZ7ASys0LNnJMOTsn0yRNQlsMWvRl3SVXhtx+gzCRce4iklTzWij3LMHpBMLiN/mlJa/yngN/h5LkFIcVYif13oam73CM6O15hXmq2AXZi9aUfJ8JKQ/Omiou3fbxVq6dwKt6cHxNaZryJ3eTghGLSED9BsGkwU6InvOVUliSqwL/ngjcg38Pv6vf0+G/DkjYRveMka+InITxV3Yh38si3jRec9eJ0rq72Th353Toq7k2qLbT7U0HkbyO+OJxrt+Y6+UsuHYhD+F8zMlJVWYjBnUBeMN+uKveGkEnLhXgb8uMmIoKsY/Zf2FUJeBRzXt2g72AX31uEe5ivU328FezbXSANczJPFU0LhPw0WBTWb5tfqcDTZ6KP1TxIKDmkid6ffkl7vgG/IcdbOKvSFtg6yCjIW+Vv8eQbdWAtsK0gRyC3geGOW23IMPNSYQfeN0wZ7EzkEXIL6B6ZTVcRGeM5aZUtZ6A5wWvercxoM+GTmbJT91y3GdXtMDcEtMvKb63N0wIEUbISdx06w6aBwms6H86ry2GPpusgNryi9SEPw2oqgB+sX9bb9DObgD2WaPnLtdenE/B8DsHVOrjhTGweWDASvzpnD/wGCpl+TMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4011\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4012\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4007\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4008\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4009\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4019\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4013\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4014\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4015\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4020\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4021\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4016\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4017\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4018\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4028\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4022\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4023\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4024\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4029\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4030\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4025\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4026\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4027\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4037\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4031\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4032\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4033\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ofeaW+SQp/kdwelXfs+RefQS9Y8P/qz9znuCkhYI8zuZ+x02veNM6t4L5KZyeE3lHSn0Xgn7ANGvx3bkv4bSRu8LPmesR9K5TSxR/1r+C0yIpU3O/2byG09VSBxN3vEfQExefOr2h7Q2c9pTK/XDlBm76TzkfQzbXW5z0ymN3Atxr3sHp1sdxXhmdH+B0l0mYz4ZvuOl6rjVnuZw/4qT5Lit/r+f5BKdVJj46qxpMPL3CQNpvidEXouljc83/7wr8Cqelt+yJOc/3DU5nHIq++NEfN33LN7R7ciVu+tW994xH3b7D6aomzS3bhX7Aadmu9F2PEnDTXscZl66Zi6CnvF0hbXwcQX979MHYcvNPOJ3ce/8oG+cfoumQFoZTr0Jw03GvfLpZ9+CmuzIWPF535y+cfhlZyr7n1D843Sm1kWFj8n+c9NG0Nc/Xn0PQBoenrmAwZ3CgFq22cdepP07k0w1Gd0ojFiDodQ8tnn72ZITTHIL7w6epM+GkpdjX1uxwRtDOM2MauZbhprOs99zxZGaG0w3dKS03F+Omv0yw52W8j6AT1BbUWW5ihdMs3GU77MXY4LT/tuma56PZ4XTYnXObqw054HT/5v/f4mZzw+mLGsUvxG7yw+nEtU/XJJQLwGkA2mxRPUAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4038\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4039\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4034\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4035\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4036\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4046\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4040\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4041\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4042\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4047\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4048\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4043\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4044\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4045\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4055\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4049\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4050\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4051\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4056\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4057\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4052\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4053\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4054\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4064\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4058\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4059\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4060\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FaywUcAAA8Ht45LHhVocYp5DHsEhqzaPl1MQ5PW5Mu0sTqWvcnZJHjivLVFdh4+SRKMQx5iib6bgtipyQ40J5c3TK6zzXp/7/T/926/flJxvIskrU/9gqQ0ylsmq5zzqRfydEyeSkDuSYgA8uMR0S9KNz4WZVbWCq9UqoBqcVeeyQsvb+lWbkqXil7oSZCOwTfnK6RyYEX148F0Moq1D7a5UDkiB7sfffNaKVtrywIXAI5cbNsifD4Nkm2QPu1hh4KcjKmsqeAFMI7fKO+SnkpOP+jvjkGbC7c45pQ/oscoe7gtVy3BzYpIRqnm6K3qtxpNc3UIGc7cmb5XMWwPtZCQncw4tgjjxRyo5fQi6u1ndiJcE3fnyr9Db9hTxVJbrjIVwGJ+SeTpMEroBJyy06vpHoG7pGC6Q8+IUcbeZjy1Xk+eRJL1U5PMold1A6CY9rnq2perEGLhKYiwNc18HxMVjFupnqv3djf0lxIMPLLxVOl5bCvx6gW7m2w30ehve67d1A7sQ4f11kAR+k2r41VsIjS120MTabYPt33NryuC219ydb3r5aAz8UrEh9U7GNPGk3dpggRa9nQJtmmuyAsyWULeYJ+KvOtJLuDLjoCOdTNx+uZ9tcx+DvgtmZCxVCDMYH9THjkeLPZXA/bZ5NvhJOUeFPCfZh1f6nwe/iOjr8KOPexK0uHPLdRUNr1y14/0jfZhEGjzxxl0AMcUH/0s55oZqMnmbUtRbRDce1ltHk2+jrCcEsBlEDbFecXLxIUn8CkeO+Gg2nE1kMf6Ym2M+ea24YC3/Uvn4wgwfP2xa2VdK1kKf0vD6DZcEnM+einPr/sWGPx9QQ/AAW+5SmoQ0mpRW+b8qD2605442M9iCnBeAjHD3gicTxxg2++pvIxNOMfPT82ufxY6k64IhQvgjH1gXX8zzP9hnog30pLdlZgXDNnYlxxaYBcus8QUempiFYOhi2MW+BflvromCmAP0fIhaWVTAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4065\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4066\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4061\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4062\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4063\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4073\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4067\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4068\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4069\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4074\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4075\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4070\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4071\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4072\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4082\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4076\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4077\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4078\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4083\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4084\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4079\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4080\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4081\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4091\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4085\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4086\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4087\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNtw+swt80lS/I9w0qv6niX36iPoHRv+X/2Z8wROCwV5nM39jqBXvGmdW8H8FCf9gGnW4rtzX+Kkd51aoviz/hWcFkmZmvvN5jWcrpY6mLjjPYKeuPjU6Q1tb+D0n3I+hmyutzjptP9n1a7dQ9Arj90JcK95h5MutueJ+6/zASfdZRLms+Ebgq7nWnOWy/kjnF5hIO23xOgLTvqT2ewKoX7cdN9DsbutKl9x0tJb9sSc5/sGpzMORV/86I+bVubYU5v4gXr0q3vvGY+6fcdJy3al73qU8AMn7XWccemauQh6ytsV0sbHcdNvT//TOn2OeLorY8HjdXf+Ek0fTVvzfP25/zjpFL8/TK0/cNMGh6euYDBncIDRaht3nfrjhKAbjO6URiwgnp4l0GkechpBr3to8fSzJyOc7sxKWNB7m3j6wOyW4wuEmOC0FPvamh3OCNp5Zkwj1zIEnWW9544nMzOcbuhOabm5mHj6ywR7Xsb7uOnbTBE3ExhY4HTR+keeXwoR9OllRefvMLHC6QS1BXWWmxD08f/G9grvEXT58YrOyyfY4PSKyrviO4+x46T7N///FjebG0433PT4MJ1JAE4DALW3AgdABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4092\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4093\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4088\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4089\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4090\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4100\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4094\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4095\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4096\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4101\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4102\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4097\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4098\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4099\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4109\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4103\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4104\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4105\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4110\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4111\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4106\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4107\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4108\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4118\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4112\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4113\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4114\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FezATcBwA8NmGhDNOOy5h7LBcKqLrLlHdqOWxutq10yHHxaVrr9JpbFYOi0nnD+vhEYXCelCXOyfprtV5hGSio9isIiWMhvon31///Lpdn38+mv4rtHSbV62aP7PZfJWk6CU86nBCM+SuhgkRLzafVj+HnRh7MjJ7n8Fs+iyXLGyFeYPTqosJzbCUNL12bH0THHp8t65bUw/HTx067VBVg50dLd8yEnkvZPXk2v7n0Yw2OF6XKPYQ9GC/N3mX2aUdwE5OmfaSxQzC+lZDT8Ao+mjUyVNVhe9g/WNNjsQ4YvLfoml0tmAMjnJoH1J/1pp8Q15Gd0GsDrv7DpYvSTyBPdCv2LkxWw9vzFDOVRM/wU4VbJdsZ7QsaUOM40n8gmCZXiGcxD5MfR/+0HsKFg6lvxakfYPb6mw28c/jX/wwXBvi/B0WMbW1ndQZ7NKFpnPb63/A5i9oSSziLHwseIypbUEfLrZMLXCbw36VOb5roRotatY33C2fh0uVLm0R/gb4zs1trr6F6OpjN3SVlQvY33rE0vzb0aGXjvcEOC7CAQUfyzQ0/IwnElW1yAizmG5nkxrw59n2vg1f+f+9D36R3qlZgq3tOLpUp2V4gBdJ3iLGf+tlVkVnLtq6RBy01fjXXs334xQrcM6oaJ39MJqbFzgSnv8Lu0A+WVNPIISuXj761EodZvqU/hkfTRc6aoG0V7nODP5qN1N2PxZ9tdFSQkxDJ9vudCn3JMJBcRfGznSgV6YodH8j+s37vp+lBBLMse+YT+xEE1urOENLaJ8ycdmUOxl2oAoD51Lwx1L5caxUc+xhDIkLhYfObzd45srwc6SRRkYL/gT/h7Pj+y2w1+lPFRm46Mzu2/vM+KY/Lv90YtObf0zp3q4dxO9hZnaZQ7aE3bNuPH1cgt9n3o9kb78Gezr146NFBX6F6lraiNQKTuQqmoiCtdh51rMNLZn4H8iCD/TZ2cCNddz85cOmTy9RquXmFPj1QMziZ1f8SxZHlBPX0b8BbxfDiTAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4119\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4120\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4115\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4116\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4117\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4127\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4121\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4122\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4123\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4128\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4129\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4124\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4125\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4126\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4136\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4130\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4131\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4132\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4137\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4138\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4133\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4134\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4135\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4145\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4139\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4140\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4141\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8c9Kq+Z8m9+o9w0js2/L/6M+cJnBYK8jib+x1Br3jTOreC+SmcnhN5R0p9F/G0R3/B102LnsHpB0yzFt+d+xInbeSu8HPmegS969QSxZ/1r+C0SMrU3G82r+F0tdTBxB3vEbSnVO6HKzfe4KT/lPMxZHO9xUkHFkmkKy1E0Gn/z6pdu4egVx67E+Be8w5OF9vzxP3X+QCnkzZuSr9Vg6Drudac5XL+CKdXGEj7LTH6Aqc/mc2uEOonnp6jNkNanOcrnD421/z/rkDcdMah6Isf/b/B6aomzS3bhX7Aadmu9F2PEhD029P/tE6fQ9DfHn0wttz8E05XfdfZOVXmD046pIXh1KsQBN2VseDxujt/4fTLyFL2Paf+welOqY0MG5P/w+mjaWuerz+HoBuM7pRGLGBwwEWve2jx9LMnI07a5zwX46NeBN2ZlbCg9zZu2mbSw9zjnxH0gdktxxcIMeGkOQT3h09TJ56WYl9bs8OZeNp5Zkwj1zLy6SzrPXc8mZnhdEN3SsvNxQj6ywR7Xsb7uOmi9Y88vxSy4KRPLys6f4eJlWz6+H9je4X3uGkW7rId9mJscNp/23TN89HscHpF5V3xnccQ9M+nj1JYJvPB6YsaxS/EbvLD6cS1T9cklAvAaQBhb/LdQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4146\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4147\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4142\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4143\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4144\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4154\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4148\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4149\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4150\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4155\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4156\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4151\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4152\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4153\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4163\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4157\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4158\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4159\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4164\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4165\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4160\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4161\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4162\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4172\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4166\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4167\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4168\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/7XFazATcAAA8HlnuLRqqB3zyPPO8ix3OdKWux3i0o44dIUUl0clYkZ14TQ9XG0eyeuGG3IRPXby6CjU2gfm/cqjSas8ttmsPvn/+/K/27nr9+U3jYsVjhH7OqYRY/x6SVf6epAb2/lk0gVdYExTZlGPH/oobLWIV/NG5RkaYuzcwVaV9z53fOGzsAEceCr/8JT/c6/tNePE1jlhIzt+qUPyxWUaHhJwOaG6cBS81Ca8myWfQh6A6x7rE82DiR5UB42MRbB9Jnudo/4NuXFFIOGOCfqzxsXtxZdE4HH8hO8LmxXwgaS0tCyn/3e8TPbW5rZY5VPG0vnJqT+Ry2bG67xMfoEZ0tYbRxpWVV6r1zyaqr4GJq7ydMkx8JaByVJ+Djzcc44yz0MfXKQTf89sHXks6ckw/6vqP86obXt/egP8lE3o9HOWgOsrXU0dClXfJVlAt6dIwZzwsoWqKvRDFhHmzt3w4UDrdiOxDHlMFUkHc2gTbPcqq4lzVY6cSjG7Ht0IzzMQDPkq4TZBy4z6WgX4pjJxFMeH13zIrhjM3ULe6prSP8iE67Ey3J3k/2z9ujmSqQSH5rlN+Rb8AZM5lMq9SRjv7Y8aTZR/qoZ/7JcSSrjwAKnGCfZ+NeQ/dv8ub45Q/YsGxwjPLNXB7pG35q4NwJUrhlbOcvTpShw+hKSx4yttHb9zKXDanoGNC4Nw9Y5q2pgCvW15RvkKURNsFSXwdPRAj8OnuK3HwfV7gyaxifAIfFIkNV4L+Um7LIJhIrygW2KZmwOnMfzldjw4dynhgSRUGzlL0dBVF4HeQk3tPk1TB0zMLnvXxkKfjp99KWPuAhsLOxcii+HMppLUKYYueN95iQ95BJ6ot9bIo2PB5ADeo4f++uAWbmjBVjB8CWM2I6EbgLW25maXN3eDrVjsvnwtQ+T84TCZyBSu0D7DXixF/xdjA/M+MAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4173\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4174\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4169\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4170\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4171\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4181\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4175\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4176\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4177\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4182\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4183\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4178\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4179\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4180\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4190\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4184\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4185\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4186\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4191\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4192\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4187\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4188\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4189\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4199\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4193\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4194\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4195\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNtw+swt80lS/I+Iplf1PUvu1UfQQkEeZ3O/P4HTK960zq1gfoqTnhN5R0p9F4J+wDRr8d25L+G0kbvCz5nrEfSuU0sUf9a/gtMiKVNzv9m8htPVUgcTd7xH0BMXnzq9oe0NnP5TzseQzfUWJ532/6zatXsIeuWxOwHuNe/gdOvjOK+Mzg9wusskzGfDNwRdz7XmLJfzRzjNd1n5ez3PJzitMvHRWdVg4ukVBtJ+S4y+4KQ/mc2uEOrHTc9RmyEtzvMVJ51xKPriR/9vcPqWb2j35EoEXdWkuWW70A84LduVvutRAu3ot6f/aZ0+h6CTe+8fZeP8g5Ou+q6zc6oMgpaQ2uJoaICbDmlhOPUqBEHHvfLpZt2DoLsyFjxed+cvnO6U2siwMfk/Tvpo2prn68/hplP8/jC1/kDQBoenrmAwZ3DARatt3HXqjxOCbjC6UxqxAEHPEug0DzmNoH3OczE+6mWE0zaTHuYe/4ygD8xuOb5AiAknzSG4P3yaOoJ2nhnTyLUMN/1lgj0v431mnHTR+keeXwpZ4PTpZUXn7zCx4qRZuMt22Iuxweny4xWdl0/gpt9/eBvEs54dTvdv/v8tbjY3nP759FEKy2Q+nPRFjeIXYjf5iaYT1z5dk1AuAKcBK12NbkAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4200\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4201\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4196\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4197\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4198\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4208\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4202\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4203\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4204\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4209\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4210\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4205\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4206\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4207\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4217\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4211\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4212\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4213\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4218\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4219\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4214\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4215\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4216\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4226\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4220\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4221\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4222\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAA8JlJXkcro7vlWUMuFVFdKZVZrRnSucQZjvLqGCuXm9HKqU50uMpcOFbzfncetZOss1MRwgoRpuWRTrSxqE/+f1/+d7v9vvwkA9mWSfpdbRI1H8dflQxbiJFjaJ37Y8UisKnd6WRO3xswpiY5V0RD7717yR+X0IY8WJc/I3z2EuwWcmq6R1Kl8sHzF2Lx/FKwt9f9A2OetSc3jigbEHnZtYODp8PYVvG94Nq5CnK3dAiMi1wgcQM+g2Vt8l6ncfglevQ1ftYXsKxJkp6iHAPT8R3D4hkpcoujVHtN9nfkzg65OxvTZOC9yXnLAuwPleeG7wrYEY3+simvmRc1Ax4hjFIabObBMSsrr2zuLIAThpM+xif+ArPI0rIPhEWwVqdlOBW7BL75mHJL5Ine4rdQx/0KPNB1kiwVwnnkqRMKwTLyR+zSpre+f1Se1SqrriiCF+QR22mOcpUvLz5kZp8FFwQ+nS4pUYAHrYIsHTvg+xi+US/MVsBODyYKJZbwIW9Ss8kCeruWlBoBS4mcSja/EV6N/p5B3yBlHW7jM5taXvpX7XNEdGXMsTWw3hO2y0HlpkmtdYzMdXD6OMt42wi8CkehGYb8A/vfcx6jZMCLxl/riD0wbhu7C8jF25nwIyajhd18eNc7BTG/Er3RwKKtpBvuoc3dw1uA0xWaZ/KMNcD8zLlYWhD8p+FiYd2meY3aKdhE9BEGx4lF1li1d2Hcnrz+Xv0/jfavFmA0wcW2DnOVZHg93ofJIODAeEKC83IkPIjAZFBjtMAedilEozjVz+iQW9/log91bFiaOrcFzOl5flaDCbfS0Hjoh9MG+9E0w+wPb1V7U0n7NIOHPrMmP3EsVQd5nN5StZCji7ye63q+31AfuTtdmJPtib6x0j9j7SJ6Gcb8m5xjANZam5yYXTVEPve1hRSaZqLy/wFhqW7fMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4227\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4228\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4223\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4224\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4225\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4235\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4229\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4230\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4231\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4236\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4237\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4232\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4233\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4234\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4244\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4238\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4239\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4240\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4245\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4246\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4241\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4242\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4243\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4253\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4247\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4248\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4249\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8c9Kq+Z8m9+o/g9I4N/6/+zHkCp4WCPM7mfkfQK960zq1gfgqn50TekVLfhZv26C/4umnRM5z0A6ZZi+/OfUk0beSu8HPmetz0rlNLFH/Wv4LTIilTc7/ZvMZJT1x86vSGtjc46aSNm9Jv1XzASbc+jvPK6MRNd5mE+Wz4hqDrudac5XL+SDbNd1n5ez3PJ5y0ysRHZ1WDEfQKA2m/JUZfcNLH5pr/3xX4FU7f8g3tnlz5DSf96t57xqNu3+F0VZPmlu1CP+C013HGpWvmIugpb1dIGx8nnn57+p/W6XMIOrn3/lE2zj9E0xJSWxwNDXDTIS0Mp16FIOi4Vz7drHsQ9MvIUvY9p/7B6U6pjQwbk//jpI+mrXm+/hxuOsXvD1PrDwRtcHjqCgZzBgcY3WB0pzRiAfn0LIFO85DTCHrdQ4unnz0ZcdI+57kYH/Ui6M6shAW9txH0gdktxxcIMeGknWfGNHItQ9AN3SktNxczw+kvE+x5Ge8j6NtMETcTGFjgdNH6R55fChH06WVF5+8wscLpBLUFdZabcNP+26Zrno9mx0m///A2iGc9gl5ReVd85zEEHXbn3OZqQw44/fPpoxSWyXw4aQBPnOCSQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4254\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4255\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4250\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4251\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4252\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4262\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4256\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4257\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4258\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4263\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4264\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4259\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4260\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4261\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4271\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4265\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4266\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4267\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4272\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4273\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4268\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.8217857248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4269\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.8217857248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4270\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.8217857248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4280\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4274\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4275\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4276\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAA8M0mYY4Jrbhr02LVJY+jc6VUW+tkM125VOeVHoozo1u0tlmcI1bxIaaQc3GZR51HXE6OOzvJM0xisrMWc3PIJlGf/P99+d/t+n35KUfyKWmEnnYl4mn7m8oJsgI5Jrj7cKKiC8yhroTjk9vB3HF9XUZMq8mLcXortXMj8sDok5p+ZQ3yqIXzifYVVWBOSI6nilV/YusoTazAlTeIvF5XzeibHUOOj9O7Sa6Mgy+x7yRUPP4C1jYrs0TrKpNfDKFQOTy1ybPtOycUc7MmX5v9oD8vQgMm+wcdxAm+g0kvOS6Zu34gv0ySvZPdnkN+vGlykM6aB/MCJFppsg757qTUVJHXAvIh8RL9Ygf6+LW19+4ZenDyRNoAj78I7pATDiXdh4uNjfeO1CybvHk35XqQ2Qry1GfM9C4WnLzcZkm/gb6hd+r5gAR+NUDNmG0z/ZRWbW112Sq4pMilI9jbAOYnYucNzkawD29IeIABH3WNoHh3wgMfRQ/6OKyBffJmSpUU+P4WUV1lyjo422ZolLmJ3j10Xvy66jdya9swTTxpA3lBF3s9/qjpj3FZeE8B3LpQ4Oe1/s9urW8ipZvIs6ZTHIlf4TV4ZrBt9B9weLavipmLnpejq6rBYAK3plcyynckoe/5aHQplsPtRpZoyj74GQvJPpn+/2cbcaeLHLHIZQ0WIjM+/JbNMZeyvWbI/SIfqu/2ov88OfyrBIMDl9M8dHIGPIzYuxr7CU4rFZQukPFgatRQgIc/3N4p2fdnHJzQHTplxUUv1yY8NYRvAwv7X53FJqF3xWKfhOEtwOT0Fx+aC9HTVj1wROJ2cJrTTNOa1PRJyg5NpAwurSvmq8SWYIdrhlP0cTjXeqW2TWgFfisJODdsSwDT2W0F+Sx4gzw8d+MCei1mzzeD0AY5tbBIkWNuh1w31eIWk7kT+V/NzBGJMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4281\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4282\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4277\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4278\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4279\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4289\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4283\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4284\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4285\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4290\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4291\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4286\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4287\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4288\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4298\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4292\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4293\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4294\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4299\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4300\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4295\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4296\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4297\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4307\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4301\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4302\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4303\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8cNENxx7t9U26TTZ+5ZT5Jiv8RnF7V9yy5Vx9B79jw/+rPnCc46RVvWudWMD/FSc+JvCOlvgtBe/QXfN206BlO+gHTrMV3576E00buCj9nrief3nVqieLP+ldwulrqYOKO96/h9MTFp05vaHsDpwOLJNKVFr7FSa88difAveYdTjpp46b0WzUfcNJdJmE+G74haJWJj86qBn+C0ysMpP2WGH2B05/MZlcI9SPovodid1tVvsJp6S17Ys7zfcNJ3/IN7Z5ciaCrmjS3bBf6Aae9jjMuXTMXQb89/U/r9Dny6eTe+0fZOP/gpONe+XSz7iGe7pTayLAx+T+cPpq25vn6cwg6xe8PU+sP3LTB4akrGMwZHGC02sZdp/44IegGozulEQtw0+seWjz97MlING0z6WHu8c8IuqE7peXmYmac9G2miJsJDCw46dPLis7fYWLFSSeoLaiz3ISgWbjLdtiLscHp8uMVnZdP4Kbff3gbxLOeHSe9ovKu+M5juOmwO+c2Vxty4KT7N///FjebG07/fPoohWUyH5y+qFH8QuwmP9F0w02PD9OZBOB04tqnaxLKcdMA/H+8rkAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4308\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4309\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4304\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4305\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4306\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4316\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4310\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4311\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4312\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4317\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4318\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4313\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4314\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4315\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4325\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4319\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4320\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4321\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4326\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4327\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4322\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4323\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4324\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4334\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4328\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4329\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4330\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/6XFezDTcQAA8LGh1jqsaynO6yRyLM/yh9JldBomdLnutiklnbKNHmZsqc5xrCMXc66VVuYxS2e5dE4rHZXHKJm6kLcQt8I86y/fb/98737p889H251vxye9a9QiZjC4SmHeWzCO3kxNbGnCft9EjGXlK7gyraCJDmcTZd8bHr1AzumdUd48XQ8W4WeIQ5YqsH/M4dEOrQLMnj6eSJbJkZ8v724Kc1YfWp89Giuw53UifzJVSWsf6UFOiJ9xzDjVCx5vXOj0HPiH67SZwuV+5LNhdg4M3hC4OiutI5c5inlb32AXvGAMucUDhtWtnRPgXdyUFKH7NLhLpAuIUsOTvvA1vKuzYHUVyZWbiv1k2kh5G0UHFulV1/Yrfm74lMKg600hv8C1rX0lmgx4ZIFJQq7NHPJi2vBBfRk8jlrYoxmG3xXI695EzCO/J7FS0z0WwBWlXtYut+GevK70vTQ98k/2TDuP13BXVsQFlfUi+NxDqglu9xLY+blQWZa8jDyYZnPlbDX6PeGTogr5Cjh1jfOZrIH3cEII+wSryFVeSe/bxNjfUiTwcV/+a8f6GpZ4DawgBNFNY35jPjrLuz8oBz0ve0quwOH8178/8HJzSyD6gDJa6TYu/MCOr9J2GXqzbp2Tth0eqscfkWw3AMvEU4l0JvyHqU5a8x/7sG4MXW41BPPXyJSTVDz4hHnrfGwbeiepQDptSwA7sLv83HzhZEqS91w89knN4X1EDpxJ4bKCE4wwH+gstDLjYL9q/GLeQrQxOL3j8VEDLnw4eyLO9SPcad4Nb26+CcynDD5bFKO30KpHWcXoY6PFKkMeEfw0w+/YB1MSOCC04U5+CPZrq6JzViPhlzKHs87kbPxxnM23hfStmDdaHRqcXDJF7lAkack2MgOvGEdJxkrgfwCPz/i2MAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4335\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4336\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4331\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4332\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4333\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4343\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4337\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4338\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4339\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4344\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4345\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4340\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4341\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4342\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4352\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4346\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4347\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4348\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4353\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4354\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4349\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4350\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4351\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4361\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4355\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4356\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4357\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8i6TO3zCdJ8T+C06v6niX36iPoFW9a51YwP8VJz4m8I6W+Czft0V/wddOiZ3DayF3h58z1L4mmd51aoviz/hWcrpY6mLjj/Wuy6YmLT53e0PaGbNpTKvfDlRu46T/lfAzZXG/hdGCRRLrSQtx0sT1P3H+dDzjp1sdxXhmdCLrLJMxnwzcEXc+15iyX80c4PUdthrQ4z1c43fdQ7G6rCoKW3rIn5jzfNzidcSj64kd/BH3LN7R7ciWCfnXvPeNRt+9wuqpJc8t2oR9wWrYrfdejBNz0lLcrpI2PI+i3p/9pnT6HoL89+mBsufknnA5pYTj1KuQPnI575dPNugdBv4wsZd9z6h/ZdKfURoaNyf/h9NG0Nc/Xn0PQKX5/mFp/EE8bHJ66gsGcwQFGq23cdeqPE4JuMLpTGrGAfHqWQKd5yGkE7XOei/FRLyNO2mbSw9zjnxH0gdktxxcIMcFpKfa1NTuccdPOM2MauZYh6CzrPXc8mZnhdEN3SsvNxQj6NlPEzQQGFjhdtP6R55dC3PTpZUXn7zCxwunj/43tFd4jaP9t0zXPR7PjpN9/eBvEsx5B92/+/y1uNjec/vn0UQrLZD443XDT48N0JgGiaQCtcqTCQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4362\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4363\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4358\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4359\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4360\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4370\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4364\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4365\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4366\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4371\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4372\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4367\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4368\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4369\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4379\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4373\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4374\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4375\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4380\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4381\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4376\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4377\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4378\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4388\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4382\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4383\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4384\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/7XFaywUcAAA8Htxec2jEmVeeWaepWblUd25srtzEkuZd5Qpd2ozHIfVxFBi4VJEdYhhiGxWHg09OBInr3DOK53klePqk/+/L//t1tbvy4/BYFVxsrpeMxBjqB3WkZ3t8Kr4nHZqq8wzh8RVt4KawIl4seLUgXqwS+BJUY+gEhyweC5S42kpmOGeZjNOq3beOUAUwjaM6pX56m8vyN3Tg2DCVbFJ8qUh8GyDIIUjGUe+5G5gxIiaAtM12oY756fB+g5uFnj2DNjeKke77vYs+FB8/ioPNyfzF7W4jdzwebDTy9FeEm1B5kc0Rym1povg/ayYGI4t+r7EZZJXi+zfGI7lR0UvIW+pULZkxcF/TYyUOWv/QC7XYXDZDbeCPCaXktROg+v/bFYghf6/6z6MFfCTZd/XcYo83Qw/n0OMyNBbRc4lC502ePAw69xBvhD+gF3a8NZzDXl58RFdi7vrYJ7vI1FJyQbyAUM/A7s29Jb+nuH1ur+QH86YLBQYoB9kmDTuE8NDS6yJGONN5OavOFW8mxLkqSp9AxQp3NRjIbG8dAscJ2V+0eDDlVS9RRFa2+Dsdrok4jj6QSaNYMOGP+tKevLxDnqlPPZRW8lfmzTV+GdKwZUEClU18Ddyn1T7cUo6+qKvbxQ6XTEuO5N45OLdLPTv3m/oPKyAq31eNhN0w12JycZcMZy+gT+dvxeL/LvqcmGNH5xbR+TgouFXVE7oFB3EgaWLakZ2Enj/6KfNxxg8OFaqoXnBGm4U0Odo5UAAK3d4jCky4a7mHB01phw4yK52RXhWHnnF7LWsdR943lZla5mf7Cf0PD+DZaEXps2FWfbDDbHYe94EIthszQqvrr4L7E3Fh1gcQ68laBH5c+F7gtdPkYYUwCE+mfW4KMV/nkRvzr5PU0Z+PUWYGpwOn8XoTawnqIDltqcmFzZVwUZ5+Z1pcmrgLXmv/JkC+B/xQt6dMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4389\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4390\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4385\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4386\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4387\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4397\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4391\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4392\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4393\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4398\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4399\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4394\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4395\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4396\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4406\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4400\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4401\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4402\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4407\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4408\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4403\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4404\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4405\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4415\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4409\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4410\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4411\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNtwelXfs+Re/Udk0yvetM6tYH4Kpz36C75uWvQMThu5K/ycuf4l2fSuU0sUf9a/ohotkjI195vNazg9cfGp0xva3sBpT6ncD1duIOg/5XwM2Vxv4XTa/7Nq1+4h6JXH7gS417yD00kbN6XfqvkAp1sfx3lldOKm67nWnOVy/ginVxhI+y0x+oKTnqM2Q1qc5ytOuu+h2N1WFQQtvWVPzHm+bzjpW76h3ZMrcdOv7r1nPOr2HU7LdqXvepTwg2ja6zjj0jVziaffnv6ndfocgv726IOx5eafcFpCaoujocEfOB3SwnDqVQhuOu6VTzfrHtx0V8aCx+vu/IXTnVIbGTYm/4fTR9PWPF9/DkEbHJ66gsGcwQEXrbZx16k/Tgh63UOLp589GYmmfc5zMT7qRdCdWQkLem/jpg/Mbjm+QIgJTkuxr63Z4Yybdp4Z08i1DEE3dKe03FzMDKeL1j/y/FLIAqdPLys6f4eJFU4nqC2os9yEoFm4y3bYi7HB6fLjFZ2XT+Cm/bdN1zwfzQ6nV1TeFd95DEGH3Tm3udqQAyfdv/n/t7jZ3Djpn08fpbBM5oPTFzWKX4jd5IfTDTc9PkxnEoDTiWufrkkox00DALepCuhABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4416\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4417\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4412\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4413\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4414\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4424\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4418\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4419\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4420\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4425\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4426\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4421\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4422\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4423\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4433\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4427\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4428\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4429\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4434\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4435\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4430\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4431\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4432\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4442\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4436\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4437\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4438\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAA8Nk8MpzdTjNHeZ7nxYXIlXRlucSicK06cx5xtTKPcueddNGxCle2yvI6VlheJbVzQ0cPEmELIRtLlhLNGqtP/f+f/p3z+/ITDRdZpuq/7hAhniLGisYsesEYfkZJd0An8gh81byg+jlypniRnxvZDs7GLeJnTFvBEfJj8cSqWnAcb7j7qIPQ59+PFx5R+qWjYFmH4r3blBhMJXaN9c5LwRZe/k649DnkjhnslRrsF+Tk8iCzqybwnJhtp4zOwU+SOW2cs/PgRO8cGStpATxOmvBrtpODB7OXfEOF6BlK5Qu73EXkwjr9HQlp38HK6XGej8kPcDJFyusjLYG1eixj/LHLYIufAl3fM/CQEh1GofkKmEOR7FutQR/rcmd0QIL+dnrt05fHfyEvY5sJA1wVyB9WuG93urHxU+I1vipMV8FuiYOZjhR4zen7s5WVG3/EKtzStQu9W+FnrshSiXw0yLbNeBG9w7Msfk2yCuxPMb8U04A+32BwxE+NPk3N/EgcWAPrGYbNMsjr4OJuqoqxB1796nJ5Xx681T3pTR8LvV5pusdO1X+2bW+ks9TIafm7Jv0K/oATry/U1mMw+zf7buMJbn8VesLwkr2oH05dxR1kb9VA/s1widsYjp7TopOFTUEfZ7DX7IE1FrkH/crMxbdwtZxg46qCf5gY+l2GwYFT1UTSCRd4hb3zQh0F3kQMTqCTNJHbc9O5covNbxMx6O3shV6/J/gTngkPJyXQ/RlayA85ZJkRmPCCLoV1Xg48LDtQ5SCAR7o2L0sOa4PrZOdvKWgbv3StvpMXjl5CeOcpFcOtNDRuhmnqgMMCcNFOnluQp5I+P1Gy4GSRcJbOgbP4d1Mms3XBRlGKA75i9NE0Vis2EQ9m6i03CDLhTTneR4YM9cG+VEFxUSC8pY5WsB6C/sI1SX5UAXoZxnxakWmAfE07lD13jwD+C4ZGC38wCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4443\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4444\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4439\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4440\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4441\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4451\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4445\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4446\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4447\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4452\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4453\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4448\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4449\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4450\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4460\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4454\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4455\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4456\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4461\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4462\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4457\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4458\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4459\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4469\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4463\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4464\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4465\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNs46VV9z5J79R/hpHds+H/1Z84TOC0U5HE29zuCXvGmdW4F81M4beSu8HPm+pdwWiRlau43m9dE0xMXnzq9oe0N0fSfcj6GbK63OOnAIol0pYUIOu3/WbVr9xD0ymN3Atxr3sHpYnueuP86H3DSXSZhPhu+IehPZrMrhPq/wOk5ajOkxXm+wum+h2J3W1UQ9LG55v93BSJo6S17Ys7zfSObvuUb2j25EkErc+ypTfyAoF/de8941O07nK5q0tyyXegHnPY6zrh0zVwE/fb0P63T5xD0t0cfjC03/4TTyb33j7Jx/oHTElJbHA0NiKdDWhhOvQpB0F0ZCx6vu/MXJ/0yspR9z6l/OOlOqY0MG5P/w+mjaWuerz+HoFP8/jC1/sBNGxyeuoLBnMEBF622cdepP04IusHoTmnEAgS97qHF08+ejHDa5zwX46Ne3LQU+9qaHc5MRNMN3SktNxczw+kvE+x5Ge8j6NtMETcTGFjgdNH6R55fComnTy8rOn+HiRUnnaC2oM5yE276+H9je4X3CJqFu2yHvRgbnC4/XtF5+QSC9t82XfN8NDtO+v2Ht0E86xF02J1zm6sNOeD0z6ePUlgm88HpixrFL8Ru8sPphpseH6YzCRBNJ659uiahHEEDAL3VI4JABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4470\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4471\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4466\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4467\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4468\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4478\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4472\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4473\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4474\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4479\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4480\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4475\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4476\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4477\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4487\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4481\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4482\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4483\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4488\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4489\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4484\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4485\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4486\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4496\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4490\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4491\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4492\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FW0gTUAAA0LnNVj6YE1uKI5+JU1JTTKJMEZdgW86ywVBmoqbCanOOrNCpAzGXjiLJF5blQofbfKBZxjB1oVSm2WNIopmbTZtZpm5rWv3Uvf5cGNL5ORj6SChvVDOA+bs7Na5YNDmEHDOzmOHZvu2O4hoNHc70X2PjCwbA5xxkS+oHT+DLp3musjYwM0kSNsvojPl3rvydJok6iLzT2E57pdeC8XkrAeLUKfC3JB9/pmAerKosHq/mLIC9jyQG44o+7/jIkBqPnnKDzQcV16+3YheRu99jUso94IJosUFaYARPlq7Gnx1cRm6Zm5bHeHxHLqTp5WPk1R1fau69HKX8gdx+xCc7EbsGvlKbUKZhwNOi52l6te2n1BC41V7r4Aaa7ri5FZ4TWqud0MFvF7X1PTuzARb2G1Ttzejv1FMG6eEm5IU8uy8mTzM4QjApCqLZfmta00JLC/y9L8cnfBgeez3jdYSbBbmWGfBo3wr8fEsoAXPgJ5j6uKSjVWgFJ9K8LmWr4I5E1gLXfcvmb2lOWblHbV/LZ+DDiuCOdUWHD1m3HdDflS79Ba74KNxLmoYr8Ql0YsZvsEBibFNiMLGon78wUxoVcJnUyKNz7P7bX4mrd7u23dBDKMEWwnOdj1Ga/bDI7weGGBU0HJhFermRNQbHDshYHzbh3a7J+elkPNiVXBC5ngd3GkmeceDDOeT89ESuPfIT1BKKCx991bDJ75oYziplWKlquMJw4aaJvQt53aZySM6B6ySLOQffbttlPEo/hd7Xzu4GC08Ae5c1Pe2rgwduhOBIpN1gFh2XFRwFv0r+9NAi3fnSjsbC2dI9Nu+WaYqLn0KfxZb2YgUOYL7jmkotQt8tjj75huiEvEfBrtpKQX+xQleZWWX7BozXnEnkDPavqx+V2LvY/IQ21bK0H/0fBioA2zAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4497\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4498\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4493\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4494\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4495\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4505\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4499\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4500\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4501\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4506\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4507\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4502\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.16236677010473954},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4503\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.16236677010473954},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4504\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.16236677010473954},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4514\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4508\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4509\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4510\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4515\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4516\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4511\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4512\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4513\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4523\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4517\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4518\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4519\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ofeaW+SQp/kc46VV9z5J79RH0jg3/r/7MeQKnV7xpnVvB/BROz4m8I6W+C0F79Bd83bToGZx+wDRr8d25L4mmjdwVfs5cj5vedWqJ4s/6VzjpiYtPnd7Q9gYn/aecjyGb6y3RdNLGTem3aj7gpLtMwnw2fCOerudac5bL+SPRNN9l5e/1PJ9w0nPUZkiL83yF030Pxe62quCmj801/78rEEFLb9kTc57vG5zOOBR98aM/gr7lG9o9uRJBK3PsqU38gJt+de8941G37zjpqibNLduFfuCkZbvSdz1KQNBexxmXrpmLm357+p/W6XMI+tujD8aWm3/ipCWktjgaGvzBSce98ulm3YOb7spY8Hjdnb9w+mVkKfueU/9w0p1SGxk2Jv/HSRscnrqCwZzBAUarbdx16o8Tgp4l0Gkecho3bTPpYe7xz4xwWop9bc0OZyayaeeZMY1cy3DTDd0pLTcXM+OkTy8rOn+HiZVoOkFtQZ3lJtz08f/G9grvcdMs3GU77MXY4LT/tuma56PZ4fSKyrviO48h6IsaxS/EbvLjpBPXPl2TUC4ApwGvBgIXQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4524\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4525\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4520\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4521\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4522\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4532\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4526\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4527\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4528\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4533\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4534\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4529\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4530\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4531\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4541\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4535\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4536\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4537\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4542\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4543\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4538\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4539\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4540\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4550\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4544\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4545\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4546\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FezDTcQAAcLYhpQvJ4yyMJct5tEKuFjnjksfuxHE6r7gIR5tSmszKpZ3W9bjaUB6nm51XV5x0Oc+OsBolz9DNY2puErbdlvqr7/ev793v+vzzmRh7QMo3GeycQKwX2u+RPdCH3JoSUHBjtAe53uxKkm09nEHeiCWwOjHPwSt3ymxbwf5Jp5Y+TjRinhHB85wLe+H37zTxWF8EpRucuJTCdmSOICekK525cZNgeadq5Mg89mPCM7Jq701hfi2CRGYwZWAH3xBXPHsZfKhAuCnCrYCtqxnEYhs4N3V/nEUGnEnjyvksBXiUsx4Y1b2KPFOjeXvwlhLzrOl8KTNvDfOabzNiP5uf4Fz6olhiuQ7mqFuv+jT+Qm7QT0oNwW0gv/YkuKgvDH3L8GyFlAs/R5PRFzvQn31klHnXfhNcRl84qRbBH7Pr2t5FbiHPfSNvqq+CPxMSu0OpKnBetv4Pla0a+RfHeBK1F+6WEHmx1U4DHmc4v7ZSoqe0FzaLcrXIQ+j2V1Kb0F/fzpkyl+qQP+wL12Ye/4358Zwwgicb/vx9UbWkBPutR1lDEj58l4DtfVgLvz2fu89sZhsce8drLrj0D5jJU9Q16un5o66a7zIeCIIHiug1ey+hP2b1tfJDLfrBITWxvAF9kBH3QJkSXstXZIfG64PLWowKcXnwtN0niFVOOLB3wk3Z5WH49qopmapFn79tbhnjgUde4+KuaKDDo82Gt1IkcFxnbfS0Dr1LJbty1YEAJieO0tx94eaWLK/NdHgQpZBommOAvLRX5VTCRR/NCdNSOv7/ZOqrjYXThuAGedZ9VSz2BbrGHnE8fIG3csHtM9yh6GlXm8AIHB2KT3H12QHmN5fnzXGMkVucVwUETsJfcmlnPu0xAZMFwgGegSnmpeNxmu92cJ1hlHC5Ar1itt05udgK/BcMfDGLMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4551\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4552\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4547\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4548\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4549\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4559\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4553\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4554\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4555\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4560\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4561\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4556\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4557\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4558\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4568\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4562\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4563\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4564\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4569\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4570\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4565\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4566\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4567\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4577\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4571\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4572\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4573\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/ztzy3ySFP8j+zM46B0b/l/9mfMETgsFeZzN/Y6g50TekVLf9RROe/QXfN206BmcfsA0a/HduS+Jpo3cFX7OXI+gd51aoviz/hVOWiRlau43m9c46Wqpg4k73iPoP+V8DNlcb+F0YJFEutJCBJ32/6zatXsIutieJ+6/zgecdNLGTem3ahB06+M4r4xOBF3PteYsl/NHnLTKxEdnVYM/wek5ajOkxXm+wum+h2J3W1UQ9LG55v93BeKmMw5FX/zo/w1O3/IN7Z5ciZtW5thTm/gBQb+6957xqNt3ommv44xL18z9QTY95e0KaePjuOlvjz4YW27+iZNO7r1/lI3zD5yWkNriaGiAmw5pYTj1KgRBd0ptZNiY/B9Op/j9YWr9gaDVNu469ceJwQEXPUug0zzkNIJe99Di6WdPRpx0Z1bCgt7b5NMcgvvDp6kzwWkp9rU1O5wRtPPMmEauZQg6y3rPHU9mZrLphu6UlpuLcdNfJtjzMt5H0AlqC+osN7ESTR//b2yv8B5Blx+v6Lx8gg1Ov//wNohnPTtOekXlXfGdx4inw+6c21xtyAGn+zf//xY3mxtO/3z6KIVlMh+cvqhR/ELsJj+cbrjp8WE6kwCcBgB5LVLHQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4578\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4579\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4574\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4575\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4576\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4586\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4580\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4581\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4582\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4587\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4588\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4583\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4584\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4585\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4595\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4589\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4590\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4591\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4596\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4597\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4592\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4593\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4594\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4604\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4598\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4599\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4600\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/43FezDTcQAAcLG1Ys62NNQqyyPjTF657pqcM7vT1FxySTePCKVrw11hs9nlQuh0roYrUW5o7HKEul0NnVdOVthSOI/Os3XyWMbqL99f/3y73+efj2b4ATUT3/dWA5nD4StEJb3gSVKiZsy+B2zC7va42dOFeltaoDBb3QE2GZ+PPfjinxXC0i42coz58wVlzRswT6tT3Il7DU6qG+46R1Od3hmTrHOWRGnBZ0mdYz0Ls+DGfOFgEfc72JdeatecOwd2FZatyUznUW9bxaHk2iFLEg5FWV9HvmRb3lZ+bQHs/+rbUFDoIjiVIZkrTlsCH+BnZIg8l6GrxStBF1TwVXK8Oz/rJ1isb7nt1/ALOrabmhBiuor6jEesnK5Q+JcZ08xZJXJ4KS6l6MgauJw546+XwX8oqG19f34d/KSMomJ7bUCvr/Y57HYfvneqOtuVqQePHOVSvTrhB9yLHfK2/g32Lpqq1FDhj3Kc22x0yFefeeBMnDbBtHaRQpZugJ5vqR5hGZGPhS2K62u3oGcZeV9IH+GP8kIxxwXb0Gt6c6oG8uC3+KT1DxTDt5AKTnga4N+dTN9P/GoEN2BYbKvYP+DIfN8JViFykIxZvY9vErBzX7+eUiGHH4yTOJXrkH9YrVS+5O4CJ1meojx1MAUblwmOXgb4mUYS+aKHGbjahb4kZ8KPIH5Yjx9AfxMpjB9NxqDepVJQuWyPfscYNYN+Ej6JnOa7loyM7w4bN+ehn0vmR4ekYMHBNBGFwINf2LnhkCeBHyEONdCU8OVzN0o2IneDpVsNHXVc+DMF84nun/8zYdBvVotsn/P4XasUB3ZZp5sRiXtQH8E2i3fzQy5WVNyaEO8FW1/ZCAzSop9nsdqozDYHN0kYZz5Z4cHN8sjC7XBk7Pb01OKmFXRHaVlPAZaA+qXxdue4XBvU/wU2U7FsMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4605\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4606\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4601\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4602\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4603\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4613\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4607\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4608\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4609\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4614\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4615\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4610\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4611\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4612\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4622\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4616\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4617\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4618\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4623\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4624\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4619\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4620\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4621\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4631\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4625\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4626\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4627\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYovarvWXKv/iM4vWPD/6s/c57AaaEgj7O533HTK960zq1gfgqnjdwVfs5c/xJO7zq1RPFn/SuctEjK1NxvNq/hdLXUwcQd7xH0xMWnTm9oe4OT9pTK/XDlBvH0n3I+hmyut0TTgUUS6UoLEXSxPU/cf50POOnWx3FeGZ3E010mYT4bviFovsvK3+t5PsFplYmPzqoGI+gVBtJ+S4y+4KQ/mc2uEOpH0HPUZkiL83yF030Pxe62qiBo6S17Ys7zfcNJ3/IN7Z5ciaCVOfbUJn5A0FVNmlu2C/2A017HGZeumUs8PeXtCmnj4wj67el/WqfPIehvjz4YW27+CaeTe+8fZeP8A6ervuvsnCpDPC0htcXR0ABBh7QwnHoVQj7dlbHg8bo7f+H00bQ1z9ef+w+nU/z+MLX+QNAGh6euYDBncIDRaht3nfrjhJtuMLpTGrEAQc8S6DQPOY2gfc5zMT7qZSSa7sxKWNB7G0EfmN1yfIEQE5zmENwfPk0dQX+ZYM/LeJ8ZJ338v7G9wntWouny4xWdl0+w4aT9t03XPB/NDqfff3gbxLMeQa+ovCu+8xiCDrtzbnO1IQdOun/z/29xs7lx0hc1il+I3eSH0w03PT5MZxKA04lrn65JKEfQAJgvEFRABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4632\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4633\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4628\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4629\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4630\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4640\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4634\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4635\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4636\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4641\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4642\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4637\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4638\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4639\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4649\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4643\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4644\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4645\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4650\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4651\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4646\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4647\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4648\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4658\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4652\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4653\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4654\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FeywUcBwA8LtzXB7NYzqsIuaZDVOy1kTNo5XjbLklm0Nqyck5mhLuXJlIJ7GVo1Uij5iIPJohNo/Io8l55E3nnEjeh/qr769/ftvtPv98RANPjGM1OhtFmOn0yHJuRofcEzzbbCPaW2F9q7PxCf2fsBPG5oMOvkXTTVf9yFGNcKBavqSh4CPMHloqvx9cj90l6Mxcj6gMpnun2o3T3jnjvl480Opt1Yw9cC4kzoTTB5NDl8z5/kPwJa+w8Pz0YVhcI0rmysYVftnb2JTOmYa9dFpG2iWzsINNlkFVkhg+Gp+9VkiaV3j+1cP+umHoy/rCWuENCcxx4osFUVJ4lPrd473FIvZ+3oqrbzM6aiS2lxOzjH1rcrTY2eAXzNusvu1Y9lvu7zz1SGylrcJVXWO5vXz8F7MorEdGa9iFbjOnNwvRJXnHDa3TN7B/Mwkwtm/ZhF0eBvUd093CPkg3r9VbQl97bUshmG1jt6rjlhdGy2ALnwVeSdEOfHePPazTi1bXZMyx9HfhzFYvGeuU/A+yaWS7OHRBR+Kr7gdodfP6CqZgD06eiD6gPYr2S3EY90j7A3NSpUVlBILLv19ONKm2uyt+5+fNQzmlaK2BFUvRF8V3p/DNhEv48wXSCM8AIvxTc+VFxX8LqyhcUoz8n2Dem77VRYL3FrVM7WXoPEsbaambEszQ7loP6cZPasxnjOygK3V8IplUMmwa2O9kcxK/DjXKYS0Uv0abz5gaW/4DqJHM8yxlmMGjyawa0KXi8IwNPxU4oefNOWIk/hmtHsfZIbQJkfiYQaZgP5L4vKnmmfxbrtsoaWvvgxmeSiHWjuhY6tSHLQFaX9Q8xxSiBeU5MeM8VTjET1BN4qjBlXynC181NWBXr4bMJzT5v5k8k3IlDS0mGE1uJOyHlXenpxa2NeHeQf8tiaEWvKPim/0jFy0dqzMPTtJT+L+FUqamMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4659\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4660\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4655\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4656\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4657\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4667\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4661\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4662\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4663\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4668\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4669\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4664\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4665\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4666\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4676\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4670\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4671\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4672\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4677\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4678\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4673\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4674\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4675\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4685\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4679\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4680\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4681\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYovarvWXKv/iOctFCQx9nc70/g9Io3rXMrmJ/C6TmRd6TUdxFPP2Catfju3Jdw2shd4efM9Qh616klij/rX8FpkZSpud9sXuOkq6UOJu54Tzw9cfGp0xva3uCkA4sk0pUWvoXTaf/Pql27h6CL7Xni/ut8gNNJGzel36ohnu4yCfPZ8A1BrzCQ9lti9AVO9z0Uu9uq8hVOH5tr/n9XIG4641D0xY/+33DSyhx7ahM/IOhX994zHnX7jpOuatLcsl3oB9G013HGpWvmIugpb1dIGx/HTb89/U/r9DkE/e3RB2PLzT/hdHLv/aNsnH9w0hJSWxwNDRD00bQ1z9ef+w+nU/z+MLX+wE0bHJ66gsGcwYFYWm3jrlN/nBB0g9Gd0ogFCHqWQKd5yGnc9LqHFk8/ezLipH3OczE+6kXQnVkJC3pvE0/bTHqYe/wzbvrA7JbjC4SY4DSH4P7waeoIWop9bc0OZ9x0lvWeO57MzHC6oTul5eZi3PSXCfa8jPcRdNH6R55fClng9OllRefvMLHC6QS1BXWWm3DT5ccrOi+fYCOa9t82XfN8NDtOOuzOuc3Vhhw46YabHh+mMwnA6cS1T9cklCNoAIlT6i1ABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4686\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4687\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4682\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4683\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4684\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4694\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4688\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4689\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4690\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4695\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4696\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4691\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4692\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4693\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4703\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4697\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4698\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4699\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4704\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4705\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4700\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4701\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4702\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4712\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4706\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4707\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4708\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FezDTcQAA8NmmEm6smimneZznRQjnypGz1mlm/nHkbogLRW6jE7cN65zHifO4I3V53MRokVS6zq3YXXTkbZPH5rWGSXk0M9Q/9f399e2Wzz8f6XiZVabRJ5H0z3Q6szWrtA8sx8dLp0i9YBT1o2tKr1jniY4BHO5IN3TU7HLMmZZ/3MqpEFOR6bZbEdhUETj6OH+lq+Ed2D/msmJQKgTTQwrPy4Lb/P6eIBgXhzh+gB6tiGNbs4bBbaoW8uclCRibuG7Hi5wEK0XqYQ/54Q+n3U7ml3wBK99I87K0MvD3ECtbOmsBTMP3TPWuLIGfF3AGHzAUYJJPkDOG/RXs6VJh3pGrPPROnIfbjehlMLGObpFrDv86sbqz+tYKeJowQ3lpvwY+zczIyHKDr5mbFviZ/9D5NPKSYICwAT1759U9b+EmOKOSkiMO3gKTNrsMAm8id/TPPh7iIce7VkqGFrfBzfUXLJ1L1GAP1gjXibwDnrBmWLn36L6Ebtdptq6BXmA8MkE50ILtQ1ezm5v2wIa4MEUScR96uZimTboIv6Evp24gH9mwiu3lpoWfJ087ZTp9ABZiKVRczC9wRIGnjFIEn1WoahKiUP6wa+XvDXqvIAc2kutPMOHzi1UpVIYe+Btuo+bFf1zdcTQLnY6cYHzJotYGrfNeUfcX7vbDP1gzsXXXwh+bGd19gsJAzzzAE8JdkdEiftjUHvx2fCgzioCF7lDDrlkjIdtGj/i6+CDjCame24nIDAIzKihJH1zUo7bJ5yE/UyaXqiOOgKv2hN0CBnzu4NOreszDv1i4HH9uTPcdfrpgTE2P6XwYFRPn7I2cSZh/rSmGX9z6KF2WbQD9ZKw6IHASuZ3ne20UZwQ9kNZVXhYM/07eYkFsEXwl6uycmmsMXX9/YX51FwcekkRqVixNoKtm39rdyDUD/wZL4UokMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4713\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4714\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4709\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4710\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4711\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4721\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4715\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4716\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4717\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4722\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4723\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4718\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4719\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4720\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4730\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4724\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4725\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4726\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4731\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4732\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4727\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4728\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4729\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4739\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4733\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4734\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4735\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/ztzy3ySFP8j+zNQelXfs+RefQS9Y8P/qz9znuCkV7xpnVvB/BROz4m8I6W+C0HvOrVE8Wf9KzgtkjI195vNazhdLXUwccd7BB1YJJGutPAtTrrYnifuv84HON36OM4roxNBd5mE+Wz4RjzNd1n5ez3PJzi9wkDab4nRF5z0J7PZFUL9CHqO2gxpcZ6vcLrvodjdVhXc9LG55v93BRJPS2/ZE3Oe7xtOOuNQ9MWP/rhpZY49tYkfiKdf3XvPeNTtO9F0VZPmlu1CP+C0bFf6rkcJCNrrOOPSNXMR9NvT/7ROn8NNf3v0wdhy80+cdEgLw6lXIX/gdNwrn27WPQi6K2PB43V3/sLpl5Gl7HtO/YPTnVIbGTYm/8dJH01b83z9OQSd4veHqfUHgjY4PHUFgzmDA4xW27jr1B8n3PQsgU7zkNO46XUPLZ5+9mTESXdmJSzovY2gs6z33PFkZobTXybY8zLeR9C3mSJuJjCwwOmi9Y88vxQi6NPLis7fYWKF0wlqC+osN+Gmj/83tld4j5tm4S7bYS/GhpMuP17RefkEgvbfNl3zfDQ7Tvr9h7dBPOsR9IrKu+I7j5FPh905t7nakAMn3b/5/7e42dxw+ufTRyksk/ng9EWN4hdiN/nhdOLap2sSygXgNAABY3aoQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4740\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4741\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4736\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4737\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4738\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4748\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4742\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4743\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4744\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4749\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4750\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4745\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4746\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4747\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4757\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4751\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4752\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4753\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4758\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4759\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4754\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4755\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4756\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4766\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4760\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4761\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4762\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FaUiTYQAA4J0ttZhbNDUlj6a2Qs2BWYQWsTkyZxNtZMk8mJoyyKkkxmxzJKaoVErNlWkpTDMdeeQBwzNaYJmrPPAkdajTBuaV09Wv3rc/L3xIz59HIJBq5Q8/dAkQz9CTR8fd9GBH1sWcu4Ze5LipxXjneuwLmGvRpIwucNqYWXsvoRO5gmi2nXVuBd+s+9Z/hdVz/u9xRrHMI30ITEoxeylvjIEX2kbz5ZZpcDi9b1y/NI+8sSBnsFhkRB7gW+bUkreA/ERO+bqGsIjc8YXAJc8Jft1R3a5OXUIe/HZyiMM3gScYk7xm75X/9hFpdrbcH/sGxSrnag+c/N49MZSwhjz7CS+3n4/e7afOhpOEvmVg6tlnJfZjgma58zp4VBlFUuy6jlzNnQve0sAfy2rb3kVuYD6zc6Gxvgr+vNylJ4y9iTzrFt606byFeU1MhbG6Gj7sIXJn98F9YiNTW4/+Ao8IvNodzOiTqv0oOM9tMKtDrtVkWsChXNfbiY3oCw4ahnlWuHeESfGqdge5HVVolDjugkv7wy2Sc/CRND7plAxup5Kd9rfA82cyD9MmrMgbSLwwavxv5OmFy7UNONwF1FUz3Tb6EOxzNNyXh6TwMw6TlZ9qsB9CUXqqzfAf1NXKNyL8nreu2DPZFgL4jpXOuOZHBAtpAxvij3BCV41wfAf7TfQIaSyDtOeZcYYg37NwOiMjYD0FLmJIY0MlZHBR3+ax+0q4UMG3sHTwBHbz2tylfZhX7TT01omwP1e4mOzz9Z/tBwPnx+AeePwDIYmC3C23ortNBT++4Uuk0fYjF4YRxScD4SXap1nTChuwOLqklZBuC25SBl3+Qj2AnBOuK33Eh7e8ji7ajYKTd2e/m7apYKaqXF9ItgcvT3V4JeQ5gP8AX3yinTAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4767\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4768\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4763\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4764\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4765\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4775\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4769\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4770\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4771\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4776\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4777\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4772\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4773\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4774\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4784\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4778\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4779\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4780\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4785\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4786\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4781\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4782\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4783\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4793\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4787\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4788\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4789\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/ztzy3ySFP8j+zM46FV9z5J79XHTOzb8v/oz5wmcFgryOJv7HUGveNM6t4L5KZz26C/4umnRMzht5K7wc+b6lzhpkZSpud9sXuOkq6UOJu54j6A9pXI/XLnxBk7/KedjyOZ6C6cDiyTSlRYST6f9P6t27R6CLrbnifuv8wFOJ23clH6rBjfdZRLms+Ebgq7nWnOWy/kjnOa7rPy9nucTnF5hIO23xOgL0fQns9kVQv0I+thc8/+7Ar/ipG/5hnZPrvyGk1bm2FOb+AE3/eree8ajbt9x0lVNmlu2C/2A07Jd6bseJSDoKW9XSBsfR9BvT//TOn0ON/3t0Qdjy80/4XRy7/2jbJx/cNISUlscDQ1w0yEtDKdehSDouFc+3ax7iKe7MhY8XnfnL5x+GVnKvufUP7Lpo2lrnq8/9x9Oq23cdeqPE4MDLrrB6E5pxAIEve6hxdPPnoxw2mbSw9zjnxH0gdktxxcIMcFpDsH94dPUcdNS7GtrdjjjprOs99zxZGaG0w3dKS03F+Omv0yw52W8j5u+zRRxM4GBBU6fXlZ0/g4TK5w+/t/YXuE9gn7/4W0Qz3p2nHTYnXObqw054HT/5v/f4mZzw+mfTx+lsEzmg9MXNYpfiN3kx0knrn26JqFcACcNAAc4QYFABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4794\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4795\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4790\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4791\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4792\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4802\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4796\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4797\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4798\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4803\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4804\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4799\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4800\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4801\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4811\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4805\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4806\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4807\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4812\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4813\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4808\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4809\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4810\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4820\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4814\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4815\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4816\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FeyzUcQAA8HMPVzqjmw49vEIew3KTrELl2AxR3DLtDhHqikPJeYuJsMIWlihM5mhrHqXMc3M1z8vjJPI857Uredw51D/1/fbPd/utzz8f0XCePo/yqVX05ylqiGhcTwDGuXVbhQu6kGuZXkhIFHaAcZOLAUdq0HsarvsSo1qR+6tULLVUvgdHjElfpwU2I3cMOC/uF9WC/Vcvh1MrXoFDq4e7Lpm2O2CdGCY1TvUbA0tatwbpU//cJMpIUnwDe1A7xwVL8+C6zIT+HJYY83p2ruaE+AXkNpYF2vXpErBZQtFGFX4R86nBx/w0bqG3b5wYdHJfRn6YGxubdHIVLExec/JpR8+Ryz+cSJMijxrnDUTGfAe38ykW3Di4fPprtYP2D8xHM+are2lr4GRZw33b2p9gUrd+sCt+HRz71CWlyx3uXUDm5OhugIsZc/ayKnh0s6SupmwTTI8UJpoxZMirrpWIy8vRjxiw9K074Y6PAgbpGnKwBfvKzQYdOD1nplSkDx/1NH6rKYXfKLci44y2kbsydO8F1ykwn6kqHHHZg8ftRXyhDuwgP6DGFHO0dsH5XR4Kzhl45ceUF70P4bVEFze1gF/gsqm2/QJnnOPfT2tOlPZVwNWH10xEfXBncqpRsRT7HjLCxaJDSuCK3JVwNxa8uJ6chI+Bh6qePVp2HA8+xX4we7cHvreqbmitgA9NfN5+jiMg5+1RaVet4C9NLFf4DDjzYM9mUC/8DdWLy6YRwSal8aWrenBDf+E5Szv0VFqUzUYY9indXpMqEXAWjct25ZDAzGR3hWkL9vmS20+2fJWRF+7UdlSz/v+5rMUQiyH0BkpKj5lEMlgvpaStqRDOdCMEmdvuwzyPNtMoz8W+lqhdzC6GB/nmNuAjVcBOHi35ee4UcD3fN3vXG34nYy7zejZcgtOd3kpUBZN2Z2eWt9WQGxYWCbJI6uCBUT/5kg76HWWfooVn8JXJd8aB6ZrIfwNL9MJFMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4821\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4822\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4817\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4818\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4819\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4829\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4823\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4824\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4825\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4830\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4831\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4826\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4827\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4828\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4838\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4832\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4833\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4834\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4839\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4840\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4835\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4836\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4837\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4847\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4841\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4842\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4843\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8cNENxx7t9U27D6TO3zCdJ8T+C00JBHmdzvz/BSa940zq3gvkpnPboL/i6adEzOG3krvBz5vqXcFokZWruN5vXcLpa6mDijvcIeuLiU6c3tL2B055SuR+u3EDQf8r5GLK53uKkA4sk0pUWIui0/2fVrt1D0CuP3Qlwr3kHp4vteeL+63wgm259HOeV0Ymb7jIJ89nwDTddz7XmLJfzR6JpvsvK3+t5PuGkVSY+OqsajKBXGEj7LTH6Aqc/mc2uEOpH0Mfmmv/fFfgVTktv2RNznu8bnM44FH3xoz+CrmrS3LJd6AdOWrYrfdejBAQ95e0KaePjuOm3p/9pnT6HoL89+mBsufknnE7uvX+UjfMPnK76rrNzqgxuOqSF4dSrEAQd98qnm3UPgu7KWPB43Z2/OOmXkaXse079g9OdUhsZNib/h9NH09Y8X38OQaf4/WFq/YGbNjg8dQWDOYMDjFbbuOvUHycE3WB0pzRiAYKeJdBpHnIaQfuc52J81MsIpzuzEhb03kbQNpMe5h7/jKAPzG45vkCICU5zCO4Pn6aOoKXY19bscEbQzjNjGrmWIeiG7pSWm4uZ4XTR+keeXwpZ4PTpZUXn7zCxwukEtQV1lptw08f/G9srvMdNv//wNohnPTvR9IrKu+I7j5FP92/+/y1uNjdOOnHt0zUJ5QJwGgCemmtPQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4848\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4849\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4844\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4845\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4846\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4856\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4850\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4851\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4852\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4857\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4858\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4853\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4854\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4855\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4865\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4859\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4860\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4861\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4866\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4867\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4862\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4863\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4864\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4874\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4868\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4869\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4870\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FezDTcQAA8NmKFGecwlmHPGocOqvUXaRuU6eN3XV23XFKnp0ejNLlsbXOeYTuylUkj6hxjB4k3e00dK3QNnTGPFabmZrmiC1brn/q++2f793vuj7/fJQOKXKFu7hH+Xsc/W3gRXE/fHo+3rWlF96eV9FPh3MJ+s0q107kYfGHNRK5AMyMKtk9w3hy6M+pzR/7o8gi5Kc1ibk72DLkG87qfXgx42Btj0FGUaI/GZl2vvHmBFjbJS/kmGbAi1EeXky2CnmkQ59C/GUW3FacJymL04DdD0T4EXLnwHsDKlw6CrSY982rXOHj55E71zNJBS7/Pi9pe4xjGjz0xZSMyvgKZofwtOWZOuST26aOPt+5gPlh7hI1WgTPVFyVsrMXkYtabfwzcrDPNXZeCRYsY959WWhNTf6O+Y7B6WopD31siIo2K4RX0dShRv4KOCXw7phUDb+T29T15sQq5rNeadta6tDXVJJE9CADmMIezvelGcH82Aeahgb0YTfiZRTHH8gpZZ9r5R7ox5g+L5308OSGQCuc9xrmyd2cdn6WCXkEze1yUhs8Zz19wkFqBm+xY2nOOf8EP3p3rX6oCH3nnsyBoXL0hcqsrfaT62B2ia5JgMOFYb1O+dpaHI5+v9NU7YdG+PsBI+l+KzzciuddpYd/s1uqfRpngbyqw4qDz0afanuQVOeJB+87dV11aRC+vkD0CjLBR6dG1mpwBPDDXQG6Vhp6lv3gauIQHN/TyFKY0YeTOSRi+kbkpX0GzyIe9llchoksRH/PLOhtjrNEni95fMwiA726ZD7Ff/SviZLg2XH0LDoh0S94E9gxwXCEOm79337GCzk+YmcDpkYKb99iwC8UqosTSuFanNsnQ74t2GwZXTlXTcS8brrb50yBE/gXugX7aTAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4875\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4876\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4871\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4872\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4873\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4883\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4877\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4878\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4879\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4884\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4885\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4880\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4881\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4882\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4892\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4886\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4887\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4888\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4893\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4894\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4889\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4890\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4891\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4901\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4895\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4896\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4897\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ofeaW+SQp/kdwelXfs+Refdz0jg3/r/7MeQKnhYI8zuZ+J56eE3lHSn3XUzj9gGnW4rtzX8LpXaeWKP6sfwWnq6UOJu54/xpOT1x86vSGtjc46cAiiXSlhW/hdLE9T9x/nQ846dbHcV4ZnQi6yyTMZ8M3BF3PteYsl/NHnLTKxEdnVYM/wekVBtJ+S4y+4KQ/mc2uEOrHTc9RmyEtzvOVaLrvodjdVhXi6Vu+od2TK7/B6Vf33jMedfuOk65q0tyyXegHnJbtSt/1KAFBex1nXLpmLm46uff+UTbOP3C66rvOzqkyCFpCaoujoQFuOqSF4dSrENx03CufbtY9CPplZCn7nlP/4HSn1EaGjcn/cdJH09Y8X3+OdrTB4akrGMwZHGC02sZdp/44IehZAp3mIacR9LqHFk8/ezLCaZtJD3OPf8ZNH5jdcnyBEBOclmJfW7PDGTftPDOmkWsZgs6y3nPHk5kZTjd0p7TcXIygv0yw52W8j5tm4S7bYS/GRjZdfryi8/IJ3PT7D2+DeNazw+kVlXfFdx7DTYfdObe52pADTv98+iiFZTIf0XTDTY8P05kE4HTi2qdrEsoRNAAebra7QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4902\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4903\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4898\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4899\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4900\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4910\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4904\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4905\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4906\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4911\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4912\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4907\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4908\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4909\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4919\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4913\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4914\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4915\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4920\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4921\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4916\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4917\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4918\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4928\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4922\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4923\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4924\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FezDTcQAA8Nkm0dwkeRzVJil1Hq0rdZd02lIaJpdTuhFDccWWy502tMs5LuuSK0OmWuHC8jqPznlURyJCTJ7ZyGtN8n6s/vL9+ud797s+/3zk31KpMaTmWjliFosri3v0CTxsGCrvozSBTW1cBLEdDWCcTJD2gQkP0JNO1rx6B47sVcvuB1Yjjyeo9RTm5eAA1cUIQ2kemOWZ7DDk/tZ544AxDt+S9xU58YbaWujXi9zXI/ym9OF35OMV8sS41SHMz3hSrVg8BfKiJEFbCnsMfNQuzawsYRx8UCCez8VPgE2fsywSzNALg3f5GYVj/4ppRmVG2CS433jAtXS/Cny7L6adFz0Dri8g2XLvwpd/9Oc7m/1GHsUYzW81nkWu3UgNdsPP/feUPzW69BDsl7UMZrUL4VedFIzRGngGQ3lqKXce86H2T3valfAn/LyKj94LyKOqx4ve5MCzxRb1TNoiODpCa2rRfAncbcmm0t7Dbf29w8p3LyM/kjIikVPhPSzrShM1POSlvQ5u3wrYpipOlhu1CnZj7LkTXARP0u/odtXAeyLdiQ78dcxvS+cfO7y6aevqYn+RBlxIdGWSr/0F85Kn8wpxuNMb5wzX6TadhdNzGS92cOHHTQYkX6Tomz8vWWQWwD2WCGfEO7WQS0XTEUw2/Bd5VlK86ev6Jy1y9uKRa1QGVrRV9F0DnSvZOALyGI2hsa89ep/tLQucVji+VurTt4a+xNCL629MRH5AwpeoKNi3CuhwsjuBntToNagXiT6QVjqnPL8FnL5W2JDPhse2vT6nxcW+Mnki1LZr0wZtjqO9cMq9Z3UV6TqY92ESOIcct4JFsszooXhdsFHQogu9F/ucy6JyPE8PeYnQ6UInmYSc7lHzONUd+7cSlUlBD7Cvva4YmVohI1/bckn8M8sAPD1YZR2YYAL+B7J0aRAwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4929\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4930\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4925\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4926\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4927\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4937\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4931\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4932\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4933\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4938\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4939\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4934\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4935\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4936\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4946\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4940\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4941\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4942\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4947\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4948\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4943\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4944\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4945\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4955\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4949\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4950\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4951\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ofeaW+SQp/kdweseG/1d/5jyB00JBHmdzvyPoOZF3pNR3PcVJe/QXfN206BmcNnJX+Dlz/Us4LZIyNfebzWs4XS11MHHHe/LpiYtPnd7Q9gZOBxZJpCstfAun0/6fVbt2j3g6aeOm9Fs1H3DSXSZhPhu+kU/Xc605y+X8EU7zXVb+Xs/zCU6rTHx0VjUYQX8ym10h1P8FJ31srvn/XYFf4fQt39DuyZXfqEa/uvee8ajbdzgt25W+61HCD5y013HGpWvmIugpb1dIGx9H0Mm994+ycf6B0yEtDKdeheCm4175dLPuQdAvI0vZ95z6h5M+mrbm+fpz/+F0it8fptYfxNMGh6euYDBncIDRaht3nfrjhJtuMLpTGrEAQc8S6DQPOY2gfc5zMT7qZcRJd2YlLOi9TTzNIbg/fJo6E05ain1tzQ5nBJ1lveeOJzMznG7oTmm5uRhBf5lgz8t4Hzd9myniZgIDC5wuWv/I80shgj69rOj8HSZWoukEtQV1lpsQ9PH/xvYK7xE0C3fZDnsxNjj9/sPbIJ717Djp/s3/v8XN5iaa/vn0UQrLZD6c9EWN4hdiN/nhdMNNjw/TmQTgNABuDfVeQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4956\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4957\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4952\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4953\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4954\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4964\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4958\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4959\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4960\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4965\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4966\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4961\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4962\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4963\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4973\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4967\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4968\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4969\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4974\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4975\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4970\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4971\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4972\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4982\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4976\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4977\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4978\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FbTDTcQAA4M0mWRztNHNWlpPLuXDKyQdSt9Fp01zaWZyXEiccm90pNzYuJ2LlzhVzwpnovEzOW7odojM5hjrbWppia4bWkTaJ+lK/f19+d3I9Xx4Ggy3hl48NMH4/j09WqskyMIo26p0hG0GW5FaM0F6A43Fig7TxOThTZZTcvtoPXYAx4hacu6EHJ5zVyZVtYMbFEh8NveMM7I6VFuqkVvHfxqYY3QuiVeCo8NR08b230PW9yiL+lgZ6OH5YLTNo93x7ca68LFYHJgeEeWJ4n6D7eVU4dRXqoRPrGaRCpyVwwfXD0Q6p8K8QRX2iGwZwUM/cNIW+DJ0TWKAXZq2AZwRrlMtDq+Asdc4UJ/sLmEvVPpkgrIEF5u6b/m3r4FsPQ/NH6F/B5HWpNSUJOSZwgaqVIkdWWKWVuWxAF1EXg8xNyA94zb0vL30Dc/v17S118B9VkYZoviZwdgZ62eRs3vVNMTW6hgbkWdfYo77DyMF3E6ZPOmxCVzDc+xyN8JMavK1Qx75D93jGlzRxt6AX287Mhu4gH7Bj6tKI29AVmXSsD2/3N47l10/cgd99Kmt8Qgi/aJ576OC7HTCr2E8TWvoTzClZaW5DoYL/XDc/aC0LgX/aca52Uoz8atxMqm5FFgtXMmixaPBnu7Xap/9wzg6eEOWNAVsMiJnqH8id+Ah2HAEL/Xgtr3aVvPvd4mcCvQLg4wlZfhsp8G1GI97jMvd+LIEdF5ZmCQ7x4JPsM+EzBfQtDyn8Vn16uYm1D5wnf3wezUZeLFlKPvHmr+3l/loVsisafZ+JtQKT82sGeyvhM2mYRE///dBzCB97NoXIROWQLk6094WS6myNwBrscM10jqJCTmQJuy04OHBnQeCF13Y24K5WVul2JHw9yuWDKc8WultllazE0h76lCJ603AE+RfzRHrCMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4983\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4984\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4979\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4980\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p4981\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p4991\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4985\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4986\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4987\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p4992\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p4993\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4988\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4989\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4990\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5000\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p4994\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p4995\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p4996\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5001\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5002\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4997\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4998\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p4999\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5009\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5003\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5004\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5005\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/ztzy3ySFP8j+zNQelXfs+RefeJpoSCPs7nfn8DpFW9a51YwP8VJz4m8I6W+i3jayF3h58z1L+F0tdTBxB3vX+OkPaVyP1y58YZoOu3/WbVr997C6ZXH7gS417yD08X2PHH/dT4QTSdt3JR+qwY33WUS5rPhG4Ku51pzlsv5I5zmu6z8vZ7nE05aZeKjs6rBCHqO2gxpcZ6vcPrYXPP/uwJx0xmHoi9+9P+Gk77lG9o9uZJ4WpljT23iB+LpqibNLduFfuCkZbvSdz1KQNBvT//TOn0OQX979MHYcvNPounk3vtH2Tj/EE1XfdfZOVUGQYe0MJx6FYKb7spY8Hjdnb846ZeRpex7Tv2D051SGxk2Jv+H02obd53648TggIte99Di6WdPRqJpn/NcjI96cdOdWQkLem8jaJtJD3OPfyaflmJfW7PDmQkn3dCd0nJzMTNO+vh/Y3uF96xwmoW7bIe9GBtOuvx4ReflE+TT7z+8DeJZz46TXlF5V3znMQR9UaP4hdhNfjjdcNPjw3QmATgNAPx8n1ZABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5010\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5011\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5006\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5007\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5008\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5018\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5012\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5013\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5014\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5019\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5020\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5015\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5016\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5017\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5027\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5021\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5022\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5023\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5028\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5029\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5024\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5025\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5026\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5036\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5030\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5031\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5032\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/43FeyzUcQAA8LtzKDTcOEQ4824hj7X+UFKXUjglc2NekRrm7tjkdbgxJU6alWfyKK9DXinLhJr3PJqcR8irw+lMuDuv+qe+37++2+/zz4c//owSq9Tfwf83jcasT8zuA8+TQvjT+r1gTTPHBPZYF+Zxs6sB2jVwmuE2nRjZAWZMiupTAtvASTIihUXtFuQOAZdWhvm1YP+NWxGk8krM09zSreZc3l7E+v2q8c9uZp3I/VeC4g1Yo2DiA5Exx3sS816uoeHlWVNgQSs/LXF/DrzpRjGksRaRu5K6p3vXlsF2FjlazakC5OYJeTsVhFWwZglNJ1ULzgk+5a0Wip5lzxFwI4XgGfJ3pyaTDfBJZkxM4ll4mFT60SRFhLyTp3SGGbcJjqIuVw2Rt5AnSVoenqv9DZbtoQQ7E7Yx3zw4WzjCQe9jv0hdbod75MiHZertYD6funRBUgEPsXwxMbIEfx5f2frl9i7yqDZBXc0r+Ms8nc6b1mJwdamt7uks9NER+HWxtgRswxpjm1PRV/gUrZSVYf+bgS/Fuhu9w5OAURs1Kdgmc6GYT0E/QTN+ryFCf6/MUh5ntAc2cV9Pqq48AMcdMaZII/AJhgvRKv4Q/LovuWToEbzFNnJgiAtXNG5r8OMegdPmo9RVZ+D0x3ZzThl/wKx0YWUtDufw//4BiU4BD35VnmOUL4K7SmQu56njwb+Ut4obfOFHGyqG1vsEzMcekcheljLgUlMLIY+KfU/Vwd2gIewTOso9pw/gjSR3ph+ZiNy0OL54Qx9u6D9mb3EertTjPqvAgPuSmX7OYbLgQOum7aXrcsh5gvBsMR2ee1DbVeULZw+/uYZnwg3w+KeeRHmwfnLRp9Zc7MeSF95JuceQc+sLoueSjiNXuyt2vDKJ/SA6t4XAUkDOUNyua2fDGzn2N74qK4GbefSMQw+4AKf3Q8w+AZY9XFxY31MGj0x4S9d0VcAHcnfyfhbChbMfjANTNcB/AfgeJCowCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5037\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5038\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5033\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5034\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5035\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5045\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5039\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5040\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5041\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5046\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5047\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5042\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5043\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5044\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5054\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5048\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5049\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5050\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5055\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5056\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5051\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5052\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5053\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5063\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5057\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5058\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5059\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8iaYbijnf7ptyG02dumU+S4n8Ep1f1PUvu1cdN79jw/+rPnCdwesWb1rkVzE9x0h79BV83LXqGk66WOpi44/1rOD1x8anTG9rewOk/5XwM2VxvcdKBRRLpSgsRdNr/s2rX7iHolcfuBLjXvIPTxfY8cf91PsDp1sdxXhmdCLqea81ZLuePOGm+y8rf63k+wWmViY/OqgYj6E9msyuE+r8QTc9RmyEtzvMVTktv2RNznu8b0fQt39DuyZUI+tW994xH3b7jpGW70nc9SvgBp72OMy5dMxdBf3v0wdhy80+cdHLv/aNsnH/gdNV3nZ1TZXDTElJbHA0NcNNdGQser7vzFyfdKbWRYWPyfzh9NG3N8/XncNMpfn+YWn8gaIPDU1cwmDM44KLVNu469ceJeLrB6E5pxAIE7XOei/FRLyOc7sxKWNB7G0HbTHqYe/wz8fSB2S3HFwgxEU1zCO4Pn6aOoKXY19bscMZNO8+MaeRahqCzrPfc8WRmJpsuWv/I80shC0769LKi83eYWOF0+fGKzssn2OC0/7bpmuej2eH0+w9vg3jWI+j+zf+/xc3mxkn/fPoohWUyH046ce3TNQnlAjhpALiU6nFABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5064\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5065\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5060\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5061\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5062\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5072\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5066\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5067\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5068\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5073\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5074\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5069\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5070\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5071\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5081\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5075\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5076\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5077\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5082\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5083\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5078\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5079\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5080\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5090\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5084\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5085\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5086\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FazATcAAAcBtrYY6JtUpsIlPnWfKhrlRGOWYd7XI60nmVdUzuhNlwdZVE0ZUt8m7Ks0N67VA6dB6rS1sIMctj4rznVZ/6/z/9u+X6ffnJujOp8YQPDbL/NJPJqeLfbQMPGobJeimtYLL1sUTep7fIz+kUj4tLXoNdgo4qumQVyJneqfYDXtVH/hz+pLvZ27oJebWyjN45IkV+hhFxqTijBzztTbVgRg+D9yQK5kXYMTC5gGlybRs8JWSnv1EEvI/0zb3GahK8nRMXx3eAs1WqN1ZXp8BN5QQbTsI0OGmp7opzxSxyXAs1xAM7h5wyK9Z2DUVf296fI0lB73sPz75tNo9cSJcfXhLBw+weSCVy+H1uaf17nwVwzKvRyrJ89I8EJk2ejovgp4X7TfdmwGMjMROLO5bAorO5iqIi+BfzAKrjO7jLraCP+4xUyG0CfS7Wmaq/lLn7xdYpeGiRHV7DclntrV/yq0QxK+CE9ageQ8kqWFefpWCT15BnNTNW2Afh0igvLXsuvKQtuaDjBnrdbO4BhxX1vz4YY0zsW0fud9NpwD3tFzg6VVlaoaHhgjp/sFG71U39XUX0wi0cuEH3DE3WufHd8CmWwin0jCXN4wJjzIYvTldGegao/0/9mbxn/7CwFs/HxsLD9Q6Z5O/CggtptspyuiaYRWxfCO6AYxuKWb2rcFoeN2+SogU2JF12mr+AntByql8nCn0AiRPowcaBzzvWzMlPbgLzuh6fwHDUX546Fmbz+S8bdDmPfIWbYzB3WFp4MCU5t7E+Gz1twVaTSNyMPJ409FyVDifLmhSBQnh61cPYgSRttQ/2S6/DRuuAo3TnKsU8uCtDnJXpRQDXlvulrfmiH9Uw+77I00OOWxsemljWB1tkC1pTcQbIJVJ/1bgpfHXTacGPHPhv152y3zAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5091\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5092\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5087\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5088\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5089\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5099\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5093\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5094\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5095\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5100\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5101\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5096\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5097\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5098\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5108\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5102\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5103\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5104\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5109\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5110\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5105\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5106\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5107\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5117\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5111\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5112\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5113\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNtw+swt80lS/I+Iplf1PUvu1UfQOzb8v/oz5wmcFgryOJv7nXjao7/g66ZFz+D0A6ZZi+/OfYmTNnJX+DlzPYLedWqJ4s/6V3BaJGVq7jeb1zjpaqmDiTve46YnLj51ekPbG5y0p1Tuhys3EPSfcj6GbK63cDqwSCJdaSGCXnnsToB7zTucdLE9T9x/nQ9wOmnjpvRbNQi6yyTMZ8M3BF3PteYsl/NHOM13Wfl7Pc8nOP3JbHaFUP8XOD1HbYa0OM9XnPSxueb/dwUi6IxD0Rc/+n+D08oce2oTPyDoV/feMx51+w6nq5o0t2wX+gGnZbvSdz1KQNBexxmXrpmLoKe8XSFtfBw3/e3RB2PLzT9x0sm994+ycf6B01XfdXZOlcFNh7QwnHoVgqDjXvl0s+4hnn4ZWcq+59Q/ON0ptZFhY/J/nPTRtDXP159D0LMEOs1DTjM4wGif81yMj3oZ4XRnVsKC3tvE0zaTHuYe/4ygpdjX1uxwZoLTWdZ77ngyM+Okv0yw52W8j6BvM0XcTGBgwUkXrX/k+aUQQZ9eVnT+DhMrnE5QW1BnuQlBs3CX7bAXY4PT5ccrOi+fQND+26Zrno9mx0mvqLwrvvMYgg67c25ztSEH0XT/5v/f4mZz46QvahS/ELvJj5NuuOnxYTqTAJwGAFd8XG5ABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5118\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5119\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5114\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5115\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5116\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5126\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5120\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5121\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5122\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5127\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5128\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5123\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5124\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5125\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5135\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5129\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5130\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5131\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5136\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5137\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5132\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5133\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5134\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5144\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5138\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5139\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5140\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/43FWUzSYQAAcC4z0yY4RUznsBmKzqPMlQ+mM5BmonTIMltelVmW58Y0FXQ6pxl2LRMrqrG8Q8u8ljObTTu8UAPzzPuMIi/yqKe+r5ev/X8vPx4vVi689b6Jh/FRowjVAL0N8zjfVqfothYwjemVkqp4ixw3PBtqXvbP8pS7Lb5wnvVSICm+CXlMv1qeEdYAFhHVO8bNXyEPWTwebSQrBvP8c5xHuJUeqC+W9LX4M5uRVy6UsTsmlZgnRaoZ6UH94Jmm1W6XUfSn/C5fkeV9Ac/UqrKE6yPI6W4+9sTkaczbpRQsFxFmkdOe8CwyzeCnaZI6yaU58KGaoW4Wdx4c554+I45fAA9ShzgvbRbBu2ITE4V74QqRhhXQDI/Sal/bZKjB8QNJXXGC7+DmcgOH2Gtw7dfBEg+zH+AE9mRJO1WDXKfV6rwPYQnzifmctBYuevrPRj3WBeyfcR9nTzbCI5zylV0Ty+B7ycW1706sgBMaZp6XPYaXPt1vaZ+3ChZE4+dXzdeQu8QpUu3YcM/rod0uxlrkLjfGpCoruJLHqDNVw5n1QnlRwjo4e6fiM2cLbnNsXlRavAHWN+RPRdE2wcoYLsk5Gb0+o6EqWLyF+azRBBPKIPoKEsfXMPQ38sBs1xFOLvbjchaKK3A4z78fNB2SdsjgHz6uWRSWw8l9GltVB9xbN32PRA33WyMeLjDBg78ZaqRVZ9FLqnWFBAF8a5FsvW+dAO4d6vn1CEcE8ymfVs61wwlNMv7ABnpbabJ0kU4CW4co3B3dsG9EjXddjoR7M4UW5BgdMF/EXWc2wlM7nx3Bx25DPpEzG+HQ+5/JnQcm++G78fibfJIucnrawze19+G2K45ECmU7OIk6VqMVY5+map4KlsDF8kLBiEgPbBy+6sXqR/8i3f1oj6EBcpZf453bXHh1eWDu5kn41ayJ7PBceJcySDtnSUa+sS2gYPoB+oXhekZYpin4D9ydKjcwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5145\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5146\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5141\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5142\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5143\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5153\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5147\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5148\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5149\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5154\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5155\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5150\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5151\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5152\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5162\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5156\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5157\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5158\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5163\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5164\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5159\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5160\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5161\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5171\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5165\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5166\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5167\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNtwelXfs+Re/Uc46R0b/l/9mfMETgsFeZzN/Y6bfsA0a/HduS/h9K5TSxR/1r/CSYukTM39ZvMaTldLHUzc8Z54euLiU6c3tL2B055SuR+u3EDQf8r5GLK53sLpwCKJdKWFCHrlsTsB7jXv4HSxPU/cf50PcDpp46b0WzW46XquNWe5nD/ipPkuK3+v5/kEp1UmPjqrGoyb/mQ2u0Ko/wucnqM2Q1qc5ytO+thc8/+7AhH0Ld/Q7smV33DSr+69Zzzq9h0n7XWccemauT9w0m9P/9M6fQ5Bf3v0wdhy80+cdNV3nZ1TZf4QTUtIbXE0NEDQXRkLHq+78xdOv4wsZd9z6h/RdKfURoaNyf/h9NG0Nc/Xn0PQKX5/mFp/4KYNDk9dwWDO4ICLniXQaR5ymni6MythQe9tRjhtM+lh7vHPCPrA7JbjC4SYyKY5BPeHT1NH0FLsa2t2OCNo55kxjVzLEHSW9Z47nszMcPo2U8TNBAYWnPTpZUXn7zCxwunj/43tFd4j6PLjFZ2XT7DBaf9t0zXPR7PjpN9/eBvEsx43vaLyrvjOYwi6f/P/b3GzuXHSP58+SmGZzIeTvqhR/ELsJj+cbrjp8WE6kwBOGgAw0j2SQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5172\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5173\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5168\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5169\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5170\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5180\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5174\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5175\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5176\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5181\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5182\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5177\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5178\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5179\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5189\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5183\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5184\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5185\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5190\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5191\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5186\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5187\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5188\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5198\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5192\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5193\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5194\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAA8G0ey6PbepCOZBKmwx0613WrrjbrakYXu3a6SZfqwmFzpxRmVxcd0+tOw3md8hpS1nXunMbuiDATmzyvmYaJG9ow6kv9/3353+32+/JTjTwnZTj2dqj+jmF0Byb3yJC7kM9mZik6kWOm5uNcG9BHeq2xrXkd4JSx5eaH19vAfKtle7WrBHy7bkQWQZae/vdbXQNtQKMEazsMQ8EzY+ArzISk6sJvZr8SQfKK5KrBzL1d4z0LGuRNeZmDBZw5sF+maL0GNw92qYx0e3QQLog/FLM/AX7qw+QQNXwROZci0Ap5OuQTzpP09z5LYAVfT42WwnnjGXJu+orZS8WO/qn34Wk0TV2/sx7MN0ruhjaugm26SfEXcGvI7xXRc2Th6D1W2+2oN9G3fpkqlQvgVylqmqYdHvUSn1hweB18K7BIKZ+Fp7VpmxoqfoHLRG5SRpABeX1ViPuxQngwV5HlRzMiH/XkkIK60PvHXr4jcd9Aroz0/nhgGZ63WzFK39lC7nNpkV9fawI7EFhziS7bZv9CxtxKPIn+9eecyv5cy5eE8Pr6hXAH77aWWOEO8sczaU57JuCN1nQGIe43cnbe8Wl6vvlzn+hqGzGYM6grZj7Z9YRZPrWGVrUvFd7bZ3QrEcOJI3pf1QD6MLzgaPEynGm0OidywoKrhbpkBgf9T4K+vOW/i1vx2bh0+NfJ4c0yjBXyKt8AnZiGHtdRzRo3wX3LH5QveViDva4pKAEn4GHkbDdiig3y/C7DkVwBnMUP3yK3oxdrk54Z2LZm/8rU2FnHgWcNvjmPTYXPEgdDNWNwTyz2KcsaD3ZRSedii3eBhc0l6dN8O+Q32EIJjmtv8e8ElIvDBEdwq5idvx1l/jbb6u+LmwSLlytjNhbciWZvso0W/SiF/wHGJBFjMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5199\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5200\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5195\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5196\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5197\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5207\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5201\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5202\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5203\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5208\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5209\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5204\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5205\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5206\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5216\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5210\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5211\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5212\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5217\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5218\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5213\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5214\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5215\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5225\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5219\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5220\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5221\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ofeaW+SQp/kdE06v6niX36iPoHRv+X/2Z8wROCwV5nM39jqBXvGmdW8H8FE579Bd83bToGZw2clf4OXP9SzhdLXUwccf710TTExefOr2h7Q2c9pTK/XDlBoIOLJJIV1r4Fk6n/T+rdu0ebrrYnifuv84HOJ20cVP6rRoE3fo4ziujE0HXc605y+X8kWia77Ly93qeT3BaZeKjs6rBCHqFgbTfEqMvcLrvodjdVpWvcPrYXPP/uwKpR2ccir740f8bnH517z3jUbfvcLqqSXPLdqEfcNrrOOPSNXOJp789+mBsufknnE7uvX+UjfMPTrrqu87OqTIIWkJqi6OhAW467pVPN+se3PTLyFL2Paf+welOqY0MG5P/E00fTVvzfP058ukUvz9MrT8QtMHhqSsYzBkcYLTaxl2n/jgh6FkCneYhpxH0uocWTz97MsLpzqyEBb23iacPzG45vkCICU5zCO4Pn6aOoBu6U1puLmaG018m2PMy3kfQResfeX4pZMFJn15WdP4OEytOmoW7bIe9GBvRdPnxis7LJ3DT/tuma56PZsdJv//wNohnPYJeUXlXfOcx3PTPp49SWCbzwemGmx4fpjMJwOnEtU/XJJQjaAB4fvDtQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5226\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5227\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5222\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5223\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5224\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5234\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5228\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5229\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5230\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5235\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5236\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5231\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5232\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5233\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5243\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5237\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5238\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5239\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5244\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5245\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5240\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5241\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5242\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5252\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5246\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5247\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5248\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAAcMOS19G6G7LDkEcOIeQu6Tqj08b02HF1XsfRpWNbtayZEVc5N51cXolYeeRRjpRynp2dEAqT8n4Mc5OwLY/65P/vy/9u9fvyEw1lEdk63S0ixJO4aNGYmRC5CrnLMU7YCTa0PZ3IHWxHrjK+GG784h+uTczuJMOpluvB6swWcJiWYKn52Ttw/Ki0NjWiCRy2ci4OJygHUwPSj05QXnrtHVMx1Blg2wYOm4/kmDMGkItbZAMuk6PgIP+r1wSZX8HiRtHdpK2J/341gGhJZcwg98d1jAmX5sBmHn52apwFpXd1yDaqTxODDZ9SCWlGi8gZniliPlMCPkRPSEhyWkEeq1C8t06VImeOsfsZrFVwW5WOPf02esXUtwovox/g66S5il78GnKevOGWe/VPMLaLGOWnug5OyPFN7qTA80mzJ+VlG+Box5yR/ln4I05544fzm0r/JI/QRnaWgStLjpnYZaJnxWGWZcZypXdhDHKPkOBllwvnS0vhw+YhROcO+AjV6o2BVIHcj2R6M6pmC/l93cFh31301oHLvMrybeTaerT5WMMd9LkcN6etv7ZqehXK30Vere5L1gv/DS6ebNUU+qic2tu7jFRykI7+uMH3oj4BvPujnFBQhV5/aM1G1Af30Ug5nC+FC/iSOHIIBpxfr5GkykIfo3uCUGyhitwt9M7MjR44exeHD3JUQ15i4yCpIqGnHejZjOxFX4cLpIfi1cE2RZyiFTPltwwb9HTwgOPwTNeNK8rvY5tE0I/HIs/okFncS4HTeJQt22Z47nZ1e0XIPjD30/MzGDp8Nn0x2v4L3ByDeUBT10BullzY2pgLp5HVIu3c94PZ+OnXCj56fm0Ba4KnCY4M5jeoMrSQx2uv1zRz4XUpnmc/6+mAvf2bH2ZR4PVVwRk7F+BiFdMpGVcXjN2ZmV7+pQe2zM0TpmP1wf0jlxRLJvDtfRfzFh6jl4y/tYpIMwD/ASwChScwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5253\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5254\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5249\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5250\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5251\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5261\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5255\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5256\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5257\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5262\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5263\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5258\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5259\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5260\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5270\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5264\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5265\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5266\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5271\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5272\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5267\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5268\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5269\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5279\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5273\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5274\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5275\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNs46TO3zCdJ8T+C06v6niX36uOm50TekVLf9RROi6RMzf1m8xonXS11MHHHe9y0p1Tuhys33sDpP+V8DNlcb4mm0/6fVbt2D0GvPHYnwL3mHZxufRznldH5AU53mYT5bPiGm+a7rPy9nucTnFaZ+OisajCC/mQ2u0Ko/wtOeo7aDGlxnq9wuu+h2N1WFQQtvWVPzHm+b3A641D0xY/+CPqWb2j35EoErcyxpzbxA4J+de8941G373C6qklzy3ahH3Batit916MEBO11nHHpmrkIesrbFdLGx3HT3x59MLbc/BNOJ/feP8rG+QdOh7QwnHoVgqC7MhY8XnfnL5x+GVnKvufUP6LpTqmNDBuT/+Okj6ateb7+HII2ODx1BYM5gwMuusHoTmnEAgQ9S6DTPOQ0bnrdQ4unnz0Z4bTNpIe5xz8j6AOzW44vEGLCSXMI7g+fpo6gnWfGNHItQ9AN3SktNxczw+kvE+x5Ge8j6NtMETcTGFhw0qeXFZ2/w8SKk05QW1BnuYl8+vh/Y3uF9wiahbtsh70YG5wuP17RefkE8fT7D2+DeNaz46RXVN4V33kMQYfdObe52pADTvdv/v8tbjY32fTPp49SWCbzwemLGsUvxG7yw+mGmx4fpjMJ4KQB7O9uF0AFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5280\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5281\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5276\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5277\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5278\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5288\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5282\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5283\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5284\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5289\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5290\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5285\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5286\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5287\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5297\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5291\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5292\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5293\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5298\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5299\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5294\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5295\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5296\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5306\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5300\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5301\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5302\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FazATcAAAcGbI68ySVpZ3GFcnj1x3KTmPq7NMj93JnUfoVC62KdHYrDom1uO6QvI6zntSDSk3Q5dnTMmcPPJYHknHmHnVl/z/n/53++D35Sfpf2KeoNshlPyfQqFVsx63IyeQPBKT+prBKiMzocYVcIqVLADLEIJDtItmG4vfI2erLWhPGAvA7qGnpD2SKnDI/LlofFEpcopfmsMo+dXJ7SPL+lv9SCLkIdJwpgVdDJ4WysVOY4PwOkkKa31U6c/iW4baZqfAfG5iT0aQFLldYtZyCWYGOaGAQry/D86JOBBoeB1+iZBdn31tFnyidljsSZ4D09040zzGL/B+Wnw868g8OEqh+GBzbwHMGEropcf9QS6q1D1EuwOP9Zoq6zZa3LHZq4LbrlVL4PjnPsmtZBlys6VGLc8r6N92jeT0cuAXnmpGZZgug58xS+s+nl8BxzZM8yvy0edmEUW+jnJweaGzif1D5Y+LVp2TG6+Cneh9SXZeyu/+IFTsZKhA7pQxnicxRz9Asa7fuwAnvWNVl8SuIz/jZXorgo+eq9f3zWdL+W3859jlpRtgHX2qNIqwqfQDMWSsAxNe3J5c0J0KFzgzOrt5cB3rhppg3pbSp4zF7jH4jj6A6zLqk/53x84fa9Jq81Zx396zxKtwNw3e0blKfFEJx/Uv2ko+o/fW5BzMXoD/1l/MqwlSBUfqHSfmW2KQHw2+O3GzC741j7NyXId/Hf6ylquiBqYadK2Ed8MxwiLq0Ab8Nd6fFmyERW6bx8ybN0NvFdLndvgYHG/EcFm+Ctf95D+iHQP3JrGIuBh1cHqL3DKVA6eyyeukRvhlxzeyydMa4MyNquayIPgkrsd1ahBuoar6iIrVVHqz5JdNdZnoqb5q4fauu8AJRuO1Ch6cIBFJg7PhhmFyD89BLXB4AE+AoWuDY3Rk/MYk+I2USW5Yui54WsX0hzxJD6y+OTE+t6YPtsrMaktTx4F7BwIVsybwDY2LWT9z4P8AA774GzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5307\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5308\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5303\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5304\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5305\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5315\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5309\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5310\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5311\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5316\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5317\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5312\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5313\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5314\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5324\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5318\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5319\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5320\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5325\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5326\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5321\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5322\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5323\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5333\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5327\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5328\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5329\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ofeaW+SQp/kdweseG/1d/5jwhmxYK8jib+x1Br3jTOreC+SlOek7kHSn1XQjao7/g66ZFz+C0kbvCz5nrX8JpkZSpud9sXpNN/ynnY8jmeouTTvt/Vu3aPQS98tidAPead3C62J4n7r/OBzjd+jjOK6MTQXeZhPls+IagVSY+Oqsa/AlOrzCQ9lti9AUnPUdthrQ4z1ecdN9DsbutKgj62Fzz/7sCcdMZh6IvfvT/hpNW5thTm/gBQb+6957xqNt3OF3VpLllu9APOC3blb7rUQKC9jrOuHTNXNz0lLcrpI2PI+i3p/9pnT6Hm/726IOx5eafRNPJvfePsnH+gdNV33V2TpXBTYe0MJx6FUI8/TKylH3PqX9w+mjamufrz/2H0yl+f5haf+CmDQ5PXcFgzuAAo2cJdJqHnCaeXvfQ4ulnT0actM95LsZHvcTTnVkJC3pv46YPzG45vkCICU5Lsa+t2eGMm27oTmm5uZgZTt9miriZwMACpxPUFtRZbmKF0/7bpmuej2aH0ysq74rvPIagw+6c21xtyEE2/fPpoxSWyXw46YsaxS/EbvLD6YabHh+mMwkQTQMAFqEnnEAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5334\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5335\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5330\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5331\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5332\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5342\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5336\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5337\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5338\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5343\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5344\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5339\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5340\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5341\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5351\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5345\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5346\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5347\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5352\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5353\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5348\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5349\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5350\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5360\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5354\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5355\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5356\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAA8I1pEWeWG13yfjt0KLnLI7e1Ttbp5RLnUR49dNiUYkyrrigrcmFdOFyjjFN5Xs55dMnbvCaPPNe8Ul4zj9WX+v/78r/b+X35CfvSDGJVW+qEf/fyiiplpX4BjxHDhEP6zci1LdzjEwQNco8pjU9v8oR7Ga/44Bh1YLegY6JOIR8cuHAmglhQiF4UzDSkd7uiFtdJuu3HBuGVwoeszW/IS5LiO1P8RWB9Jw8rReZ3sGV81ipPYQY5O+SAr+Z1+EVtbhX32izYpWKkm0ybQ053Zos5jHnkw6QR6nuzBbAgcYl8vh59uFT60ez+IpgxFNtFj/kJri9WtY6Kg0vHh4tc9/0CR1Omi9pJS+DE9fLbjvxl8J0M6t0m2gpYf7lWmRwK93OepEzXws+l48NT9FbBXMqUyzoPHmabMdA1BX/BLKz8dHYNHF0jLnmbC8/O0qn3tJPs+Dd5DrpWT9HHRGDnJPvXwfZ0QYIlRf55fq9E+fno+w39Dewa4W6Pg7rtNaXgAS/TKq1FeGi+LR5jsgG2qGaV8qI3wR4UvVshJfKfpCbop8rgcbLIr8SuLfBAJA13kLkNLndgtLZz5H+PaU1ZAEcG5uOonupBv+WenjxfyMdg3P5N5lHy9kbBj2iN5HQUwFta13VeFqMn9C2ZCzvgx/FsE+4i/If6Uk6ZPxbM/YBnKcTAr6gd1ck1UgAfDrg3ebMNLlsgGNttwntHejayMYrgWBmRdMEW7q3RthbcDjfPYeYs6OPAxoECZxsnOJHEOLR6Fa76+fSoSiT8uAVLhxCpBH7SKDF6xEbvnUjbtKiV/2LxjVSJzy5w5ha/ocgfntD5+gQ2Cv1U8kyYde9/EzodpwfRG2Kxz7xxeOTmazaKGhq7wd6eisFWjjs/ljRRIeXAtYX1ogAuXPOyxJ08qIw82IdTrkBXkft3bOeTPeqqYPKp2udpNLgYozcuSVDb8UrbkxNzG+rIjTOzmpOVCOCuAV/prC58frTa9NIDLfAfs6c0tzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5361\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5362\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5357\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5358\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5359\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5369\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5363\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5364\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5365\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5370\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5371\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5366\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5367\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5368\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5378\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5372\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5373\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5374\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5379\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5380\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5375\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5376\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5377\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5387\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5381\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5382\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5383\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8iaYbijnf7ptyG02dumU+S4n+EkxYK8jib+/0JnF7xpnVuBfNTOD0n8o6U+i7i6V2nlij+rH+FkxZJmZr7zeY1Trpa6mDijvfE055SuR+u3HiDk1557E6Ae807oulie564/zof4HTSxk3pt2oQdOvjOK+MTgRdz7XmLJfzRzj9yWx2hVD/F6Lpvodid1tVvsLpY3PN/+8KxE1Lb9kTc57vG5x+de8941G373C6qklzy3ahH3Batit916MEBO11nHHpmrkI+u3pf1qnz+Gmvz36YGy5+SdOuuq7zs6pMn9w0hJSWxwNDRB0SAvDqVchuOm4Vz7drHtw010ZCx6vu/MXTr+MLGXfc+ofnE7x+8PU+uM/Ttrg8NQVDOYMDjBabeOuU3+cEPQsgU7zkNMIet1Di6efPRnhtM95LsZHvQjaZtLD3OOfEfSB2S3HFwgx4aQ5BPeHT1NH0FLsa2t2OCNo55kxjVzLEHRDd0rLzcXMZNNfJtjzMt5H0EXrH3l+KWTBSSeoLaiz3MQKp1m4y3bYi7HhpMuPV3RePoGg/bdN1zwfzQ6nV1TeFd95DDcddufc5mpDDjj98+mjFJbJfETTiWufrkkoF8BJAwCTyVTGQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5388\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5389\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5384\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5385\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5386\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5396\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5390\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5391\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5392\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5397\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5398\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5393\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5394\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5395\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5405\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5399\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5400\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5401\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5406\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5407\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5402\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5403\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5404\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5414\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5408\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5409\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5410\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FbTATYAAA4LFJvs5Io6PQLSyX1ZzkOqXOKDfMnx3pVlxIdDZcOrGxy4miC3eNq5RWiFHnu7vdfN2ZLjbu2DRfYRomzkfDUH/yvv15u13X8+dRDBU5p5t/Eit+T6ez67lPesGT1nEKpZMEOYbWQ06SdIPtSBczOYOdeo8Zn4uyr/nL9Zkl3TT0dOJaBC5F/N9mjSzV34/++M9nYZdMp+2bwH5RF2alCiH4ZvVQdyip4/ze7zU11H6VHIyLX3LhRY6A1WLtgOckPDwk4bbg8RewukWRy9VNIF8OdSbSk6fBIdZdSsm8ClyXlyktYM7qvZNPkDs245vee3mUHGrMUYOPZ5auVxrOgXkxhyNtEuBX7Mpay27NIz/XPDbgH7wATvblqQtTNOBRwlhgg+si8hRluiw5bRncUWt+gn0PfSpVVd1HWEGetdF011u4CnZaFZn4x64hb/w8/kzGQ3/Vd5qqEqGPIz+Vy2bWwS9KHTpoFC04LclgQWu/AR4+ynSmdMH9HkYNeNpsgj0LpsoVznA53aXVdgke+5psjDm2BSa1cesrU3XIg6iOd2Lq9D/PYnA4cBfuGraQ9a5qG7mZJWM20W4HeXF3iC7xLFzOCsadzIC/6c1+1fcAvRk/4/QpHTx3MvWg1eiu3kfkeU0EPvoJTs7XVAkxGL+9X062m0gC4P6V1IoDbPRnbMfK+wXo8UMrbop+9IJCTRKNaQD+brlS/uGPdxfxRIrOEHn6rjUhnIzV+wo3D00tFW4oFjCU2/pPvD7o6+GDA1sTUrzW4+HmPWHjpiw4k8C+FpRoBA4gcR3wLPSMrGAdSQSPpjSszVzeh5y/LeysZsI50reXDNjwGbzUWzWC3in7eXsL3xi52w8PrJXVfjCDhr3h7g1PJ0w1bxbCWWZrdSKOKdg/RFRcFGwOVmMcv2o5FmCjnemphS1LMJFfKsk3woNl8sjN+SPoNeNtLtE5tuBfq1UQMDAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5415\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5416\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5411\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5412\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5413\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5423\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5417\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5418\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5419\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5424\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5425\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5420\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5421\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5422\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5432\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5426\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5427\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5428\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5433\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5434\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5429\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5430\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5431\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5441\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5435\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5436\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5437\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ovarvWXKv/iOctFCQx9nc70/g9Io3rXMrmJ/ipOdE3pFS34Wb9ugv+Lpp0TOc9AOmWYvvzn0Jp43cFX7OXI+bFkmZmvvN5jXRdLXUwcQd7xH0xMWnTm9oe0M2nfb/rNq1e2+Jpuu51pzlcv4Ip/kuK3+v5/kEpz+Zza4Q6v8Cp/seit1tVfkKp4/NNf+/KxA3Lb1lT8x5vm84aWWOPbWJH3DTr+69Zzzq9h0nXdWkuWW70A+q0bJd6bseJSDot6f/aZ0+h5tO7r1/lI3zD5yWkNriaGiAoENaGE69CkHQca98uln3IOiXkaXse079g9NH09Y8X3/uP5w2ODx1BYM5gwOMbjC6UxqxADc9S6DTPOQ0bnrdQ4unnz0ZcdI+57kYH/UST3dmJSzovY2btpn0MPf4Z9z0gdktxxcIMcFpKfa1NTuccdPOM2MauZYh6CzrPXc8mZmJphu6U1puLkbQXybY8zLex03fZoq4mcDAAqeL1j/y/FKIoE8vKzp/h4kVJ52gtqDOchOCPv7f2F7hPYJm4S7bYS/GBqfLj1d0Xj6BoC9qFL8Qu8kPpxPXPl2TUC4ApwETdoCNQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5442\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5443\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5438\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5439\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5440\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5450\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5444\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5445\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5446\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5451\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5452\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5447\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5448\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5449\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5459\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5453\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5454\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5455\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5460\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5461\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5456\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5457\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5458\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5468\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5462\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5463\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5464\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FbTATYAAA4H2QMIeVcXFl7DAuLiW5cnWylGboxy51t0lcqjm2KRGGdOhQ0Z2oM7kJZ8hXRTmN3ZHvJpkwzlesiZOPzVD/3rc/792u588jH84jJxC62+SIMfROt+guKdiK6pOULGsHYxSL16yr/rk26ZmUjj6Ishaix2/T+VAjkbK17AM4ZnS5Nj2sBZyCXzaasW4Chy5diiaKKsCRlcPSQKrktK6Hzocn2vG+gN+oqmj9cyPgy4zbUaLH33V+4Z08Q6CdBK8EkilBvBkwg9gx1qWc++9rspIGcljzYFsvfxd84g/kzkmF6+W4ReRXrIreF91SIh8nTfg1OC6BD3Dj4wVH4ByN5qNj+jKYP5YwyItbAUvEhMPc+/AUddM9z+rfYP1OcoQ/bg0cX+CXKg2AN/YqXg6mob/hVjAyOLsOjm1ZqKkq2QAXF9pI6O6byI/yZMnONDU8Z1ooJ2vA1GZBbXmsFuxPO3Q3ogZ9lonsm98u3NiUOc+x2gHnSxlazkn0ZZ9TX/Vlom86xu/py9V9Y4eWOnbuLvKMqVgL83F4SJbHpF/2HzDvkaqiGoM5g7pk6pNh1zm4bzmtdB8XfsJyQtgvQt/do7Z5IYabDa86yfvhDDX+bKEFFvkv01VhHQt9UaOBABeHPtLklE2JPQ58nP1g5k4vfHfJjOKuRf91YmirGINHXurkqhLT4Ezz3o3wPjiuTcQc24bXE4O5bJIe2EmYKFyyRU8JlXm7eqEnkvge6zf/f0JnsMIoBs4icdn+HH1wdsemfWaa7jNTArTUVniYe8Pa7IU9Oi9eiHq6GYL++XZ1eyULffLA6/NYLnzWbMBzblT37bDYJ0w9A+RMOj7cxXOvzieQpt9qcuFWcsk8uwj9/uubPr6jhsjr07wvDpkSwL6M1vy8ALj+zsz0zy1T8ODIVY3yoBlYpWh2CHtoCf4L10TYMDAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5469\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5470\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5465\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5466\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5467\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5477\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5471\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5472\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5473\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5478\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5479\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5474\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5475\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5476\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5486\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5480\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5481\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5482\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5487\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5488\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5483\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5484\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5485\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5495\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5489\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5490\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5491\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8c9Kq+Z8m9+o9w0js2/L/6M+cJTnrFm9a5FcxPcdJzIu9Iqe8invboL/i6adEzOP2Aadbiu3Nfwmkjd4WfM9cj6F2nlij+rH8FpycuPnV6Q9sbOP2nnI8hm+st0XRgkUS60kLc9MpjdwLca97B6WJ7nrj/Oh/gdOvjOK+MTtx0l0mYz4ZvuOl6rjVnuZw/wmmViY/OqgZ/IppeYSDtt8ToC5z+ZDa7QqgfQfc9FLvbqvIVTh+ba/5/VyDxtDLHntrED9/gdFWT5pbtQj9w0rJd6bseJeCmvY4zLl0zF0G/Pf1P6/Q5BF31XWfnVJk/cFpCaoujoQGCDmlhOPUqBEHHvfLpZt2Dm+7KWPB43Z2/OOmXkaXse079g9OdUhsZNib/x0mn+P1hav2Bm1730OLpZ09GB1y0z3kuxke9CLozK2FB720EbTPpYe7xzwiaQ3B/+DR1Jpy088yYRq5luOmG7pSWm4uZiaa/TLDnZbyPoG8zRdxMYGDBSRetf+T5pRBBJ6gtqLPcxIqTPv7f2F7hPYIuP17RefkEG5z23zZd83w0O076/Ye3QTzrEXTYnXObqw05cNI/nz5KYZnMB6cvahS/ELvJj5MGAO+O9PlABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5496\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5497\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5492\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5493\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5494\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5504\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5498\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5499\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5500\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5505\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5506\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5501\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5502\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5503\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5513\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5507\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5508\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5509\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5514\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5515\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5510\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5511\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5512\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":3.981000724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5522\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5516\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5517\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5518\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FezDTcQAA8DGPQjekmU4dyuucrXSSq5W05dIsruysus2zBxNDV+Qxy67UrAd3MdWiOek2S1FRu5rc6UGKrugOd8yISSePzav+6b7f/vne/W6ffz44Rjsl7W3bK9y/Sb6hefndrWCcKq+sjQGPtZGPq2tegNP7plRF8S3IQ+L26rp6lcgjD13ZMhjxaA/WY5gpqfJr38H1xXldJRwdcrfgcD987ig4kFzm0igaA5OqIl1FLj/AwqQNx5xS4EdJ0ufS5HHMZ1CFY5JMPebX87OzC7ZOIu8WTNOiNeh5RuNL76Ip5BqFnT//wi/kWfSRuk7iNFhgaDofpPyN3LLdPSncfAZ8nDpMH1HDpXTtbkPtLOZPUm59+6SFf/XguAe8MYBDrsZ93uZkNHl/7uHkpo3wE/cp1jjPBZP3bS5Q1WYtmrx31ITg4YMlsC2BpeORlsGlbcxF3k7Tr3lXWNV5Gfu2Xi0NXMkK5pUWYQxC3B/Ms4sDB8PEcFotvXotHxeCeodzv+yjHPvvPxhcKxXo91sLPaVTcKYBv69inRlYLtGnMTjwn4RpWcN/n1qzy/XeJnPwdu7F4bMd8C/9PQt3cXhwzoojMYaCvtqHrFfQ4SyHjrnETvQ+slzZpJsFeHNsN5UcjN6RmBk4expu1x41YJOOnkPkc8N5lmCWIGLRV40+PuDJjPaAFXLFWOqNeTa8fEnZWseBa+27gkb64B5mZtdZFtbI3QrvvH5WDveZI+MdHFYhZzHwiX5B8Bzi0FOjBD2pV6PjStFLVJXnBgWrwU4J86G0PngiW9JknmEDTredqVfno38spB7sIdhhnsZUl96MgDcq2OLlI/Azl7TFCWK45fLw0MQCAbxkFV0xetse8/qBZq94kTPyv4uN26kwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5523\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5524\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5519\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5520\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5521\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5531\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5525\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5526\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5527\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5532\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5533\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5528\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.16236677010473954},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5529\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.16236677010473954},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5530\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.16236677010473954},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5540\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5534\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5535\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5536\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5541\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5542\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5537\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5538\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5539\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5549\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5543\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5544\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5545\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8cNENxx7t9U27D6TO3zCdJ8T+C06v6niX36hNP79jw/+rPnCdwesWb1rkVzE/htEd/wddNi57hpB8wzVp8d+5LOG3krvBz5noEvevUEsWf9a/gtEjK1NxvNq/h9J9yPoZsrrc46cAiiXSlhQg67f9ZtWv3EPTKY3cC3GvewemkjZvSb9V8wEm3Po7zyujETXeZhPls+Iag+S4rf6/n+UQ0vcJA2m+J0Rc4PUdthrQ4z1ecdN9DsbutKgj62Fzz/7sCEbT0lj0x5/m+wemMQ9EXP/oj6Fu+od2TKxG0Msee2sQPCPrVvfeMR92+46SrmjS3bBf6gZOW7Urf9SgBQXsdZ1y6Zi6CnvJ2hbTxcdz029P/tE6fQ9DfHn0wttz8E04n994/ysb5ByctIbXF0dAAQce98ulm3YOgj6ateb7+3H+i6RS/P0ytP3DTBoenrmAwZ3Aglp4l0Gkecho3bTPpYe7xz4xw2nlmTCPXMiY4XbT+keeXQhY4fXpZ0fk7TKw46QS1BXWWm3DTx/8b2yu8R9As3GU77MXY4HT58YrOyycQtP+26Zrno9nJpt9/eBvEsx5Br6i8K77zGIIOu3Nuc7UhB07659NHKSyT+XDSFzWKX4jd5IfTDTc9PkxnEoDTiWufrkkoR9AAzWh/nkAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5550\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5551\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5546\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5547\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5548\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5558\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5552\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5553\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5554\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5559\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5560\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5555\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5556\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5557\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5567\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5561\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5562\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5563\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5568\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5569\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5564\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5565\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5566\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5576\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5570\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5571\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5572\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FbTDTcRwA8Nkmeeiw8nScp7Q8XJTHF+XoalxiVrpd4gxHpDmMUhJLOZcyKRdT4ViHNCQ7VE5K1yppkrOQydghjmoeZqg39f2/+nX/6/PmIx24aZOh97ZT+mcGI6Uxu+gNPEaJkw5bi2HC6HSUef0L5Aw7ZSg5tROO1BHMdNx/CnNJ8zpycxFy36j9ig9SIfLIuaNJFEEtzAjO3y0LavJBHV830B3s0AVHKmIybTl9yJtm62m9k4PIyafmqTlhn+Hj9NOJgsIh5FOt0rxstQz3C8E2dgyOHKZTXg6LZyaRezgXm7XkTsGOF/mLNcRp+IRpWVtZwgzMVqme7bwyj/vU4QwJJ30BVn0dqfMx+w5zV0TnvIQ/kWu+tokNICrh8yX+l7qD0Lf0jN6V5GCHe8tpkx3Yx4q12AVWi7iPcykZlExg386sbX0VsgSX8y26Al2X4QdV7pZOhfh343zMcqStIK8Jv6eorsb2vRbV57ZNBe9ihSSILNG7FYxXSG2wBxnUNpN57JPVLlqEHauwQ3t2Y02aGg6gWZ2NbcC+sJE8RJGswbr6TAXbdB35rW66mr0XW+Se+u49D1u3NNNzj/ofU588YvE24LyxNCPDkf9fSPYP1I/6hTz0qofM/zr+OfmztUICwffvlWPPtcV+6A/W0Kq2pqA3GPhhL+1FT18hHeAbacAC3mxSYAT6+C37LCq3E2FP1mX5mR78b8wZ2LmqsT996V8tJ5CQEzsFzOE1/DdTjqSwjMmwfUVmxZw1+gjjFFYAWxO5n0O2hUEyeiY3SO3QgR3t+lg5cWgT8odTiUXLoehtNTRuMMlasP2SM8nQcDPMDCTFOHmhN5V2KVhl+Oc13kmXcbXhmFCeiMjRgZN1lQ0dWfhvzvE+3K+vB2uuy8e/rerDdqV8cb6mASwZDFPNWOJ/drSdGp1rAv8GQcElPzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5577\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5578\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5573\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5574\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5575\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5585\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5579\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5580\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5581\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5586\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5587\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5582\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5583\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5584\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5594\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5588\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5589\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5590\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5595\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5596\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5591\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5592\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5593\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5603\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5597\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5598\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5599\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8c9I4N/6/+zHlCNC0U5HE29zuCXvGmdW4F81M47dFf8HXTomdwWiRlau43m9c46Wqpg4k73iPoiYtPnd7Q9gZOe0rlfrhyg3g6sEgiXWnhWzid9v+s2rV75NMrj90JcK95B6eL7Xni/ut8wEknbdyUfqsGQXeZhPls+Iabrudac5bL+SNOmu+y8vd6nk9wWmXio7OqwQh6hYG03xKjL3D6k9nsCqF+BD1HbYa0OM9XnPSxueb/dwXipjMORV/86P8NJ63Msac28QOCfnXvPeNRt+846aomzS3bhX7gpL2OMy5dMxc3/fb0P63T5xD0t0cfjC03/8RJJ/feP8rG+QdOh7QwnHoVgqDjXvl0s+7BTXdKbWTYmPwfJ300bc3z9edw0waHp65gMGdwgNFqG3ed+uOEoBuM7pRGLEDQswQ6zUNOI+h1Dy2efvZkhNM+57kYH/XipjuzEhb03sZN20x6mHv8M4I+MLvl+AIhJjjNIbg/fJo6blqKfW3NDmcEnWW9544nMzNOuqE7peXmYuLpLxPseRnvI+jbTBE3ExhY4HTR+keeXwoR9OllRefvMLHCaf9t0zXPR7PD6f7N/7/FzebGSV/UKH4hdpMfTieufbomoVwATgMA8QqBq0AFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5604\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5605\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5600\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5601\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5602\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5612\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5606\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5607\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5608\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5613\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5614\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5609\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5610\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5611\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5621\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5615\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5616\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5617\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5622\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5623\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5618\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5619\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5620\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5630\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5624\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5625\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5626\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FaywUcAAA8PNKDrtz4zCXXAyXUburWStjcix5nGw21bzFZDmP7Voex42h0EqrqISxyOPKYx51QzRsHufVuXAed2eeO3E556K+1P/fl3+7Wb8vPwYjkct+NNjF+P0CIWZ6xmpA7c0o7ukZ45+QY0Sr4RZ1/5ib/qTPB86wkQdrJ3chD8NWrfGqP4CZQhk3O6JT7TO1ZFixRSs4bPNaAqGqBhxbO9XnT+lxVfd3G3X0EakA+UqXYoy2IFT7LX+yDSNJ/N9uzE8fLQxZRm5WwSDlmK+COdEnbhjfPvrXzUrbS+PWwLPEOa9mu01wvFL50S5bBk6eucdPYm2Be+oNHBNT4crF2VpX82/gFLq0dpi4Dc7ca73r3LAD1uknR3trysFWOzw9j1vwliHRSz5H/W+6iOlSHvqYM88EfMl38NO0mrbPgbtqn9K50lhXjr6shNTjQ1WA31aes3R4CGclaKwrLPbAtKTxjNN0+JdTIWRqL9ztQfgYzViJ3DE0MK7VEk4rXHo9TYYLGLbtpjI4pYPNfZOiQp56yPxK4P9Aro8LWo43OwAX9/mp4i+iFzB9tc+moa8ezKoYzoPr23a+Dy06BOcupJgYzaJv0PbywYX/BAfnn5/3KoCXL3TrDXhi3P6Mn9q2nx5B77endbnERANc2qLL1mShjzW8RCq31kR+uIm3oargk3MT+2UYLXClvdNGPR19kNHQbtQwvIkQkBhK1EZuEzbu4nQBbtAfIMIy4SHExFDveJ0j70lhk/BMeEGvwjqPAw/K9FVRePAIarNccuUYWHJ/NcZx8q/xo85SIXqrrFfdbc91wUE+WlEOzsfVvoj7gjWfqYfcOFLh7iFEz9SXN/IysOAmjsvVCZwBcg8/XvFjX/idXEl+ZAH6FczJRUWGIXKdA/HS+j4O+YaowzYixxT5L6I93pQwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5631\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5632\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5627\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5628\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5629\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5639\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5633\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5634\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5635\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5640\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5641\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5636\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5637\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5638\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5648\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5642\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5643\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5644\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5649\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5650\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5645\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5646\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5647\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5657\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5651\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5652\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5653\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNs46TO3zCdJ8T/CSe/Y8P/qz5wnOGmhII+zud8R9Io3rXMrmJ/CaY/+gq+bFj3DST9gmrX47tyXcHrXqSWKP+tfwelqqYOJO96/xklPXHzq9Ia2NzhpT6ncD1du4Kb/lPMxZHO9hdOBRRLpSgsRdNr/s2rX7pFPtz6O88ro/ICTrudac5bL+SNOmu+y8vd6nk9wWmXio7OqwQh6hYG03xKjLzjpT2azK4T6EXTfQ7G7rSpfcdLSW/bEnOf7Bqdv+YZ2T65E0Moce2oTPyDoV/feMx51+46Tlu1K3/Uo4QdO+u3pf1qnzyHob48+GFtu/gmnq77r7Jwq8wdOh7QwnHoVgpuOe+XTzboHQXdlLHi87s5foumXkaXse079g9OdUhsZNib/x0mn+P1hav2BmzY4PHUFgzmDA7m02sZdp/444aZnCXSah5xG0D7nuRgf9TLipG0mPcw9/hlBH5jdcnyBEBNOmkNwf/g0ddy088yYRq5luOmG7pSWm4uZ4fSXCfa8jPdx00XrH3l+KWSB0wlqC+osN7HC6eP/je0V3iPoFZV3xXceY4fTP58+SmGZzAenL2oUvxC7yQ+nE9c+XZNQLoCTBgDCO/53QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5658\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5659\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5654\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5655\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5656\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5666\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5660\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5661\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5662\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5667\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5668\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5663\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5664\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5665\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5675\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5669\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5670\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5671\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5676\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5677\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5672\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5673\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5674\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5684\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5678\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5679\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5680\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/43FWUzSYQAAcPCIPDaPFWIxrzwwp2Re9eBRgTXzwJUs5yZqHrNZCVhN50m6jIzS3AK1SNPKPFBTW5Yzzc37LCduipVHaBhFHpDmesnv8+Xb/r+Xn3SiyDrNsL9D+n8Ggy3JKuxDjgvsoV7t7QaTHE9mZI53IcfJlqIP1uxaklHcHQhn2K6G63A7MB+lX7ncXvUWefKUUpIb0wb2iz6xOCKtAzNC+Edmgxp8d45ajE234YxhvkFRQx9emESuk6i050VMgeUdG2Nun+E/Q6xtGZw55B4uxebNeXLMk8oZ5DzzJeQ+rTNjtKDvYI43Ty7gKjA/TZw5/cphBfMH2KmpWa7w8WwVLawTfZJG884hV4lc82W62tf8FziFvlA9RFQh1+2xjgvQWgVb/W7Xo8Vjv3lQVjbKw/75YkLSXcs15CX0eR/1c/QJ1IeTo/PwlDZ5fc2TdfBjEbkz8OgG8pcV7hZO99C7ccYzD9PVYL870WNu+zRgZ9a5Sy0W6OOfUgk4uz/IA+iW1+PqN8EGRszFJNJfcFVfTvlQPrzFnTswJMC+gTDd03Vz1/ZtjSzBNpjDV7yow+H8dj5mNiMerkTfP6Aml9bCjSdUFOkwen8Cz65EiT5YrX1KtB8P/mGkEjdGwj1ZN+euDWohT9s2JV6gaiOvoLgoaulwpsngeuwQvMk0lM0i6oAp4nTxihV626hxb5fj6E2JXI+1RPSGPaEy/WS4v2MW2ThZF1zwYeNQPg99rfxy4Ub4HswLt+q6qiPRZ448O4Nno5/nLyU4f9q18YjXwhTcBo+/z9QhILfKefT+tRBOWXfRNjHZi3lmoHaskxc8jfi1VSOAk6Sdi6wSuEBSemM2Ww/cxPM++9HIEEwLbn9QFAS/cmv+9sUCuK1Q1MvXNQaPTkZoli3Qb+0JE30rgytkb+xj8syQ/wOduw5sMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5685\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5686\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5681\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5682\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5683\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5693\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5687\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5688\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5689\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5694\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5695\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5690\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5691\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5692\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5702\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5696\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5697\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5698\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5703\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5704\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5699\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5700\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5701\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5711\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5705\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5706\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5707\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ovarvWXKv/iOc9I4N/6/+zHkCp43cFX7OXP8SJy2SMjX3m81rnHS11MHEHe8RtKdU7ocrN96QTf8p52PI5noLpwOLJNKVFiLotP9n1a7dI55eeexOgHvNO5x00sZN6bdqPuCk67nWnOVy/kg0rTLx0VnV4E9weo7aDGlxnq846b6HYndbVXDTx+aa/98VSDydcSj64kf/b3D6lm9o9+RKBP3q3nvGo27f4XRVk+aW7UI/cNJexxmXrpmLoKe8XSFtfBxBvz39T+v0OQT97dEHY8vNP+F0cu/9o2ycf+B01XednVNliKclpLY4Ghog6JAWhlOvQoinO6U2MmxM/g+nj6ateb7+HG46xe8PU+sPBK22cdepP04MDjC6wehOacQCBL3uocXTz56McNrnPBfjo17c9IHZLccXCDHBaQ7B/eHT1BG0FPvamh3OuGnnmTGNXMsQdJb1njuezMxwuqE7peXmYtz0lwn2vIz3cdO3mSJuJjCwwOmi9Y88vxTiphPUFtRZbmLFSftvm655PpodJ/3+w9sgnvW46RWVd8V3HsNNh905t7nakANO92/+/y1uNjec/vn0UQrLZD443XDT48N0JgE4DQA9aAYJQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5712\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5713\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5708\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5709\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5710\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5720\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5714\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5715\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5716\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5721\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5722\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5717\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5718\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5719\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5729\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5723\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5724\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5725\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5730\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5731\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5726\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5727\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5728\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5738\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5732\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5733\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5734\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FWUwSYAAAYBSPvCaQEaZ5ZQo5zSPtoVJrIs3h0SoWuUFuWp5T0GqWolKuNLXLLUWbxzAjETu07HCmsmWmeSyVvE/CK8o8U6mX+v9e/sZa38sn675lfcGwpV72awz9ze7YZilyEuVQMq+rETlmaCrErOKPq5JzpXT4KX3hdF3ZS+SpWKX+uFkN2DvkoLxdVok8KDDTedj/oRfqcFG3NJDSANaKUNrxgz+CFfXLnW4j8BMBUTHC633gL4HWtkHccXAAoam/eXoSuSQjuT2bJUfu7pRrWp2uAJNKgszTTaeQ88O2B5tEoT9JEtQKIqfBnk8HO338Z5BzD/AVOfGz4AHiIO2J/Rx4GycxMcUFHr26+sr+svKfXx0dEHmZfgUnUCdFbcR5cOIdWprUfwFs9a1Oz+c0+urWocIOPlxAnfBcKV9U+4QXCklF8RL4QekeC4fry2A3bhdvF3UF3GPDsnZtgntfC+l0M1kFO7KPRtZYwN2yx4pk1vDeILvarUr0lOcpVeUJa2A/quW5MAk8w6irh6ZCf1EV10foWAcbGDPk0aQNtb8tDViL3oe+N85fyzlJ/cveppW0XUVvkJfk4bIGvzKSsAU/oAIzM9yHaVk/wNzM2fuVGIz3733KqaWbOfCWdyvmBWI4rnueLHuP3leXv1OgRC/MmY2lszTAn43nix795XCj/ebFOzSRe7AvjZ9thavmcLaua+hLyU6zYioWzMC3LoW2/b8164WM/nX0jwlHOGyiFphclFQ0Z4WeQIx3X4yAs4gctl+0NtiXkmKOi4OLFTE3l5k6yPPWKxtFLPS89nuHNTjwicypM44f4DYaGjcYWrpgq7S7r5/lwclLTlg8fhNyBh0b6rBX/UmyBjlboP45VQXnh1P1wKHMnBpNrj7yOIMFSR0PXi1mZm0cM1R7BcZydJlnBNbeGB+b+W4Mts3Lb87UxiFf1zme/6kQ/hNgjrH3MAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5739\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5740\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5735\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5736\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5737\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5747\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5741\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5742\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5743\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5748\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5749\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5744\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5745\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5746\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5756\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5750\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5751\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5752\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5757\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5758\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5753\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5754\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5755\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5765\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5759\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5760\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5761\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8iaYbijnf7ptyG02dumU+S4n9ENr2q71lyrz6C3rHh/9WfOU/gtEd/wddNi57B6QdMsxbfnfsSThu5K/ycuR43vevUEsWf9a/gtEjK1NxvNq9x0tVSBxN3vEfQExefOr2h7Q2c9pTK/XDlBoIOLJJIV1r4Fk6n/T+rdu0egk7auCn9Vs0HnHTr4zivjE4EXc+15iyX80ecNN9l5e/1PJ9w0isMpP2WGH3BSX8ym10h1I+g56jNkBbn+QqnpbfsiTnP9w1OZxyKvvjRH0Hf8g3tnlyJoJU59tQmfsBNy3al73qU8AMn7XWccemauQh6ytsV0sbHEfTb0/+0Tp/DTX979MHYcvNPounk3vtH2Tj/4KQlpLY4GhoQT4e0MJx6FYKb7pTayLAx+T/Z9NG0Nc/Xn0PQKX5/mFp/4KZnCXSah5xmcIDRnVkJC3pvM+KkD8xuOb5AiAlOS7GvrdnhjJtu6E5pubmYmWj6ywR7Xsb7CPo2U8TNBAYWOH38v7G9wntWOM3CXbbDXowNTpcfr+i8fAI37b9tuub5aHai6RWVd8V3HsNNh905t7nakANOX9QofiF2kx9ON9z0+DCdSQBOAwB+bJJ3QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5766\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5767\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5762\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5763\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5764\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5774\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5768\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5769\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5770\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5775\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5776\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5771\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5772\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5773\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5783\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5777\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5778\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5779\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5784\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5785\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5780\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5781\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5782\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5792\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5786\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5787\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5788\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAAcHtIMWccQ5aQHDmUR+ouj7taylGUdrc4Q4RSNtMJ01g5Eetxrswzj0JNehhx5+SuTnlOEfIswzCn5LEZ6kv9/335dzu/L7/+3numCYTWpv4/+5gv0vCsJjBjYL76RkgD8mTcvPq4kRB50NypaJ2yCnBEZe/bk1bNbqiDJkPZZjHd4OfSp5TOiT7k+Mh5C67/wKaXNK10O4z9c11/GkcxivxZelJXVuCk0psc9LTGsafATrbZhjWpEvCeJP5SOXZa6Q2KfciphnBu2A5/3Yvwswa5r3MvzCB3rR3uPuI9izzGhSvhsaTg7cz4eM6+OTBrMEEUE/cd3Cwg2DAT0cu/DlW6Gf4Ax1ImKjtIC+BkmfCqc9VPpVdtMQ3zxC6Ca9pH8kVceIDLOGWiEe6XrRaVtXMJnEsRu8rK4eF2D/pEYvT32RV1704vgwv55GYv+xXkT0ocja1vo4+LxsyuGMnA5QEFk6WlcPdbwd0OunLw+VI7NZXdq8it6jnV5bEK5OmaHz97bCh/4gbji45oDayhRZ2MMlgH9zG88XvZ8EcfUoo7bsKFjqy2Dh5cw6LhBZ23gTxtLFZPewh9Fd7DSyv4F5iW7jTqkYn+gP5wUWeZivvfW9tk5DwBnNi7YNnfCT8hwx3m62HAEZqHyA93YZV+P/36+JV2+MYc0dxeAe8Z/rRaqIIDl1jaSgUU5adqty+HdsCxTWXUwTX4Sx1fJp2EB1sWsYvmTNDrkFhOS5FwQovviDoDHkhi0j2jVMFHrThkIgNOTfZWWDXCQ+xfLYqPb0EukFy6u0JDf63r8TEME704Yzrcpuc/E7ucJwY2vxkGc4eKVwObpBS8qcuBU71wodbOW8EJpG+1ch6cV50XN5q8DRxK4wmxMepKXyOgZa77EcCX08Tp5zLh5jn89xmqRLCoz18+Y4x+bcsZ/lT+5peO1FuEpOoj/w3K0rM7MAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5793\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5794\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5789\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5790\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5791\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5801\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5795\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5796\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5797\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5802\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5803\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5798\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5799\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5800\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5810\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5804\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5805\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5806\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5811\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5812\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5807\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5808\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5809\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5819\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5813\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5814\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5815\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYc9Kq+Z8m9+o/g9I4N/6/+zHmCkxYK8jib+x1Be/QXfN206BlO+gHTrMV3576E09VSBxN3vH+Nk564+NTpDW1vcNKeUrkfrtxA0H/K+Riyud7C6bT/Z9Wu3cNNrzx2J8C95h1OOmnjpvRbNR/gdJdJmM+Gb7jpeq41Z7mcP8JpvsvK3+t5PuGkVSY+OqsajKA/mc2uEOr/AqfnqM2QFuf5ipPueyh2t1UFQR+ba/5/VyBuWnrLnpjzfN/g9C3f0O7JlQhamWNPbeIH3PSre+8Zj7p9h9OyXem7HiX8wEl7HWdcumYubnrK2xXSxscRdHLv/aNsnH/gdNV3nZ1TZXDTElJbHA0NEHRIC8OpVyEIOu6VTzfrHgT9MrKUfc+pf3C6U2ojw8bk/0TTKX5/mFp/EE8bHJ66gsGcwQEXrbZx16k/Tgh6lkCnechp3PS6hxZPP3sywmmf81yMj3px051ZCQt6byPoA7Nbji8QYsJJcwjuD5+mjqCzrPfc8WRmxkk3dKe03FyMoL9MsOdlvI+gj/83tld4z4qTZuEu22Evxgany49XdF4+gaD9t03XPB/NDqfff3gbxLOeeHpF5V3xnccQdNidc5urDTlw0v2b/3+Lm80NpxtuenyYziQApwEJYt9eQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5820\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5821\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5816\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5817\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5818\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5828\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5822\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5823\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5824\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5829\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5830\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5825\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5826\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5827\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5837\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5831\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5832\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5833\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5838\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5839\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5834\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5835\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5836\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5846\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5840\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5841\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5842\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FW0xSYQAAYFSMJJ3MOS+TpRaS1rykTXPltCZW5AWbtZlNwGs1loCVzZgS6ZykbK22TCutqNkEb0maxcxq09IU0QJm4hQwJQxTS5FpveR/fPm3M9f38tFonKbimx+6aP/GaGeYXg1vwTTSYio2vwv1DLzYKH/yCszWmJtKMjrBfDszXuclA8cwD00NqqWoZ8yeyHMR14NpScKQ8YTm6PUZU1m8Hdwh1DebGigDBhUYe85MFqRpwNPt6rJi6zjq55J8STSuDpzo8m6012hAvU8kdY8d7xt0j4c0YqnnDPTTHtUd1eeN0JX8+diT3bNglsXyeleJGZw/WqjgFsyBuyWOgZyryJaJr8+iPX+C+cuyKxHSBej2Pb7ZVNtFsM+C3CE2B7mtX3tPIfh/n4nSUQxy+Cm3caxK71+ozw2+o1Lo4V/snG5sqPsNLsiz+b7ktQwO4yqLdlOQY24wh8JcLeCwyslatS98FY3c4W7e/DmPg3EYvxUwleJ9ObvRCr3cSfnlyBryrfeJVtaBVegqdgI2hAdfti+/75MIeVsVL3yvdcPkzha6aA0sxR6Jd2b+AXOFpnopBhOz/n73sdoBMfyPfcvEGgky4fO8v3oAfhxO4FdtRhaLTHnx6TbQfzjP17Zs+KzTQWLdTltwOP267lI/8tosgRRqRR4ZG155gLEDP/IPMkkoyK0uyRy6GxY6iaGMCopEduxJ1uLZ8NPdOHQqyx56XEAxkcCGf4qfYA2Qoz8j9Pmi/tgWcNHg06M2HGS9cCY3cGTDhMEIgwa+z7X7b9qrcOBCt8kXFtFWsKippmCc7wDdNXPpcKwGflaqSGbLxYNbBVHHh50dN32bJLViNQX+hTJ9eWYF/GmM98RSkRPqSVV3e4X2BOgKVZrFuB39Ju1LckapO/S//HEogjAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5847\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5848\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5843\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5844\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5845\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5855\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5849\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5850\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5851\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5856\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5857\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5852\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5853\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5854\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5864\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5858\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5859\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5860\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5865\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5866\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5861\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5862\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5863\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5873\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5867\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5868\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5869\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ovWPD/6s/c57A6RVvWudWMD/FSc+JvCOlvgs37dFf8HXTomc46QdMsxbfnfsSJ73r1BLFn/Wv4LRIytTcbzav4XS11MHEHe8R9MTFp05vaHtDNO0plfvhyg3cdNr/s2rX7r2F0yuP3Qlwr3kHp5M2bkq/VfMBTrc+jvPK6CSeVpn46Kxq8Cc4vcJA2m+J0Rc4/clsdoVQP4KeozZDWpznK9F030Oxu60quOljc83/7wpE0Ld8Q7snV36D017HGZeumfsDTk95u0La+DiCfnv6n9bpcwj626MPxpabf+Kkq77r7Jwq8wdOS0htcTQ0wE2HtDCcehWCoLsyFjxed+cvTrpTaiPDxuT/cPpo2prn688haIPDU1cwmDM44KIbjO6URiwgn54l0Gkecho3ve6hxdPPnow4aZ/zXIyPehF0Z1bCgt7buGmbSQ9zj39G0ByC+8OnqTPhpKXY19bscMZNZ1nvuePJzAynG7pTWm4uRtBfJtjzMt7HTd9miriZwMBCNF20/pHnl0IEfXpZ0fk7TKxw+vh/Y3uF9wiahbtsh70YG066/HhF5+UTuGn/bdM1z0ezw+mfTx+lsEzmw0lf1Ch+IXaTH04nrn26JqFcAE4DAKvaBBJABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5874\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5875\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5870\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5871\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5872\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5882\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5876\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5877\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5878\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5883\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5884\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5879\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5880\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5881\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5891\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5885\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5886\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5887\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5892\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5893\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5888\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5889\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5890\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5900\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5894\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5895\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5896\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAA8JlJXodV447D8gon8qwrpW6zzm0ekbPTeURKETadWp7LnccNF65wHSUiLCpLr53z6Ki8kjJveTWv5rxmhvqS/78v/27n9+Un+JZDZKl+ahD8HUNttYpsawFrm52JT+hpAmNGZoJ0qv5zTXxeCxW9h9EKHcdsAAcql87yy94hj+oX1aRcfAt2Djo93SXgggMXzkXiSyuQe7hnWI/Sak/tXDtfRe6c6kOOCxOZsP36wcIG8RfbMfS+btciSrMHkAvrBamJ0lHki+5EIw/GBNgN3zzYNjsFfpYe35XpPw02OOZqIR/3E2weX7Bajp1BznBiC7OY88iHCMOUl6YLyHuSlkjnG+HhEsl70xQRmDnI6mbELoKT1nk3HbnLyBVaiZdcsSvgW/cpyS002TdY5iuRQuF17SMPutnoLzhNkKf4cO88xfBM/VXkheTJk+vl8HtxFfUfvNaQFxXoNlJtxODKEjs9i2x4bKTcnFhnHWzL6EkwJ6P/ftCfaNMMtwzwusrTk4BtM8eLBUR4n4fJay2R7Ic+tlLEGG/serM3iTXlMVKwqedcUmXFJvj2dtQAvlv2VdR9psO1t5DntrhJw4/D+6JoOOs4eNnH5EcdaXCeHfNzRxZcJT/O4YgUfepYzAHNoW0wF0ehqgf9BtPT7UcpHPSMjPkKLgbjvDOpnFyyLxp+VGu4uLMUvYsi27hQBP+lvlT83F8OfEXthO5DQyzYIeDOxI12+PaChpGNFN47/HWjCCMPZm3jCb5Wsu+j2b4W0gF/gfeMDiDgwHgC0341DO5ilqirEaUA5jSLDdPY6H2SaFIzPrxaGHFXTN8Dzt/kNj31R5/Q9eSsXDT6yYyZy5a9/6zR5TjVL/uH1g7La2ru3fU+VPkQC0f0LML4K0kWfH+w+AypXwkcQs/iYRnKYJIbPzeHprrr66rpnC1v+PXUyfRgDlyI0f8hTlADd/f5SWb1NJD/Ac+JFWowCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5901\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5902\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5897\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5898\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5899\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5909\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5903\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5904\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5905\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5910\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5911\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5906\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5907\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5908\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5918\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5912\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5913\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5914\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5919\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5920\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5915\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5916\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5917\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.030193229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5927\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5921\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5922\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5923\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8c9I4N/6/+zHkCp4WCPM7mfkfQK960zq1gfgqnPfoLvm5a9Awn/YBp1uK7c1/CaSN3hZ8z1+Omd51aoviz/hWcFkmZmvvN5jWcrpY6mLjjPYKeuPjU6Q1tb+C0p1Tuhys3iKfT/p9Vu3bvLU565bE7Ae417+B00sZN6bdqPsDp1sdxXhmduOl6rjVnuZw/Ek3zXVb+Xs/ziWhaZeKjs6rBCHqFgbTfEqMvOOlPZrMrhPqJp/seit1tVfkKpzMORV/86P+NaFqZY09t4gfc9JS3K6SNj/+A098efTC23PwTTld919k5VeYPnA5pYTj1KgQ3/TKylH3PqX846U6pjQwbk//D6aNpa56vP4egU/z+MLX+QNAGh6euYDBncMBFq23cdeqPE/F0g9Gd0ogFuOlZAp3mIadx0wdmtxxfIMQEp6XY19bscEbQzjNjGrmW4aYbulNabi5mxknfZoq4mcDAAqeL1j/y/FJIPn16WdH5O0yscDpBbUGd5SYEffy/sb3CewTNwl22w16MDU77b5uueT6aHU6vqLwrvvMYbrp/8/9vcbO54fTPp49SWCbzwemLGsUvxG7y46Qbbnp8mM4kgJMGAPBPYr9ABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5928\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5929\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5924\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5925\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5926\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5936\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5930\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5931\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5932\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5937\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5938\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5933\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5934\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5935\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5945\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5939\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5940\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5941\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5946\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5947\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5942\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5943\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5944\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5954\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5948\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5949\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5950\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FezDTcQAA8JlpCWft3MydvFpYLhNS/lByG3c7Y5V2SecR0tXKs7o0z3IhVsrlcclrnWGka6EuN0NnLsN2p82J5LEWE7fDmuH6p76/v77dzuefD5OZ+jqnbEjE/PsMPkk56SQBo0IHKcmSATCRHJSVLe+DziStRWLSRdAD406rRpVt4Njls8l4Hh/MDC/2+sboOLXbrzaPD4STxeBYVQLHJU0G7tC00kYWFEavFulkPjMT0FfDnUnMtDlwGL5/UrK4AG4vyhotjVaBnfzpHqacH+BjnuV2wgI1+HBW1XoT+id0Yj3TvsAOOT/xQJTNdeSLxOru6muL0E92TsmojCXoaQH5am66BvpXwlTIW7dlsDxXSz0vNn62Xv/R7cGK0YsFlkdS762CM2gLzVKCFrrZoHMiHb0GvlsRkjfA2P3C4ekXY/nwI8qx7FLHdXASpUIxNo/8nMPv+nRuA5zxQd3eWof8sspeHOqtg97S4Ovg8Rh+06UaVWPjb3DgoziZj41+1yuYrt22K/CvNFKwqEOb0Ok0x9uJ7QZwkZX8S8gOfLczS7kt/C3oFtYsFZu4DVakMDBeHORXQ3n10kLjf+eb/lnKNX6LSo7fUQNyWrGG34ZCBf67bqbXXBIM/4TtVO0IDxk3rnVXjiDzuJrk0GgT6L+stbVv/nO1EJuDvoPsF3N/7tYwGvrOMo7kbUDO3METLlBMwQ3unhoBDZm1f3gjQQofLeKxJreQSbHyAE9/DDiakBpDZ5uBg8k59rgU+CX9uoOF+cisXIaB3ANfoL5RpovcA67cautrjkaex40eX5iA72Ji8oSFwUJ3yqvp7apEziTMduq5e8FEpVgVU238NvG6IOqEOTjFYq29J3sfmBrW8+wpwxIsFESWbEfAv/lwvii+BFmNcvyuy7YyerPtudmlTWvwmCJKv+iAA2um37teLrAF/wGkusQIMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5955\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5956\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5951\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5952\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5953\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5963\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5957\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5958\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5959\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5964\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5965\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5960\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5961\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5962\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5972\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5966\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5967\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5968\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5973\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5974\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5969\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5970\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5971\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5981\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5975\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5976\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5977\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ofeaW+SQp/kdwWijI42zu9yc46RVvWudWMD/FSXv0F3zdtOgZnDZyV/g5c/1LOL3r1BLFn/WvcNIiKVNzv9m8htN/yvkYsrne4qTT/p9Vu3YPQSdt3JR+q+YDnOa7rPy9nucTnF5hIO23xOgLTnqO2gxpcZ6vcPrYXPP/uwKJp6W37Ik5z/cNTmccir740R83rcyxpzbxA/n0q3vvGY+6fYfTVU2aW7YL/YDTsl3pux4lIOgpb1dIGx/HTb89/U/r9DncdHLv/aNsnH9w0iEtDKdehSDorowFj9fd+Us0/TKylH3PqX846U6pjQwbk//D6RS/P0ytPxC02sZdp/44MTjA6AajO6URCxC0z3kuxke9jHD6wOyW4wuEmOC0FPvamh3OxNPOM2MauZYRT2dZ77njycyMk27oTmm5uRg3/WWCPS/jfdz0baaImwkMLHD69LKi83eYWOF0gtqCOstNCPr4f2N7hffE0yzcZTvsxdjgdPnxis7LJ3DT7z+8DeJZzw6nV1TeFd95DDcddufc5mpDDjjdv/n/t7jZ3Djpn08fpbBM5iOabrjp8WE6kwCcTlz7dE1COfE0AImrZG9ABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5982\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5983\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5978\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5979\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p5980\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5990\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5984\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5985\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5986\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p5991\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p5992\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5987\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5988\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5989\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p5999\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p5993\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p5994\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p5995\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6000\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6001\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5996\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5997\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p5998\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6008\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6002\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6003\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6004\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAAcDOS17HF7I5zppJxUubxobqkaXc1o7p2dN1mEZIidJUzj7pOW0xX3dl0mpgbaR51y6PbMXZHnllhSjixQ1N3XptW6lP/vy//brffl59m9BEpx6GvQ2PiRHIEN0/dBbaYWuS412+7kftERYfH20mWFDVvweGcY9phjQx5/PKZdLyk1uRjovkHpqOajqJOqRtVRZOVyJt09ZFD8+PIFzr0I5SZCXAs48pVSekn8EKLpijfOG32DHz3596leZNv4HGHS1ha5H5c0brUchH5eWJ5a3nqEniS8IX2et+yyasLVqjnlPACg/xWmGwVbN1DunTScg357TJaoSoK7rWqsKUmwZMDy8bfz60jz25faKiv3ED+TOShpAfpkb+oCvb0L4XfTMd807sbwJRMdZ5fJFx6oUJbXY1+zJtFCuqGhz/gjFBcNpEHsM+myj3Nn1IyK9aQzH88xqfV7Qc8qTrQxmLvT+TktvxGabYROc9RPUbbQm/vxNSmEX+b/GMVw5h2CF7zrvD54H24PDirf1AAtxfmhh40/mef9ma2YAtcNJPtipuEy6xodCfOH3AcL2SaVgzP5OtqZRYW4f+unOm07T2BniqNrNp1Hd7Xb/B4+hK98+iKr2YIzjBgj4tcMWCJQJdOZ8G/O62Im7ed4njYo3K3JfJQ9t2vNwbgOVt4Qmwg1uyZuIGNxEG4rzhXvOxlBcYTskLWL8Mdek5P2WWgZxZEGckKa7Dwl6yrjrUDPMdfTA74uG3n4bD5CfTeGMxDppUNcq/Cis4WIdx3Yz8Wh9tp8kw6NtE/DH0OYfbNpgA9UaPUssvRuyToI6gTtuDEOIHcMtMOeYb9WoMiD/2rO0dOfXByAF8rmuMlFMP3CEW9fGtn5LqpNp+L99zAfwF+qdDaMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6009\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6010\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6005\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6006\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6007\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6017\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6011\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6012\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6013\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6018\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6019\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6014\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6015\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6016\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6026\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6020\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6021\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6022\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6027\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6028\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6023\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6024\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6025\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6035\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6029\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6030\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6031\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYovarvWXKv/iM4vWPD/6s/c57A6QdMsxbfnfsSJ23krvBz5noEvevUEsWf9a9w0iIpU3O/2bzGSVdLHUzc8R43PXHxqdMb2t7AaU+p3A9XbuCm/5TzMWRzvYXTaf/Pql27h5teeexOgHvNOzhdbM8T91/nA5xO2rgp/VYNgm59HOeV0Ymb7jIJ89nwDUHzXVb+Xs/zCSe9wkDab4nRFzj9yWx2hVA/8fQctRnS4jxf4XTfQ7G7rSoIWnrLnpjzfN9w0hmHoi9+9EfQyhx7ahM/IOhX994zHnX7DqermjS3bBf6Aae9jjMuXTMXQU95u0La+DiC/vbog7Hl5p9wOrn3/lE2zj9wWkJqi6OhAYKOe+XTzboHN92VseDxujt/cdIvI0vZ95z6B6ePpq15vv7cfzid4veHqfUHbtrg8NQVDOYMDrhotY27Tv1xQtA+57kYH/UywunOrIQFvbdx0wdmtxxfIMQEp51nxjRyLSOezrLec8eTmRlON3SntNxcjKBvM0XcTGBgwUmfXlZ0/g4TK9H08f/G9grvEXT58YrOyyfY4PT7D2+DeNaz46TD7pzbXG3IgZPu3/z/W9xsbqLpn08fpbBM5iOavqhR/ELsJj9OuuGmx4fpTAJwOnHt0zUJ5QgaAIyVUDxABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6036\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6037\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6032\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6033\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6034\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6044\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6038\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6039\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6040\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6045\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6046\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6041\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6042\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6043\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6053\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6047\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6048\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6049\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6054\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6055\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6050\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6051\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6052\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6062\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6056\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6057\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6058\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/5XFezDTcQAA8DWvkKNVTO3OI6VxecyhrkTadLltuMsunfPKq+LMpqRmdsofuaOr/GEjxLoRmwp30u1Eu+NKeaRsnhNmNCmvjcn13/frn+/dr88/HzUhTTnm3NupRoyj93hn9SrARHJoPn+oG/O4yYXEI43/cXN+mYKOPtJtLcaU2wlOsBIvyl+8A7NVy80PkjrAIYnnNf1KKTgyothnivEqGHV6wzdFBLkLeYImmefKGQRrO/WDfmoV+ArzZqb40ShY9jC/vyROA3Y+He5pwpvHvL9XmWNrkRbskS9cl+AXwMTnkaQiR/hVoqhddGMR85ygQm0pV4d83H7iYov7Evhwdl5egS98SLBCje6Cc8fuDnByf4M3p8cbgh3/gAWGtjuB0lWwWY9LSjh+DbnzqtySmgpv7ZusHCiExwbN0Obk8MtlFhklTuvIRbTZcwYJ+pwOrayxZgNcJSR10Sl6sB9niO9BMyCXxD7T1NXBv7vGuVA+wP1KflQrXTYxPxJ5vN1hGX1qnbcF7tgWcvLbgmZJjhF5OM3pdooM7h71U/Cyfhv5vR32KGEA+9a2LE0G8S/4qYJpzDiDfoTNMPXhwa3LeQG+RjinWFcvxeFCUNeo31v2hmGfKqHVHsjG/imHieovYvQfPxlIFU3omQaTC8JDe8DiUl0WPQ79L9uV6te7FrVaFOBz0afbnCXVHMWDA+Lvz9zqg+8s2blRjPDhia9bVTgTcO0JL10TDT1rf99G8mc4vlPMGtvG/htCVHa8vSmYYM/1X7+OPoxcQLJjm4FZAoaRLEefRGlZm71kjrxJm/lYHwMv35Z2N8TBZ4sX0k4O79quP3BOhZ5FN0n2DNwLJiq7NPEieGlzRe6UwBL5wWv6UKoKfXJMaRueYwVmW6/J5HzsU5nyp08Y+8BanNO0nm8DdisX9hab2YG3zaOF85Xo/wHM6yFfMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6063\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6064\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6059\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6060\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6061\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6071\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6065\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6066\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6067\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6072\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6073\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6068\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6069\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6070\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6080\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6074\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6075\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6076\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6081\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6082\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6077\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6078\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6079\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.153227229895261},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6089\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6083\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6084\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6085\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8cNENxx7t9U27jpM/cMp8kxf8ITq/qe5bcq4+ghYI8zuZ+fwKnV7xpnVvB/JRoek7kHSn1XQjao7/g66ZFz+C0kbvCz5nrX5JNV0sdTNzx/jWcnrj41OkNbW/gtKdU7ocrN3DTf8r5GLK53sLplcfuBLjXvIPTfJeVv9fzfILTKhMfnVUNxk1/MptdIdT/BU7PUZshLc7zFU4fm2v+f1cggpbesifmPN83nPQt39DuyZUIWpljT23iBwT96t57xqNu33HSVU2aW7YL/YDTsl3pux4lIGiv44xL18xF0FPerpA2Po6gq77r7Jwq8wcnHdLCcOpVCIKOe+XTzboHQXdlLHi87s5fnPTLyFL2Paf+wekUvz9MrT/+E00bHJ66gsGcwQEXrbZx16k/TsTTDUZ3SiMW4KZnCXSah5xG0D7nuRgf9TLipA/Mbjm+QIgJTnMI7g+fpo6gpdjX1uxwRtDOM2MauZYh6IbulJabi5nh9JcJ9ryM94mnbzNF3ExgYMFJF61/5PmlEEGfXlZ0/g4TK5xOUFtQZ7kJQbNwl+2wF2PDSftvm655PpodTq+ovCu+8xhuOuzOuc3Vhhxwun/z/29xs7mJpn8+fZTCMpkPTl/UKH4hdpMfJ91w0+PDdCYBOA0Aw78/5kAFAAA=\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6090\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6091\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6086\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6087\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6088\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6098\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6092\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6093\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6094\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6099\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6100\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6095\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6096\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6097\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6107\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6101\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6102\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6103\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6108\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6109\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6104\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6105\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6106\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6116\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6110\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6111\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6112\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FezDTcQAA8M0jeR2WhqyYMuRw8vondN1Gp9HqtON0pvLI4bRZVySPlatcJnKnXGdoQiYRLmrnlLsok2cmj/O+YZomZsT1l++3f77ud67PPx/pYD45xeBLqxQxg8GuTc/rBE8QYqQj1h3IcePzly2rP8Jr7xS00+EResIFcfl7cIamQm/ashEcsXQhkSCsxP5cZKoNp9d35zfyalr37BByrVgFhRc2DJa1qnrdJtCHBMUlCHN/gJfPkY8xONOYDyJ8GulYmEXu4Vxg0ZAlA5uXMkhZFvPIeVGHw0zj0Ps0jfVSAxeRc7x5Mn6SHDxKHPN/a7f03z7ETk5Od0Xfl6GkXmyDx6vVH+zuKcBtIgMn9u1lsHpytMrX4hfmubTZKglRiTxjvfGWV80KWPszOSpA4zfmkwv9M9sD4dYrYl1qNLyha/x5Dw9+yXuaNivGfnCBTnyO1Sq4iDbjs14Bj3EpHOqZgXNbZK+rS9bAxc9IbfQTKvCrMvcjjrnwm4n4RZXlOtiN05d2nPbPOVMCKVmN+SEG5Z2ZAn30CxcdnO0G2KE5vbaCuwl+aNj33X8brm/EnIs33wKXd2aWSh7AG92Tvkr4cP2nqZ6um7tMaalj8bfB9ye4B01G9z4nW15Zg8Od2plaQSs7wIYbDyrtpd3o/XR4tkUKuJAvT6SH45H/NFIK6nb5muFJUslRDeSerLvTN7rgA2P9G8U4TXDKNoEY4oK+zN5ZLqKhZ5p0rUVK0Gu0Cpkjf7BfTzjPZhG1wPaCVMGSNZxATPJYjYWHE9msgHjtPe/nkE4yvg4XyRLyVKH7kKd9e3kGz8b+TPZ8jNMA3AaPf8zU0gEz6ZqRjl77wSnEqSY1H73pVdVp6rAuuJ7nfbbfyABMDRI/yQ+EN4hCH20Fw2U4q0lVmiHm5ePNlCtZZuC/7YcxDjAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6117\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6118\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6113\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6114\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6115\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6125\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6119\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6120\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6121\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6126\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6127\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6122\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6123\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6124\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6134\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6128\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6129\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6130\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6135\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6136\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6131\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6132\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6133\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6143\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6137\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6138\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6139\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ovarvWXKv/iM4vWPD/6s/c57AaaEgj7O53xH0ijetcyuYnxJNz4m8I6W+C0EbuSv8nLn+JU5616klij/rXxFNi6RMzf1m8xpOe0rlfrhy4w1O+k85H0M211s4vfLYnQD3mnc46S6TMJ8N3z7A6XquNWe5nD/Cab7Lyt/reT7BaZWJj86qBiPovodid1tVvuKkpbfsiTnP9w1OZxyKvvjRH0Hf8g3tnlyJoJU59tQmfkDQr+69Zzzq9p1ouqpJc8t2oR9wWrYrfdejBNy013HGpWvmIugpb1dIGx8nn07uvX+UjfMPnK76rrNzqgxuWkJqi6OhAYKOe+XTzbqHeLorY8HjdXf+wumXkaXse079g9OdUhsZNib/pxp9NG3N8/XnEHSK3x+m1h+4aYPDU1cwmDM44KJnCXSah5xG0OseWjz97MkIp33OczE+6sVNd2YlLOi9jaA5BPeHT1Nnwkk7z4xp5FqGoL9MsOdlvM8Mp28zRdxMYGDBSRetf+T5pRBBn15WdP4OEyvZdILagjrLTQj6+H9je4X3CJqFu2yHvRgbnPbfNl3zfDQ7nH7/4W0Qz3oEvaLyrvjOYwj6okbxC7Gb/DjphpseH6YzCcBpAHo4zKRABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6144\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6145\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6140\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6141\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6142\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6152\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6146\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6147\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6148\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6153\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6154\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6149\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6150\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6151\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6161\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6155\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6156\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6157\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6162\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6163\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6158\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6159\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6160\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6170\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6164\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6165\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6166\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/43FeyzUcQAA8HNe5TGP1lFunueVeUayUmqO0uFkWap5hUnk7liljtONecxO0hoyIuV5HuWQZebRkDcVWh7ldTideZ1zUv/k++2fb/t9/vlQqfRqVmZ3C/XvOEqnZVRXB3JN0/Nx8cNtYNzkYqBWxT9Xxz3toMBp48LqxKAm5AnSQoUZLR7YKfDc/MAYF/MBK5ej1ItLwVTPNKsp95qz+4eVfe7wNG0F1wgqyP1zo8j5LaKh49Pj4KsetyOLM76C+Q1jySzJFHjVU49EZcwg13VwM5NmLiA/FpezWYJfxLxmIZWYdAT71zRzG3PDl8Bn6ieGnN2XwQxHNp8TLQAfpcfGsqxXwBFi8XvjRCG4tVLJnP5wFXkMea6sj7AGTtjm3bfnroNlO/VC3PAbmNddbz7oHIq+rncyb5ANv+E4Q55rRv+MWdrwwXsLnJ9DbKXYiJCXF9lqm2XAv+j76dm0b4PN/b3Dedpi8CjVqFFDiD70paU8znAHuRtZ525IlQRs7LWcUF66C1ZU8ZmP0PwFzurwkEScgo/S3GWsmPBX3Y8K+1LgPNvonj4OesVs5glryX82aqr15+xhPnk65rDaN/RcGVeKSuBvsG+q3ZRrOvYZaYJSLg7ntL9zCbnoEB1+UmOioL8Y/ceebeLzSriLPNswVwj/qbJWUOsnhTy3Tp6FvwcPUz5NfGGAB++tqJJsJPBPEyM7+ThpcJGJhaCSjH0ftd6t4D64SQGzYEVXBkwKGHa0cECvToi227yFXqnTa1KBBvcj0P3dImTBLqYsoioNfXq7yCCFDQ+yebsxe1EOXMmPzBT5Yj97l9tW5of9+IHXF6TocH0pqcc+MvLIfSjSwWb2B8APCD/qxRz0wb4cHp6hgJymuFHVHA9/w3a8NKKiBHb2aM564g6/kzybejMdzsfpfBfFK4NJ2TldabKqmB8cvS5e0ka/K3clZyEP+4LJd0ZBSRrgP4Vks7EwCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6171\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6172\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6167\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6168\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6169\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6179\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6173\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6174\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6175\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6180\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6181\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6176\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6177\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6178\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6188\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6182\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6183\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6184\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6189\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6190\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6185\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6186\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6187\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6197\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6191\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6192\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6193\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FTUySYRwAcD5SiwiNg7aXLi3DbG5ZtpirRsUhdCz7YH1MxyxYsYpLrEGOBTVookPTNEtkY6McNWygrJSxarWgIGLOamEvmRitmDg0A9koutTzPz1b63f5CV+GBlt3RfjCP1OUrXOPej5gfzXJ6yaKY+h7HV+kps3wqDP/NnvuM3b2IWFIkfn/7bMGi5oeRw8cJ4kKD/yJ1m+LWr6hPYHb67LaBPYuWyDovDqLvY5QpN68h3MqFuUsI4k+lQ9x332E7/rIA/s0c9iVfKYkX5VCn3QNn57UwIYZSb3cCLdtOyJypmEtwxFiCObRrIn1GS1zAV3eFQttOAwvbDer2Z2L6AHuTU4Z8we6Y7o0aijH77Pw8p6D+Dlub1OYlcYuf9o4Pt8At1ypdD9kL6Hr/dQ7Dgvck7RzavxwMvhrU/A1/nQsVVM7kkVLTVPPC1fk0C2ZqrHetfAawr1nSzUs1lMCCTEsSYjaC7xwm9w6c5/8id1IuCguaR4t25+jGZbg6me9dgqPsvvvXJcnkNsL67aSF45Z4f4SI08chEVhBjVmoqJ3dk8r/N/hJ2a938qmYV+++vHRGxUwUTSkGRXAgltNlxmD+M/s8JJ1dDpa1y7TR2zw4jX+KuoUHBw8HyZpBdibudZLtcP4VX61ceJFIbrhQV9luLHon7dfjJaN+eDOkXxaYl6JzsZjsmXXWejxjcqvpZFitC4iTPXRSrCfGIo7mlXwb/ydnN1ABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6198\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6199\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6194\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6195\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6196\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6206\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6200\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6201\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6202\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6207\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6208\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6203\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6204\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6205\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6215\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6209\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6210\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6211\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6216\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6217\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6212\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6213\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6214\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6224\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6218\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6219\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6220\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FW0wSUAAAUASMUhzqDC23xCKznFaamWuWaxLNfDZzkQ18NVdRClKkGSLpDCPays1GGW2yrPl2UOlqZLrVygeiqWSiCRq+wpmJaFp/9/Zzm2OdnzPw6a53LvGDegDxiGvGwCDlPRijn0jxrHqLPI46z8Bnq5Fn6cx1hanNyIU4s4PBUwVOnjmR6ap4ijwutmTPcHT94bVeP11F6xzrB+PPmX1ESTqwSW3pDhqBn4q5cFFx5/Oan431psZxDeBa8fWu28xxMCU00g+X9w0cHFC6SVlkAp/2kL2UnZ+0+c2cnJz8vTPItcK5iJMtts+2Wl/tKDQjzx7M1XD5s+CWaqI/5xqcRxt71kGeAwsXVVdDan78t3PK6AVt0fPIle36hxqR7SeUEti3vX4il9GMhxYrbT9jd1m/xrj2ec2m2qrHC8j5mXZTFs9FcBBXK9hFQ195pny8ogLet5XpHdgKD7+V0h3kZkW+sym/rpK3jDyS5nXlbC16sZO2j74KdyQljrM9VsD32mKW2QfRq/Zlf+yQwh19mhtY0lXkxSO8jS5f0Nfg6VGklN9ghjh4mC5Bf8B9SN6pwISjPkoQbZeZ4QrpdGYU0w75d9KcvOEfy5SEfCwfvp91w3C5HQtenXGmBi7De4d6lh5hcGCsWpE4+Ave6BrPYZHxyH3lefIZCpyarA0LCLV94rt4vUMWeiaZw4pk24MlrZZtN0VwQdeTY3acdWBjyUSGf+9fO3eFjOnglILyNy/uE8C+CwE4F5f14MQoXLpfCDyXPPrcKoVL6x7wh4UbwG5pliMROvTpDKkKy3UAZznO174WwBtFYcd7SETkymqGZCUBfqnYKE6TwE0Yr68WgZPN268YRqeWSGBNf5J1coszeFrf5JNa5A7+Awpqp/8wCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6225\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6226\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6221\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6222\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6223\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6233\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6227\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6228\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6229\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6234\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6235\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6230\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6231\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6232\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6242\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6236\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6237\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6238\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6243\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6244\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6239\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6240\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6241\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6251\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6245\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6246\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6247\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8cNENxx7t9U27D6TO3zCdJ8T/CSa/qe5bcq4+gd2z4f/VnzhM4veJN69wK5qc46TmRd6TUdyFoj/6Cr5sWPYPTD5hmLb479yWc3nVqieLP+lc46Wqpg4k73r+G03/K+Riyud7C6bT/Z9Wu3SOeXnnsToB7zTucdJdJmM+Gbx9w0vVca85yOX+E03yXlb/X83zCSa8wkPZbYvQFJ/3JbHaFUD+CnqM2Q1qc5yucPjbX/P+uQAQtvWVPzHm+b3BamWNPbeIHBP3q3nvGo27f4XRVk+aW7UI/iKZlu9J3PUrATXsdZ1y6Zi5uesrbFdLGxxH029P/tE6fw01/e/TB2HLzTzgtIbXF0dDgD5wOaWE49SoEQce98ulm3YOb7spY8Hjdnb846U6pjQwbk//D6RS/P0ytPxC0weGpKxjMGRxw0Wobd53644SgZwl0moecJp5e99Di6WdPRjjtc56L8VEvbrozK2FB723c9IHZLccXCDHBaQ7B/eHT1BG0FPvamh3OCNp5Zkwj1zLcdEN3SsvNxcxw+jZTxM0EBhacdNH6R55fChH06WVF5+8wscLpBLUFdZabcNPH/xvbK7xH0CzcZTvsxdhw0v7bpmuej2bHSf98+iiFZTIfnG646fFhOpMAnE5c+3RNQjmCBgCgKNVnQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6252\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6253\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6248\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6249\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6250\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6260\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6254\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6255\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6256\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6261\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6262\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6257\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6258\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6259\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6269\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6263\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6264\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6265\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6270\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6271\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6266\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6267\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6268\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6278\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6272\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6273\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6274\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FazATcAAAcLNJhhsq5uwYMXbOI5Vyl9O5jU6bR2nH6UKeldqMcmkerZzjWJ3ciVwrrRCFjkq163TuOK+W0uYRMm/TpMKM1Zf6/335d7v9vvxkAyX2mSZdb2V/H7dIkg2TO5HrMTo82J3tYCLVPyu7/x1Yb3Qu1qbuPzdklbYz0MfgRfPih6/BuVglXm7TAo5ZPMa2ENWAQ0MKPceYjX7/Tq4daA+htiGPmY7nOXA/gBsVdfS+KSly3BklhR81CI4IPndedGMIPPtClp+jHgMvhdg7hnLlWk/2CXLF8mbA+91LrZvzZsHE+6GkPOs5MNeXPytIU2h9ikr1xvm6EnnacKaEm7GEXPV1pNbP+js4nT5V22u5rPUGHfYJQfo/kV8uC7zazoSTf4iNaInw5p7RSgkfftJXTp8Sw8NLDVOK7X6BkzzKpJJJ3b9bTmpjeK0iz2BjFlZt1sBu0cfPttiqwHuLJ4Qye7g0lPLSSok+8YGHoZ7TOpjamtNQna4GB9HtLiU8hReY9n8O1MCdwxZyH9dsgK9oOEMWEvTGBNZ0CnETuZTDxHny4C370rp7BXDj2zzvPeotU141RQs04Pzx9F3mI7r/BBfIIMT+Rk6rplftSNU7rO0Hrb4I+0Twru410p16eIAh36lCqfsigYLNOIUBfyMsC5u2nGx6iHRvtz7YO/qa/GIPes2imaOXGp6psbCM8MCCq1zcFfV09CzznpX4XvQuQp5wkYwDO8b0+7r76L5JR9gongMPoOaQzDgGyFm5TDVVDM9+/+gIJnUbeLJwLsntE9wBg7nJwhkid1lxx5qbb0fOYmDjXQ+gz7SceK4SwImytunoCvjOuFV/2qAROD5S0KLPxYOf8X2PfiSYgGnB4lslTHhzfWTRZrj2X8ifLIgrQm+wKZ9YWCdovUQapZq3NUO+se1E+UwlesVoK+V0nhX4D9jl+B8wCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6279\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6280\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6275\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6276\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6277\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6287\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6281\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6282\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6283\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6288\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6289\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6284\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6285\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6286\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6296\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6290\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6291\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6292\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6297\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6298\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6293\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6294\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6295\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6305\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6299\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6300\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6301\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/ztzy3ySFP8j+zM46B0b/l/9mfMEJy0U5HE29ztuek7kHSn1XU/h9AOmWYvvzn0Jp43cFX7OXI+gd51aoviz/hWcrpY6mLjj/Ws4PXHxqdMb2t7gpP+U8zFkc73FSaf9P6t27R7x9MpjdwLca97hpIvteeL+63yA00kbN6XfqkHQfJeVv9fzfMJJq0x8dFY1GDf9yWx2hVD/Fzg9R22GtDjPVzjd91DsbqsKbjrjUPTFj/7f4PQt39DuyZUI+tW994xH3b7D6aomzS3bhX7A6W+PPhhbbv5JNJ3ce/8oG+cfOF31XWfnVBkELSG1xdHQADcd0sJw6lUIgu7KWPB43Z2/RNMvI0vZ95z6h5M+mrbm+fpz/+F0it8fptYfuGmDw1NXMJgzOBBLNxjdKY1YgJte99Di6WdPRqJpn/NcjI96EfSB2S3HFwgx4aSdZ8Y0ci1D0FnWe+54MjMTTd9miriZwMCCky5a/8jzSyHx9OllRefvMLHC6QS1BXWWmxD08f/G9grvcdMs3GU77MXYcNLlxys6L59A0O8/vA3iWc8Op1dU3hXfeYx4OuzOuc3Vhhxw+ufTRyksk/ngdOLap2sSygXgNADT1vsQQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6306\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6307\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6302\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6303\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6304\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6314\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6308\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6309\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6310\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6315\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6316\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6311\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6312\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6313\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6323\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6317\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6318\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6319\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6324\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6325\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6320\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6321\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6322\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6332\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6326\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6327\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6328\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/63FazATcAAA8G2MQpeWhmt5jqOOiVB3KclSzmM9uOTO5BFJsVHK28phh3Lnjo28IuRZcUrnNNyhPEZkch7HaNiOEzbP+lL/f1/+3T70+/Kj0Rh1CVndrbTfTxGCBGN6XWCMSyclrKsDuZapQ1z8YBsYUxeX3eECp5FXvRQjWsG+KqULLWUfwOGjS3VP/JrB9jfPzfULasC+kithhNIKMM2dbTHpWn/2z8GVwx3upjyw71xArAFzQO7rxVXUvtkRsKhVOmA1NYq+SZCSsDUJXnbXJ9OYM2A3QvtY18Ks3NemxfVn+MwhtzbP1m5IFsn90TjOWjluHqxVTCMla6NnBR7x1rgDv6HFfccNWQAz7ViizAgxeDBxxdGDJwFHjEXzmVHLYF61mhkjBh5Jna3sJa6AE2WND21rfsg9vlM/0Bm3Cn6U45TU4Yq+oWcin8+CX8tWDs3QXQNzqcIzsnJ4ECVnhC9EH9ksqq0qWkdewCHxXCylyF+VnNA59hQeFYZdlB6Wgb8a+OhbtsPN6FdDGnU2wFYZ04UCffitFxRljNEm2Jmq+yCwdgt5zG74NwJ/G/lIuKuiRewOuKw7qbg3Fa6aG2tzfOsfGze/pmfuIvdKs550Sv8JZrLFFTUYjL28O5ZTSw4y4Cc1xwv7SuGfPstIedVw9eEVE0Ef+gvKLCPuEtxNpnCecwgLDt53mlRkiAPb0B/P3O/5f+9K1MmWW+iHxr9sFmAUkEfvEojXKfASE3NxNRXueaBnPaAXjmst9Rzbhr8hXGbQiYpgk8LYQokenOw7aGd+Ck4gRliv3Yb7EBl051A88vR2qWEqC+5n+XZVeEkJXC26myX1gudu17RV+sDj+19exDLQC9nzQWZDf63ebzs7CjfAYp95KiqD9ZKef2zKRa8l4M3RuXuQZ9blRU0m7pV7DX+pg+Mo+gCvzEYcUwUcrrpa2xIPv5ciTPNPV0OO35mZXtzcj5ycy+li49XB/BHvjQUd+LaSB+d7Plw88d7YL1lT7n8BH6LDujAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6333\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6334\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6329\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6330\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6331\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6341\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6335\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6336\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6337\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6342\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6343\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6338\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6339\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6340\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6350\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6344\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6345\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6346\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6351\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6352\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6347\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6348\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6349\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6359\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6353\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6354\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6355\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/ztzy3ySFP8j+zNQeseG/1d/5jzBSQsFeZzN/Y6gPfoLvm5a9AxOG7kr/Jy5/iWc3nVqieLP+lc4aZGUqbnfbF7D6Wqpg4k73iPoiYtPnd7Q9oZo2lMq98OVGwj6TzkfQzbXW5x0YJFEutJCBJ32/6zatXu46dbHcV4ZnR9w0l0mYT4bvuGm67nWnOVy/ginVxhI+y0x+gKnP5nNrhDqJ54+Ntf8/67ArzjpjEPRFz/6f4PTt3xDuydXImhljj21iR9w06/uvWc86vYdTlc1aW7ZLvQDTk95u0La+DiCfnv6n9bpc7jpb48+GFtu/omTTu69f5SN8w9Ouuq7zs6pMghaQmqLo6EBgu7KWPB43Z2/cPplZCn7nlP/4HSn1EaGjcn/4fTRtDXP159D0Cl+f5haf+CmG4zulEYsYHCA0bMEOs1DTiPodQ8tnn72ZCSb9jnPxfiol3jaZtLD3OOfiac5BPeHT1Nnwkk7z4xp5FqGoBu6U1puLmaG018m2PMy3ieevs0UcTOBgQUnfXpZ0fk7TKxwOkFtQZ3lJuLp4/+N7RXeI+jy4xWdl0+wwWn/bdM1z0ezw+mwO+c2VxtyEE1f1Ch+IXaTH0433PT4MJ1JAE4DAHRKWvpABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6360\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6361\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6356\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6357\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6358\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6368\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6362\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6363\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6364\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6369\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6370\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6365\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6366\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6367\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.5643437248062013},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6377\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6371\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6372\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6373\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6378\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6379\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6374\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6375\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6376\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6386\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6380\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6381\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6382\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/7XFbTDTcQAA4M2WReuwNDrydt52HS6lcp2S2yjNjhOXdBtKzkvHzLVOw27HdTpWx13H6iitUMZ5WaF2Gjq7Ou9kmqEwzGrdkplN9anfvy+/u11dz5dHPlnhno9/2yM383lCmlzhJvvrUdSBgGxZP9iRFFZQONYLRs2uJjs9gx/tuZ6AZfWAk6yFasnjl+CcaW1LcUo3mIvRWi84iaGHJp9SDctF0JNUlzkeuaMnf49N13rzEqfB52mZV4W3P4BphD6FTL0Ebi4tGC6nq6C7BUcewHCWwY4Po51L9q2Cean7E+0z4V9wFHQKMtTQTzxXjpKj1sC5IbwVPksDfYaojGj3+Qwe4+rIcVL4WQbDK59iLZilyB/JZX8FS5vwfswbyHmUpcZBog46d1N8/ajoG/SLIQuUJck69LuchhdvYjfMvqbaWUoN1IPZ2eg1vdMm9PcedPfAPmQ/RmyG2MUAPlT+qVbujjwV7d3poIV/5VEADuW1BSZ1FbXU5xnNPpLiei21GdknZo37tMEEvbKfZsw6vg0WH2a9G+TD31XFOXLQ+A97d7cy+D/AN+fz9trNwBdhI6g2yT/BCaVBcxFlyA/mX1vJwlGhsMn1lLo9TPjHHJS1Q0L4tpM6X/kQcjiO5yXQIgv5mmwqHQ3+YqOrbf1jQQeuyIINf0I5vlWDwph9na+/pony/7boEcYrTPDbCDFMBhEL3TNpLMQ/GJlAZAV9T0fGD8TMWufApxOZjMisHeBwUpGzbQ5yPDfKSJLATwlsX188YwmuMol6G+nIhcNPTqOZ5r94azXNbwLZA42+E4/FgX03/DF2djvBjnKpiiFA5rfcY89xrcD2l/Rh5GnkNl7I2XEbPHQyTVJZEQW/oymhbPuc+a+gXD/qC3eDR6YSDWoXW+gmy7jq5fvImtku75QSB/AvUxmkZzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6387\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6388\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6383\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6384\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6385\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6395\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6389\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6390\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6391\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6396\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6397\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6392\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6393\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6394\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6404\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6398\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6399\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6400\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6405\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6406\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6401\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6402\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6403\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6413\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6407\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6408\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6409\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/2Mo7ni3b8ptewYc9Kq+Z8m9+o9w0js2/L/6M+cJnBYK8jib+x1Br3jTOreC+SmcnhN5R0p9F4J+wDRr8d25L+G0kbvCz5nrcdO7Ti1R/Fn/Ck6LpEzN/Wbzmmi6Wupg4o73CNpTKvfDlRtvcNJ/yvkYsrneEk2vPHYnwL3mHZwutueJ+6/zAU63Po7zyuhE0PVca85yOX+E03yXlb/X83yC0yoTH51VDUbQKwyk/ZYYfcFJfzKbXSHUj6CPzTX/vyvwK9F0xqHoix/9v+Gkb/mGdk+uRNDKHHtqEz/gpl/de8941O07nK5q0tyyXegHnJbtSt/1KAFBf3v0wdhy80+cdHLv/aNsnH/gdNV3nZ1TZYinJaS2OBoa4KZDWhhOvQrBTce98ulm3YOguzIWPF535y+c7pTayLAx+T/R9NG0Nc/Xn0PQDUZ3SiMWMDjgomcJdJqHnEbQ6x5aPP3syYiT9jnPxfioF0F3ZiUs6L2NoG0mPcw9/hk3LcW+tmaHMxOcdp4Z08i1DEGfXlZ0/g4TK046QW1BneUmBH38v7G9wnvy6fLjFZ2XT7DB6bA75zZXG3LgpPs3//8WN5sbJ/3z6aMUlsl8OOmGmx4fpjMJwOnEtU/XJJQjaACShPTFQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6414\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6415\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6410\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6411\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6412\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6422\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6416\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6417\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6418\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6423\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6424\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6419\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6420\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6421\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.4309537248062014},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6431\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6425\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6426\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6427\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6432\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6433\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6428\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6429\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6430\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6440\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6434\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6435\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6436\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FaywUcAAA8POqvHZIF7lwuuFYhGTWxMx1pTudNOumeVtbyN2xxM7dsQylax4L05KmUB7zOMZ2U2jeda7hlPerEyLhXIf6kv/fl/928/vykw7lEpL1etuk/6fTWbW8nB7kGGqXY1x3J9iE5J3ClbSDMROLYWbv0NOJGwzN+DYwc3S19mF4K3K+xqrOrJkQHLpyI86orAL9QiTHij3ouf8tv+jYsqdfwbJmaQZPOYl87TqBSGfPIrd097XX4HxH7uqQb9qYLkNul1K0Wa6+CDYppePTTeFpUaeDjKPRX2oaH/ShLYHHcOOUBpsV8ClWUhLP6fDHf0sWsxPXwIrpsUpP01/gBPJ85QBuHczfFj5wq/4N1uoiRPmqb4CTCiipnTR4Y//Ec3Ea/LbHLHlepPo384/GPLHYBN9xLBgRz6F/xqlo/hiwhfxFEf4D1VkOToxTW5KbbYNd2BKuHRk+bBVMcO6Aez0OG3QxViA/GxJwV2iOntTCqy1PUCL3JVvcj6qBZ+lLhil7cBv/Jf7bih2wLjZwIcZkV+XzOv2UMRfhI0ya5jkO/HVPaulApuoLz8f3DQjguoWcC07KA1u31oUI9pBnTCWcMByDV2tSqNiwvyrPyHKdpGSjZz9arqjGYLz2fzn1Xrv7MtynnPzqOAve27eNL66CGwyt20o/wcsEy3HUYDXkP7HrJXUH3lsxIDor1cGBhv1bkQMa4Hojf1YIThO5bQmnZMUSPTFU4uHgjl6vy39Ch6n6l0k8vAFTC5zdIT+TmQYP5NOUJBE83LlhY+7qEXCVLDZHzkBfuFPdXhkM535+c0WNBQ+kakTaux1T+WTcTJNCgF5QW5w4ydcGG0fIvX1G0UcyBEJ1tg6YqbtRI+Kir0/zuPYFq4fcx0+Ul0uD38uYy4rIRi/DWEzLufpgrd3ZmaU/WOTikSDFD3MD5MsTLdbh6ScP/T8dxWZzMAgAAA==\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6441\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6442\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6437\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6438\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6439\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6449\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6443\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6444\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6445\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6450\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6451\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6446\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6447\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6448\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.20350577010473958},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6458\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6452\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6453\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6454\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6459\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6460\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6455\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6456\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6457\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6467\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6461\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6462\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6463\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8cNENxx7t9U27D6TO3zCdJ8T+C06v6niX36iPoHRv+X/2Z84RoWijI42zudwS94k3r3ArmpzjpOZF3pNR3EU979Bd83bToGU5616klij/rX8HpiYtPnd7Q9gZOe0rlfrhyAzed9v+s2rV7b4mmi+154v7rfIDTrY/jvDI6iae7TMJ8NnxD0CoTH51VDf4Ep1cYSPstMfoCp+eozZAW5/kKp4/NNf+/KxBBS2/ZE3Oe7xucvuUb2j25kni6qklzy3ahH3Da6zjj0jVziaffnv6ndfocbrrqu87OqTJ/4LSE1BZHQwMEHffKp5t1D266K2PB43V3/uKkX0aWsu859Y9oulNqI8PG5P9wOsXvD1PrD9z0LIFO85DTDA7E0j7nuRgf9TLC6c6shAW9t3HTB2a3HF8gxASnOQT3h09Tx01Lsa+t2eGMm3aeGdPItQw3nWW9544nMzNOuqE7peXmYgT9ZYI9L+N9BH2bKeJmAgMLnC5a/8jzSyGCPr2s6PwdJlY4ffy/sb3CewTNwl22w16MDU6XH6/ovHwCQftvm655PpodTofdObe52pADTv98+iiFZTIfnL6oUfxC7CY/TrrhpseH6UwCcDpx7dM1CeUIGgA4gIBxQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6468\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6469\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6464\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6465\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6466\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6476\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6470\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6471\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6472\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6477\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6478\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6473\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6474\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6475\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6485\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6479\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6480\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6481\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6486\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6487\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6482\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6483\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6484\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6494\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6488\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6489\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6490\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FaywUcAAA8Hum0HDZpRfHjJNRncx8uJLdTQklc5u0O89V2uKcZeqcxzIRt1atcYkyQl55R7tdh0YLx0nuJo9wnHNX7Xa5cNSX/P+f/tvN78tvjnRdMUUZlMz9HxMycCJ5sB/s4BGYKZD3gjEzK7FH6uGXXQ1RBJ4EeYxllUZc/R55ivJn8/24HnBA7LklmaIRHKO7kkyqqt31N+om+i95SM/u/FZbzxxRTSJXS4xjPnPK3d+lyM/anAWHkfqmBjUq5E0FmbJi9hJyin+wJ56/jNzX++mh9jw1ODfxWLT9rZVdf9VB9E6UpEF+pnN6jBG6Ck6l56qFPC34G3k6qM1dh/wwNyMj6xR6ebaeESmFSxusvbj3fiFPY6rqhsl6MHHAOTEYZzD79qGZstFc+DX6AlMlRv+MX9v1MWINeVqPuqn+Jby89Kg0hGZE7pMqFxxn/kH+1YXtTOtDH/AwdszHfh3sxYlI6nCE+xTPVyic0Xt0ZzXXpG2Cg5lOdxKb4O7hq9lvak3gyZRQwkn+Frj6U86r4QfwjtO8z8NC9FZuPS0c4TbyqALf2aCiv8hTC7W1jRhMwM6MGmblAa75207oqYoR+A8bfUULG4tc1G6RhUuHb+tsXWmbOORfpsc3yjF4s6+kemsbmHCW3dBawjB6nKSKNWWCt5LCuRwyAUyt4FfoKLvfNUZO9/aHk8g839834dYD4TOWKXBWduimh5gIjqO1GRYv7EFeYmrsrWPDBbLX57Fc9Iu2Mj+VEu6CxT5iESzAlJwXH7pK0FPXvPF2dnuRs0LwCZ5+8Lvk+c51IdxBIV3iiODC5ufps9n7wPbxxkCGEp4QJezApVqCU6wMTWIBvDWXfnHcxhrMCBM/eRwKv52/WBBfBFdjnL4bBfvBxK2F+dUNG7BrSelgIdEWPDoZva5xhJv2RJYul6HXznS7xeUdNPt/rlPtCzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6495\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6496\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6491\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6492\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6493\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6503\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6497\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6498\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6499\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6504\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6505\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6500\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6501\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6502\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.1885027701047397},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6512\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6506\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6507\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6508\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6513\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6514\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6509\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6510\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6511\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6521\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6515\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6516\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6517\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNs46VV9z5J79R/hpFe8aZ1bwfwUTs+JvCOlvot42qO/4OumRc/gtJG7ws+Z61/C6V2nlij+rH8Fp0VSpuZ+s3kNp6ulDibueI+gJy4+dXpD2xs47SmV++HKDQT9p5yPIZvrLZxO+39W7do9BL3y2J0A95p3cDpp46b0WzUf4HTr4zivjE4EXc+15iyX80ecNN9l5e/1PJ/gtMrER2dVgxH0J7PZFUL9X4im56jNkBbn+YqT7nsodrdVBUFLb9kTc57vG04641D0xY/+xNPKHHtqEz/gpquaNLdsF/oBp2W70nc9SsBNT3m7Qtr4OPH029P/tE6fQ9DfHn0wttz8E04n994/ysb5B06HtDCcehWCoONe+XSz7kHQXRkLHq+78xdOv4wsZd9z6h/R9NG0Nc/Xn/tPNJ3i94ep9QeCNjg8dQWDOYMDjFbbuOvUHyfy6VkCneYhp3HT6x5aPP3syYiT9jnPxfioF0F3ZiUs6L2NoG0mPcw9/hlBH5jdcnyBEBOc5hDcHz5NnXxain1tzQ5nBH2bKeJmAgMLnD69rOj8HSZWnPTx/8b2Cu9x0+XHKzovn2CD0/7bpmuej2aH0+8/vA3iWY+gG256fJjOJACnAQSe+mpABQAA\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6522\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6523\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6518\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6519\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6520\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6530\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6524\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6525\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6526\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6531\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6532\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6527\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6528\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6529\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6539\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6533\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6534\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6535\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6540\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6541\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6536\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6537\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6538\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.002532724806201},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6548\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6542\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6543\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6544\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/53FeyzUcQAA8HMOzWPclcPI84areSRUq1DdpcydU7HM5hXDuuK41tI5XJmYrsTymDqZdd56eEzLhGu0yCOFeXN0XpHhnEP95fvtn2/7rc8/HxaLU5OU9amZhXiCFDk4bN6BHOfd7hDTIQEbUs8m8vtawbixuVDjCjiLshZAiG8GJ6sua04b14E9Qs/Mdg9WgUOWLsWQSkrBLJ8Mx3HGK/e9o8q+SXyoLZgPmQ3nWcb1ggnRy9aCwCHksmZ579EJ9Cs+FhRW3DRyJqltuGN+Buxin2NUmypDfigxf12Mn8O84QuWSaoRXBBxMPDAdbhb/WgvjbEA7ktepfm1LGGerVC8t7m/jPmWSm07zt0VsGJypMzd6BdyLn2mrIu8ilyt3SLCC78GvpPrmSJhwGs7xwp7BPArORrsh2br4AK61G1TDI90yB3okWL/Ka+04ePlDeTcd7LqiiJ4ebGz6eFHcuTfLYMsnNo2wdTGpBoxVwm28V1ILi/dRp4tYSrZJ3fAA7EMgiMP+3XO8Z+7hHCtPJ7rESU8bYKrTxzZBQeku4x7Zv5GThPTi/dzcB57HzcYFX0pgTM3Vc/l66tgvkS4GOMdBP+puyp6/dcFtRpJ+NvwKJ1TJkVWeLBr8L3pW53w3SU9ipMS3j/6des5ThWcsEsiX3WAF9vaL1bS0fsTOzfCu/7/NyRfTjCZgHlbEU+0ZI6eEtJ32v4EnESOd1mPRh9E5gR7sdWQn6cmmejFwjPb5FYPBHD/ZIaS2gQPc3q7Jr2ojrxSdiNLHoA+b7uqtSwIzu9+eUGFA5dmzEXa9f9jve5jM0NwSxWVx/4EDbB5yrMPDXnobTfsVYnEfeAE8lS9Qog+PEBYh4/TxHys1lp1Ex/7NGZT9hOGNvhmmjT9WiZ6Gc5sUs7XAavtTE8tbOki7xkIVMyb6oG31f3yfxTCF8carcNSDZD/AR8oM6owCAAA\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XWfWiNYRgG8KGRWKylJa2TJBFarJGwJS1paS2s0Xxk8tVaWlrSOmghitF8tIRYyIl1aB1r1nZsMzPHwWz2ZZvtbGxmTtJakrzPc9V1Zf/81tvO8z73fV/3aRER+Dm8buONvevdSf97gbZ4fYmpeVcpnt+kpw+Mnqw+e4fi7+7Reb+PD7dt91B8rozuqp+68OgVL8U5T+ijqOauSHc5xbk++mfL9aJL+yoo3lNJzVtcaVUU762mqXmxzkdrKO7hp/Zx0XOKe9XSksresr7COop71lP/TnPQC4p7N9ChSQ/25Oa8pKijkc68f76qfPcrirqa6Ap78dcUdQbojnCGU+obirqD1OJ6S9EHudVcY/Y7ir7Ig6YNMe8p+iQLko+MPIxqpuibvGhOnfKBoo+yNJSZ8mtCC0Vf5dNEc1OJPrfSpjNrb60ak+j7R9rTER/ICkvMoY3+XGw7TTGXdjrZPWtBaUhiTh3UKWpzQ7fE3DrpEvuLxBy7KNomMddP1BwaH5CYczfdjxdTzL2HHjtUm5Dvl8hBL7XHZknkQqIsiZx8pp2mrRkSuZEDdqwSOeqjlnSJXMlxz8q584MSOeunE+2gJXInp/9dtGlDo0QOQ9RMNTNFIpfSlRbntE4ipwPUKTK6IFkit3L57RlOUiRyLNfY4A5S5Fqarnl9EjmX9loJXyhyL7fZD0rsgczOzbk2uPQrxV5I83TcI7EnMt9edIhib+QJZwvm3JXYI3kuJt05aphir+Tl1aZSiZhLuyZx3yj2TtpjSiT2UD42bYododhL+czEoFhiT6WNefR3ir2VwWVm8BJ7LNudrlRMG6XYa9lfWOxULrHn0n5rRP6g2Hs51nrK2QSJ7wGJ/xLCSf8A9DjqTzAIAAA=\"},\"shape\":[262],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6549\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6550\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6545\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6546\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6547\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#1f77b3\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6557\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6551\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6552\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6553\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6558\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6559\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6554\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6555\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6556\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":-0.19975277010473969},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6566\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6560\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6561\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6562\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6567\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6568\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6563\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6564\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6565\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":5.8802572298952605},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#1f77b3\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6575\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6569\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6570\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6571\"},\"data\":{\"type\":\"map\",\"entries\":[[\"x\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC//M4eXZZh+1New8ozVDc8W7flNtwelXfs+Re/UdweseG/1d/5jyB03Mi70ip73qKk/boL/i6adEzmtEPmGYtvjv3JZw2clf4OXM9gq6WOpi44/1rOD1x8anTG9rewGlPqdwPV24QTwcWSaQrLXwLp9P+n1W7dg9Brzx2J8C95h1OutieJ+6/zgc43fo4ziujEzddz7XmLJfzR5w032Xl7/U8n+C0ysRHZ1WDEfQctRnS4jxf4XTfQ7G7rSoIWnrLnpjzfN+Ipm/5hnZPrsRNK3PsqU38gKCrmjS3bBf6Aadlu9J3PUpA0F7HGZeumYubnvJ2hbTxcdz0t0cfjC03/4TTIS0Mp16F/MFJx73y6Wbdg6C7MhY8XnfnL9F0p9RGho3J/+H00bQ1z9efQ9Apfn+YWn/gpg0OT13BYM7ggItuMLpTGrEAN73uocXTz56McNrnPBfjo17yaZtJD3OPf0bQB2a3HF8gxASnpdjX1uxwRtBZ1nvueDIz46QbulNabi7GTd9miriZwMACp08vKzp/h4kVJ52gtqDOchNu2n/bdM3z0exw+v2Ht0E86xF02J1zm6sNOeB0/+b/3+Jmc+OkL2oUvxC7yY+TTlz7dE1CuQCcBgDQ+TBDQAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}],[\"y\",{\"type\":\"ndarray\",\"array\":{\"type\":\"bytes\",\"data\":\"H4sIAAEAAAAC/1XRSUoDQRiG4RygD5ADxH27b8naA3gA3eteDyCus3KVhStRcCE4gCBioyiKcZ7aeUqchXgAu+qF78Om4YFQqa7/rUqFpzo+WL4T9f9Oykatv3ynJL9Py2Z7tHznJOvm5UB8FiT/W5bF4nD5rkj2WZW9SZ4m+Zpk33X5m7W6WSuXfGdDLoVti03Jd7fkWPzQtuQcO7IvbNvdlZxrT1JxX3JOOxQ/dCA596EMq9LkSDKH7QnLGseSuU5kHKN6KpnTdsIxm2eSuc9l3LZ2IelgZ2fCcynpUsg4Znol6WRH4sJrSbcbGZdlt5KOd5JzWrpazn0v6WyZw9L9QTKX5R4eJXNa7sUy95PkniwdLPf2LOliuccXSSfLvVq6tSX3bOnYkXS0dLR0fJV0tHS0dHyTdLR0fJd0tHS0dPyQdLR0tHT8lHS0dPySdLR0tHT8lnS0dPyp/wFFCIr6QAUAAA==\"},\"shape\":[168],\"dtype\":\"float64\",\"order\":\"little\"}]]}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6576\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6577\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6572\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.02,\"line_width\":2}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6573\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.1,\"line_width\":2}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Line\",\"id\":\"p6574\",\"attributes\":{\"x\":{\"type\":\"field\",\"field\":\"x\"},\"y\":{\"type\":\"field\",\"field\":\"y\"},\"line_color\":\"#ff7e0e\",\"line_alpha\":0.2,\"line_width\":2}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6584\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6578\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6579\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6580\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6585\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6586\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6581\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6582\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6583\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":0.39438072480620123},\"y\":{\"type\":\"value\",\"value\":0},\"angle\":{\"type\":\"value\",\"value\":3.141592653589793},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}},{\"type\":\"object\",\"name\":\"GlyphRenderer\",\"id\":\"p6593\",\"attributes\":{\"data_source\":{\"type\":\"object\",\"name\":\"ColumnDataSource\",\"id\":\"p6587\",\"attributes\":{\"selected\":{\"type\":\"object\",\"name\":\"Selection\",\"id\":\"p6588\",\"attributes\":{\"indices\":[],\"line_indices\":[]}},\"selection_policy\":{\"type\":\"object\",\"name\":\"UnionRenderers\",\"id\":\"p6589\"},\"data\":{\"type\":\"map\"}}},\"view\":{\"type\":\"object\",\"name\":\"CDSView\",\"id\":\"p6594\",\"attributes\":{\"filter\":{\"type\":\"object\",\"name\":\"AllIndices\",\"id\":\"p6595\"}}},\"glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6590\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.02},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"nonselection_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6591\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.1},\"line_width\":{\"type\":\"value\",\"value\":2}}},\"muted_glyph\":{\"type\":\"object\",\"name\":\"Ray\",\"id\":\"p6592\",\"attributes\":{\"x\":{\"type\":\"value\",\"value\":4.1165797248062015},\"y\":{\"type\":\"value\",\"value\":1},\"line_color\":{\"type\":\"value\",\"value\":\"#ff7e0e\"},\"line_alpha\":{\"type\":\"value\",\"value\":0.2},\"line_width\":{\"type\":\"value\",\"value\":2}}}}}],\"toolbar\":{\"type\":\"object\",\"name\":\"Toolbar\",\"id\":\"p1113\",\"attributes\":{\"tools\":[{\"type\":\"object\",\"name\":\"PanTool\",\"id\":\"p1126\"},{\"type\":\"object\",\"name\":\"WheelZoomTool\",\"id\":\"p1127\",\"attributes\":{\"renderers\":\"auto\"}},{\"type\":\"object\",\"name\":\"BoxZoomTool\",\"id\":\"p1128\",\"attributes\":{\"dimensions\":\"both\",\"overlay\":{\"type\":\"object\",\"name\":\"BoxAnnotation\",\"id\":\"p1129\",\"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\":\"p1135\",\"attributes\":{\"all\":{\"type\":\"object\",\"name\":\"AreaVisuals\",\"id\":\"p1134\",\"attributes\":{\"fill_color\":\"white\",\"hover_fill_color\":\"lightgray\"}}}}}}}},{\"type\":\"object\",\"name\":\"SaveTool\",\"id\":\"p1136\"},{\"type\":\"object\",\"name\":\"ResetTool\",\"id\":\"p1137\"},{\"type\":\"object\",\"name\":\"HelpTool\",\"id\":\"p1138\"}]}},\"toolbar_location\":\"above\",\"left\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1121\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1122\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1123\"},\"axis_label\":\"ECDF\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1124\"}}}],\"right\":[{\"type\":\"object\",\"name\":\"Legend\",\"id\":\"p1193\",\"attributes\":{\"location\":\"center\",\"click_policy\":\"hide\",\"items\":[{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1194\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"Control\"},\"renderers\":[{\"id\":\"p1145\"},{\"id\":\"p1163\"},{\"id\":\"p1154\"}]}},{\"type\":\"object\",\"name\":\"LegendItem\",\"id\":\"p1195\",\"attributes\":{\"label\":{\"type\":\"value\",\"value\":\"Pesticide\"},\"renderers\":[{\"id\":\"p1172\"},{\"id\":\"p1190\"},{\"id\":\"p1181\"}]}}]}}],\"below\":[{\"type\":\"object\",\"name\":\"LinearAxis\",\"id\":\"p1116\",\"attributes\":{\"ticker\":{\"type\":\"object\",\"name\":\"BasicTicker\",\"id\":\"p1117\",\"attributes\":{\"mantissas\":[1,2,5]}},\"formatter\":{\"type\":\"object\",\"name\":\"BasicTickFormatter\",\"id\":\"p1118\"},\"axis_label\":\"alive sperm (millions)\",\"major_label_policy\":{\"type\":\"object\",\"name\":\"AllLabels\",\"id\":\"p1119\"}}}],\"center\":[{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1120\",\"attributes\":{\"axis\":{\"id\":\"p1116\"}}},{\"type\":\"object\",\"name\":\"Grid\",\"id\":\"p1125\",\"attributes\":{\"dimension\":1,\"axis\":{\"id\":\"p1121\"}}}],\"frame_width\":375,\"frame_height\":275}}]}};\n const render_items = [{\"docid\":\"daaf949b-421e-4ddc-8507-19288a6ec194\",\"roots\":{\"p1105\":\"ffb0ee36-7824-4a98-bdf3-84b397b323dc\"},\"root_ids\":[\"p1105\"]}];\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": "p1105" } }, "output_type": "display_data" } ], "source": [ "p = iqplot.ecdf(\n", " df,\n", " q=\"Alive Sperm Millions\",\n", " cats=\"Treatment\",\n", " x_axis_label=\"alive sperm (millions)\",\n", ")\n", "\n", "for _ in range(100):\n", " ctrl_rep = draw_bs_sample(alive_ctrl_shift)\n", " pest_rep = draw_bs_sample(alive_pest_shift)\n", " df_rep = pl.DataFrame(\n", " data={\n", " \"Treatment\": [\"Control\"] * len(ctrl_rep) + [\"Pesticide\"] * len(pest_rep),\n", " \"Alive Sperm Millions\": np.concatenate((ctrl_rep, pest_rep)),\n", " }\n", " )\n", "\n", " p = iqplot.ecdf(\n", " df_rep,\n", " q=\"Alive Sperm Millions\",\n", " cats=\"Treatment\",\n", " p=p,\n", " line_kwargs=dict(alpha=0.02),\n", " show_legend=False,\n", " )\n", "\n", "bokeh.io.show(p)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The blue-orange haze in between the ECDFs of the original data are the bootstrap samples under the null hypothesis. Only on rare occurrence does that haze reach the original ECDFs, so we might suspect that the observed data might not be all that probable under the null hypothesis. Let's perform the hypothesis test." ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "p-value = 6.7e-06\n" ] } ], "source": [ "@numba.njit(parallel=True)\n", "def draw_bs_reps_diff_mean(x, y, size=1):\n", " \"\"\"\n", " Generate bootstrap replicates with difference of means\n", " as the test statistic.\n", " \"\"\"\n", " out = np.empty(size)\n", " for i in numba.prange(size):\n", " out[i] = np.mean(draw_bs_sample(x)) - np.mean(draw_bs_sample(y))\n", "\n", " return out\n", "\n", "\n", "# Generate samples (10 million again)\n", "bs_reps = draw_bs_reps_diff_mean(alive_ctrl_shift, alive_pest_shift, size=10_000_000)\n", "\n", "# Compute p-value\n", "p_val = np.sum(bs_reps >= diff_mean) / len(bs_reps)\n", "\n", "print(\"p-value =\", p_val)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This p-value is of similar magnitude as what we got from the permutation test." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Simulating a hypothesis: challenging and rewarding\n", "\n", "As you can see from the above examples with permutation and bootstrap hypothesis tests, the part of the procedure that requires the most thought and care is simulating the null hypothesis. For a test where we are comparing means, we needed to shift the distributions so that all other aspects of the distribution remain the same, and then resample from the shifted distribution. \n", "\n", "The strength of doing these kinds of hypothesis tests is that they are entirely nonparametric. There is no need to specify a probability distribution for the null hypothesis; you can just make statements about how the two distributions you are comparing are related." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Computing environment" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Python implementation: CPython\n", "Python version : 3.13.7\n", "IPython version : 9.5.0\n", "\n", "numpy : 2.2.6\n", "polars : 1.33.1\n", "numba : 0.61.2\n", "bokeh : 3.8.0\n", "iqplot : 0.3.7\n", "jupyterlab: 4.4.9\n", "\n" ] } ], "source": [ "%load_ext watermark\n", "%watermark -v -p numpy,polars,numba,bokeh,iqplot,jupyterlab" ] } ], "metadata": { "anaconda-cloud": {}, "kernelspec": { "display_name": "default", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.13.7" } }, "nbformat": 4, "nbformat_minor": 4 }