Last active
November 28, 2016 02:42
-
-
Save bnaul/4285b4d41a45a414814dc0c6d7b2083a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "code", | |
"execution_count": 1, | |
"metadata": { | |
"collapsed": false | |
}, | |
"outputs": [], | |
"source": [ | |
"import numpy as np\n", | |
"import pandas as pd\n", | |
"import matplotlib.pyplot as plt\n", | |
"import seaborn as sns\n", | |
"from bokeh.plotting import figure\n", | |
"from bokeh.charts import Histogram\n", | |
"from bokeh.embed import notebook_div\n", | |
"from bokeh.mpl import to_bokeh\n", | |
"from bokeh.layouts import gridplot\n", | |
"from bokeh.models import Legend\n", | |
"from bokeh.palettes import PuBu3 as palette\n", | |
"from bokeh.io import output_notebook, show\n", | |
"\n", | |
"\n", | |
"N = 100\n", | |
"features = ['amplitude', 'median', 'maximum', 'minimum']\n", | |
"labels = ['A', 'B', 'C']\n", | |
"X = pd.DataFrame(np.random.normal(size=(N, len(features))), columns=features)\n", | |
"y = np.random.choice(labels, size=X.shape[0])\n", | |
"colors = [palette[i] for i in range(len(labels))]\n", | |
"\n", | |
"plots = [[figure(width=300, height=200) for j in range(X.shape[1])] for i in range(X.shape[1])]\n", | |
"for i in range(X.shape[1]):\n", | |
" for j in range(X.shape[1]):\n", | |
" for l, c in zip(labels, colors):\n", | |
" inds = np.where(y == l)[0]\n", | |
" plots[i][j].circle(X.values[inds, i], X.values[inds, j], color=c, legend=l if i == j else None)\n", | |
" plots[i][j].legend.location = 'bottom_right'\n", | |
" plots[i][j].xaxis.axis_label = features[i]\n", | |
" plots[i][j].yaxis.axis_label = features[j]\n", | |
"\n", | |
"plot = gridplot(plots, ncol=X.shape[1], mergetools=True)\n", | |
"div = notebook_div(plot)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 2, | |
"metadata": { | |
"collapsed": false | |
}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"\n", | |
"\n", | |
" <div class=\"bk-root\">\n", | |
" <div class=\"plotdiv\" id=\"050a046b-fa1c-4f30-8e88-c651a0e7a06d\"></div>\n", | |
" </div>\n", | |
"<script type=\"text/javascript\">\n", | |
" \n", | |
" (function(global) {\n", | |
" function now() {\n", | |
" return new Date();\n", | |
" }\n", | |
" \n", | |
" var force = \"\";\n", | |
" \n", | |
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\" || force !== \"\") {\n", | |
" window._bokeh_onload_callbacks = [];\n", | |
" window._bokeh_is_loading = undefined;\n", | |
" }\n", | |
" \n", | |
" \n", | |
" \n", | |
" if (typeof (window._bokeh_timeout) === \"undefined\" || force !== \"\") {\n", | |
" window._bokeh_timeout = Date.now() + 0;\n", | |
" window._bokeh_failed_load = false;\n", | |
" }\n", | |
" \n", | |
" var NB_LOAD_WARNING = {'data': {'text/html':\n", | |
" \"<div style='background-color: #fdd'>\\n\"+\n", | |
" \"<p>\\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", | |
" \"</p>\\n\"+\n", | |
" \"<ul>\\n\"+\n", | |
" \"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\\n\"+\n", | |
" \"<li>use INLINE resources instead, as so:</li>\\n\"+\n", | |
" \"</ul>\\n\"+\n", | |
" \"<code>\\n\"+\n", | |
" \"from bokeh.resources import INLINE\\n\"+\n", | |
" \"output_notebook(resources=INLINE)\\n\"+\n", | |
" \"</code>\\n\"+\n", | |
" \"</div>\"}};\n", | |
" \n", | |
" function display_loaded() {\n", | |
" if (window.Bokeh !== undefined) {\n", | |
" Bokeh.$(\"#050a046b-fa1c-4f30-8e88-c651a0e7a06d\").text(\"BokehJS successfully loaded.\");\n", | |
" } else if (Date.now() < window._bokeh_timeout) {\n", | |
" setTimeout(display_loaded, 100)\n", | |
" }\n", | |
" }\n", | |
" \n", | |
" function run_callbacks() {\n", | |
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n", | |
" delete window._bokeh_onload_callbacks\n", | |
" console.info(\"Bokeh: all callbacks have finished\");\n", | |
" }\n", | |
" \n", | |
" function load_libs(js_urls, callback) {\n", | |
" window._bokeh_onload_callbacks.push(callback);\n", | |
" if (window._bokeh_is_loading > 0) {\n", | |
" console.log(\"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.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", | |
" window._bokeh_is_loading = js_urls.length;\n", | |
" for (var i = 0; i < js_urls.length; i++) {\n", | |
" var url = js_urls[i];\n", | |
" var s = document.createElement('script');\n", | |
" s.src = url;\n", | |
" s.async = false;\n", | |
" s.onreadystatechange = s.onload = function() {\n", | |
" window._bokeh_is_loading--;\n", | |
" if (window._bokeh_is_loading === 0) {\n", | |
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n", | |
" run_callbacks()\n", | |
" }\n", | |
" };\n", | |
" s.onerror = function() {\n", | |
" console.warn(\"failed to load library \" + url);\n", | |
" };\n", | |
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", | |
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n", | |
" }\n", | |
" };var element = document.getElementById(\"050a046b-fa1c-4f30-8e88-c651a0e7a06d\");\n", | |
" if (element == null) {\n", | |
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '050a046b-fa1c-4f30-8e88-c651a0e7a06d' but no matching script tag was found. \")\n", | |
" return false;\n", | |
" }\n", | |
" \n", | |
" var js_urls = [];\n", | |
" \n", | |
" var inline_js = [\n", | |
" function(Bokeh) {\n", | |
" Bokeh.$(function() {\n", | |
" var docs_json = {\"f60af008-a11a-4908-9eff-853f8e023384\":{\"roots\":{\"references\":[{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"c792f276-ecaf-47f6-924f-ae8629f67051\",\"type\":\"Circle\"},{\"attributes\":{\"callback\":null},\"id\":\"961f0c1e-2933-400a-8e9b-5b399212acf3\",\"type\":\"DataRange1d\"},{\"attributes\":{\"axis_label\":\"amplitude\",\"formatter\":{\"id\":\"40fbac4a-0e33-4489-8a04-a4011a961f14\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"3815763e-da44-490f-83d4-5d0241c4ffdd\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"a24927bc-8a8d-4326-9a0d-6dae3a21861d\",\"type\":\"BasicTicker\"}},\"id\":\"57d7bb3d-2b39-4d12-ac3b-f90e6f833430\",\"type\":\"LinearAxis\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"ba82b2cc-2baf-4b46-9e31-5f3c17ccaeb5\",\"type\":\"Title\"},{\"attributes\":{\"plot\":{\"id\":\"f694d03f-39dd-4401-814f-9451acaf4ad3\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"f5092aa1-fb38-4302-aac4-61556dc5006e\",\"type\":\"SaveTool\"},{\"attributes\":{\"below\":[{\"id\":\"d1242ae3-3969-4a8c-b48f-fb4f1d004e11\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"c1a800ab-16a9-4cb5-9e6a-c570c8f7e499\",\"type\":\"LinearAxis\"}],\"plot_height\":200,\"plot_width\":300,\"renderers\":[{\"id\":\"d1242ae3-3969-4a8c-b48f-fb4f1d004e11\",\"type\":\"LinearAxis\"},{\"id\":\"5483b1f4-4e3b-4c79-a54f-1ae9da84b038\",\"type\":\"Grid\"},{\"id\":\"c1a800ab-16a9-4cb5-9e6a-c570c8f7e499\",\"type\":\"LinearAxis\"},{\"id\":\"01f19d82-fccc-46e0-8cf2-fbc38d75db41\",\"type\":\"Grid\"},{\"id\":\"15d8e3f7-c849-49ac-ae8f-0ccf3b11d4f7\",\"type\":\"BoxAnnotation\"},{\"id\":\"7311040c-dc4f-4d22-aa3d-46f0d3a30abf\",\"type\":\"Legend\"},{\"id\":\"ccd2d0f4-1ca2-4a26-ad43-6e3b4361add6\",\"type\":\"GlyphRenderer\"},{\"id\":\"19675708-0421-43da-afce-7cfdad26f1f8\",\"type\":\"GlyphRenderer\"},{\"id\":\"b65bbf60-4fd6-4940-8e33-63ba6407aac8\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"b2c156b6-94b1-4a6f-a565-315c8a135430\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"f95960f4-bd6c-4928-babd-09adbc55170c\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"c3ba4e45-ecb0-4ffb-a4db-189cbf7dda8e\",\"type\":\"Toolbar\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"0731869c-067d-4823-be15-af4d41facc0e\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"5a7c597d-4470-4726-91cd-0012ee8ac051\",\"type\":\"DataRange1d\"}},\"id\":\"2d765317-f2e1-46df-98e4-dbb230a1a404\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"92837ccb-5b30-43bb-9620-25ebfb0aaeb3\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"1a5224d0-8ef9-4bcc-8e05-8eded490e1ef\",\"type\":\"BasicTicker\"},{\"attributes\":{\"plot\":{\"id\":\"c2a67f24-59c6-4d65-a206-54842d5310fb\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"341dd79c-5133-41c2-8f25-14efd77f8248\",\"type\":\"SaveTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"f5459a6b-8b5e-4c64-abfa-89d8cdf1f50c\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"dd6d310e-c3c3-45b3-bbbf-e46ee55bd757\",\"type\":\"Title\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-1.1465991161132274,1.173886753092942,0.9935590988114428,-1.3496216322143202,1.0079128171017764,0.8525477076061976,-0.6441094550645676,0.02016322300248813,-0.4831063810542337,-0.558034896844673,0.11333028843341025,-1.1110750845138486,0.8337509199592601,-2.776301220370997,-1.026446080210315,-1.7419816935075114,0.0683535866652536,-0.9776237720465044,1.4707963019960566,-0.9153044658196463,-2.1116003606141933,0.6685951843094474,0.0658678580511474,-1.5012042171618698,0.2866567638539752,-0.2648389467472101,-0.09962142928357105],\"y\":[-0.526852866308911,-0.8752193214893524,-1.279437347391582,0.7159856272756318,-0.11752415012450136,0.23491964221007589,-0.48902337660002154,-0.3426098271304946,0.2469358215529219,-1.0879159519352635,-0.6428780763315476,0.52575427954955,-0.14029191361748725,-0.1504818617793574,0.01138756270726347,1.7108612240499872,0.9053328238014203,-0.8078266321767689,-1.6960345072902205,-1.161850597189768,-0.9761762324608795,-1.2924972083874928,-0.015872685464337212,-0.25295717134672013,0.04722232458304732,-0.47318007675024887,-1.0565810481732207]}},\"id\":\"d4234c6c-19eb-494d-931a-07c7d15daba7\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.526852866308911,-0.8752193214893524,-1.279437347391582,0.7159856272756318,-0.11752415012450136,0.23491964221007589,-0.48902337660002154,-0.3426098271304946,0.2469358215529219,-1.0879159519352635,-0.6428780763315476,0.52575427954955,-0.14029191361748725,-0.1504818617793574,0.01138756270726347,1.7108612240499872,0.9053328238014203,-0.8078266321767689,-1.6960345072902205,-1.161850597189768,-0.9761762324608795,-1.2924972083874928,-0.015872685464337212,-0.25295717134672013,0.04722232458304732,-0.47318007675024887,-1.0565810481732207],\"y\":[-0.526852866308911,-0.8752193214893524,-1.279437347391582,0.7159856272756318,-0.11752415012450136,0.23491964221007589,-0.48902337660002154,-0.3426098271304946,0.2469358215529219,-1.0879159519352635,-0.6428780763315476,0.52575427954955,-0.14029191361748725,-0.1504818617793574,0.01138756270726347,1.7108612240499872,0.9053328238014203,-0.8078266321767689,-1.6960345072902205,-1.161850597189768,-0.9761762324608795,-1.2924972083874928,-0.015872685464337212,-0.25295717134672013,0.04722232458304732,-0.47318007675024887,-1.0565810481732207]}},\"id\":\"400b5a25-ba0a-44cb-981e-75e00830e2f4\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.526852866308911,-0.8752193214893524,-1.279437347391582,0.7159856272756318,-0.11752415012450136,0.23491964221007589,-0.48902337660002154,-0.3426098271304946,0.2469358215529219,-1.0879159519352635,-0.6428780763315476,0.52575427954955,-0.14029191361748725,-0.1504818617793574,0.01138756270726347,1.7108612240499872,0.9053328238014203,-0.8078266321767689,-1.6960345072902205,-1.161850597189768,-0.9761762324608795,-1.2924972083874928,-0.015872685464337212,-0.25295717134672013,0.04722232458304732,-0.47318007675024887,-1.0565810481732207],\"y\":[-0.6705637855474027,1.34840184005745,0.40595488390585965,0.16084836409867231,-0.48684382423071393,-0.09897681184661385,-1.1162564102628494,-1.8176746517668625,-1.2130381450035903,0.7334753532661289,-1.7143359580741186,-0.6141600941703779,0.4837896883054766,-0.7503543324864415,-0.7622203797231547,1.003268363476211,-1.2548499035077059,1.307910921211524,-0.31359434313398415,-0.02598834790902368,-0.3156402963658345,0.05663641643458916,-1.2238714074307924,-0.544049360755572,1.453890370355908,-0.16716631440306928,1.376343423023386]}},\"id\":\"4bff3deb-27ae-41af-8568-aaff6589c25a\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":{\"id\":\"c2a67f24-59c6-4d65-a206-54842d5310fb\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"1c2e756e-cade-4268-bf23-e0aad2a5bd3a\",\"type\":\"HelpTool\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ece7f2\"},\"line_color\":{\"value\":\"#ece7f2\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"26283c7e-eb98-4def-b76c-ab63c56a6c22\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"92d627e9-27d3-4b88-bbef-f88aec36e42e\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"3815763e-da44-490f-83d4-5d0241c4ffdd\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"8ef11c8c-17ae-4822-a974-5a16c0682b5f\",\"type\":\"PanTool\"},{\"attributes\":{\"callback\":null},\"id\":\"d46db8a2-85c8-4b0b-b31b-b50f2d4e6468\",\"type\":\"DataRange1d\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2b8cbe\"},\"line_color\":{\"value\":\"#2b8cbe\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"7f554ded-c4d4-423f-bd41-6fd5bb24894d\",\"type\":\"Circle\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.6705637855474027,1.34840184005745,0.40595488390585965,0.16084836409867231,-0.48684382423071393,-0.09897681184661385,-1.1162564102628494,-1.8176746517668625,-1.2130381450035903,0.7334753532661289,-1.7143359580741186,-0.6141600941703779,0.4837896883054766,-0.7503543324864415,-0.7622203797231547,1.003268363476211,-1.2548499035077059,1.307910921211524,-0.31359434313398415,-0.02598834790902368,-0.3156402963658345,0.05663641643458916,-1.2238714074307924,-0.544049360755572,1.453890370355908,-0.16716631440306928,1.376343423023386],\"y\":[-0.6705637855474027,1.34840184005745,0.40595488390585965,0.16084836409867231,-0.48684382423071393,-0.09897681184661385,-1.1162564102628494,-1.8176746517668625,-1.2130381450035903,0.7334753532661289,-1.7143359580741186,-0.6141600941703779,0.4837896883054766,-0.7503543324864415,-0.7622203797231547,1.003268363476211,-1.2548499035077059,1.307910921211524,-0.31359434313398415,-0.02598834790902368,-0.3156402963658345,0.05663641643458916,-1.2238714074307924,-0.544049360755572,1.453890370355908,-0.16716631440306928,1.376343423023386]}},\"id\":\"58dc8bca-0c65-4e32-abe0-5ec6fe4d3c56\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"688b9d40-b188-4379-9a85-d5f0ed080b51\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"4efae0af-3f5e-4460-88de-826e5561638e\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"66154cff-f60d-4bb0-83ec-1fa36d1b7014\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"b445c2f1-0182-43c2-b292-baf0acbbc5fc\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"9f085a36-ad99-4273-8142-f1ab9d51a0ef\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"b65bbf60-4fd6-4940-8e33-63ba6407aac8\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"axis_label\":\"maximum\",\"formatter\":{\"id\":\"62b4003b-16e7-405a-8f14-45dc858ef3dd\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"95b728b9-961d-49d3-8232-8c7380c6c07b\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"a803ae4f-fa77-4f5c-9c04-78b53e83ed28\",\"type\":\"BasicTicker\"}},\"id\":\"c6f8c859-4d23-489b-885d-2c48e35c3a8a\",\"type\":\"LinearAxis\"},{\"attributes\":{\"below\":[{\"id\":\"5cfa34d8-ee82-4b2c-b7b3-231a01c0eb64\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"5ef2f247-c873-4124-8dad-2998d15599ed\",\"type\":\"LinearAxis\"}],\"plot_height\":200,\"plot_width\":300,\"renderers\":[{\"id\":\"5cfa34d8-ee82-4b2c-b7b3-231a01c0eb64\",\"type\":\"LinearAxis\"},{\"id\":\"6f416cb8-9a62-435f-8198-a36d17c49f7f\",\"type\":\"Grid\"},{\"id\":\"5ef2f247-c873-4124-8dad-2998d15599ed\",\"type\":\"LinearAxis\"},{\"id\":\"9d6d8b63-c5e2-45ed-8ce9-988df92998f3\",\"type\":\"Grid\"},{\"id\":\"cb0515a6-38e1-40ff-b7ce-b8703da15f33\",\"type\":\"BoxAnnotation\"},{\"id\":\"bcb81c86-2ca5-4001-aea1-d4bc0d4cddcd\",\"type\":\"Legend\"},{\"id\":\"77243fd5-c430-469a-89cb-849237b4276a\",\"type\":\"GlyphRenderer\"},{\"id\":\"dff0bf41-bf2e-47bf-a904-d4dcf515ab12\",\"type\":\"GlyphRenderer\"},{\"id\":\"c8a27a9e-4986-48b7-af1f-049f2ab2cb5a\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"2c4eea64-63d3-4ed0-a0fc-6ee2ce3f9c46\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"cd2e2941-4def-47fa-be28-e21fd2a65dfa\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"8ad93f00-5600-48d5-8978-c3cc44558b79\",\"type\":\"Toolbar\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"ee5c259c-ed3e-47c0-9659-7799558fe4f6\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"1e4bb8ab-dee5-4a2a-9956-afaee4f2dcea\",\"type\":\"DataRange1d\"}},\"id\":\"6de5bd19-7c3c-4c91-84c1-9b3cf5ae1963\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"f694d03f-39dd-4401-814f-9451acaf4ad3\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"0b076208-72d7-48f1-9ca4-11f3a94c6734\",\"type\":\"BasicTicker\"}},\"id\":\"e4d66608-e651-4262-bef8-3b4370d6763c\",\"type\":\"Grid\"},{\"attributes\":{\"overlay\":{\"id\":\"a9be0ea6-32b5-4bb5-b0f6-9fe7578f5c2a\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"dfe7076c-0398-4c47-ab2f-75e601064856\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"284d17e8-5dfe-4912-9070-44785e649ff9\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"data_source\":{\"id\":\"99f1af76-2044-4465-870b-c259fdb90a5f\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"2a1cbb52-9cb4-4b13-ba5c-45dcb094e27f\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"82466a79-9e9b-484a-accf-dfb826e17fb2\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"3ffd70e4-fb41-47f9-b537-cdc6b0f0a2ab\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2b8cbe\"},\"line_color\":{\"value\":\"#2b8cbe\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1160a932-ad9f-4c9c-890e-09e14301a00a\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"dfe7076c-0398-4c47-ab2f-75e601064856\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"3766ad46-b527-4300-b752-bb7166fb8a77\",\"type\":\"PanTool\"},{\"attributes\":{},\"id\":\"8fc74e75-a796-4062-a374-974c3df000f7\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"axis_label\":\"median\",\"formatter\":{\"id\":\"de262ed5-6308-4b16-9fb2-f34a774f39a7\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"2d22d847-2fb2-447a-b0b3-239c03d11c95\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"f7acca58-78f2-4dde-ba61-3c4441f36c66\",\"type\":\"BasicTicker\"}},\"id\":\"01e2108b-1d33-43ca-bfec-721da6dd3d90\",\"type\":\"LinearAxis\"},{\"attributes\":{\"plot\":{\"id\":\"2d22d847-2fb2-447a-b0b3-239c03d11c95\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"9e45c888-203c-45bd-8409-6741b4df5d29\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"callback\":null},\"id\":\"5e38e1e3-a311-4cf7-ba46-0e6d8bd0c422\",\"type\":\"DataRange1d\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.1960272004109043,-1.0502538702823216,-2.104502380351223,0.9834286540359315,2.9470659888894524,0.5615078368199237,1.2126928144027498,-0.5130204474240554,0.03813700121225621,-0.22634596391902523,0.5332205390130769,1.9743017181291302,-1.4078036410854593,-0.6683425071449056,1.4054068711862893,-2.7541524947725886,0.735803981843832,0.31108810546388604,0.3317130386192693,-0.37182999791027666,0.516990279377022,1.523855858724932,0.04814645234497029,-1.1369853492327395,-1.8808281218387493,-1.010394348071007,-0.41151461458339106,0.6871989611322668,1.9213677888152485,1.1345560479863577,-0.7215113955704764,-0.4749964259240754,0.005625486011900252,1.7731427091388345,1.7056455414803895,0.3053527691764295,-0.6330181831521638],\"y\":[-0.1960272004109043,-1.0502538702823216,-2.104502380351223,0.9834286540359315,2.9470659888894524,0.5615078368199237,1.2126928144027498,-0.5130204474240554,0.03813700121225621,-0.22634596391902523,0.5332205390130769,1.9743017181291302,-1.4078036410854593,-0.6683425071449056,1.4054068711862893,-2.7541524947725886,0.735803981843832,0.31108810546388604,0.3317130386192693,-0.37182999791027666,0.516990279377022,1.523855858724932,0.04814645234497029,-1.1369853492327395,-1.8808281218387493,-1.010394348071007,-0.41151461458339106,0.6871989611322668,1.9213677888152485,1.1345560479863577,-0.7215113955704764,-0.4749964259240754,0.005625486011900252,1.7731427091388345,1.7056455414803895,0.3053527691764295,-0.6330181831521638]}},\"id\":\"6935db28-9006-41e0-b8d4-073b7730477e\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":{\"id\":\"3c18f690-a9e0-48d5-b127-dd49355a9a3d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"4540493e-24f1-4711-9ef9-cf032d6852f3\",\"type\":\"HelpTool\"},{\"attributes\":{\"below\":[{\"id\":\"3f3c23d1-ea91-4697-b81d-afa37fcf08cc\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"0c4b9e70-5c22-4bd9-aaa5-0cde603193fb\",\"type\":\"LinearAxis\"}],\"plot_height\":200,\"plot_width\":300,\"renderers\":[{\"id\":\"3f3c23d1-ea91-4697-b81d-afa37fcf08cc\",\"type\":\"LinearAxis\"},{\"id\":\"21c0ad8b-4693-4f60-a3b7-49143b97d1de\",\"type\":\"Grid\"},{\"id\":\"0c4b9e70-5c22-4bd9-aaa5-0cde603193fb\",\"type\":\"LinearAxis\"},{\"id\":\"72c86513-6c6d-41da-98e5-12e965c089b0\",\"type\":\"Grid\"},{\"id\":\"098bbf3a-056a-4cbe-b496-bcfee9e841b8\",\"type\":\"BoxAnnotation\"},{\"id\":\"c3fb9c95-ef0b-4e5b-a273-b70f642883ff\",\"type\":\"Legend\"},{\"id\":\"6f5e652a-6f9c-4bd3-a885-bb53ae1a6834\",\"type\":\"GlyphRenderer\"},{\"id\":\"77993d9b-b283-4758-9455-9d8fbb3c413b\",\"type\":\"GlyphRenderer\"},{\"id\":\"9add151f-e4b6-4e11-9434-b035ff777f48\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"17884d60-5e66-44cf-817e-6aef026bbc43\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"fec70b49-7f56-436c-b564-0d84bceffcdb\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"b956e4f4-7267-465b-89d1-18c42eae7c7b\",\"type\":\"Toolbar\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"c52d4c80-8aff-4d8e-bf16-4c81bfac048d\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"b2924114-3916-479e-b59c-0e740bd9ddbb\",\"type\":\"DataRange1d\"}},\"id\":\"e9f85ec8-f967-4387-be57-4fb66f06516c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.5945160241092728,0.7811017365998931,-0.31962505843365874,-0.4942471575987246,0.3349391857946997,1.7225516850075475,-1.9731231096960362,-0.01767658927203139,0.16101695184496928,-0.8244660745923054,-0.5178668188428318,-1.2248971034591989,-0.5881401820989027,-0.5372604117386145,0.19143139048499394,0.7432552352207858,0.8632439453323602,-0.49371317751852417,-0.4175928455974618,2.3237649196748467,0.14590285265765693,-0.35501754876254366,-0.8394230907976706,0.07893941793251685,0.5796302326320795,-1.8022219963335209,-1.0099217846061237,-0.030524796781486997,0.02477843642929915,-0.9413421827485386,0.027731825062648784,-0.04665885921155053,0.10817236498215872,-0.48811587024576364,-0.17261673689927515,-0.06991012205170889],\"y\":[-0.34773506138307214,0.8539260728961936,0.48593130811763174,0.07176686883549224,0.12168357673402487,-1.498076646420606,0.42031506609009295,0.35422725549091916,-2.14618441921611,0.9233489489389598,-1.8752662709874306,-0.31261099681481064,-1.191109976314066,-0.38883320074540556,3.892825934343302,-2.010261760354966,1.72085273620119,1.264596578999643,0.3008678804790264,-1.691280953255143,1.0375038841499638,0.9922697914630533,1.2192465877516083,-0.5934630964618778,0.40071635662517774,-1.5465294412145238,-0.8778267491616462,-2.0260958149595996,2.785372760062306,-2.513580269790947,0.755614682692452,1.843090514622578,-1.7459444419235972,1.494420721069498,0.0758583412044921,-1.529838322451717]}},\"id\":\"e54ef543-101b-4567-898e-a2ff281d738a\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"c2a67f24-59c6-4d65-a206-54842d5310fb\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"1a5224d0-8ef9-4bcc-8e05-8eded490e1ef\",\"type\":\"BasicTicker\"}},\"id\":\"6b1bc6ef-d1e9-4074-b2e4-6c548feeb588\",\"type\":\"Grid\"},{\"attributes\":{\"callback\":null},\"id\":\"c946db46-3fbe-4bf9-b51f-34da79c235df\",\"type\":\"DataRange1d\"},{\"attributes\":{\"plot\":{\"id\":\"f72a938e-39f8-41c7-bb5d-3bbb2e674e9b\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"c82ae50a-a9d3-406d-b97c-a7bba8425ee0\",\"type\":\"BasicTicker\"}},\"id\":\"45b43e95-49b9-415c-b716-8e543d8b2989\",\"type\":\"Grid\"},{\"attributes\":{\"data_source\":{\"id\":\"26356d41-97a3-45e7-bd91-531735bfee29\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"6462be4a-6cc8-4247-b2d9-b0a5721fe7fa\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"33a10c0d-d151-472d-9606-0d1a7285c5d6\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"2fe0f4ca-9707-4770-b5fd-cba99cc911b6\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"plot\":{\"id\":\"3c18f690-a9e0-48d5-b127-dd49355a9a3d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"3ebdce4d-4f6e-4e0d-89cb-9c132ec9aa40\",\"type\":\"PanTool\"},{\"attributes\":{\"plot\":{\"id\":\"3815763e-da44-490f-83d4-5d0241c4ffdd\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"7c205ae8-981e-45ea-9d99-58cb06715e1d\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"3c447834-00fa-49bb-af6b-ac2ac39fa704\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"d5a97cfd-faa0-4e6b-b7fe-2523111015ef\",\"type\":\"PanTool\"},{\"id\":\"8f3c4d62-1c9c-4302-875a-9e484709a86e\",\"type\":\"WheelZoomTool\"},{\"id\":\"938c5b3d-efeb-4260-8591-ed36bffee1fd\",\"type\":\"BoxZoomTool\"},{\"id\":\"b5dbdac4-1556-47fc-ad3f-fb8d32ada128\",\"type\":\"SaveTool\"},{\"id\":\"b708f6fe-c7ac-46b3-8f0d-d080fb99eaf6\",\"type\":\"ResetTool\"},{\"id\":\"16bfbc2f-2679-421b-b7c1-4530cdbe39dd\",\"type\":\"HelpTool\"}]},\"id\":\"8ad93f00-5600-48d5-8978-c3cc44558b79\",\"type\":\"Toolbar\"},{\"attributes\":{\"axis_label\":\"median\",\"formatter\":{\"id\":\"f21806ba-5e0c-4d33-88cb-e8f306e80bd0\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"c2a67f24-59c6-4d65-a206-54842d5310fb\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"796e0367-442d-4da7-9863-d9555285a21f\",\"type\":\"BasicTicker\"}},\"id\":\"96caeec7-d810-49f6-95df-5f56fd5e1b23\",\"type\":\"LinearAxis\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.34773506138307214,0.8539260728961936,0.48593130811763174,0.07176686883549224,0.12168357673402487,-1.498076646420606,0.42031506609009295,0.35422725549091916,-2.14618441921611,0.9233489489389598,-1.8752662709874306,-0.31261099681481064,-1.191109976314066,-0.38883320074540556,3.892825934343302,-2.010261760354966,1.72085273620119,1.264596578999643,0.3008678804790264,-1.691280953255143,1.0375038841499638,0.9922697914630533,1.2192465877516083,-0.5934630964618778,0.40071635662517774,-1.5465294412145238,-0.8778267491616462,-2.0260958149595996,2.785372760062306,-2.513580269790947,0.755614682692452,1.843090514622578,-1.7459444419235972,1.494420721069498,0.0758583412044921,-1.529838322451717],\"y\":[-0.5522374356751574,-0.4143645498944408,-0.41317315387808895,-0.19246398927288327,-1.0318010859655495,-0.38827277638119967,2.1990478385612606,-1.5874454163797436,-0.3441952049287384,-0.12161254367428234,0.03320495210193038,0.6834603974927128,0.12492547961801098,0.6731970386399261,-0.9958418533864718,0.3611788792015832,1.475243693430828,1.9165950734864714,-0.1337544718131653,-0.3992013335659354,-1.21857970108057,0.6285992363664762,-0.5969708962444663,-0.7085662496845496,0.6104893127397838,0.19773965119867123,-1.0154200187715117,0.98571967405196,-0.3413130899038527,-0.2062293174217435,-0.19160009048126952,-1.6548263483513936,1.0050418172348423,1.1390008258196742,-0.6141464838105846,1.3781966533265964]}},\"id\":\"958c2d03-a37d-4afb-aded-ddc512f6896e\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data_source\":{\"id\":\"9daf6fb0-14fa-4ee4-9a23-8167caf49a89\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"58dce2dd-6780-4d9e-acd5-148b2882ad9a\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"16937e87-36ce-4f47-aa92-806b3fdb17e9\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"ef05a376-3169-42c5-9223-539f81fdd2be\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-1.1465991161132274,1.173886753092942,0.9935590988114428,-1.3496216322143202,1.0079128171017764,0.8525477076061976,-0.6441094550645676,0.02016322300248813,-0.4831063810542337,-0.558034896844673,0.11333028843341025,-1.1110750845138486,0.8337509199592601,-2.776301220370997,-1.026446080210315,-1.7419816935075114,0.0683535866652536,-0.9776237720465044,1.4707963019960566,-0.9153044658196463,-2.1116003606141933,0.6685951843094474,0.0658678580511474,-1.5012042171618698,0.2866567638539752,-0.2648389467472101,-0.09962142928357105],\"y\":[-0.6705637855474027,1.34840184005745,0.40595488390585965,0.16084836409867231,-0.48684382423071393,-0.09897681184661385,-1.1162564102628494,-1.8176746517668625,-1.2130381450035903,0.7334753532661289,-1.7143359580741186,-0.6141600941703779,0.4837896883054766,-0.7503543324864415,-0.7622203797231547,1.003268363476211,-1.2548499035077059,1.307910921211524,-0.31359434313398415,-0.02598834790902368,-0.3156402963658345,0.05663641643458916,-1.2238714074307924,-0.544049360755572,1.453890370355908,-0.16716631440306928,1.376343423023386]}},\"id\":\"41c16068-5ce5-489a-aaa9-8909853d0319\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"d619b33c-ebe3-4a07-8ee5-d494c0a2218d\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"4fbba2e8-8a70-4a74-9734-9fef28f0a63e\",\"type\":\"BasicTicker\"}},\"id\":\"31a5c50b-a568-4f8e-93bc-1eca782b4136\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"260f46a8-d4c4-4e83-ab0c-e1b65ad6dcf0\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"f95960f4-bd6c-4928-babd-09adbc55170c\",\"type\":\"ToolEvents\"},{\"attributes\":{\"axis_label\":\"maximum\",\"formatter\":{\"id\":\"03705855-3e2e-48ba-974c-cc4ca939623e\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"efae455e-828a-4d2f-b199-87002fc56e7d\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"6cf4947a-1168-4df7-a626-0dca61a9025d\",\"type\":\"BasicTicker\"}},\"id\":\"e65b9b12-98ad-4a9e-80cb-fc19ca27ec80\",\"type\":\"LinearAxis\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-1.1465991161132274,1.173886753092942,0.9935590988114428,-1.3496216322143202,1.0079128171017764,0.8525477076061976,-0.6441094550645676,0.02016322300248813,-0.4831063810542337,-0.558034896844673,0.11333028843341025,-1.1110750845138486,0.8337509199592601,-2.776301220370997,-1.026446080210315,-1.7419816935075114,0.0683535866652536,-0.9776237720465044,1.4707963019960566,-0.9153044658196463,-2.1116003606141933,0.6685951843094474,0.0658678580511474,-1.5012042171618698,0.2866567638539752,-0.2648389467472101,-0.09962142928357105],\"y\":[-2.328609613834153,0.499646780212785,1.6082952400234942,1.2458789708723745,-1.0961821690334586,1.382026941847684,-0.4538441219949615,1.4395844410802678,-0.3049243650356835,0.14523594074878604,1.4748096535386808,-0.5121485960965696,-0.8788913750369364,-1.5181389669792453,0.0007784314561065783,0.05436044213137643,-0.4473666650755062,0.3485405045366734,1.2683639830694,-1.512504175085072,0.5876892424323793,0.2643101853544203,-1.4026669476792284,-1.0934975183046596,-1.0375136010035175,0.07413307985065108,0.7831800812693355]}},\"id\":\"c74c14ba-81a4-4114-b885-9de3b2786355\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":{\"id\":\"d619b33c-ebe3-4a07-8ee5-d494c0a2218d\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"60901ad3-6d36-45c1-9aa5-f1a903ede8b5\",\"type\":\"BasicTicker\"}},\"id\":\"b0619d77-9e00-4623-8bd4-265d395f45c3\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"6cf4947a-1168-4df7-a626-0dca61a9025d\",\"type\":\"BasicTicker\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"135491b4-97d6-412e-a840-2111bbec6fdd\",\"type\":\"Title\"},{\"attributes\":{\"data_source\":{\"id\":\"6935db28-9006-41e0-b8d4-073b7730477e\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"2c0b94be-dad2-4ccb-b7e5-23a9205c2c18\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"1b76be6b-043a-4232-a6c4-0edaaf1da19f\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"c8a27a9e-4986-48b7-af1f-049f2ab2cb5a\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"ac1c5bf1-3810-4d5e-bdc5-722ea8c4adcf\",\"type\":\"BoxAnnotation\"},{\"attributes\":{},\"id\":\"cb96f571-325f-49e0-930e-13f05e762a8f\",\"type\":\"BasicTicker\"},{\"attributes\":{\"data_source\":{\"id\":\"c74c14ba-81a4-4114-b885-9de3b2786355\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"276fdc84-84f7-4461-8cd1-e1cb9a1c74c8\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"d970d6b1-bcbe-47b1-90f8-8fea57b9e63f\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"6253aaf6-955b-4977-9037-3d34ff7327a2\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.5522374356751574,-0.4143645498944408,-0.41317315387808895,-0.19246398927288327,-1.0318010859655495,-0.38827277638119967,2.1990478385612606,-1.5874454163797436,-0.3441952049287384,-0.12161254367428234,0.03320495210193038,0.6834603974927128,0.12492547961801098,0.6731970386399261,-0.9958418533864718,0.3611788792015832,1.475243693430828,1.9165950734864714,-0.1337544718131653,-0.3992013335659354,-1.21857970108057,0.6285992363664762,-0.5969708962444663,-0.7085662496845496,0.6104893127397838,0.19773965119867123,-1.0154200187715117,0.98571967405196,-0.3413130899038527,-0.2062293174217435,-0.19160009048126952,-1.6548263483513936,1.0050418172348423,1.1390008258196742,-0.6141464838105846,1.3781966533265964],\"y\":[-0.34773506138307214,0.8539260728961936,0.48593130811763174,0.07176686883549224,0.12168357673402487,-1.498076646420606,0.42031506609009295,0.35422725549091916,-2.14618441921611,0.9233489489389598,-1.8752662709874306,-0.31261099681481064,-1.191109976314066,-0.38883320074540556,3.892825934343302,-2.010261760354966,1.72085273620119,1.264596578999643,0.3008678804790264,-1.691280953255143,1.0375038841499638,0.9922697914630533,1.2192465877516083,-0.5934630964618778,0.40071635662517774,-1.5465294412145238,-0.8778267491616462,-2.0260958149595996,2.785372760062306,-2.513580269790947,0.755614682692452,1.843090514622578,-1.7459444419235972,1.494420721069498,0.0758583412044921,-1.529838322451717]}},\"id\":\"1e2e6044-5f30-4674-ab7e-cb64c3d0a197\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"overlay\":{\"id\":\"de898b72-2e89-48d8-a5f4-c63df118e0c0\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"f694d03f-39dd-4401-814f-9451acaf4ad3\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"69df9668-63e2-4fd2-9f2b-ab62c0b0c731\",\"type\":\"BoxZoomTool\"},{\"attributes\":{},\"id\":\"f02de202-e6c6-4e2d-9bb8-4e6c697f21d6\",\"type\":\"BasicTicker\"},{\"attributes\":{\"overlay\":{\"id\":\"cb0515a6-38e1-40ff-b7ce-b8703da15f33\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"6de5bd19-7c3c-4c91-84c1-9b3cf5ae1963\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"938c5b3d-efeb-4260-8591-ed36bffee1fd\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"items\":[{\"id\":\"1915f886-ca7d-4b15-974b-93d7283ca0c2\",\"type\":\"LegendItem\"},{\"id\":\"b31a464d-473a-4768-a816-655cd7f60569\",\"type\":\"LegendItem\"},{\"id\":\"8c4eeb89-872b-44e2-b6c0-6fd13d8ab1f2\",\"type\":\"LegendItem\"}],\"location\":\"bottom_right\",\"plot\":{\"id\":\"6de5bd19-7c3c-4c91-84c1-9b3cf5ae1963\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"bcb81c86-2ca5-4001-aea1-d4bc0d4cddcd\",\"type\":\"Legend\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"16fba15c-c2ff-463a-9a9f-72a296e10a84\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"axis_label\":\"maximum\",\"formatter\":{\"id\":\"fbe32506-766b-4f8d-a4eb-0a6f922e3d26\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"a20abdd6-ebb2-41fb-a6af-1ed37fa3aa1c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"cb96f571-325f-49e0-930e-13f05e762a8f\",\"type\":\"BasicTicker\"}},\"id\":\"3bcf3cd8-963b-407d-b5d8-c85d636f3431\",\"type\":\"LinearAxis\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"0d729313-f14d-4cda-8b12-3e8c839a650b\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"d619b33c-ebe3-4a07-8ee5-d494c0a2218d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"bdd2a962-1798-4d6b-bcaf-5d0e0e4f992c\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"e676c74a-c287-4a80-b6d8-abfd25c88a4d\",\"type\":\"ToolEvents\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"dd1f4182-21d6-4824-b47e-7c9a9ac1caa5\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"6b152c18-6ddc-4977-aa8f-bf960044b1b5\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"745a37ac-fa0e-403b-badf-bdea37e03bc4\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"8ed519d0-1dfc-4151-aa0e-89f7811f1c54\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"3047b6ef-daac-4dbc-b306-6bd2cfb94c0e\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"bdec38f6-0cb2-4890-b45b-47712ebc76a2\",\"type\":\"ToolEvents\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2b8cbe\"},\"line_color\":{\"value\":\"#2b8cbe\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"5d8649c5-3d60-4036-9186-847a9ca055f2\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"3815763e-da44-490f-83d4-5d0241c4ffdd\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"b0d27028-005b-41f5-a024-886c93b7bc48\",\"type\":\"SaveTool\"},{\"attributes\":{\"data_source\":{\"id\":\"d2b0fdcc-6504-42f4-ba18-c344dcaf0b38\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"0273517b-df51-491c-ac14-fd150b7495e9\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"d540a6ba-f5b9-4fe7-bb90-9bf77aed85e1\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"8d3cd220-6250-41db-95cd-ff35e692647f\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.34773506138307214,0.8539260728961936,0.48593130811763174,0.07176686883549224,0.12168357673402487,-1.498076646420606,0.42031506609009295,0.35422725549091916,-2.14618441921611,0.9233489489389598,-1.8752662709874306,-0.31261099681481064,-1.191109976314066,-0.38883320074540556,3.892825934343302,-2.010261760354966,1.72085273620119,1.264596578999643,0.3008678804790264,-1.691280953255143,1.0375038841499638,0.9922697914630533,1.2192465877516083,-0.5934630964618778,0.40071635662517774,-1.5465294412145238,-0.8778267491616462,-2.0260958149595996,2.785372760062306,-2.513580269790947,0.755614682692452,1.843090514622578,-1.7459444419235972,1.494420721069498,0.0758583412044921,-1.529838322451717],\"y\":[-0.34773506138307214,0.8539260728961936,0.48593130811763174,0.07176686883549224,0.12168357673402487,-1.498076646420606,0.42031506609009295,0.35422725549091916,-2.14618441921611,0.9233489489389598,-1.8752662709874306,-0.31261099681481064,-1.191109976314066,-0.38883320074540556,3.892825934343302,-2.010261760354966,1.72085273620119,1.264596578999643,0.3008678804790264,-1.691280953255143,1.0375038841499638,0.9922697914630533,1.2192465877516083,-0.5934630964618778,0.40071635662517774,-1.5465294412145238,-0.8778267491616462,-2.0260958149595996,2.785372760062306,-2.513580269790947,0.755614682692452,1.843090514622578,-1.7459444419235972,1.494420721069498,0.0758583412044921,-1.529838322451717]}},\"id\":\"101371db-c4cb-4981-828f-0bba266f836b\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":{\"id\":\"3c18f690-a9e0-48d5-b127-dd49355a9a3d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"aa775b1c-3309-481a-bd65-4e0ee0ad42cf\",\"type\":\"WheelZoomTool\"},{\"attributes\":{},\"id\":\"21c3e827-4f56-4be8-88d6-df48db909c6d\",\"type\":\"BasicTicker\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.6705637855474027,1.34840184005745,0.40595488390585965,0.16084836409867231,-0.48684382423071393,-0.09897681184661385,-1.1162564102628494,-1.8176746517668625,-1.2130381450035903,0.7334753532661289,-1.7143359580741186,-0.6141600941703779,0.4837896883054766,-0.7503543324864415,-0.7622203797231547,1.003268363476211,-1.2548499035077059,1.307910921211524,-0.31359434313398415,-0.02598834790902368,-0.3156402963658345,0.05663641643458916,-1.2238714074307924,-0.544049360755572,1.453890370355908,-0.16716631440306928,1.376343423023386],\"y\":[-1.1465991161132274,1.173886753092942,0.9935590988114428,-1.3496216322143202,1.0079128171017764,0.8525477076061976,-0.6441094550645676,0.02016322300248813,-0.4831063810542337,-0.558034896844673,0.11333028843341025,-1.1110750845138486,0.8337509199592601,-2.776301220370997,-1.026446080210315,-1.7419816935075114,0.0683535866652536,-0.9776237720465044,1.4707963019960566,-0.9153044658196463,-2.1116003606141933,0.6685951843094474,0.0658678580511474,-1.5012042171618698,0.2866567638539752,-0.2648389467472101,-0.09962142928357105]}},\"id\":\"99f1af76-2044-4465-870b-c259fdb90a5f\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":{\"id\":\"c2a67f24-59c6-4d65-a206-54842d5310fb\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"58cf9709-28b0-45fc-b930-3fe0043c41d3\",\"type\":\"WheelZoomTool\"},{\"attributes\":{},\"id\":\"ba64e59e-17b7-43df-996e-10b14595b342\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"data_source\":{\"id\":\"73efed97-1cb7-4c4a-a301-6ef4efd78a7c\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"cdb086f9-4049-4a6c-a906-840e1854bae1\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"a1159a2b-f71e-42fc-b1ee-b13da04a2899\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"f56f0a57-b455-4551-a9e1-bf40e1da0183\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"2d765317-f2e1-46df-98e4-dbb230a1a404\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"a1fa7569-56cf-478c-ae2c-4e61ae53620f\",\"type\":\"BasicTicker\"}},\"id\":\"01f19d82-fccc-46e0-8cf2-fbc38d75db41\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"c6a91f19-f661-4966-9937-fa6816105e12\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"below\":[{\"id\":\"3509ae69-e90c-4f1e-a148-8bce5d238284\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"c690c75e-0daa-4141-99b1-776cd62ed398\",\"type\":\"LinearAxis\"}],\"plot_height\":200,\"plot_width\":300,\"renderers\":[{\"id\":\"3509ae69-e90c-4f1e-a148-8bce5d238284\",\"type\":\"LinearAxis\"},{\"id\":\"c86096d1-73e6-49ce-be19-35f9c66eba5f\",\"type\":\"Grid\"},{\"id\":\"c690c75e-0daa-4141-99b1-776cd62ed398\",\"type\":\"LinearAxis\"},{\"id\":\"12ce9414-c10e-4f09-9bf7-5383551bf101\",\"type\":\"Grid\"},{\"id\":\"ac1c5bf1-3810-4d5e-bdc5-722ea8c4adcf\",\"type\":\"BoxAnnotation\"},{\"id\":\"e1c7c3a9-ff25-49ed-b331-b95d31e8cc75\",\"type\":\"GlyphRenderer\"},{\"id\":\"985e37c3-ddda-44c1-88af-716bf73cd145\",\"type\":\"GlyphRenderer\"},{\"id\":\"6bf6d6ea-2731-43d0-8dbc-ae8f08f9b48f\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"dd6d310e-c3c3-45b3-bbbf-e46ee55bd757\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"bdec38f6-0cb2-4890-b45b-47712ebc76a2\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"6c7d4c57-b249-4562-baba-8b2119c70bd2\",\"type\":\"Toolbar\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"402c0326-edb5-4b6e-b133-9ed01ec2ea58\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"8a1d5fd3-5afb-4e05-8cba-e4fe29518df4\",\"type\":\"DataRange1d\"}},\"id\":\"3695ef45-073b-4f94-b9fe-68f5dabf9f1b\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"callback\":null},\"id\":\"38c6c0ff-170e-469c-a847-82b83fb769b7\",\"type\":\"DataRange1d\"},{\"attributes\":{\"below\":[{\"id\":\"31b7d918-1c73-4035-a6c8-09a3acc59ec6\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"9a3ff281-2dff-4a74-a59a-afca55c2d2e8\",\"type\":\"LinearAxis\"}],\"plot_height\":200,\"plot_width\":300,\"renderers\":[{\"id\":\"31b7d918-1c73-4035-a6c8-09a3acc59ec6\",\"type\":\"LinearAxis\"},{\"id\":\"aeab8bdd-842d-4ffd-bbf4-583fa406dcd6\",\"type\":\"Grid\"},{\"id\":\"9a3ff281-2dff-4a74-a59a-afca55c2d2e8\",\"type\":\"LinearAxis\"},{\"id\":\"461a57c0-3740-4b8a-b1a2-6ce9a56d164f\",\"type\":\"Grid\"},{\"id\":\"95442e75-c3b7-4991-a9f1-2ab757041162\",\"type\":\"BoxAnnotation\"},{\"id\":\"4b56302a-b926-4a9b-8096-e079979626d4\",\"type\":\"GlyphRenderer\"},{\"id\":\"0f35357a-8607-4bcf-a790-cb85eabe5fb8\",\"type\":\"GlyphRenderer\"},{\"id\":\"98c7e51d-8ae3-419d-8ce7-5caa119e6ae2\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"88eaf8ae-55d4-442d-8f1b-4237741b0daf\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"b715b80d-9788-48bd-b919-512051e16b68\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"9abf1ba5-c9c1-48df-ac9d-8e599f8d97f1\",\"type\":\"Toolbar\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"cc4eefef-616f-4e20-9fee-b50ca975ccff\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"ec3806ef-75a0-422e-b9b4-572a0a0f8b7a\",\"type\":\"DataRange1d\"}},\"id\":\"307e4d89-741e-46ef-a598-b74b421ddf53\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"data_source\":{\"id\":\"4e60e0fa-31fc-4779-8cc0-488f9949743e\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"7aa7a214-8ec8-4162-9833-b8634308b3e9\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"594effa8-c780-4ce0-bef3-8d49f179d83c\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"a81adf2b-e31b-4a51-acd3-147663163e81\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"items\":[{\"id\":\"91b64f6c-5134-413d-9703-58dee497e130\",\"type\":\"LegendItem\"},{\"id\":\"6cb240b6-be96-462f-a2d4-3d772de7ec82\",\"type\":\"LegendItem\"},{\"id\":\"29e657e4-d46e-430f-946b-36a21efd272b\",\"type\":\"LegendItem\"}],\"location\":\"bottom_right\",\"plot\":{\"id\":\"e9f85ec8-f967-4387-be57-4fb66f06516c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"c3fb9c95-ef0b-4e5b-a273-b70f642883ff\",\"type\":\"Legend\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2b8cbe\"},\"line_color\":{\"value\":\"#2b8cbe\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"fc51d6de-374d-4acd-b7f6-356a5ca65607\",\"type\":\"Circle\"},{\"attributes\":{\"below\":[{\"id\":\"96caeec7-d810-49f6-95df-5f56fd5e1b23\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"fc1a51d3-6dc7-484b-9cd0-db3425ea806a\",\"type\":\"LinearAxis\"}],\"plot_height\":200,\"plot_width\":300,\"renderers\":[{\"id\":\"96caeec7-d810-49f6-95df-5f56fd5e1b23\",\"type\":\"LinearAxis\"},{\"id\":\"dd1dec46-1bda-48b6-bf48-0882d0222c70\",\"type\":\"Grid\"},{\"id\":\"fc1a51d3-6dc7-484b-9cd0-db3425ea806a\",\"type\":\"LinearAxis\"},{\"id\":\"6b1bc6ef-d1e9-4074-b2e4-6c548feeb588\",\"type\":\"Grid\"},{\"id\":\"a56a05c2-5855-4711-a46b-77d52ea3051a\",\"type\":\"BoxAnnotation\"},{\"id\":\"bb9445f5-732b-4ace-aaac-523c17aaa328\",\"type\":\"Legend\"},{\"id\":\"9ff9b84e-9788-4947-8378-feb50f040b49\",\"type\":\"GlyphRenderer\"},{\"id\":\"0c8c9e0b-7d32-49ad-b6d2-10bab3b664e7\",\"type\":\"GlyphRenderer\"},{\"id\":\"3a199bd0-1e9e-4380-978d-1891208c4b25\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"6ea435dc-cb69-48bf-b9ef-3a60d9301629\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"bac8d8cf-6a05-4b30-9fa8-ebfe4ee539bb\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"501e7152-0f6c-4759-bead-aea2736fa29d\",\"type\":\"Toolbar\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"99b3a794-3de6-43dd-a70b-724881c87ab8\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"d8ee00a7-e594-4388-8f5d-0f075d44db30\",\"type\":\"DataRange1d\"}},\"id\":\"c2a67f24-59c6-4d65-a206-54842d5310fb\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"7f9ecbad-8845-405f-a9f4-c67a23eae7fc\",\"type\":\"Circle\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ece7f2\"},\"line_color\":{\"value\":\"#ece7f2\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"b75dbef0-d242-428a-99d9-ddf6add7dc65\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"ad5686cc-ca93-4824-86d3-1a75b1e06543\",\"type\":\"BasicTicker\"},{\"attributes\":{\"plot\":{\"id\":\"e9f85ec8-f967-4387-be57-4fb66f06516c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"63b5f64a-d209-4fd7-bf6c-c24766877055\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a6bddb\"},\"line_color\":{\"value\":\"#a6bddb\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"e937034c-61dc-46a8-b04b-624aae31eecd\",\"type\":\"Circle\"},{\"attributes\":{\"label\":{\"value\":\"B\"},\"renderers\":[{\"id\":\"0c8c9e0b-7d32-49ad-b6d2-10bab3b664e7\",\"type\":\"GlyphRenderer\"}]},\"id\":\"4e78e4b0-c95c-4856-9f2d-cdcc30d79313\",\"type\":\"LegendItem\"},{\"attributes\":{\"axis_label\":\"minimum\",\"formatter\":{\"id\":\"260f46a8-d4c4-4e83-ab0c-e1b65ad6dcf0\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"95b728b9-961d-49d3-8232-8c7380c6c07b\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"9ec888f4-b180-429c-89c8-a89d968214bf\",\"type\":\"BasicTicker\"}},\"id\":\"90ff96d2-5ec0-41c8-8fdd-0d34d87069f2\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"f04d4b72-7a04-4c2c-9513-1a153a1bcbde\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"label\":{\"value\":\"A\"},\"renderers\":[{\"id\":\"9ff9b84e-9788-4947-8378-feb50f040b49\",\"type\":\"GlyphRenderer\"}]},\"id\":\"6058108b-92cc-41d0-a719-6089663b8541\",\"type\":\"LegendItem\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"3ebdce4d-4f6e-4e0d-89cb-9c132ec9aa40\",\"type\":\"PanTool\"},{\"id\":\"aa775b1c-3309-481a-bd65-4e0ee0ad42cf\",\"type\":\"WheelZoomTool\"},{\"id\":\"5d14286a-249b-4b7d-a871-2a32c9d441d0\",\"type\":\"BoxZoomTool\"},{\"id\":\"ba4a4ef3-2e63-4158-9bf9-3e553cdb02c5\",\"type\":\"SaveTool\"},{\"id\":\"faf9526b-81e1-4330-b1c2-a0c17b7e47ce\",\"type\":\"ResetTool\"},{\"id\":\"4540493e-24f1-4711-9ef9-cf032d6852f3\",\"type\":\"HelpTool\"}]},\"id\":\"9843f04f-34f6-4f43-a3ec-557768ffc05f\",\"type\":\"Toolbar\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"6de5bd19-7c3c-4c91-84c1-9b3cf5ae1963\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"1e0af30f-2956-4fb4-a61f-967846bc5819\",\"type\":\"BasicTicker\"}},\"id\":\"9d6d8b63-c5e2-45ed-8ce9-988df92998f3\",\"type\":\"Grid\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"33a10c0d-d151-472d-9606-0d1a7285c5d6\",\"type\":\"Circle\"},{\"attributes\":{\"axis_label\":\"maximum\",\"formatter\":{\"id\":\"9725e635-4979-4407-a94f-6ae6832cdbb8\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"6de5bd19-7c3c-4c91-84c1-9b3cf5ae1963\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"1e0af30f-2956-4fb4-a61f-967846bc5819\",\"type\":\"BasicTicker\"}},\"id\":\"5ef2f247-c873-4124-8dad-2998d15599ed\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"2c7fa085-9115-4537-af81-531568c2379a\",\"type\":\"BasicTicker\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"c8817ca0-7040-42e8-b756-cd659bc1dd05\",\"type\":\"PanTool\"},{\"id\":\"fe4e5d15-dfb2-4056-95cf-b49486734350\",\"type\":\"WheelZoomTool\"},{\"id\":\"2ba9f5f2-8920-4f40-8b08-226086a1b4da\",\"type\":\"BoxZoomTool\"},{\"id\":\"01080a33-536f-4f14-b4e3-6ad2df0294fa\",\"type\":\"SaveTool\"},{\"id\":\"b7813605-7adb-4051-9812-87e4299aaf67\",\"type\":\"ResetTool\"},{\"id\":\"8415e3b7-08ea-4cfd-98df-c6569d3889ed\",\"type\":\"HelpTool\"}]},\"id\":\"e67958ba-c6de-46e1-b219-e1cd1395f15c\",\"type\":\"Toolbar\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"307e4d89-741e-46ef-a598-b74b421ddf53\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"564164b2-c0d3-4af9-bf38-af57089cfbb9\",\"type\":\"BasicTicker\"}},\"id\":\"461a57c0-3740-4b8a-b1a2-6ce9a56d164f\",\"type\":\"Grid\"},{\"attributes\":{\"axis_label\":\"median\",\"formatter\":{\"id\":\"5d8bc3a2-ee3c-41fc-9725-fce7e10ce7ba\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"c2a67f24-59c6-4d65-a206-54842d5310fb\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"1a5224d0-8ef9-4bcc-8e05-8eded490e1ef\",\"type\":\"BasicTicker\"}},\"id\":\"fc1a51d3-6dc7-484b-9cd0-db3425ea806a\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"30371d63-0906-43c4-a9a9-f89bdfb32017\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.19773108001830575,1.094942822375068,-0.23885700767004167,0.9709868583261726,0.49160399090474854,-1.1101337749341333,0.5573681266227046,-1.0561568585133605,-0.07662062376911487,-2.840658711458262,0.28466877512132355,-0.3778877288988559,0.18443024578946285,-0.13408543778818846,2.38204107103276,2.419841609040222,0.26008785612709506,0.003677117591075754,0.5554326425466423,-0.4859885070208167,-0.3441116702541836,-0.6358410981425435,1.6894860812113148,1.8355995261930105,1.4883777348835,2.332159719113291,0.6653173783648078,-0.5082052562672649,1.3249610609402955,-1.787238054271912,-0.49625477688171465,-1.6429563351257739,-1.1830694297455835,0.9725292719747896,0.639325376393516,0.47487874500984767,-1.7964140592239564],\"y\":[-0.1960272004109043,-1.0502538702823216,-2.104502380351223,0.9834286540359315,2.9470659888894524,0.5615078368199237,1.2126928144027498,-0.5130204474240554,0.03813700121225621,-0.22634596391902523,0.5332205390130769,1.9743017181291302,-1.4078036410854593,-0.6683425071449056,1.4054068711862893,-2.7541524947725886,0.735803981843832,0.31108810546388604,0.3317130386192693,-0.37182999791027666,0.516990279377022,1.523855858724932,0.04814645234497029,-1.1369853492327395,-1.8808281218387493,-1.010394348071007,-0.41151461458339106,0.6871989611322668,1.9213677888152485,1.1345560479863577,-0.7215113955704764,-0.4749964259240754,0.005625486011900252,1.7731427091388345,1.7056455414803895,0.3053527691764295,-0.6330181831521638]}},\"id\":\"b0649f3e-ee26-48c6-b844-c0838ff448d5\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.20594558276654182,-1.2554153684442084,-0.40164399063513095,0.09242509330252871,0.04123040698371918,-0.36641316136048224,-0.5119122558223772,0.311078555330146,-1.0634773780511901,0.14591650394501732,-0.37511240915105787,-0.027075985684064212,0.2588754016697983,0.4085202894746412,-0.298238250691532,-0.42239192281382937,-1.6536594461467802,-0.5656770333551288,0.3469237798707693,-0.3347014679705152,2.3695519629533894,0.4031702397477597,-1.2884943626632155,-0.02250301309847468,-0.373263467662209,0.9505561720041189,-1.4487194734470652,0.3186695925277304,0.44596270031897417,-0.7873329055043466,1.1920971553810555,1.6726749393172706,-0.27098499754692923,0.11452441533764834,-0.8487092417742174,1.545579256814223],\"y\":[0.20594558276654182,-1.2554153684442084,-0.40164399063513095,0.09242509330252871,0.04123040698371918,-0.36641316136048224,-0.5119122558223772,0.311078555330146,-1.0634773780511901,0.14591650394501732,-0.37511240915105787,-0.027075985684064212,0.2588754016697983,0.4085202894746412,-0.298238250691532,-0.42239192281382937,-1.6536594461467802,-0.5656770333551288,0.3469237798707693,-0.3347014679705152,2.3695519629533894,0.4031702397477597,-1.2884943626632155,-0.02250301309847468,-0.373263467662209,0.9505561720041189,-1.4487194734470652,0.3186695925277304,0.44596270031897417,-0.7873329055043466,1.1920971553810555,1.6726749393172706,-0.27098499754692923,0.11452441533764834,-0.8487092417742174,1.545579256814223]}},\"id\":\"eb9d3aff-5e9a-4fde-9573-37aa2cc283ec\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data_source\":{\"id\":\"958c2d03-a37d-4afb-aded-ddc512f6896e\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"7190b346-6493-496a-82e6-5afc918301c6\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"d06a634a-df69-478c-b3c6-af2ad8a67f42\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"4a5cdafd-8309-4a6c-9e75-4a800199f0ad\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"18a0a6fa-b0bc-455a-9587-3ea01b7db5f9\",\"type\":\"PanTool\"},{\"id\":\"1577ff66-29c0-4f8d-941e-17f904fbd21e\",\"type\":\"WheelZoomTool\"},{\"id\":\"4d268932-0845-48d4-97b2-8d376916bfe2\",\"type\":\"BoxZoomTool\"},{\"id\":\"9468ea3f-e20e-488d-8a5d-e067e7cf34ca\",\"type\":\"SaveTool\"},{\"id\":\"491fb1de-91ff-4a07-b8c6-6a8835f37873\",\"type\":\"ResetTool\"},{\"id\":\"42daa85d-0691-496e-87fe-636064263cc8\",\"type\":\"HelpTool\"}]},\"id\":\"9abf1ba5-c9c1-48df-ac9d-8e599f8d97f1\",\"type\":\"Toolbar\"},{\"attributes\":{\"plot\":{\"id\":\"f72a938e-39f8-41c7-bb5d-3bbb2e674e9b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"872890e8-7e05-4ccb-b26c-e19994c8042f\",\"type\":\"HelpTool\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ece7f2\"},\"line_color\":{\"value\":\"#ece7f2\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"0273517b-df51-491c-ac14-fd150b7495e9\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"c2a67f24-59c6-4d65-a206-54842d5310fb\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"efa5d2bb-b7b6-4e31-a6a1-dda9ab43f2c2\",\"type\":\"PanTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"3cae82ca-a5c4-48e4-bcb4-6367aa774507\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"2d765317-f2e1-46df-98e4-dbb230a1a404\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"5212c3ee-631d-4c7c-9cb9-c80554c5a9ab\",\"type\":\"SaveTool\"},{\"attributes\":{\"overlay\":{\"id\":\"95442e75-c3b7-4991-a9f1-2ab757041162\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"307e4d89-741e-46ef-a598-b74b421ddf53\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"4d268932-0845-48d4-97b2-8d376916bfe2\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"data_source\":{\"id\":\"346a47aa-c224-42d9-be0d-3bbba7939c6a\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"9110f38e-b0e0-41fd-839c-63f81e22c792\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"703d7a79-1fa7-4281-8b51-d503a780959e\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"9add151f-e4b6-4e11-9434-b035ff777f48\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.5945160241092728,0.7811017365998931,-0.31962505843365874,-0.4942471575987246,0.3349391857946997,1.7225516850075475,-1.9731231096960362,-0.01767658927203139,0.16101695184496928,-0.8244660745923054,-0.5178668188428318,-1.2248971034591989,-0.5881401820989027,-0.5372604117386145,0.19143139048499394,0.7432552352207858,0.8632439453323602,-0.49371317751852417,-0.4175928455974618,2.3237649196748467,0.14590285265765693,-0.35501754876254366,-0.8394230907976706,0.07893941793251685,0.5796302326320795,-1.8022219963335209,-1.0099217846061237,-0.030524796781486997,0.02477843642929915,-0.9413421827485386,0.027731825062648784,-0.04665885921155053,0.10817236498215872,-0.48811587024576364,-0.17261673689927515,-0.06991012205170889],\"y\":[-0.5945160241092728,0.7811017365998931,-0.31962505843365874,-0.4942471575987246,0.3349391857946997,1.7225516850075475,-1.9731231096960362,-0.01767658927203139,0.16101695184496928,-0.8244660745923054,-0.5178668188428318,-1.2248971034591989,-0.5881401820989027,-0.5372604117386145,0.19143139048499394,0.7432552352207858,0.8632439453323602,-0.49371317751852417,-0.4175928455974618,2.3237649196748467,0.14590285265765693,-0.35501754876254366,-0.8394230907976706,0.07893941793251685,0.5796302326320795,-1.8022219963335209,-1.0099217846061237,-0.030524796781486997,0.02477843642929915,-0.9413421827485386,0.027731825062648784,-0.04665885921155053,0.10817236498215872,-0.48811587024576364,-0.17261673689927515,-0.06991012205170889]}},\"id\":\"cd3caed4-bcb4-4376-9996-6254893bf706\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data_source\":{\"id\":\"5af70f4b-d7ed-416d-afec-111bc8d11eaa\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"76b3fbed-a2f5-4cdc-b59b-10b701604d05\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"bc04201d-4eda-4406-80ab-6cfa55b8f52c\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"98c7e51d-8ae3-419d-8ce7-5caa119e6ae2\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"05f45b6c-c642-46a5-a3bb-d1aca76d762d\",\"type\":\"ToolEvents\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"b2c156b6-94b1-4a6f-a565-315c8a135430\",\"type\":\"Title\"},{\"attributes\":{\"plot\":{\"id\":\"3c18f690-a9e0-48d5-b127-dd49355a9a3d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"faf9526b-81e1-4330-b1c2-a0c17b7e47ce\",\"type\":\"ResetTool\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.34773506138307214,0.8539260728961936,0.48593130811763174,0.07176686883549224,0.12168357673402487,-1.498076646420606,0.42031506609009295,0.35422725549091916,-2.14618441921611,0.9233489489389598,-1.8752662709874306,-0.31261099681481064,-1.191109976314066,-0.38883320074540556,3.892825934343302,-2.010261760354966,1.72085273620119,1.264596578999643,0.3008678804790264,-1.691280953255143,1.0375038841499638,0.9922697914630533,1.2192465877516083,-0.5934630964618778,0.40071635662517774,-1.5465294412145238,-0.8778267491616462,-2.0260958149595996,2.785372760062306,-2.513580269790947,0.755614682692452,1.843090514622578,-1.7459444419235972,1.494420721069498,0.0758583412044921,-1.529838322451717],\"y\":[0.20594558276654182,-1.2554153684442084,-0.40164399063513095,0.09242509330252871,0.04123040698371918,-0.36641316136048224,-0.5119122558223772,0.311078555330146,-1.0634773780511901,0.14591650394501732,-0.37511240915105787,-0.027075985684064212,0.2588754016697983,0.4085202894746412,-0.298238250691532,-0.42239192281382937,-1.6536594461467802,-0.5656770333551288,0.3469237798707693,-0.3347014679705152,2.3695519629533894,0.4031702397477597,-1.2884943626632155,-0.02250301309847468,-0.373263467662209,0.9505561720041189,-1.4487194734470652,0.3186695925277304,0.44596270031897417,-0.7873329055043466,1.1920971553810555,1.6726749393172706,-0.27098499754692923,0.11452441533764834,-0.8487092417742174,1.545579256814223]}},\"id\":\"23f71511-7004-4636-930c-50b2d3a1f557\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"fe1adc9d-b009-42a6-b6a5-a68c2abeb1b7\",\"type\":\"Title\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2b8cbe\"},\"line_color\":{\"value\":\"#2b8cbe\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"04980a56-f5f3-4ebf-8436-dbd59fc978e6\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"c79c4b2f-5443-4369-a8ec-d92420d07de0\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"93721117-778b-452b-bd42-487682484805\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"6c447991-72c5-4507-acbc-e002d260c12c\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"ea698574-fb2d-40ee-ab6b-8bb90af470f2\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"202bdecb-e36b-4bf2-a9b3-290a54b72d6a\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"2d29f6b9-27f3-404d-ac42-d820a0877e80\",\"type\":\"PanTool\"},{\"id\":\"b772b384-da51-4468-92ed-069c41d5652d\",\"type\":\"WheelZoomTool\"},{\"id\":\"69df9668-63e2-4fd2-9f2b-ab62c0b0c731\",\"type\":\"BoxZoomTool\"},{\"id\":\"f5092aa1-fb38-4302-aac4-61556dc5006e\",\"type\":\"SaveTool\"},{\"id\":\"fb7d42ed-b10a-4929-b6e7-f84020fef6c8\",\"type\":\"ResetTool\"},{\"id\":\"985cb468-c26f-486b-9f47-0ec6f3a0c8ff\",\"type\":\"HelpTool\"}]},\"id\":\"0d67e864-692a-4f88-9cfa-3c5b73b18678\",\"type\":\"Toolbar\"},{\"attributes\":{\"callback\":null},\"id\":\"402c0326-edb5-4b6e-b133-9ed01ec2ea58\",\"type\":\"DataRange1d\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a6bddb\"},\"line_color\":{\"value\":\"#a6bddb\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"745a37ac-fa0e-403b-badf-bdea37e03bc4\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"f25f70eb-ed27-45b6-a563-88c5646cf167\",\"type\":\"ToolEvents\"},{\"attributes\":{\"label\":{\"value\":\"B\"},\"renderers\":[{\"id\":\"77993d9b-b283-4758-9455-9d8fbb3c413b\",\"type\":\"GlyphRenderer\"}]},\"id\":\"6cb240b6-be96-462f-a2d4-3d772de7ec82\",\"type\":\"LegendItem\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.1196118505565118,0.6794648046410245,-0.2844737002657559,1.7870627584100762,0.14417544523106934,0.2521659612725212,0.3202081066720338,0.0888310458277947,-0.14290116350914994,1.1262915464792675,1.2020889758350275,0.17278206275142652,1.2037256979143227,0.6351632729860156,0.17667896078565407,-0.2922279246703844,-0.5451028956419868,0.9243462823605312,1.082817349922394,0.4114385170674937,-0.07927490265952405,0.8805461791378847,0.19149988321645103,0.8557037868928923,-0.2541269045980475,-0.5082702699479015,-0.14041270933933248,2.270478586784326,0.3534591234058084,-0.748518160275011,0.27426134856514767,-2.279542793179099,-0.49278933484691617,0.6394497458051915,1.0916069624094755,-0.2308885317596188,-0.42282117971507377],\"y\":[-0.1960272004109043,-1.0502538702823216,-2.104502380351223,0.9834286540359315,2.9470659888894524,0.5615078368199237,1.2126928144027498,-0.5130204474240554,0.03813700121225621,-0.22634596391902523,0.5332205390130769,1.9743017181291302,-1.4078036410854593,-0.6683425071449056,1.4054068711862893,-2.7541524947725886,0.735803981843832,0.31108810546388604,0.3317130386192693,-0.37182999791027666,0.516990279377022,1.523855858724932,0.04814645234497029,-1.1369853492327395,-1.8808281218387493,-1.010394348071007,-0.41151461458339106,0.6871989611322668,1.9213677888152485,1.1345560479863577,-0.7215113955704764,-0.4749964259240754,0.005625486011900252,1.7731427091388345,1.7056455414803895,0.3053527691764295,-0.6330181831521638]}},\"id\":\"a7bb1ea5-04f3-4b62-a01d-bc7c50ec843d\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"dfe7076c-0398-4c47-ab2f-75e601064856\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"5f6da807-dcd6-4b6d-9f8b-cba11e5f40dd\",\"type\":\"BasicTicker\"}},\"id\":\"4f57bd89-f65b-4e3a-b927-43994e84d34c\",\"type\":\"Grid\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"de898b72-2e89-48d8-a5f4-c63df118e0c0\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"label\":{\"value\":\"C\"},\"renderers\":[{\"id\":\"c8a27a9e-4986-48b7-af1f-049f2ab2cb5a\",\"type\":\"GlyphRenderer\"}]},\"id\":\"8c4eeb89-872b-44e2-b6c0-6fd13d8ab1f2\",\"type\":\"LegendItem\"},{\"attributes\":{\"below\":[{\"id\":\"c6f8c859-4d23-489b-885d-2c48e35c3a8a\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"90ff96d2-5ec0-41c8-8fdd-0d34d87069f2\",\"type\":\"LinearAxis\"}],\"plot_height\":200,\"plot_width\":300,\"renderers\":[{\"id\":\"c6f8c859-4d23-489b-885d-2c48e35c3a8a\",\"type\":\"LinearAxis\"},{\"id\":\"daa1b6d1-84a0-4f45-95df-ef667d5d969e\",\"type\":\"Grid\"},{\"id\":\"90ff96d2-5ec0-41c8-8fdd-0d34d87069f2\",\"type\":\"LinearAxis\"},{\"id\":\"c2426035-a913-436b-ab7d-593795503ff8\",\"type\":\"Grid\"},{\"id\":\"3ff1dc68-08de-4494-b133-18e35e767b69\",\"type\":\"BoxAnnotation\"},{\"id\":\"72d922a2-a549-4a5f-a5fd-caa38f74285b\",\"type\":\"GlyphRenderer\"},{\"id\":\"3047b6ef-daac-4dbc-b306-6bd2cfb94c0e\",\"type\":\"GlyphRenderer\"},{\"id\":\"92fc056e-60e5-4a91-bf73-c2c74573e675\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"ac645c4d-2b97-4941-a8e5-714f79bc5e9b\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"b5ea055e-2664-4d6e-a9dc-753683f2e7e0\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"58c806e2-8b3b-4437-a420-1667012c148d\",\"type\":\"Toolbar\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"1a9fa0dc-ea82-4894-8f09-da1a0ffff697\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"882a2c55-a2d7-444b-861e-d8a720a5e6d8\",\"type\":\"DataRange1d\"}},\"id\":\"95b728b9-961d-49d3-8232-8c7380c6c07b\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-2.328609613834153,0.499646780212785,1.6082952400234942,1.2458789708723745,-1.0961821690334586,1.382026941847684,-0.4538441219949615,1.4395844410802678,-0.3049243650356835,0.14523594074878604,1.4748096535386808,-0.5121485960965696,-0.8788913750369364,-1.5181389669792453,0.0007784314561065783,0.05436044213137643,-0.4473666650755062,0.3485405045366734,1.2683639830694,-1.512504175085072,0.5876892424323793,0.2643101853544203,-1.4026669476792284,-1.0934975183046596,-1.0375136010035175,0.07413307985065108,0.7831800812693355],\"y\":[-0.526852866308911,-0.8752193214893524,-1.279437347391582,0.7159856272756318,-0.11752415012450136,0.23491964221007589,-0.48902337660002154,-0.3426098271304946,0.2469358215529219,-1.0879159519352635,-0.6428780763315476,0.52575427954955,-0.14029191361748725,-0.1504818617793574,0.01138756270726347,1.7108612240499872,0.9053328238014203,-0.8078266321767689,-1.6960345072902205,-1.161850597189768,-0.9761762324608795,-1.2924972083874928,-0.015872685464337212,-0.25295717134672013,0.04722232458304732,-0.47318007675024887,-1.0565810481732207]}},\"id\":\"6b152c18-6ddc-4977-aa8f-bf960044b1b5\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.5522374356751574,-0.4143645498944408,-0.41317315387808895,-0.19246398927288327,-1.0318010859655495,-0.38827277638119967,2.1990478385612606,-1.5874454163797436,-0.3441952049287384,-0.12161254367428234,0.03320495210193038,0.6834603974927128,0.12492547961801098,0.6731970386399261,-0.9958418533864718,0.3611788792015832,1.475243693430828,1.9165950734864714,-0.1337544718131653,-0.3992013335659354,-1.21857970108057,0.6285992363664762,-0.5969708962444663,-0.7085662496845496,0.6104893127397838,0.19773965119867123,-1.0154200187715117,0.98571967405196,-0.3413130899038527,-0.2062293174217435,-0.19160009048126952,-1.6548263483513936,1.0050418172348423,1.1390008258196742,-0.6141464838105846,1.3781966533265964],\"y\":[-0.5945160241092728,0.7811017365998931,-0.31962505843365874,-0.4942471575987246,0.3349391857946997,1.7225516850075475,-1.9731231096960362,-0.01767658927203139,0.16101695184496928,-0.8244660745923054,-0.5178668188428318,-1.2248971034591989,-0.5881401820989027,-0.5372604117386145,0.19143139048499394,0.7432552352207858,0.8632439453323602,-0.49371317751852417,-0.4175928455974618,2.3237649196748467,0.14590285265765693,-0.35501754876254366,-0.8394230907976706,0.07893941793251685,0.5796302326320795,-1.8022219963335209,-1.0099217846061237,-0.030524796781486997,0.02477843642929915,-0.9413421827485386,0.027731825062648784,-0.04665885921155053,0.10817236498215872,-0.48811587024576364,-0.17261673689927515,-0.06991012205170889]}},\"id\":\"3fe2121b-be3e-46d2-af7a-813ceafa0bb3\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"6c447991-72c5-4507-acbc-e002d260c12c\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"a20abdd6-ebb2-41fb-a6af-1ed37fa3aa1c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"c8817ca0-7040-42e8-b756-cd659bc1dd05\",\"type\":\"PanTool\"},{\"attributes\":{\"axis_label\":\"minimum\",\"formatter\":{\"id\":\"c76ca0da-73ff-47e6-a4f4-15f19ccef3cf\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"3c18f690-a9e0-48d5-b127-dd49355a9a3d\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"e6e30fb7-d9fd-4d01-a52d-bcc3b165c142\",\"type\":\"BasicTicker\"}},\"id\":\"f7e07ca1-9297-4d64-84a0-d74b3f54af80\",\"type\":\"LinearAxis\"},{\"attributes\":{\"plot\":{\"id\":\"f694d03f-39dd-4401-814f-9451acaf4ad3\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"2d29f6b9-27f3-404d-ac42-d820a0877e80\",\"type\":\"PanTool\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"3c18f690-a9e0-48d5-b127-dd49355a9a3d\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"e6e30fb7-d9fd-4d01-a52d-bcc3b165c142\",\"type\":\"BasicTicker\"}},\"id\":\"1ba0ea0c-e50e-4629-a408-6f477b936f4e\",\"type\":\"Grid\"},{\"attributes\":{\"callback\":null},\"id\":\"0731869c-067d-4823-be15-af4d41facc0e\",\"type\":\"DataRange1d\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"ae32e65e-de80-4e96-b507-477c542c4a74\",\"type\":\"Title\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ece7f2\"},\"line_color\":{\"value\":\"#ece7f2\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"76b3fbed-a2f5-4cdc-b59b-10b701604d05\",\"type\":\"Circle\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a6bddb\"},\"line_color\":{\"value\":\"#a6bddb\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"4919e259-33da-4112-9f97-713f92b80cd7\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"95b728b9-961d-49d3-8232-8c7380c6c07b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"945e71dc-0d10-43a7-9e85-695585340e5d\",\"type\":\"PanTool\"},{\"attributes\":{},\"id\":\"6eff242c-0358-4a7d-a002-8af804ad0752\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"data_source\":{\"id\":\"c03f50a3-1a63-4e7b-a849-b3f7bdc83704\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"b9cf220e-760c-4c45-943a-3df11a8a5fb4\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"56bd6561-0839-4468-9588-8a27e68f585c\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"877c9ca1-600b-45c0-b6ff-bda6edcaa3ac\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"e0586075-3ee8-4759-b9f9-6cff0e694cc8\",\"type\":\"PanTool\"},{\"id\":\"990098b8-cb82-4863-99e9-91f153972b2b\",\"type\":\"WheelZoomTool\"},{\"id\":\"e64a23e8-872e-4211-838a-15f02cf1fd3e\",\"type\":\"BoxZoomTool\"},{\"id\":\"cedc29ef-5150-4b67-8833-4af6a4bdb2a7\",\"type\":\"SaveTool\"},{\"id\":\"bdd2a962-1798-4d6b-bcaf-5d0e0e4f992c\",\"type\":\"ResetTool\"},{\"id\":\"0f20259e-3f03-42ff-aee4-05823ec38299\",\"type\":\"HelpTool\"}]},\"id\":\"6d5788d4-2178-49f0-98b4-115afd0b9d6e\",\"type\":\"Toolbar\"},{\"attributes\":{\"label\":{\"value\":\"A\"},\"renderers\":[{\"id\":\"77243fd5-c430-469a-89cb-849237b4276a\",\"type\":\"GlyphRenderer\"}]},\"id\":\"1915f886-ca7d-4b15-974b-93d7283ca0c2\",\"type\":\"LegendItem\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"c1c41b97-a9d0-46a3-b7cf-7cb46adcfdef\",\"type\":\"PanTool\"},{\"id\":\"63b5f64a-d209-4fd7-bf6c-c24766877055\",\"type\":\"WheelZoomTool\"},{\"id\":\"a2d269b5-bf74-4001-bed9-51631236469b\",\"type\":\"BoxZoomTool\"},{\"id\":\"31491af6-0379-4f31-9886-6a39ed1f82f9\",\"type\":\"SaveTool\"},{\"id\":\"b1e78d7a-b249-4520-a748-e7f5c5441332\",\"type\":\"ResetTool\"},{\"id\":\"bc774d37-d1ea-49d9-b90a-bf157175244a\",\"type\":\"HelpTool\"}]},\"id\":\"b956e4f4-7267-465b-89d1-18c42eae7c7b\",\"type\":\"Toolbar\"},{\"attributes\":{\"data_source\":{\"id\":\"311b5dce-0552-4786-8665-c0a31249c082\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"04980a56-f5f3-4ebf-8436-dbd59fc978e6\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"b411248d-f689-4837-b026-0d29e3010a3b\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"d85d9d21-f34e-42c9-a1fd-33080025e214\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"98753a89-6b3e-4d12-a7e7-515bfb197784\",\"type\":\"Circle\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.6649478704715944,-0.9350396439504449,0.497740409834053,0.2931733105704744,0.8855575560554154,-1.4610698200123278,0.7157828685854063,-0.3728661616362994,1.1814345650892815,-0.42312006236134203,-0.039815599587455196,1.282564397411362,-1.131194340177999,1.067629708906566,1.5748707870138035,1.0898258802365735,-1.4063444084308228,0.9646890666944837,0.2964156031573052,-0.09943790848659127,0.6307873865879196,1.1115080262461001,1.7752163668528467,-0.04431491757471309,-1.0641352896928378,-0.22542000532203493,0.5204431831549122,0.19820280211365246,-0.5440235199785699,-1.7562117357256524,-0.34527192891437974,-0.0625271775960441,1.3403597175590076,-0.8276729284600616,-0.7697430171157307,-0.023907272107244575,0.42917186493149356],\"y\":[0.6649478704715944,-0.9350396439504449,0.497740409834053,0.2931733105704744,0.8855575560554154,-1.4610698200123278,0.7157828685854063,-0.3728661616362994,1.1814345650892815,-0.42312006236134203,-0.039815599587455196,1.282564397411362,-1.131194340177999,1.067629708906566,1.5748707870138035,1.0898258802365735,-1.4063444084308228,0.9646890666944837,0.2964156031573052,-0.09943790848659127,0.6307873865879196,1.1115080262461001,1.7752163668528467,-0.04431491757471309,-1.0641352896928378,-0.22542000532203493,0.5204431831549122,0.19820280211365246,-0.5440235199785699,-1.7562117357256524,-0.34527192891437974,-0.0625271775960441,1.3403597175590076,-0.8276729284600616,-0.7697430171157307,-0.023907272107244575,0.42917186493149356]}},\"id\":\"66154cff-f60d-4bb0-83ec-1fa36d1b7014\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-2.328609613834153,0.499646780212785,1.6082952400234942,1.2458789708723745,-1.0961821690334586,1.382026941847684,-0.4538441219949615,1.4395844410802678,-0.3049243650356835,0.14523594074878604,1.4748096535386808,-0.5121485960965696,-0.8788913750369364,-1.5181389669792453,0.0007784314561065783,0.05436044213137643,-0.4473666650755062,0.3485405045366734,1.2683639830694,-1.512504175085072,0.5876892424323793,0.2643101853544203,-1.4026669476792284,-1.0934975183046596,-1.0375136010035175,0.07413307985065108,0.7831800812693355],\"y\":[-1.1465991161132274,1.173886753092942,0.9935590988114428,-1.3496216322143202,1.0079128171017764,0.8525477076061976,-0.6441094550645676,0.02016322300248813,-0.4831063810542337,-0.558034896844673,0.11333028843341025,-1.1110750845138486,0.8337509199592601,-2.776301220370997,-1.026446080210315,-1.7419816935075114,0.0683535866652536,-0.9776237720465044,1.4707963019960566,-0.9153044658196463,-2.1116003606141933,0.6685951843094474,0.0658678580511474,-1.5012042171618698,0.2866567638539752,-0.2648389467472101,-0.09962142928357105]}},\"id\":\"61ac5cdb-7274-4c3e-b1cb-c9d3a95196d6\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"axis_label\":\"median\",\"formatter\":{\"id\":\"9d9801fb-1bbd-410c-9623-79476cfaa8ac\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"307e4d89-741e-46ef-a598-b74b421ddf53\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"564164b2-c0d3-4af9-bf38-af57089cfbb9\",\"type\":\"BasicTicker\"}},\"id\":\"9a3ff281-2dff-4a74-a59a-afca55c2d2e8\",\"type\":\"LinearAxis\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.19773108001830575,1.094942822375068,-0.23885700767004167,0.9709868583261726,0.49160399090474854,-1.1101337749341333,0.5573681266227046,-1.0561568585133605,-0.07662062376911487,-2.840658711458262,0.28466877512132355,-0.3778877288988559,0.18443024578946285,-0.13408543778818846,2.38204107103276,2.419841609040222,0.26008785612709506,0.003677117591075754,0.5554326425466423,-0.4859885070208167,-0.3441116702541836,-0.6358410981425435,1.6894860812113148,1.8355995261930105,1.4883777348835,2.332159719113291,0.6653173783648078,-0.5082052562672649,1.3249610609402955,-1.787238054271912,-0.49625477688171465,-1.6429563351257739,-1.1830694297455835,0.9725292719747896,0.639325376393516,0.47487874500984767,-1.7964140592239564],\"y\":[0.6649478704715944,-0.9350396439504449,0.497740409834053,0.2931733105704744,0.8855575560554154,-1.4610698200123278,0.7157828685854063,-0.3728661616362994,1.1814345650892815,-0.42312006236134203,-0.039815599587455196,1.282564397411362,-1.131194340177999,1.067629708906566,1.5748707870138035,1.0898258802365735,-1.4063444084308228,0.9646890666944837,0.2964156031573052,-0.09943790848659127,0.6307873865879196,1.1115080262461001,1.7752163668528467,-0.04431491757471309,-1.0641352896928378,-0.22542000532203493,0.5204431831549122,0.19820280211365246,-0.5440235199785699,-1.7562117357256524,-0.34527192891437974,-0.0625271775960441,1.3403597175590076,-0.8276729284600616,-0.7697430171157307,-0.023907272107244575,0.42917186493149356]}},\"id\":\"be0d0ece-d399-4e66-86aa-43c98c84fc9a\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data_source\":{\"id\":\"c2c500c9-7202-4682-94b0-f1cd411ec325\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"6f1249fe-1fab-496e-96c9-2a9e8fd70cf9\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"b9462a58-3890-45bf-865e-39569e19b8d3\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"4b56302a-b926-4a9b-8096-e079979626d4\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"c76ca0da-73ff-47e6-a4f4-15f19ccef3cf\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ece7f2\"},\"line_color\":{\"value\":\"#ece7f2\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"ebdb7986-fe34-4fc7-ac4a-c9215d803154\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"58dc8bca-0c65-4e32-abe0-5ec6fe4d3c56\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"2c89094b-bda1-464a-9b99-0a5e1cd030c1\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"0f80e11e-89c3-42cd-9e17-4bb69c1caee4\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"19675708-0421-43da-afce-7cfdad26f1f8\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"plot\":{\"id\":\"6de5bd19-7c3c-4c91-84c1-9b3cf5ae1963\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"b5dbdac4-1556-47fc-ad3f-fb8d32ada128\",\"type\":\"SaveTool\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a6bddb\"},\"line_color\":{\"value\":\"#a6bddb\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"fdb27dd4-7ecc-4b65-a15f-bbd49254a7d1\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"f580ab27-65ce-4682-9eac-b44d8ffbf3fa\",\"type\":\"Circle\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"c0c131a7-3bbf-4366-9d1e-5c9a3b6120da\",\"type\":\"PanTool\"},{\"id\":\"919cdad5-38fb-419a-8b47-e946441c8335\",\"type\":\"WheelZoomTool\"},{\"id\":\"51194ac7-cad7-4b63-97d1-4d31326653e3\",\"type\":\"BoxZoomTool\"},{\"id\":\"b027548e-8355-4ee7-ab9c-c7123cdc18c8\",\"type\":\"SaveTool\"},{\"id\":\"0aa84047-6103-4c3b-95f5-96aef5e670f0\",\"type\":\"ResetTool\"},{\"id\":\"825adb98-e8cc-43eb-821b-640135b9ebe3\",\"type\":\"HelpTool\"}]},\"id\":\"6e5604a5-7600-46dc-83f0-4e90401676e4\",\"type\":\"Toolbar\"},{\"attributes\":{\"plot\":{\"id\":\"6de5bd19-7c3c-4c91-84c1-9b3cf5ae1963\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"8f3c4d62-1c9c-4302-875a-9e484709a86e\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"plot\":{\"id\":\"efae455e-828a-4d2f-b199-87002fc56e7d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"b027548e-8355-4ee7-ab9c-c7123cdc18c8\",\"type\":\"SaveTool\"},{\"attributes\":{\"below\":[{\"id\":\"121a7be4-e492-4ff6-92ec-0de7b3fd324e\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"48de2968-d024-42ba-a3bd-f67f017b6748\",\"type\":\"LinearAxis\"}],\"plot_height\":200,\"plot_width\":300,\"renderers\":[{\"id\":\"121a7be4-e492-4ff6-92ec-0de7b3fd324e\",\"type\":\"LinearAxis\"},{\"id\":\"b0619d77-9e00-4623-8bd4-265d395f45c3\",\"type\":\"Grid\"},{\"id\":\"48de2968-d024-42ba-a3bd-f67f017b6748\",\"type\":\"LinearAxis\"},{\"id\":\"31a5c50b-a568-4f8e-93bc-1eca782b4136\",\"type\":\"Grid\"},{\"id\":\"7458cc07-d646-4774-916b-cc97de4bb3c2\",\"type\":\"BoxAnnotation\"},{\"id\":\"4a5cdafd-8309-4a6c-9e75-4a800199f0ad\",\"type\":\"GlyphRenderer\"},{\"id\":\"ef21e867-e2bc-4664-a47d-32cc944d7672\",\"type\":\"GlyphRenderer\"},{\"id\":\"ef05a376-3169-42c5-9223-539f81fdd2be\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"60989a46-fecd-465d-9196-2669549bede5\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"06d88530-8a65-4afc-99c0-f500082568e6\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"6d5788d4-2178-49f0-98b4-115afd0b9d6e\",\"type\":\"Toolbar\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"3042e40a-234e-4b8d-84a4-4685dfe5a788\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"9c789320-0b5a-464d-8ff5-ef2ea7e780e6\",\"type\":\"DataRange1d\"}},\"id\":\"d619b33c-ebe3-4a07-8ee5-d494c0a2218d\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"a9be0ea6-32b5-4bb5-b0f6-9fe7578f5c2a\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"data_source\":{\"id\":\"b7cc0f8c-39b7-4e26-b4df-d09bd946572f\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"26283c7e-eb98-4def-b76c-ab63c56a6c22\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"4efae0af-3f5e-4460-88de-826e5561638e\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"3a199bd0-1e9e-4380-978d-1891208c4b25\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"4fbba2e8-8a70-4a74-9734-9fef28f0a63e\",\"type\":\"BasicTicker\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"9b1a06cc-6f89-4157-963d-b915bcdcee2a\",\"type\":\"Circle\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ece7f2\"},\"line_color\":{\"value\":\"#ece7f2\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"93721117-778b-452b-bd42-487682484805\",\"type\":\"Circle\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ece7f2\"},\"line_color\":{\"value\":\"#ece7f2\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"b445c2f1-0182-43c2-b292-baf0acbbc5fc\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"beaff516-26fb-4c3c-84ac-fa7287bc01d5\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"below\":[{\"id\":\"504de74d-67fe-4c04-9e04-a0d66f49c102\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"57d7bb3d-2b39-4d12-ac3b-f90e6f833430\",\"type\":\"LinearAxis\"}],\"plot_height\":200,\"plot_width\":300,\"renderers\":[{\"id\":\"504de74d-67fe-4c04-9e04-a0d66f49c102\",\"type\":\"LinearAxis\"},{\"id\":\"42aadb1c-e83f-4a16-bf05-cc1d7d6d89be\",\"type\":\"Grid\"},{\"id\":\"57d7bb3d-2b39-4d12-ac3b-f90e6f833430\",\"type\":\"LinearAxis\"},{\"id\":\"94267e44-949b-42a1-85a1-e4bf5cd91ff9\",\"type\":\"Grid\"},{\"id\":\"16fba15c-c2ff-463a-9a9f-72a296e10a84\",\"type\":\"BoxAnnotation\"},{\"id\":\"d85d9d21-f34e-42c9-a1fd-33080025e214\",\"type\":\"GlyphRenderer\"},{\"id\":\"611741da-c7d9-4a7d-8ea0-542e2da95626\",\"type\":\"GlyphRenderer\"},{\"id\":\"96c5a4f2-734e-431a-8972-7adae2f2fc65\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"4d8032e6-3a7d-460f-99c7-375bea86eab0\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"2b7adb6f-6f4c-4c67-a32f-04d11980ead0\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"5a18cead-babd-445b-91bb-c72bec31afbd\",\"type\":\"Toolbar\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"c946db46-3fbe-4bf9-b51f-34da79c235df\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"5e38e1e3-a311-4cf7-ba46-0e6d8bd0c422\",\"type\":\"DataRange1d\"}},\"id\":\"3815763e-da44-490f-83d4-5d0241c4ffdd\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"data_source\":{\"id\":\"bf7c3504-29ff-49ee-842c-4d44ef54cd68\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"f571d2a5-b3ee-4e68-addc-d8f5b552d03f\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"dfad1864-6bc3-4425-bc83-ec2155cd70be\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"985e37c3-ddda-44c1-88af-716bf73cd145\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"9029c300-834a-4a0f-8092-84a4d2472305\",\"type\":\"Circle\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.1196118505565118,0.6794648046410245,-0.2844737002657559,1.7870627584100762,0.14417544523106934,0.2521659612725212,0.3202081066720338,0.0888310458277947,-0.14290116350914994,1.1262915464792675,1.2020889758350275,0.17278206275142652,1.2037256979143227,0.6351632729860156,0.17667896078565407,-0.2922279246703844,-0.5451028956419868,0.9243462823605312,1.082817349922394,0.4114385170674937,-0.07927490265952405,0.8805461791378847,0.19149988321645103,0.8557037868928923,-0.2541269045980475,-0.5082702699479015,-0.14041270933933248,2.270478586784326,0.3534591234058084,-0.748518160275011,0.27426134856514767,-2.279542793179099,-0.49278933484691617,0.6394497458051915,1.0916069624094755,-0.2308885317596188,-0.42282117971507377],\"y\":[0.6649478704715944,-0.9350396439504449,0.497740409834053,0.2931733105704744,0.8855575560554154,-1.4610698200123278,0.7157828685854063,-0.3728661616362994,1.1814345650892815,-0.42312006236134203,-0.039815599587455196,1.282564397411362,-1.131194340177999,1.067629708906566,1.5748707870138035,1.0898258802365735,-1.4063444084308228,0.9646890666944837,0.2964156031573052,-0.09943790848659127,0.6307873865879196,1.1115080262461001,1.7752163668528467,-0.04431491757471309,-1.0641352896928378,-0.22542000532203493,0.5204431831549122,0.19820280211365246,-0.5440235199785699,-1.7562117357256524,-0.34527192891437974,-0.0625271775960441,1.3403597175590076,-0.8276729284600616,-0.7697430171157307,-0.023907272107244575,0.42917186493149356]}},\"id\":\"4e60e0fa-31fc-4779-8cc0-488f9949743e\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":{\"id\":\"a20abdd6-ebb2-41fb-a6af-1ed37fa3aa1c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"8415e3b7-08ea-4cfd-98df-c6569d3889ed\",\"type\":\"HelpTool\"},{\"attributes\":{\"plot\":{\"id\":\"3695ef45-073b-4f94-b9fe-68f5dabf9f1b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"df99a9b0-4c39-406e-b56a-2f8d84991354\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"05ff7600-157c-467e-a9d5-24bb3eb15da8\",\"type\":\"BasicTicker\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.19773108001830575,1.094942822375068,-0.23885700767004167,0.9709868583261726,0.49160399090474854,-1.1101337749341333,0.5573681266227046,-1.0561568585133605,-0.07662062376911487,-2.840658711458262,0.28466877512132355,-0.3778877288988559,0.18443024578946285,-0.13408543778818846,2.38204107103276,2.419841609040222,0.26008785612709506,0.003677117591075754,0.5554326425466423,-0.4859885070208167,-0.3441116702541836,-0.6358410981425435,1.6894860812113148,1.8355995261930105,1.4883777348835,2.332159719113291,0.6653173783648078,-0.5082052562672649,1.3249610609402955,-1.787238054271912,-0.49625477688171465,-1.6429563351257739,-1.1830694297455835,0.9725292719747896,0.639325376393516,0.47487874500984767,-1.7964140592239564],\"y\":[-0.19773108001830575,1.094942822375068,-0.23885700767004167,0.9709868583261726,0.49160399090474854,-1.1101337749341333,0.5573681266227046,-1.0561568585133605,-0.07662062376911487,-2.840658711458262,0.28466877512132355,-0.3778877288988559,0.18443024578946285,-0.13408543778818846,2.38204107103276,2.419841609040222,0.26008785612709506,0.003677117591075754,0.5554326425466423,-0.4859885070208167,-0.3441116702541836,-0.6358410981425435,1.6894860812113148,1.8355995261930105,1.4883777348835,2.332159719113291,0.6653173783648078,-0.5082052562672649,1.3249610609402955,-1.787238054271912,-0.49625477688171465,-1.6429563351257739,-1.1830694297455835,0.9725292719747896,0.639325376393516,0.47487874500984767,-1.7964140592239564]}},\"id\":\"346a47aa-c224-42d9-be0d-3bbba7939c6a\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"label\":{\"value\":\"C\"},\"renderers\":[{\"id\":\"3a199bd0-1e9e-4380-978d-1891208c4b25\",\"type\":\"GlyphRenderer\"}]},\"id\":\"201509b0-b25f-45e6-8dea-1720d2b865e6\",\"type\":\"LegendItem\"},{\"attributes\":{\"below\":[{\"id\":\"bcb2d19d-b6bf-4962-866c-bbaa96705c7e\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"f3f83b9c-4cad-4f2b-815c-fab85fb472f9\",\"type\":\"LinearAxis\"}],\"plot_height\":200,\"plot_width\":300,\"renderers\":[{\"id\":\"bcb2d19d-b6bf-4962-866c-bbaa96705c7e\",\"type\":\"LinearAxis\"},{\"id\":\"45b43e95-49b9-415c-b716-8e543d8b2989\",\"type\":\"Grid\"},{\"id\":\"f3f83b9c-4cad-4f2b-815c-fab85fb472f9\",\"type\":\"LinearAxis\"},{\"id\":\"2bad5b63-df9e-4a5f-a8e1-0b36460b02fd\",\"type\":\"Grid\"},{\"id\":\"e8078932-1ea0-4392-9b95-367f5ca15865\",\"type\":\"BoxAnnotation\"},{\"id\":\"a5926957-7971-4776-848c-fcfd6cfa4b8f\",\"type\":\"GlyphRenderer\"},{\"id\":\"9c818b6b-07b3-4ad5-bc66-d945fe1e3c16\",\"type\":\"GlyphRenderer\"},{\"id\":\"a81adf2b-e31b-4a51-acd3-147663163e81\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"ee093ce0-e1dc-4b39-bbb5-3f2752219ef3\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"f25f70eb-ed27-45b6-a563-88c5646cf167\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"c35d1216-a07f-4516-b3b0-cd6278076251\",\"type\":\"Toolbar\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"96dde553-0d9f-484f-be21-dd9a7ab69f12\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"13679a3b-01b7-4a24-8395-baa68b35c9b9\",\"type\":\"DataRange1d\"}},\"id\":\"f72a938e-39f8-41c7-bb5d-3bbb2e674e9b\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"callback\":null},\"id\":\"882a2c55-a2d7-444b-861e-d8a720a5e6d8\",\"type\":\"DataRange1d\"},{\"attributes\":{\"overlay\":{\"id\":\"816cd9ba-af57-4ae3-8a4f-3a072283d393\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"efae455e-828a-4d2f-b199-87002fc56e7d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"51194ac7-cad7-4b63-97d1-4d31326653e3\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"efa5d2bb-b7b6-4e31-a6a1-dda9ab43f2c2\",\"type\":\"PanTool\"},{\"id\":\"58cf9709-28b0-45fc-b930-3fe0043c41d3\",\"type\":\"WheelZoomTool\"},{\"id\":\"7c9cef57-4050-4e18-930f-74e96d825725\",\"type\":\"BoxZoomTool\"},{\"id\":\"341dd79c-5133-41c2-8f25-14efd77f8248\",\"type\":\"SaveTool\"},{\"id\":\"eeecaaee-5eba-485d-9a2d-07609f397686\",\"type\":\"ResetTool\"},{\"id\":\"1c2e756e-cade-4268-bf23-e0aad2a5bd3a\",\"type\":\"HelpTool\"}]},\"id\":\"501e7152-0f6c-4759-bead-aea2736fa29d\",\"type\":\"Toolbar\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ece7f2\"},\"line_color\":{\"value\":\"#ece7f2\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"58dce2dd-6780-4d9e-acd5-148b2882ad9a\",\"type\":\"Circle\"},{\"attributes\":{\"below\":[{\"id\":\"6fe818f8-65b9-4f89-bacf-f7ad58af05f4\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"f7e07ca1-9297-4d64-84a0-d74b3f54af80\",\"type\":\"LinearAxis\"}],\"plot_height\":200,\"plot_width\":300,\"renderers\":[{\"id\":\"6fe818f8-65b9-4f89-bacf-f7ad58af05f4\",\"type\":\"LinearAxis\"},{\"id\":\"f16600af-fe38-4cc0-8800-78542769e0b4\",\"type\":\"Grid\"},{\"id\":\"f7e07ca1-9297-4d64-84a0-d74b3f54af80\",\"type\":\"LinearAxis\"},{\"id\":\"1ba0ea0c-e50e-4629-a408-6f477b936f4e\",\"type\":\"Grid\"},{\"id\":\"d526d454-af01-4f17-b1db-1ffada56ea6b\",\"type\":\"BoxAnnotation\"},{\"id\":\"df11f7ff-24f7-48ac-a212-b34a16c6b1d2\",\"type\":\"GlyphRenderer\"},{\"id\":\"877c9ca1-600b-45c0-b6ff-bda6edcaa3ac\",\"type\":\"GlyphRenderer\"},{\"id\":\"ea698574-fb2d-40ee-ab6b-8bb90af470f2\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"68231a80-0650-492b-a369-fa99656887ca\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"58749c70-bf21-4d81-9580-cb0bfcfe3c6f\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"9843f04f-34f6-4f43-a3ec-557768ffc05f\",\"type\":\"Toolbar\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"95050729-3f41-479b-b48b-ba5d78ca072b\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"b31d0b87-d9b0-48c5-ac86-721c3ac5bec7\",\"type\":\"DataRange1d\"}},\"id\":\"3c18f690-a9e0-48d5-b127-dd49355a9a3d\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"axis_label\":\"amplitude\",\"formatter\":{\"id\":\"5e453657-7ba9-46de-9238-f55d78dc5172\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"2d765317-f2e1-46df-98e4-dbb230a1a404\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"92837ccb-5b30-43bb-9620-25ebfb0aaeb3\",\"type\":\"BasicTicker\"}},\"id\":\"d1242ae3-3969-4a8c-b48f-fb4f1d004e11\",\"type\":\"LinearAxis\"},{\"attributes\":{\"callback\":null},\"id\":\"ee5c259c-ed3e-47c0-9659-7799558fe4f6\",\"type\":\"DataRange1d\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2b8cbe\"},\"line_color\":{\"value\":\"#2b8cbe\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16f6b51d-4fd2-43a8-bc0d-ab0e08c58bcc\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"2d22d847-2fb2-447a-b0b3-239c03d11c95\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"e45fbff0-113a-443f-9537-34db8e1cf1d8\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"62b4003b-16e7-405a-8f14-45dc858ef3dd\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a6bddb\"},\"line_color\":{\"value\":\"#a6bddb\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"2c89094b-bda1-464a-9b99-0a5e1cd030c1\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"1b4362d9-a87d-4dec-baea-fbd96fa53bfb\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"below\":[{\"id\":\"98d2ebc1-37c6-48e1-8465-aff8efe0fc3d\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"3bcf3cd8-963b-407d-b5d8-c85d636f3431\",\"type\":\"LinearAxis\"}],\"plot_height\":200,\"plot_width\":300,\"renderers\":[{\"id\":\"98d2ebc1-37c6-48e1-8465-aff8efe0fc3d\",\"type\":\"LinearAxis\"},{\"id\":\"3cdd82a3-e818-43b2-8dc9-2555673580af\",\"type\":\"Grid\"},{\"id\":\"3bcf3cd8-963b-407d-b5d8-c85d636f3431\",\"type\":\"LinearAxis\"},{\"id\":\"349b2b00-50b4-4a6f-aa14-ff54b5ac4531\",\"type\":\"Grid\"},{\"id\":\"0c23288b-3541-4f7f-8006-410e449562fc\",\"type\":\"BoxAnnotation\"},{\"id\":\"f56f0a57-b455-4551-a9e1-bf40e1da0183\",\"type\":\"GlyphRenderer\"},{\"id\":\"30c5d275-b7c8-4157-926c-fc89a02652d7\",\"type\":\"GlyphRenderer\"},{\"id\":\"b11eab56-a6dc-42e9-b57d-3527f9b819fd\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"135491b4-97d6-412e-a840-2111bbec6fdd\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"b958d8b2-2ac5-4d12-a2e2-2a1854702e92\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"e67958ba-c6de-46e1-b219-e1cd1395f15c\",\"type\":\"Toolbar\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"ab54adf1-a8e4-4122-8726-8e6dd3877edb\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"961f0c1e-2933-400a-8e9b-5b399212acf3\",\"type\":\"DataRange1d\"}},\"id\":\"a20abdd6-ebb2-41fb-a6af-1ed37fa3aa1c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"plot\":{\"id\":\"dfe7076c-0398-4c47-ab2f-75e601064856\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"c1db007f-e4a7-4192-a381-11ac6978a89c\",\"type\":\"BasicTicker\"}},\"id\":\"8459e933-c6dc-48ec-88ff-8e3c5c112276\",\"type\":\"Grid\"},{\"attributes\":{\"plot\":{\"id\":\"a20abdd6-ebb2-41fb-a6af-1ed37fa3aa1c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"01080a33-536f-4f14-b4e3-6ad2df0294fa\",\"type\":\"SaveTool\"},{\"attributes\":{\"children\":[{\"id\":\"d619b33c-ebe3-4a07-8ee5-d494c0a2218d\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"307e4d89-741e-46ef-a598-b74b421ddf53\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"6de5bd19-7c3c-4c91-84c1-9b3cf5ae1963\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"95b728b9-961d-49d3-8232-8c7380c6c07b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}]},\"id\":\"2e480995-54b8-47c8-9101-171da6962c95\",\"type\":\"Row\"},{\"attributes\":{\"data_source\":{\"id\":\"400b5a25-ba0a-44cb-981e-75e00830e2f4\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18cb9501-bffb-4260-a183-21f3be90fbf3\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"9029c300-834a-4a0f-8092-84a4d2472305\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"77993d9b-b283-4758-9455-9d8fbb3c413b\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"60901ad3-6d36-45c1-9aa5-f1a903ede8b5\",\"type\":\"BasicTicker\"},{\"attributes\":{\"plot\":{\"id\":\"efae455e-828a-4d2f-b199-87002fc56e7d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"825adb98-e8cc-43eb-821b-640135b9ebe3\",\"type\":\"HelpTool\"},{\"attributes\":{\"plot\":{\"id\":\"e9f85ec8-f967-4387-be57-4fb66f06516c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"b1e78d7a-b249-4520-a748-e7f5c5441332\",\"type\":\"ResetTool\"},{\"attributes\":{\"plot\":{\"id\":\"6de5bd19-7c3c-4c91-84c1-9b3cf5ae1963\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"fa4da2ea-834a-4fed-8ae4-20b262a0ecb2\",\"type\":\"BasicTicker\"}},\"id\":\"6f416cb8-9a62-435f-8198-a36d17c49f7f\",\"type\":\"Grid\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"60989a46-fecd-465d-9196-2669549bede5\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"06d88530-8a65-4afc-99c0-f500082568e6\",\"type\":\"ToolEvents\"},{\"attributes\":{\"label\":{\"value\":\"A\"},\"renderers\":[{\"id\":\"6f5e652a-6f9c-4bd3-a885-bb53ae1a6834\",\"type\":\"GlyphRenderer\"}]},\"id\":\"91b64f6c-5134-413d-9703-58dee497e130\",\"type\":\"LegendItem\"},{\"attributes\":{\"axis_label\":\"amplitude\",\"formatter\":{\"id\":\"202bdecb-e36b-4bf2-a9b3-290a54b72d6a\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"2d765317-f2e1-46df-98e4-dbb230a1a404\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"a1fa7569-56cf-478c-ae2c-4e61ae53620f\",\"type\":\"BasicTicker\"}},\"id\":\"c1a800ab-16a9-4cb5-9e6a-c570c8f7e499\",\"type\":\"LinearAxis\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.1196118505565118,0.6794648046410245,-0.2844737002657559,1.7870627584100762,0.14417544523106934,0.2521659612725212,0.3202081066720338,0.0888310458277947,-0.14290116350914994,1.1262915464792675,1.2020889758350275,0.17278206275142652,1.2037256979143227,0.6351632729860156,0.17667896078565407,-0.2922279246703844,-0.5451028956419868,0.9243462823605312,1.082817349922394,0.4114385170674937,-0.07927490265952405,0.8805461791378847,0.19149988321645103,0.8557037868928923,-0.2541269045980475,-0.5082702699479015,-0.14041270933933248,2.270478586784326,0.3534591234058084,-0.748518160275011,0.27426134856514767,-2.279542793179099,-0.49278933484691617,0.6394497458051915,1.0916069624094755,-0.2308885317596188,-0.42282117971507377],\"y\":[-0.19773108001830575,1.094942822375068,-0.23885700767004167,0.9709868583261726,0.49160399090474854,-1.1101337749341333,0.5573681266227046,-1.0561568585133605,-0.07662062376911487,-2.840658711458262,0.28466877512132355,-0.3778877288988559,0.18443024578946285,-0.13408543778818846,2.38204107103276,2.419841609040222,0.26008785612709506,0.003677117591075754,0.5554326425466423,-0.4859885070208167,-0.3441116702541836,-0.6358410981425435,1.6894860812113148,1.8355995261930105,1.4883777348835,2.332159719113291,0.6653173783648078,-0.5082052562672649,1.3249610609402955,-1.787238054271912,-0.49625477688171465,-1.6429563351257739,-1.1830694297455835,0.9725292719747896,0.639325376393516,0.47487874500984767,-1.7964140592239564]}},\"id\":\"ac5adae2-4116-4fef-9d0b-64af4b96dd42\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"a24927bc-8a8d-4326-9a0d-6dae3a21861d\",\"type\":\"BasicTicker\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.5522374356751574,-0.4143645498944408,-0.41317315387808895,-0.19246398927288327,-1.0318010859655495,-0.38827277638119967,2.1990478385612606,-1.5874454163797436,-0.3441952049287384,-0.12161254367428234,0.03320495210193038,0.6834603974927128,0.12492547961801098,0.6731970386399261,-0.9958418533864718,0.3611788792015832,1.475243693430828,1.9165950734864714,-0.1337544718131653,-0.3992013335659354,-1.21857970108057,0.6285992363664762,-0.5969708962444663,-0.7085662496845496,0.6104893127397838,0.19773965119867123,-1.0154200187715117,0.98571967405196,-0.3413130899038527,-0.2062293174217435,-0.19160009048126952,-1.6548263483513936,1.0050418172348423,1.1390008258196742,-0.6141464838105846,1.3781966533265964],\"y\":[0.20594558276654182,-1.2554153684442084,-0.40164399063513095,0.09242509330252871,0.04123040698371918,-0.36641316136048224,-0.5119122558223772,0.311078555330146,-1.0634773780511901,0.14591650394501732,-0.37511240915105787,-0.027075985684064212,0.2588754016697983,0.4085202894746412,-0.298238250691532,-0.42239192281382937,-1.6536594461467802,-0.5656770333551288,0.3469237798707693,-0.3347014679705152,2.3695519629533894,0.4031702397477597,-1.2884943626632155,-0.02250301309847468,-0.373263467662209,0.9505561720041189,-1.4487194734470652,0.3186695925277304,0.44596270031897417,-0.7873329055043466,1.1920971553810555,1.6726749393172706,-0.27098499754692923,0.11452441533764834,-0.8487092417742174,1.545579256814223]}},\"id\":\"d8363deb-4daf-4d49-bba6-0a8aa8d54743\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"e9f85ec8-f967-4387-be57-4fb66f06516c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"efe55bb0-7c94-479f-863c-ebec36c0ded1\",\"type\":\"BasicTicker\"}},\"id\":\"72c86513-6c6d-41da-98e5-12e965c089b0\",\"type\":\"Grid\"},{\"attributes\":{\"callback\":null},\"id\":\"4ac4868b-7dd8-4c58-b149-170fa8914210\",\"type\":\"DataRange1d\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"15d8e3f7-c849-49ac-ae8f-0ccf3b11d4f7\",\"type\":\"BoxAnnotation\"},{\"attributes\":{},\"id\":\"b958d8b2-2ac5-4d12-a2e2-2a1854702e92\",\"type\":\"ToolEvents\"},{\"attributes\":{\"axis_label\":\"minimum\",\"formatter\":{\"id\":\"5058c16f-ab87-406a-9bbe-b7b43381c3ab\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"e9f85ec8-f967-4387-be57-4fb66f06516c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"f02de202-e6c6-4e2d-9bb8-4e6c697f21d6\",\"type\":\"BasicTicker\"}},\"id\":\"3f3c23d1-ea91-4697-b81d-afa37fcf08cc\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"fec70b49-7f56-436c-b564-0d84bceffcdb\",\"type\":\"ToolEvents\"},{\"attributes\":{\"children\":[{\"id\":\"f72a938e-39f8-41c7-bb5d-3bbb2e674e9b\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"c2a67f24-59c6-4d65-a206-54842d5310fb\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"efae455e-828a-4d2f-b199-87002fc56e7d\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"2d22d847-2fb2-447a-b0b3-239c03d11c95\",\"subtype\":\"Figure\",\"type\":\"Plot\"}]},\"id\":\"de6a97b4-cc0a-49e2-a713-ba8a64d30d93\",\"type\":\"Row\"},{\"attributes\":{},\"id\":\"564164b2-c0d3-4af9-bf38-af57089cfbb9\",\"type\":\"BasicTicker\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"f72a938e-39f8-41c7-bb5d-3bbb2e674e9b\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"21c3e827-4f56-4be8-88d6-df48db909c6d\",\"type\":\"BasicTicker\"}},\"id\":\"2bad5b63-df9e-4a5f-a8e1-0b36460b02fd\",\"type\":\"Grid\"},{\"attributes\":{\"axis_label\":\"minimum\",\"formatter\":{\"id\":\"688b9d40-b188-4379-9a85-d5f0ed080b51\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"a20abdd6-ebb2-41fb-a6af-1ed37fa3aa1c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"2c7fa085-9115-4537-af81-531568c2379a\",\"type\":\"BasicTicker\"}},\"id\":\"98d2ebc1-37c6-48e1-8465-aff8efe0fc3d\",\"type\":\"LinearAxis\"},{\"attributes\":{\"children\":[{\"id\":\"cd8230f8-3a3f-4c02-bfb1-2ba7e4bfd122\",\"type\":\"Row\"},{\"id\":\"de6a97b4-cc0a-49e2-a713-ba8a64d30d93\",\"type\":\"Row\"},{\"id\":\"2e480995-54b8-47c8-9101-171da6962c95\",\"type\":\"Row\"},{\"id\":\"da569b6e-14f5-4bff-99f2-f85fee8d1219\",\"type\":\"Row\"}]},\"id\":\"3808a08a-cbfe-4b66-b7c7-3e30e7597c1a\",\"type\":\"Column\"},{\"attributes\":{},\"id\":\"a1fa7569-56cf-478c-ae2c-4e61ae53620f\",\"type\":\"BasicTicker\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2b8cbe\"},\"line_color\":{\"value\":\"#2b8cbe\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"d4a7f66d-5cc0-4b0c-895b-bda67747ad76\",\"type\":\"Circle\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2b8cbe\"},\"line_color\":{\"value\":\"#2b8cbe\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"6f1249fe-1fab-496e-96c9-2a9e8fd70cf9\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"2d22d847-2fb2-447a-b0b3-239c03d11c95\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"31019a9b-f67e-4677-b69c-7bce51e75805\",\"type\":\"PanTool\"},{\"attributes\":{\"callback\":null},\"id\":\"643a44dd-c56f-473a-93ee-bb6d7bc9fa08\",\"type\":\"DataRange1d\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.34773506138307214,0.8539260728961936,0.48593130811763174,0.07176686883549224,0.12168357673402487,-1.498076646420606,0.42031506609009295,0.35422725549091916,-2.14618441921611,0.9233489489389598,-1.8752662709874306,-0.31261099681481064,-1.191109976314066,-0.38883320074540556,3.892825934343302,-2.010261760354966,1.72085273620119,1.264596578999643,0.3008678804790264,-1.691280953255143,1.0375038841499638,0.9922697914630533,1.2192465877516083,-0.5934630964618778,0.40071635662517774,-1.5465294412145238,-0.8778267491616462,-2.0260958149595996,2.785372760062306,-2.513580269790947,0.755614682692452,1.843090514622578,-1.7459444419235972,1.494420721069498,0.0758583412044921,-1.529838322451717],\"y\":[-0.5945160241092728,0.7811017365998931,-0.31962505843365874,-0.4942471575987246,0.3349391857946997,1.7225516850075475,-1.9731231096960362,-0.01767658927203139,0.16101695184496928,-0.8244660745923054,-0.5178668188428318,-1.2248971034591989,-0.5881401820989027,-0.5372604117386145,0.19143139048499394,0.7432552352207858,0.8632439453323602,-0.49371317751852417,-0.4175928455974618,2.3237649196748467,0.14590285265765693,-0.35501754876254366,-0.8394230907976706,0.07893941793251685,0.5796302326320795,-1.8022219963335209,-1.0099217846061237,-0.030524796781486997,0.02477843642929915,-0.9413421827485386,0.027731825062648784,-0.04665885921155053,0.10817236498215872,-0.48811587024576364,-0.17261673689927515,-0.06991012205170889]}},\"id\":\"c2c500c9-7202-4682-94b0-f1cd411ec325\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"fbe32506-766b-4f8d-a4eb-0a6f922e3d26\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"plot\":{\"id\":\"f72a938e-39f8-41c7-bb5d-3bbb2e674e9b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"3ffe99b8-cc2b-48c6-acc2-ef666fed6ddd\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"plot\":{\"id\":\"a20abdd6-ebb2-41fb-a6af-1ed37fa3aa1c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"2c7fa085-9115-4537-af81-531568c2379a\",\"type\":\"BasicTicker\"}},\"id\":\"3cdd82a3-e818-43b2-8dc9-2555673580af\",\"type\":\"Grid\"},{\"attributes\":{\"plot\":{\"id\":\"3695ef45-073b-4f94-b9fe-68f5dabf9f1b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"f65fb1f6-0b33-4715-8b9b-6aee67224d43\",\"type\":\"HelpTool\"},{\"attributes\":{},\"id\":\"4e24b961-8b62-4d3b-8f7e-83c4c4b6a3f9\",\"type\":\"BasicTicker\"},{\"attributes\":{\"data_source\":{\"id\":\"1e2e6044-5f30-4674-ab7e-cb64c3d0a197\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16f6b51d-4fd2-43a8-bc0d-ab0e08c58bcc\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"24bf72cd-37e3-4e3c-ae94-2e86798e92fc\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"e1c7c3a9-ff25-49ed-b331-b95d31e8cc75\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"axis_label\":\"maximum\",\"formatter\":{\"id\":\"92bd7a5d-cd9a-493b-bef9-bdd6714af4b4\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"3695ef45-073b-4f94-b9fe-68f5dabf9f1b\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"05ff7600-157c-467e-a9d5-24bb3eb15da8\",\"type\":\"BasicTicker\"}},\"id\":\"c690c75e-0daa-4141-99b1-776cd62ed398\",\"type\":\"LinearAxis\"},{\"attributes\":{\"axis_label\":\"minimum\",\"formatter\":{\"id\":\"1b4362d9-a87d-4dec-baea-fbd96fa53bfb\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"3815763e-da44-490f-83d4-5d0241c4ffdd\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"0ae90b45-df37-433b-bb5b-dc6257466129\",\"type\":\"BasicTicker\"}},\"id\":\"504de74d-67fe-4c04-9e04-a0d66f49c102\",\"type\":\"LinearAxis\"},{\"attributes\":{\"data_source\":{\"id\":\"eb9d3aff-5e9a-4fde-9573-37aa2cc283ec\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"d4a7f66d-5cc0-4b0c-895b-bda67747ad76\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"1aac3db0-b886-4043-98ae-ea074fb81cde\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"6f5e652a-6f9c-4bd3-a885-bb53ae1a6834\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"cb0515a6-38e1-40ff-b7ce-b8703da15f33\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.20594558276654182,-1.2554153684442084,-0.40164399063513095,0.09242509330252871,0.04123040698371918,-0.36641316136048224,-0.5119122558223772,0.311078555330146,-1.0634773780511901,0.14591650394501732,-0.37511240915105787,-0.027075985684064212,0.2588754016697983,0.4085202894746412,-0.298238250691532,-0.42239192281382937,-1.6536594461467802,-0.5656770333551288,0.3469237798707693,-0.3347014679705152,2.3695519629533894,0.4031702397477597,-1.2884943626632155,-0.02250301309847468,-0.373263467662209,0.9505561720041189,-1.4487194734470652,0.3186695925277304,0.44596270031897417,-0.7873329055043466,1.1920971553810555,1.6726749393172706,-0.27098499754692923,0.11452441533764834,-0.8487092417742174,1.545579256814223],\"y\":[-0.34773506138307214,0.8539260728961936,0.48593130811763174,0.07176686883549224,0.12168357673402487,-1.498076646420606,0.42031506609009295,0.35422725549091916,-2.14618441921611,0.9233489489389598,-1.8752662709874306,-0.31261099681481064,-1.191109976314066,-0.38883320074540556,3.892825934343302,-2.010261760354966,1.72085273620119,1.264596578999643,0.3008678804790264,-1.691280953255143,1.0375038841499638,0.9922697914630533,1.2192465877516083,-0.5934630964618778,0.40071635662517774,-1.5465294412145238,-0.8778267491616462,-2.0260958149595996,2.785372760062306,-2.513580269790947,0.755614682692452,1.843090514622578,-1.7459444419235972,1.494420721069498,0.0758583412044921,-1.529838322451717]}},\"id\":\"73efed97-1cb7-4c4a-a301-6ef4efd78a7c\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"a9f2a2cc-b5be-4871-ad6f-e3f413fb6efe\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"a20abdd6-ebb2-41fb-a6af-1ed37fa3aa1c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"fe4e5d15-dfb2-4056-95cf-b49486734350\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"a20abdd6-ebb2-41fb-a6af-1ed37fa3aa1c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"cb96f571-325f-49e0-930e-13f05e762a8f\",\"type\":\"BasicTicker\"}},\"id\":\"349b2b00-50b4-4a6f-aa14-ff54b5ac4531\",\"type\":\"Grid\"},{\"attributes\":{\"axis_label\":\"median\",\"formatter\":{\"id\":\"9487c0e2-ff7f-4e00-91d5-1a34e8fdd752\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"dfe7076c-0398-4c47-ab2f-75e601064856\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"5f6da807-dcd6-4b6d-9f8b-cba11e5f40dd\",\"type\":\"BasicTicker\"}},\"id\":\"786b25d3-d6cf-49f3-a11f-e0178c7ecd50\",\"type\":\"LinearAxis\"},{\"attributes\":{\"plot\":{\"id\":\"95b728b9-961d-49d3-8232-8c7380c6c07b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"1a3686ea-d07e-4777-b8f6-fe98faae7e9d\",\"type\":\"SaveTool\"},{\"attributes\":{\"plot\":{\"id\":\"f694d03f-39dd-4401-814f-9451acaf4ad3\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"b772b384-da51-4468-92ed-069c41d5652d\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"plot\":{\"id\":\"307e4d89-741e-46ef-a598-b74b421ddf53\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"9468ea3f-e20e-488d-8a5d-e067e7cf34ca\",\"type\":\"SaveTool\"},{\"attributes\":{\"plot\":{\"id\":\"6de5bd19-7c3c-4c91-84c1-9b3cf5ae1963\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"b708f6fe-c7ac-46b3-8f0d-d080fb99eaf6\",\"type\":\"ResetTool\"},{\"attributes\":{\"plot\":{\"id\":\"2d765317-f2e1-46df-98e4-dbb230a1a404\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"c943c608-d2bd-48c3-9af5-81e04935f243\",\"type\":\"PanTool\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.5522374356751574,-0.4143645498944408,-0.41317315387808895,-0.19246398927288327,-1.0318010859655495,-0.38827277638119967,2.1990478385612606,-1.5874454163797436,-0.3441952049287384,-0.12161254367428234,0.03320495210193038,0.6834603974927128,0.12492547961801098,0.6731970386399261,-0.9958418533864718,0.3611788792015832,1.475243693430828,1.9165950734864714,-0.1337544718131653,-0.3992013335659354,-1.21857970108057,0.6285992363664762,-0.5969708962444663,-0.7085662496845496,0.6104893127397838,0.19773965119867123,-1.0154200187715117,0.98571967405196,-0.3413130899038527,-0.2062293174217435,-0.19160009048126952,-1.6548263483513936,1.0050418172348423,1.1390008258196742,-0.6141464838105846,1.3781966533265964],\"y\":[-0.5522374356751574,-0.4143645498944408,-0.41317315387808895,-0.19246398927288327,-1.0318010859655495,-0.38827277638119967,2.1990478385612606,-1.5874454163797436,-0.3441952049287384,-0.12161254367428234,0.03320495210193038,0.6834603974927128,0.12492547961801098,0.6731970386399261,-0.9958418533864718,0.3611788792015832,1.475243693430828,1.9165950734864714,-0.1337544718131653,-0.3992013335659354,-1.21857970108057,0.6285992363664762,-0.5969708962444663,-0.7085662496845496,0.6104893127397838,0.19773965119867123,-1.0154200187715117,0.98571967405196,-0.3413130899038527,-0.2062293174217435,-0.19160009048126952,-1.6548263483513936,1.0050418172348423,1.1390008258196742,-0.6141464838105846,1.3781966533265964]}},\"id\":\"f33c4c20-869a-4ed9-86c5-24b7ac5c0277\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"ee093ce0-e1dc-4b39-bbb5-3f2752219ef3\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"96d1b0b8-14b3-4b72-b3e6-f02a695b2d45\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"label\":{\"value\":\"C\"},\"renderers\":[{\"id\":\"9add151f-e4b6-4e11-9434-b035ff777f48\",\"type\":\"GlyphRenderer\"}]},\"id\":\"29e657e4-d46e-430f-946b-36a21efd272b\",\"type\":\"LegendItem\"},{\"attributes\":{\"plot\":{\"id\":\"d619b33c-ebe3-4a07-8ee5-d494c0a2218d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"cedc29ef-5150-4b67-8833-4af6a4bdb2a7\",\"type\":\"SaveTool\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a6bddb\"},\"line_color\":{\"value\":\"#a6bddb\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1c0ffb16-1ebb-4720-acb6-884c93cd9f39\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"3c18f690-a9e0-48d5-b127-dd49355a9a3d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"ba4a4ef3-2e63-4158-9bf9-3e553cdb02c5\",\"type\":\"SaveTool\"},{\"attributes\":{\"plot\":{\"id\":\"f694d03f-39dd-4401-814f-9451acaf4ad3\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"985cb468-c26f-486b-9f47-0ec6f3a0c8ff\",\"type\":\"HelpTool\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"95b728b9-961d-49d3-8232-8c7380c6c07b\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"9ec888f4-b180-429c-89c8-a89d968214bf\",\"type\":\"BasicTicker\"}},\"id\":\"c2426035-a913-436b-ab7d-593795503ff8\",\"type\":\"Grid\"},{\"attributes\":{\"plot\":{\"id\":\"2d765317-f2e1-46df-98e4-dbb230a1a404\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"4c839421-a65d-44bd-9aaa-e5730a2d8d1a\",\"type\":\"HelpTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"dfad1864-6bc3-4425-bc83-ec2155cd70be\",\"type\":\"Circle\"},{\"attributes\":{\"overlay\":{\"id\":\"098bbf3a-056a-4cbe-b496-bcfee9e841b8\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"e9f85ec8-f967-4387-be57-4fb66f06516c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"a2d269b5-bf74-4001-bed9-51631236469b\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"plot\":{\"id\":\"3695ef45-073b-4f94-b9fe-68f5dabf9f1b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"590df6b6-6a32-48e6-8d6f-cb877a5cdd92\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"fa4da2ea-834a-4fed-8ae4-20b262a0ecb2\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"5f6da807-dcd6-4b6d-9f8b-cba11e5f40dd\",\"type\":\"BasicTicker\"},{\"attributes\":{\"plot\":{\"id\":\"2d22d847-2fb2-447a-b0b3-239c03d11c95\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"8f513dad-b92f-45bf-9e7a-2e143af43d25\",\"type\":\"HelpTool\"},{\"attributes\":{\"data_source\":{\"id\":\"06fddc0e-66e8-4f0a-989e-c2b9a7983ec6\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"d6bef29b-a5d2-4a01-9c6d-83b76e1b467c\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"7f9ecbad-8845-405f-a9f4-c67a23eae7fc\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"a5926957-7971-4776-848c-fcfd6cfa4b8f\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"ca0fe629-de55-4a66-bdf5-0d6b147576d7\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"callback\":null},\"id\":\"96dde553-0d9f-484f-be21-dd9a7ab69f12\",\"type\":\"DataRange1d\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a6bddb\"},\"line_color\":{\"value\":\"#a6bddb\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"b9cf220e-760c-4c45-943a-3df11a8a5fb4\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"d8363deb-4daf-4d49-bba6-0a8aa8d54743\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"5d8649c5-3d60-4036-9186-847a9ca055f2\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"bd99e92b-46a8-42e1-8075-d06b5faf58ce\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"df11f7ff-24f7-48ac-a212-b34a16c6b1d2\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"b19b8fac-8738-440f-aa2a-5e25dffd0eac\",\"type\":\"Circle\"},{\"attributes\":{\"overlay\":{\"id\":\"d526d454-af01-4f17-b1db-1ffada56ea6b\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"3c18f690-a9e0-48d5-b127-dd49355a9a3d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"5d14286a-249b-4b7d-a871-2a32c9d441d0\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ece7f2\"},\"line_color\":{\"value\":\"#ece7f2\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"5c37ae5d-50e7-4038-808e-5d56d01263dc\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"40fbac4a-0e33-4489-8a04-a4011a961f14\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"callback\":null},\"id\":\"ec3806ef-75a0-422e-b9b4-572a0a0f8b7a\",\"type\":\"DataRange1d\"},{\"attributes\":{\"label\":{\"value\":\"C\"},\"renderers\":[{\"id\":\"b65bbf60-4fd6-4940-8e33-63ba6407aac8\",\"type\":\"GlyphRenderer\"}]},\"id\":\"0fa09fd1-9659-465a-b059-ac25b04e8d88\",\"type\":\"LegendItem\"},{\"attributes\":{\"plot\":{\"id\":\"f72a938e-39f8-41c7-bb5d-3bbb2e674e9b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"11af4a25-cfad-4974-a0c2-b9e267dc163e\",\"type\":\"SaveTool\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2b8cbe\"},\"line_color\":{\"value\":\"#2b8cbe\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"b05c582c-9e42-4fb6-be95-7e0e00ffbd41\",\"type\":\"Circle\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a6bddb\"},\"line_color\":{\"value\":\"#a6bddb\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"ca6cfad5-770c-4d2b-b4df-e181dd357970\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"fee7d5b5-1b18-4246-9a79-0c197bae9c48\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"ca6cfad5-770c-4d2b-b4df-e181dd357970\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"c18d8703-cb8a-434b-a7c0-19789432b558\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"aab23094-a33b-401c-a87e-b0c1c0e30d5d\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null},\"id\":\"b0dc5443-5f6a-49ac-85f0-8740b0deab02\",\"type\":\"DataRange1d\"},{\"attributes\":{\"data_source\":{\"id\":\"61ac5cdb-7274-4c3e-b1cb-c9d3a95196d6\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"2f0c03fc-fc4b-4329-b163-1dbd6cad02ed\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"265adb08-bf3e-457f-a030-2559085b943d\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"0f35357a-8607-4bcf-a790-cb85eabe5fb8\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"945e71dc-0d10-43a7-9e85-695585340e5d\",\"type\":\"PanTool\"},{\"id\":\"892137c4-bfc7-4a81-9805-dc43171a8b17\",\"type\":\"WheelZoomTool\"},{\"id\":\"9e93adc7-04db-4311-a23f-f53103fdde85\",\"type\":\"BoxZoomTool\"},{\"id\":\"1a3686ea-d07e-4777-b8f6-fe98faae7e9d\",\"type\":\"SaveTool\"},{\"id\":\"ed88054a-d15b-4dbb-85a4-447e12f3bdc2\",\"type\":\"ResetTool\"},{\"id\":\"7cd18751-0ed6-4c4a-a662-5c5be5518bca\",\"type\":\"HelpTool\"}]},\"id\":\"58c806e2-8b3b-4437-a420-1667012c148d\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"0b87fd63-0880-43e8-ad1b-29957280bc57\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"cb5f5ce1-fd1b-45db-8f95-2c5173c19398\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"dfe7076c-0398-4c47-ab2f-75e601064856\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"f56cfa68-6828-4846-a779-c56fd9b94744\",\"type\":\"SaveTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1c3b1ec6-20db-458a-a02f-6b163bcb9930\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"307e4d89-741e-46ef-a598-b74b421ddf53\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"53b0a529-1142-489e-bf0a-09cabae0a9cc\",\"type\":\"BasicTicker\"}},\"id\":\"aeab8bdd-842d-4ffd-bbf4-583fa406dcd6\",\"type\":\"Grid\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a6bddb\"},\"line_color\":{\"value\":\"#a6bddb\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"f571d2a5-b3ee-4e68-addc-d8f5b552d03f\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16937e87-36ce-4f47-aa92-806b3fdb17e9\",\"type\":\"Circle\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.526852866308911,-0.8752193214893524,-1.279437347391582,0.7159856272756318,-0.11752415012450136,0.23491964221007589,-0.48902337660002154,-0.3426098271304946,0.2469358215529219,-1.0879159519352635,-0.6428780763315476,0.52575427954955,-0.14029191361748725,-0.1504818617793574,0.01138756270726347,1.7108612240499872,0.9053328238014203,-0.8078266321767689,-1.6960345072902205,-1.161850597189768,-0.9761762324608795,-1.2924972083874928,-0.015872685464337212,-0.25295717134672013,0.04722232458304732,-0.47318007675024887,-1.0565810481732207],\"y\":[-2.328609613834153,0.499646780212785,1.6082952400234942,1.2458789708723745,-1.0961821690334586,1.382026941847684,-0.4538441219949615,1.4395844410802678,-0.3049243650356835,0.14523594074878604,1.4748096535386808,-0.5121485960965696,-0.8788913750369364,-1.5181389669792453,0.0007784314561065783,0.05436044213137643,-0.4473666650755062,0.3485405045366734,1.2683639830694,-1.512504175085072,0.5876892424323793,0.2643101853544203,-1.4026669476792284,-1.0934975183046596,-1.0375136010035175,0.07413307985065108,0.7831800812693355]}},\"id\":\"1e726cdb-5856-490b-bbb1-6c340022acdd\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a6bddb\"},\"line_color\":{\"value\":\"#a6bddb\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"5be0ece6-9ba7-4734-93ce-b0502e8a63c6\",\"type\":\"Circle\"},{\"attributes\":{\"label\":{\"value\":\"B\"},\"renderers\":[{\"id\":\"19675708-0421-43da-afce-7cfdad26f1f8\",\"type\":\"GlyphRenderer\"}]},\"id\":\"f3416424-5c69-4721-ac25-35bbaf92f65d\",\"type\":\"LegendItem\"},{\"attributes\":{\"overlay\":{\"id\":\"246e224d-6479-454d-93f8-3deafcd636d0\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"2d22d847-2fb2-447a-b0b3-239c03d11c95\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"6f4d5f6d-596a-435c-849f-64a35fa2cbcb\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"callback\":null},\"id\":\"1a9fa0dc-ea82-4894-8f09-da1a0ffff697\",\"type\":\"DataRange1d\"},{\"attributes\":{\"callback\":null},\"id\":\"ab54adf1-a8e4-4122-8726-8e6dd3877edb\",\"type\":\"DataRange1d\"},{\"attributes\":{\"plot\":{\"id\":\"2d22d847-2fb2-447a-b0b3-239c03d11c95\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"7fdf6dbd-4fbf-471a-b554-0306ca59a14e\",\"type\":\"ResetTool\"},{\"attributes\":{\"data_source\":{\"id\":\"a7bb1ea5-04f3-4b62-a01d-bc7c50ec843d\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"e2452f3e-95de-4ea1-a347-1757c5fdff75\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"46dff6a5-8bdc-4000-9a5f-d430f87954d5\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"b7f2530f-b1ef-446d-a08d-8924f7341a63\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ece7f2\"},\"line_color\":{\"value\":\"#ece7f2\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"9110f38e-b0e0-41fd-839c-63f81e22c792\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"b9462a58-3890-45bf-865e-39569e19b8d3\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"58749c70-bf21-4d81-9580-cb0bfcfe3c6f\",\"type\":\"ToolEvents\"},{\"attributes\":{},\"id\":\"0ac113e2-21ec-4211-9bc1-c4818edad36c\",\"type\":\"BasicTicker\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"82466a79-9e9b-484a-accf-dfb826e17fb2\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"11153baa-b643-4cbd-9cd0-3d3022dc0b63\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"5be0ece6-9ba7-4734-93ce-b0502e8a63c6\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"f580ab27-65ce-4682-9eac-b44d8ffbf3fa\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"dff0bf41-bf2e-47bf-a904-d4dcf515ab12\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"label\":{\"value\":\"B\"},\"renderers\":[{\"id\":\"dff0bf41-bf2e-47bf-a904-d4dcf515ab12\",\"type\":\"GlyphRenderer\"}]},\"id\":\"b31a464d-473a-4768-a816-655cd7f60569\",\"type\":\"LegendItem\"},{\"attributes\":{},\"id\":\"0ae90b45-df37-433b-bb5b-dc6257466129\",\"type\":\"BasicTicker\"},{\"attributes\":{\"overlay\":{\"id\":\"3ff1dc68-08de-4494-b133-18e35e767b69\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"95b728b9-961d-49d3-8232-8c7380c6c07b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"9e93adc7-04db-4311-a23f-f53103fdde85\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"plot\":{\"id\":\"2d765317-f2e1-46df-98e4-dbb230a1a404\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"9e8f293e-6096-420c-a70c-d0bc9df838e9\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"overlay\":{\"id\":\"a56a05c2-5855-4711-a46b-77d52ea3051a\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"c2a67f24-59c6-4d65-a206-54842d5310fb\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"7c9cef57-4050-4e18-930f-74e96d825725\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"plot\":{\"id\":\"e9f85ec8-f967-4387-be57-4fb66f06516c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"bc774d37-d1ea-49d9-b90a-bf157175244a\",\"type\":\"HelpTool\"},{\"attributes\":{\"plot\":{\"id\":\"efae455e-828a-4d2f-b199-87002fc56e7d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"c0c131a7-3bbf-4366-9d1e-5c9a3b6120da\",\"type\":\"PanTool\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a6bddb\"},\"line_color\":{\"value\":\"#a6bddb\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"276fdc84-84f7-4461-8cd1-e1cb9a1c74c8\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"594effa8-c780-4ce0-bef3-8d49f179d83c\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"6de5bd19-7c3c-4c91-84c1-9b3cf5ae1963\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"16bfbc2f-2679-421b-b7c1-4530cdbe39dd\",\"type\":\"HelpTool\"},{\"attributes\":{\"axis_label\":\"minimum\",\"formatter\":{\"id\":\"c6a91f19-f661-4966-9937-fa6816105e12\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"dfe7076c-0398-4c47-ab2f-75e601064856\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"c1db007f-e4a7-4192-a381-11ac6978a89c\",\"type\":\"BasicTicker\"}},\"id\":\"a1fea601-c288-433a-a1e8-359852c166dc\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"03705855-3e2e-48ba-974c-cc4ca939623e\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"data_source\":{\"id\":\"be0d0ece-d399-4e66-86aa-43c98c84fc9a\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"6e6c5b54-0787-4f50-b225-fd7e2d901897\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"5a3f451f-9aec-4f25-a2a2-3a781fa432ad\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"96c5a4f2-734e-431a-8972-7adae2f2fc65\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"41104d8f-bcda-4e65-8053-f1f2b9bc13dc\",\"type\":\"ToolEvents\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"0f80e11e-89c3-42cd-9e17-4bb69c1caee4\",\"type\":\"Circle\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a6bddb\"},\"line_color\":{\"value\":\"#a6bddb\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"2a1cbb52-9cb4-4b13-ba5c-45dcb094e27f\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"5a524480-e51c-4744-882d-3b039d909bba\",\"type\":\"Circle\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a6bddb\"},\"line_color\":{\"value\":\"#a6bddb\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"203e61a2-72a9-4893-acbc-5b9d442a129b\",\"type\":\"Circle\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2b8cbe\"},\"line_color\":{\"value\":\"#2b8cbe\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"cdb086f9-4049-4a6c-a906-840e1854bae1\",\"type\":\"Circle\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"43f9863b-6960-4b09-89c6-ba457ea38588\",\"type\":\"PanTool\"},{\"id\":\"d9df9a31-6d39-4e92-878f-0d64f058b423\",\"type\":\"WheelZoomTool\"},{\"id\":\"7e73cf80-0a59-4dcc-947f-c61055668c9b\",\"type\":\"BoxZoomTool\"},{\"id\":\"590df6b6-6a32-48e6-8d6f-cb877a5cdd92\",\"type\":\"SaveTool\"},{\"id\":\"df99a9b0-4c39-406e-b56a-2f8d84991354\",\"type\":\"ResetTool\"},{\"id\":\"f65fb1f6-0b33-4715-8b9b-6aee67224d43\",\"type\":\"HelpTool\"}]},\"id\":\"6c7d4c57-b249-4562-baba-8b2119c70bd2\",\"type\":\"Toolbar\"},{\"attributes\":{\"callback\":null},\"id\":\"1e4bb8ab-dee5-4a2a-9956-afaee4f2dcea\",\"type\":\"DataRange1d\"},{\"attributes\":{\"plot\":{\"id\":\"c2a67f24-59c6-4d65-a206-54842d5310fb\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"eeecaaee-5eba-485d-9a2d-07609f397686\",\"type\":\"ResetTool\"},{\"attributes\":{\"plot\":{\"id\":\"3815763e-da44-490f-83d4-5d0241c4ffdd\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"2b190f90-dab9-4262-a118-c16257584c10\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"data_source\":{\"id\":\"23f71511-7004-4636-930c-50b2d3a1f557\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"fc51d6de-374d-4acd-b7f6-356a5ca65607\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"e8813ece-a172-4445-8701-a6002388440f\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"72d922a2-a549-4a5f-a5fd-caa38f74285b\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"24bf72cd-37e3-4e3c-ae94-2e86798e92fc\",\"type\":\"Circle\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"efae455e-828a-4d2f-b199-87002fc56e7d\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"6cf4947a-1168-4df7-a626-0dca61a9025d\",\"type\":\"BasicTicker\"}},\"id\":\"8815e88c-7a48-4f67-ba62-f7de456e9b63\",\"type\":\"Grid\"},{\"attributes\":{\"plot\":{\"id\":\"d619b33c-ebe3-4a07-8ee5-d494c0a2218d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"0f20259e-3f03-42ff-aee4-05823ec38299\",\"type\":\"HelpTool\"},{\"attributes\":{},\"id\":\"1e0af30f-2956-4fb4-a61f-967846bc5819\",\"type\":\"BasicTicker\"},{\"attributes\":{\"axis_label\":\"minimum\",\"formatter\":{\"id\":\"4f187388-d54a-4204-80eb-7c87e92bf1a5\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"e9f85ec8-f967-4387-be57-4fb66f06516c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"efe55bb0-7c94-479f-863c-ebec36c0ded1\",\"type\":\"BasicTicker\"}},\"id\":\"0c4b9e70-5c22-4bd9-aaa5-0cde603193fb\",\"type\":\"LinearAxis\"},{\"attributes\":{\"data_source\":{\"id\":\"cd3caed4-bcb4-4376-9996-6254893bf706\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"b05c582c-9e42-4fb6-be95-7e0e00ffbd41\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"0fc41629-d626-4c2a-8979-19f288b03eb6\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"9ff9b84e-9788-4947-8378-feb50f040b49\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2b8cbe\"},\"line_color\":{\"value\":\"#2b8cbe\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"c217ef5b-c94a-4095-8434-dda3e601e0cc\",\"type\":\"Circle\"},{\"attributes\":{\"callback\":null},\"id\":\"a05e2cae-ab55-4297-bd15-630e28b4c140\",\"type\":\"DataRange1d\"},{\"attributes\":{\"data_source\":{\"id\":\"f33c4c20-869a-4ed9-86c5-24b7ac5c0277\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"1160a932-ad9f-4c9c-890e-09e14301a00a\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"3cae82ca-a5c4-48e4-bcb4-6367aa774507\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"ccd2d0f4-1ca2-4a26-ad43-6e3b4361add6\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"c943c608-d2bd-48c3-9af5-81e04935f243\",\"type\":\"PanTool\"},{\"id\":\"9e8f293e-6096-420c-a70c-d0bc9df838e9\",\"type\":\"WheelZoomTool\"},{\"id\":\"b78a5d5a-6295-4a55-a1ee-def2e7133591\",\"type\":\"BoxZoomTool\"},{\"id\":\"5212c3ee-631d-4c7c-9cb9-c80554c5a9ab\",\"type\":\"SaveTool\"},{\"id\":\"bbcff10d-8986-41e3-949a-c79c8463e6f9\",\"type\":\"ResetTool\"},{\"id\":\"4c839421-a65d-44bd-9aaa-e5730a2d8d1a\",\"type\":\"HelpTool\"}]},\"id\":\"c3ba4e45-ecb0-4ffb-a4db-189cbf7dda8e\",\"type\":\"Toolbar\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"098bbf3a-056a-4cbe-b496-bcfee9e841b8\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1aac3db0-b886-4043-98ae-ea074fb81cde\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"265adb08-bf3e-457f-a030-2559085b943d\",\"type\":\"Circle\"},{\"attributes\":{\"axis_label\":\"amplitude\",\"formatter\":{\"id\":\"3c447834-00fa-49bb-af6b-ac2ac39fa704\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"3695ef45-073b-4f94-b9fe-68f5dabf9f1b\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"78288525-9c58-4f74-addd-e6b386d7d1f4\",\"type\":\"BasicTicker\"}},\"id\":\"3509ae69-e90c-4f1e-a148-8bce5d238284\",\"type\":\"LinearAxis\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ece7f2\"},\"line_color\":{\"value\":\"#ece7f2\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"e2452f3e-95de-4ea1-a347-1757c5fdff75\",\"type\":\"Circle\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.526852866308911,-0.8752193214893524,-1.279437347391582,0.7159856272756318,-0.11752415012450136,0.23491964221007589,-0.48902337660002154,-0.3426098271304946,0.2469358215529219,-1.0879159519352635,-0.6428780763315476,0.52575427954955,-0.14029191361748725,-0.1504818617793574,0.01138756270726347,1.7108612240499872,0.9053328238014203,-0.8078266321767689,-1.6960345072902205,-1.161850597189768,-0.9761762324608795,-1.2924972083874928,-0.015872685464337212,-0.25295717134672013,0.04722232458304732,-0.47318007675024887,-1.0565810481732207],\"y\":[-1.1465991161132274,1.173886753092942,0.9935590988114428,-1.3496216322143202,1.0079128171017764,0.8525477076061976,-0.6441094550645676,0.02016322300248813,-0.4831063810542337,-0.558034896844673,0.11333028843341025,-1.1110750845138486,0.8337509199592601,-2.776301220370997,-1.026446080210315,-1.7419816935075114,0.0683535866652536,-0.9776237720465044,1.4707963019960566,-0.9153044658196463,-2.1116003606141933,0.6685951843094474,0.0658678580511474,-1.5012042171618698,0.2866567638539752,-0.2648389467472101,-0.09962142928357105]}},\"id\":\"fee7d5b5-1b18-4246-9a79-0c197bae9c48\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.6649478704715944,-0.9350396439504449,0.497740409834053,0.2931733105704744,0.8855575560554154,-1.4610698200123278,0.7157828685854063,-0.3728661616362994,1.1814345650892815,-0.42312006236134203,-0.039815599587455196,1.282564397411362,-1.131194340177999,1.067629708906566,1.5748707870138035,1.0898258802365735,-1.4063444084308228,0.9646890666944837,0.2964156031573052,-0.09943790848659127,0.6307873865879196,1.1115080262461001,1.7752163668528467,-0.04431491757471309,-1.0641352896928378,-0.22542000532203493,0.5204431831549122,0.19820280211365246,-0.5440235199785699,-1.7562117357256524,-0.34527192891437974,-0.0625271775960441,1.3403597175590076,-0.8276729284600616,-0.7697430171157307,-0.023907272107244575,0.42917186493149356],\"y\":[-0.1960272004109043,-1.0502538702823216,-2.104502380351223,0.9834286540359315,2.9470659888894524,0.5615078368199237,1.2126928144027498,-0.5130204474240554,0.03813700121225621,-0.22634596391902523,0.5332205390130769,1.9743017181291302,-1.4078036410854593,-0.6683425071449056,1.4054068711862893,-2.7541524947725886,0.735803981843832,0.31108810546388604,0.3317130386192693,-0.37182999791027666,0.516990279377022,1.523855858724932,0.04814645234497029,-1.1369853492327395,-1.8808281218387493,-1.010394348071007,-0.41151461458339106,0.6871989611322668,1.9213677888152485,1.1345560479863577,-0.7215113955704764,-0.4749964259240754,0.005625486011900252,1.7731427091388345,1.7056455414803895,0.3053527691764295,-0.6330181831521638]}},\"id\":\"7320bb22-db51-4ec0-9667-3f9a67ee581f\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"bc04201d-4eda-4406-80ab-6cfa55b8f52c\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"5058c16f-ab87-406a-9bbe-b7b43381c3ab\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"plot\":{\"id\":\"f694d03f-39dd-4401-814f-9451acaf4ad3\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"fb7d42ed-b10a-4929-b6e7-f84020fef6c8\",\"type\":\"ResetTool\"},{\"attributes\":{\"plot\":{\"id\":\"c2a67f24-59c6-4d65-a206-54842d5310fb\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"796e0367-442d-4da7-9863-d9555285a21f\",\"type\":\"BasicTicker\"}},\"id\":\"dd1dec46-1bda-48b6-bf48-0882d0222c70\",\"type\":\"Grid\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.20594558276654182,-1.2554153684442084,-0.40164399063513095,0.09242509330252871,0.04123040698371918,-0.36641316136048224,-0.5119122558223772,0.311078555330146,-1.0634773780511901,0.14591650394501732,-0.37511240915105787,-0.027075985684064212,0.2588754016697983,0.4085202894746412,-0.298238250691532,-0.42239192281382937,-1.6536594461467802,-0.5656770333551288,0.3469237798707693,-0.3347014679705152,2.3695519629533894,0.4031702397477597,-1.2884943626632155,-0.02250301309847468,-0.373263467662209,0.9505561720041189,-1.4487194734470652,0.3186695925277304,0.44596270031897417,-0.7873329055043466,1.1920971553810555,1.6726749393172706,-0.27098499754692923,0.11452441533764834,-0.8487092417742174,1.545579256814223],\"y\":[-0.5945160241092728,0.7811017365998931,-0.31962505843365874,-0.4942471575987246,0.3349391857946997,1.7225516850075475,-1.9731231096960362,-0.01767658927203139,0.16101695184496928,-0.8244660745923054,-0.5178668188428318,-1.2248971034591989,-0.5881401820989027,-0.5372604117386145,0.19143139048499394,0.7432552352207858,0.8632439453323602,-0.49371317751852417,-0.4175928455974618,2.3237649196748467,0.14590285265765693,-0.35501754876254366,-0.8394230907976706,0.07893941793251685,0.5796302326320795,-1.8022219963335209,-1.0099217846061237,-0.030524796781486997,0.02477843642929915,-0.9413421827485386,0.027731825062648784,-0.04665885921155053,0.10817236498215872,-0.48811587024576364,-0.17261673689927515,-0.06991012205170889]}},\"id\":\"4d414786-680f-4ea8-970d-c49755f1f459\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null},\"id\":\"cc4eefef-616f-4e20-9fee-b50ca975ccff\",\"type\":\"DataRange1d\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ece7f2\"},\"line_color\":{\"value\":\"#ece7f2\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"7aa7a214-8ec8-4162-9833-b8634308b3e9\",\"type\":\"Circle\"},{\"attributes\":{\"below\":[{\"id\":\"77a8e318-43f6-415f-8072-4655113b0ca1\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"e65b9b12-98ad-4a9e-80cb-fc19ca27ec80\",\"type\":\"LinearAxis\"}],\"plot_height\":200,\"plot_width\":300,\"renderers\":[{\"id\":\"77a8e318-43f6-415f-8072-4655113b0ca1\",\"type\":\"LinearAxis\"},{\"id\":\"42f840c4-7686-4c52-98f0-3535c153b0bf\",\"type\":\"Grid\"},{\"id\":\"e65b9b12-98ad-4a9e-80cb-fc19ca27ec80\",\"type\":\"LinearAxis\"},{\"id\":\"8815e88c-7a48-4f67-ba62-f7de456e9b63\",\"type\":\"Grid\"},{\"id\":\"816cd9ba-af57-4ae3-8a4f-3a072283d393\",\"type\":\"BoxAnnotation\"},{\"id\":\"b56b18f0-82dc-4824-a35b-c4557474b30e\",\"type\":\"GlyphRenderer\"},{\"id\":\"6253aaf6-955b-4977-9037-3d34ff7327a2\",\"type\":\"GlyphRenderer\"},{\"id\":\"b7f2530f-b1ef-446d-a08d-8924f7341a63\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"ae32e65e-de80-4e96-b507-477c542c4a74\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"05f45b6c-c642-46a5-a3bb-d1aca76d762d\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"6e5604a5-7600-46dc-83f0-4e90401676e4\",\"type\":\"Toolbar\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"38c6c0ff-170e-469c-a847-82b83fb769b7\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"643a44dd-c56f-473a-93ee-bb6d7bc9fa08\",\"type\":\"DataRange1d\"}},\"id\":\"efae455e-828a-4d2f-b199-87002fc56e7d\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"246e224d-6479-454d-93f8-3deafcd636d0\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"overlay\":{\"id\":\"ac1c5bf1-3810-4d5e-bdc5-722ea8c4adcf\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"3695ef45-073b-4f94-b9fe-68f5dabf9f1b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"7e73cf80-0a59-4dcc-947f-c61055668c9b\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.20594558276654182,-1.2554153684442084,-0.40164399063513095,0.09242509330252871,0.04123040698371918,-0.36641316136048224,-0.5119122558223772,0.311078555330146,-1.0634773780511901,0.14591650394501732,-0.37511240915105787,-0.027075985684064212,0.2588754016697983,0.4085202894746412,-0.298238250691532,-0.42239192281382937,-1.6536594461467802,-0.5656770333551288,0.3469237798707693,-0.3347014679705152,2.3695519629533894,0.4031702397477597,-1.2884943626632155,-0.02250301309847468,-0.373263467662209,0.9505561720041189,-1.4487194734470652,0.3186695925277304,0.44596270031897417,-0.7873329055043466,1.1920971553810555,1.6726749393172706,-0.27098499754692923,0.11452441533764834,-0.8487092417742174,1.545579256814223],\"y\":[-0.5522374356751574,-0.4143645498944408,-0.41317315387808895,-0.19246398927288327,-1.0318010859655495,-0.38827277638119967,2.1990478385612606,-1.5874454163797436,-0.3441952049287384,-0.12161254367428234,0.03320495210193038,0.6834603974927128,0.12492547961801098,0.6731970386399261,-0.9958418533864718,0.3611788792015832,1.475243693430828,1.9165950734864714,-0.1337544718131653,-0.3992013335659354,-1.21857970108057,0.6285992363664762,-0.5969708962444663,-0.7085662496845496,0.6104893127397838,0.19773965119867123,-1.0154200187715117,0.98571967405196,-0.3413130899038527,-0.2062293174217435,-0.19160009048126952,-1.6548263483513936,1.0050418172348423,1.1390008258196742,-0.6141464838105846,1.3781966533265964]}},\"id\":\"311b5dce-0552-4786-8665-c0a31249c082\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"axis_label\":\"median\",\"formatter\":{\"id\":\"9e5bc3a0-6c46-4f30-b9c5-5b7982cfecb4\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"f72a938e-39f8-41c7-bb5d-3bbb2e674e9b\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"c82ae50a-a9d3-406d-b97c-a7bba8425ee0\",\"type\":\"BasicTicker\"}},\"id\":\"bcb2d19d-b6bf-4962-866c-bbaa96705c7e\",\"type\":\"LinearAxis\"},{\"attributes\":{\"plot\":{\"id\":\"3c18f690-a9e0-48d5-b127-dd49355a9a3d\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"4e24b961-8b62-4d3b-8f7e-83c4c4b6a3f9\",\"type\":\"BasicTicker\"}},\"id\":\"f16600af-fe38-4cc0-8800-78542769e0b4\",\"type\":\"Grid\"},{\"attributes\":{\"data_source\":{\"id\":\"41c16068-5ce5-489a-aaa9-8909853d0319\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"e937034c-61dc-46a8-b04b-624aae31eecd\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"cb5f5ce1-fd1b-45db-8f95-2c5173c19398\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"9c818b6b-07b3-4ad5-bc66-d945fe1e3c16\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"9725e635-4979-4407-a94f-6ae6832cdbb8\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"5a3f451f-9aec-4f25-a2a2-3a781fa432ad\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"2d765317-f2e1-46df-98e4-dbb230a1a404\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"92837ccb-5b30-43bb-9620-25ebfb0aaeb3\",\"type\":\"BasicTicker\"}},\"id\":\"5483b1f4-4e3b-4c79-a54f-1ae9da84b038\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"4f187388-d54a-4204-80eb-7c87e92bf1a5\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"9f085a36-ad99-4273-8142-f1ab9d51a0ef\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"95b728b9-961d-49d3-8232-8c7380c6c07b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"ed88054a-d15b-4dbb-85a4-447e12f3bdc2\",\"type\":\"ResetTool\"},{\"attributes\":{\"axis_label\":\"amplitude\",\"formatter\":{\"id\":\"0b87fd63-0880-43e8-ad1b-29957280bc57\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"3c18f690-a9e0-48d5-b127-dd49355a9a3d\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"4e24b961-8b62-4d3b-8f7e-83c4c4b6a3f9\",\"type\":\"BasicTicker\"}},\"id\":\"6fe818f8-65b9-4f89-bacf-f7ad58af05f4\",\"type\":\"LinearAxis\"},{\"attributes\":{\"overlay\":{\"id\":\"15d8e3f7-c849-49ac-ae8f-0ccf3b11d4f7\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"2d765317-f2e1-46df-98e4-dbb230a1a404\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"b78a5d5a-6295-4a55-a1ee-def2e7133591\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"data_source\":{\"id\":\"f9ebe72f-4399-4609-b6d9-5ed0dba6f6f1\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"b75dbef0-d242-428a-99d9-ddf6add7dc65\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"0d729313-f14d-4cda-8b12-3e8c839a650b\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"92fc056e-60e5-4a91-bf73-c2c74573e675\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1b76be6b-043a-4232-a6c4-0edaaf1da19f\",\"type\":\"Circle\"},{\"attributes\":{\"axis_label\":\"minimum\",\"formatter\":{\"id\":\"ba64e59e-17b7-43df-996e-10b14595b342\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"2d22d847-2fb2-447a-b0b3-239c03d11c95\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"0ac113e2-21ec-4211-9bc1-c4818edad36c\",\"type\":\"BasicTicker\"}},\"id\":\"7c069240-0766-4aa0-b599-c36207b7c3a4\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"78288525-9c58-4f74-addd-e6b386d7d1f4\",\"type\":\"BasicTicker\"},{\"attributes\":{\"plot\":{\"id\":\"a20abdd6-ebb2-41fb-a6af-1ed37fa3aa1c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"b7813605-7adb-4051-9812-87e4299aaf67\",\"type\":\"ResetTool\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ece7f2\"},\"line_color\":{\"value\":\"#ece7f2\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"2d90d7a2-b40e-4f75-bc54-0a4dc86ca06c\",\"type\":\"Circle\"},{\"attributes\":{\"callback\":null},\"id\":\"99b3a794-3de6-43dd-a70b-724881c87ab8\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"9d9801fb-1bbd-410c-9623-79476cfaa8ac\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"e8813ece-a172-4445-8701-a6002388440f\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"ef971452-08e8-40bc-a127-d4159e8f7d52\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"203e61a2-72a9-4893-acbc-5b9d442a129b\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"5a524480-e51c-4744-882d-3b039d909bba\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"0c8c9e0b-7d32-49ad-b6d2-10bab3b664e7\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"below\":[{\"id\":\"b918a5f5-7310-4aed-890e-41470da62d52\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"effda1c4-7efd-480a-8d99-4146b62abbd2\",\"type\":\"LinearAxis\"}],\"plot_height\":200,\"plot_width\":300,\"renderers\":[{\"id\":\"b918a5f5-7310-4aed-890e-41470da62d52\",\"type\":\"LinearAxis\"},{\"id\":\"4e16f876-f2ec-4183-8c87-71c5a1e2d181\",\"type\":\"Grid\"},{\"id\":\"effda1c4-7efd-480a-8d99-4146b62abbd2\",\"type\":\"LinearAxis\"},{\"id\":\"e4d66608-e651-4262-bef8-3b4370d6763c\",\"type\":\"Grid\"},{\"id\":\"de898b72-2e89-48d8-a5f4-c63df118e0c0\",\"type\":\"BoxAnnotation\"},{\"id\":\"bb699c46-fa7b-4a34-a52e-7f0b1e659292\",\"type\":\"GlyphRenderer\"},{\"id\":\"3ffd70e4-fb41-47f9-b537-cdc6b0f0a2ab\",\"type\":\"GlyphRenderer\"},{\"id\":\"7bed2355-da94-43b5-9be7-47ce989b639d\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"fe1adc9d-b009-42a6-b6a5-a68c2abeb1b7\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"9e8720df-a01d-434e-8136-ccebfb4e9f03\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"0d67e864-692a-4f88-9cfa-3c5b73b18678\",\"type\":\"Toolbar\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"a05e2cae-ab55-4297-bd15-630e28b4c140\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"4ac4868b-7dd8-4c58-b149-170fa8914210\",\"type\":\"DataRange1d\"}},\"id\":\"f694d03f-39dd-4401-814f-9451acaf4ad3\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"bd99e92b-46a8-42e1-8075-d06b5faf58ce\",\"type\":\"Circle\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.6649478704715944,-0.9350396439504449,0.497740409834053,0.2931733105704744,0.8855575560554154,-1.4610698200123278,0.7157828685854063,-0.3728661616362994,1.1814345650892815,-0.42312006236134203,-0.039815599587455196,1.282564397411362,-1.131194340177999,1.067629708906566,1.5748707870138035,1.0898258802365735,-1.4063444084308228,0.9646890666944837,0.2964156031573052,-0.09943790848659127,0.6307873865879196,1.1115080262461001,1.7752163668528467,-0.04431491757471309,-1.0641352896928378,-0.22542000532203493,0.5204431831549122,0.19820280211365246,-0.5440235199785699,-1.7562117357256524,-0.34527192891437974,-0.0625271775960441,1.3403597175590076,-0.8276729284600616,-0.7697430171157307,-0.023907272107244575,0.42917186493149356],\"y\":[-0.1196118505565118,0.6794648046410245,-0.2844737002657559,1.7870627584100762,0.14417544523106934,0.2521659612725212,0.3202081066720338,0.0888310458277947,-0.14290116350914994,1.1262915464792675,1.2020889758350275,0.17278206275142652,1.2037256979143227,0.6351632729860156,0.17667896078565407,-0.2922279246703844,-0.5451028956419868,0.9243462823605312,1.082817349922394,0.4114385170674937,-0.07927490265952405,0.8805461791378847,0.19149988321645103,0.8557037868928923,-0.2541269045980475,-0.5082702699479015,-0.14041270933933248,2.270478586784326,0.3534591234058084,-0.748518160275011,0.27426134856514767,-2.279542793179099,-0.49278933484691617,0.6394497458051915,1.0916069624094755,-0.2308885317596188,-0.42282117971507377]}},\"id\":\"485eb5ff-48b8-4149-8d18-b0e0fe7df57b\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"0fc41629-d626-4c2a-8979-19f288b03eb6\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"95b728b9-961d-49d3-8232-8c7380c6c07b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"892137c4-bfc7-4a81-9805-dc43171a8b17\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"plot\":{\"id\":\"d619b33c-ebe3-4a07-8ee5-d494c0a2218d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"e0586075-3ee8-4759-b9f9-6cff0e694cc8\",\"type\":\"PanTool\"},{\"attributes\":{\"callback\":null},\"id\":\"3042e40a-234e-4b8d-84a4-4685dfe5a788\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"b5ea055e-2664-4d6e-a9dc-753683f2e7e0\",\"type\":\"ToolEvents\"},{\"attributes\":{\"axis_label\":\"maximum\",\"formatter\":{\"id\":\"068b11d4-61d9-4159-90ba-7c226ec58fdd\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"307e4d89-741e-46ef-a598-b74b421ddf53\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"53b0a529-1142-489e-bf0a-09cabae0a9cc\",\"type\":\"BasicTicker\"}},\"id\":\"31b7d918-1c73-4035-a6c8-09a3acc59ec6\",\"type\":\"LinearAxis\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"2d22d847-2fb2-447a-b0b3-239c03d11c95\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"0ac113e2-21ec-4211-9bc1-c4818edad36c\",\"type\":\"BasicTicker\"}},\"id\":\"05494f6b-6b5f-4577-a28a-4cc6237d90af\",\"type\":\"Grid\"},{\"attributes\":{\"below\":[{\"id\":\"a1fea601-c288-433a-a1e8-359852c166dc\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"786b25d3-d6cf-49f3-a11f-e0178c7ecd50\",\"type\":\"LinearAxis\"}],\"plot_height\":200,\"plot_width\":300,\"renderers\":[{\"id\":\"a1fea601-c288-433a-a1e8-359852c166dc\",\"type\":\"LinearAxis\"},{\"id\":\"8459e933-c6dc-48ec-88ff-8e3c5c112276\",\"type\":\"Grid\"},{\"id\":\"786b25d3-d6cf-49f3-a11f-e0178c7ecd50\",\"type\":\"LinearAxis\"},{\"id\":\"4f57bd89-f65b-4e3a-b927-43994e84d34c\",\"type\":\"Grid\"},{\"id\":\"a9be0ea6-32b5-4bb5-b0f6-9fe7578f5c2a\",\"type\":\"BoxAnnotation\"},{\"id\":\"cf913740-22a8-464e-b388-744eb40b8889\",\"type\":\"GlyphRenderer\"},{\"id\":\"aab23094-a33b-401c-a87e-b0c1c0e30d5d\",\"type\":\"GlyphRenderer\"},{\"id\":\"8d3cd220-6250-41db-95cd-ff35e692647f\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"c1a08845-b44a-4369-a8b5-277a5ce41059\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"41104d8f-bcda-4e65-8053-f1f2b9bc13dc\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"17dd55e5-dd0b-46d1-8d88-34ab0d93ef7f\",\"type\":\"Toolbar\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"a4ff4fe6-0495-4612-9a0e-67835b5a1907\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"d46db8a2-85c8-4b0b-b31b-b50f2d4e6468\",\"type\":\"DataRange1d\"}},\"id\":\"dfe7076c-0398-4c47-ab2f-75e601064856\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"c82ae50a-a9d3-406d-b97c-a7bba8425ee0\",\"type\":\"BasicTicker\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"6ea435dc-cb69-48bf-b9ef-3a60d9301629\",\"type\":\"Title\"},{\"attributes\":{\"axis_label\":\"maximum\",\"formatter\":{\"id\":\"30371d63-0906-43c4-a9a9-f89bdfb32017\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"6de5bd19-7c3c-4c91-84c1-9b3cf5ae1963\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"fa4da2ea-834a-4fed-8ae4-20b262a0ecb2\",\"type\":\"BasicTicker\"}},\"id\":\"5cfa34d8-ee82-4b2c-b7b3-231a01c0eb64\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"068b11d4-61d9-4159-90ba-7c226ec58fdd\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"3815763e-da44-490f-83d4-5d0241c4ffdd\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"a24927bc-8a8d-4326-9a0d-6dae3a21861d\",\"type\":\"BasicTicker\"}},\"id\":\"94267e44-949b-42a1-85a1-e4bf5cd91ff9\",\"type\":\"Grid\"},{\"attributes\":{\"data_source\":{\"id\":\"101371db-c4cb-4981-828f-0bba266f836b\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"fde02716-75cd-4b35-bc43-03669dba6299\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"52f8ccd8-dd4d-4ea0-8df8-9b177ece58a0\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"77243fd5-c430-469a-89cb-849237b4276a\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"plot\":{\"id\":\"2d765317-f2e1-46df-98e4-dbb230a1a404\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"bbcff10d-8986-41e3-949a-c79c8463e6f9\",\"type\":\"ResetTool\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.19773108001830575,1.094942822375068,-0.23885700767004167,0.9709868583261726,0.49160399090474854,-1.1101337749341333,0.5573681266227046,-1.0561568585133605,-0.07662062376911487,-2.840658711458262,0.28466877512132355,-0.3778877288988559,0.18443024578946285,-0.13408543778818846,2.38204107103276,2.419841609040222,0.26008785612709506,0.003677117591075754,0.5554326425466423,-0.4859885070208167,-0.3441116702541836,-0.6358410981425435,1.6894860812113148,1.8355995261930105,1.4883777348835,2.332159719113291,0.6653173783648078,-0.5082052562672649,1.3249610609402955,-1.787238054271912,-0.49625477688171465,-1.6429563351257739,-1.1830694297455835,0.9725292719747896,0.639325376393516,0.47487874500984767,-1.7964140592239564],\"y\":[-0.1196118505565118,0.6794648046410245,-0.2844737002657559,1.7870627584100762,0.14417544523106934,0.2521659612725212,0.3202081066720338,0.0888310458277947,-0.14290116350914994,1.1262915464792675,1.2020889758350275,0.17278206275142652,1.2037256979143227,0.6351632729860156,0.17667896078565407,-0.2922279246703844,-0.5451028956419868,0.9243462823605312,1.082817349922394,0.4114385170674937,-0.07927490265952405,0.8805461791378847,0.19149988321645103,0.8557037868928923,-0.2541269045980475,-0.5082702699479015,-0.14041270933933248,2.270478586784326,0.3534591234058084,-0.748518160275011,0.27426134856514767,-2.279542793179099,-0.49278933484691617,0.6394497458051915,1.0916069624094755,-0.2308885317596188,-0.42282117971507377]}},\"id\":\"d2b0fdcc-6504-42f4-ba18-c344dcaf0b38\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"c1db007f-e4a7-4192-a381-11ac6978a89c\",\"type\":\"BasicTicker\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"2c4eea64-63d3-4ed0-a0fc-6ee2ce3f9c46\",\"type\":\"Title\"},{\"attributes\":{\"plot\":{\"id\":\"307e4d89-741e-46ef-a598-b74b421ddf53\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"1577ff66-29c0-4f8d-941e-17f904fbd21e\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"46dff6a5-8bdc-4000-9a5f-d430f87954d5\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"efae455e-828a-4d2f-b199-87002fc56e7d\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"f26605d6-89b5-48e9-b43b-3fffc2378790\",\"type\":\"BasicTicker\"}},\"id\":\"42f840c4-7686-4c52-98f0-3535c153b0bf\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"f21806ba-5e0c-4d33-88cb-e8f306e80bd0\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"axis_label\":\"amplitude\",\"formatter\":{\"id\":\"6eff242c-0358-4a7d-a002-8af804ad0752\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"f694d03f-39dd-4401-814f-9451acaf4ad3\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"ad5686cc-ca93-4824-86d3-1a75b1e06543\",\"type\":\"BasicTicker\"}},\"id\":\"b918a5f5-7310-4aed-890e-41470da62d52\",\"type\":\"LinearAxis\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"8ef11c8c-17ae-4822-a974-5a16c0682b5f\",\"type\":\"PanTool\"},{\"id\":\"2b190f90-dab9-4262-a118-c16257584c10\",\"type\":\"WheelZoomTool\"},{\"id\":\"249b3dbd-98e6-447f-a859-da3c9d0a1721\",\"type\":\"BoxZoomTool\"},{\"id\":\"b0d27028-005b-41f5-a024-886c93b7bc48\",\"type\":\"SaveTool\"},{\"id\":\"7c205ae8-981e-45ea-9d99-58cb06715e1d\",\"type\":\"ResetTool\"},{\"id\":\"8d9e46dc-e7f8-4e9a-82ac-dbcdd458b8e0\",\"type\":\"HelpTool\"}]},\"id\":\"5a18cead-babd-445b-91bb-c72bec31afbd\",\"type\":\"Toolbar\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2b8cbe\"},\"line_color\":{\"value\":\"#2b8cbe\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"d6bef29b-a5d2-4a01-9c6d-83b76e1b467c\",\"type\":\"Circle\"},{\"attributes\":{\"axis_label\":\"median\",\"formatter\":{\"id\":\"f04d4b72-7a04-4c2c-9513-1a153a1bcbde\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"efae455e-828a-4d2f-b199-87002fc56e7d\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"f26605d6-89b5-48e9-b43b-3fffc2378790\",\"type\":\"BasicTicker\"}},\"id\":\"77a8e318-43f6-415f-8072-4655113b0ca1\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"f7acca58-78f2-4dde-ba61-3c4441f36c66\",\"type\":\"BasicTicker\"},{\"attributes\":{\"plot\":{\"id\":\"307e4d89-741e-46ef-a598-b74b421ddf53\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"491fb1de-91ff-4a07-b8c6-6a8835f37873\",\"type\":\"ResetTool\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.1960272004109043,-1.0502538702823216,-2.104502380351223,0.9834286540359315,2.9470659888894524,0.5615078368199237,1.2126928144027498,-0.5130204474240554,0.03813700121225621,-0.22634596391902523,0.5332205390130769,1.9743017181291302,-1.4078036410854593,-0.6683425071449056,1.4054068711862893,-2.7541524947725886,0.735803981843832,0.31108810546388604,0.3317130386192693,-0.37182999791027666,0.516990279377022,1.523855858724932,0.04814645234497029,-1.1369853492327395,-1.8808281218387493,-1.010394348071007,-0.41151461458339106,0.6871989611322668,1.9213677888152485,1.1345560479863577,-0.7215113955704764,-0.4749964259240754,0.005625486011900252,1.7731427091388345,1.7056455414803895,0.3053527691764295,-0.6330181831521638],\"y\":[0.6649478704715944,-0.9350396439504449,0.497740409834053,0.2931733105704744,0.8855575560554154,-1.4610698200123278,0.7157828685854063,-0.3728661616362994,1.1814345650892815,-0.42312006236134203,-0.039815599587455196,1.282564397411362,-1.131194340177999,1.067629708906566,1.5748707870138035,1.0898258802365735,-1.4063444084308228,0.9646890666944837,0.2964156031573052,-0.09943790848659127,0.6307873865879196,1.1115080262461001,1.7752163668528467,-0.04431491757471309,-1.0641352896928378,-0.22542000532203493,0.5204431831549122,0.19820280211365246,-0.5440235199785699,-1.7562117357256524,-0.34527192891437974,-0.0625271775960441,1.3403597175590076,-0.8276729284600616,-0.7697430171157307,-0.023907272107244575,0.42917186493149356]}},\"id\":\"9daf6fb0-14fa-4ee4-9a23-8167caf49a89\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-2.328609613834153,0.499646780212785,1.6082952400234942,1.2458789708723745,-1.0961821690334586,1.382026941847684,-0.4538441219949615,1.4395844410802678,-0.3049243650356835,0.14523594074878604,1.4748096535386808,-0.5121485960965696,-0.8788913750369364,-1.5181389669792453,0.0007784314561065783,0.05436044213137643,-0.4473666650755062,0.3485405045366734,1.2683639830694,-1.512504175085072,0.5876892424323793,0.2643101853544203,-1.4026669476792284,-1.0934975183046596,-1.0375136010035175,0.07413307985065108,0.7831800812693355],\"y\":[-0.6705637855474027,1.34840184005745,0.40595488390585965,0.16084836409867231,-0.48684382423071393,-0.09897681184661385,-1.1162564102628494,-1.8176746517668625,-1.2130381450035903,0.7334753532661289,-1.7143359580741186,-0.6141600941703779,0.4837896883054766,-0.7503543324864415,-0.7622203797231547,1.003268363476211,-1.2548499035077059,1.307910921211524,-0.31359434313398415,-0.02598834790902368,-0.3156402963658345,0.05663641643458916,-1.2238714074307924,-0.544049360755572,1.453890370355908,-0.16716631440306928,1.376343423023386]}},\"id\":\"4f36cb14-adb4-44f7-9866-ba3190224b34\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null},\"id\":\"8a1d5fd3-5afb-4e05-8cba-e4fe29518df4\",\"type\":\"DataRange1d\"},{\"attributes\":{\"below\":[{\"id\":\"01e2108b-1d33-43ca-bfec-721da6dd3d90\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"7c069240-0766-4aa0-b599-c36207b7c3a4\",\"type\":\"LinearAxis\"}],\"plot_height\":200,\"plot_width\":300,\"renderers\":[{\"id\":\"01e2108b-1d33-43ca-bfec-721da6dd3d90\",\"type\":\"LinearAxis\"},{\"id\":\"904c7a4a-0cb1-4108-817c-87c5ab5e1a01\",\"type\":\"Grid\"},{\"id\":\"7c069240-0766-4aa0-b599-c36207b7c3a4\",\"type\":\"LinearAxis\"},{\"id\":\"05494f6b-6b5f-4577-a28a-4cc6237d90af\",\"type\":\"Grid\"},{\"id\":\"246e224d-6479-454d-93f8-3deafcd636d0\",\"type\":\"BoxAnnotation\"},{\"id\":\"2fe0f4ca-9707-4770-b5fd-cba99cc911b6\",\"type\":\"GlyphRenderer\"},{\"id\":\"a2a99a57-6b9b-48b1-838f-65db5c9660fc\",\"type\":\"GlyphRenderer\"},{\"id\":\"2c1dfc71-13e4-40a2-ad39-1e1871924688\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"ba82b2cc-2baf-4b46-9e31-5f3c17ccaeb5\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"e676c74a-c287-4a80-b6d8-abfd25c88a4d\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"ccd28209-b4fa-4af6-bad9-2c9f9ce89551\",\"type\":\"Toolbar\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"b0dc5443-5f6a-49ac-85f0-8740b0deab02\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"2165306b-98ce-4112-a5f6-9be48559a1c8\",\"type\":\"DataRange1d\"}},\"id\":\"2d22d847-2fb2-447a-b0b3-239c03d11c95\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"56bd6561-0839-4468-9588-8a27e68f585c\",\"type\":\"Circle\"},{\"attributes\":{\"axis_label\":\"amplitude\",\"formatter\":{\"id\":\"8fc74e75-a796-4062-a374-974c3df000f7\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"f72a938e-39f8-41c7-bb5d-3bbb2e674e9b\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"21c3e827-4f56-4be8-88d6-df48db909c6d\",\"type\":\"BasicTicker\"}},\"id\":\"f3f83b9c-4cad-4f2b-815c-fab85fb472f9\",\"type\":\"LinearAxis\"},{\"attributes\":{\"items\":[{\"id\":\"6058108b-92cc-41d0-a719-6089663b8541\",\"type\":\"LegendItem\"},{\"id\":\"4e78e4b0-c95c-4856-9f2d-cdcc30d79313\",\"type\":\"LegendItem\"},{\"id\":\"201509b0-b25f-45e6-8dea-1720d2b865e6\",\"type\":\"LegendItem\"}],\"location\":\"bottom_right\",\"plot\":{\"id\":\"c2a67f24-59c6-4d65-a206-54842d5310fb\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"bb9445f5-732b-4ace-aaac-523c17aaa328\",\"type\":\"Legend\"},{\"attributes\":{\"data_source\":{\"id\":\"4d414786-680f-4ea8-970d-c49755f1f459\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"c08e5526-a183-4613-98d7-13b697ad7c0c\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"c792f276-ecaf-47f6-924f-ae8629f67051\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"cf913740-22a8-464e-b388-744eb40b8889\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null},\"id\":\"13679a3b-01b7-4a24-8395-baa68b35c9b9\",\"type\":\"DataRange1d\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ece7f2\"},\"line_color\":{\"value\":\"#ece7f2\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"2c0b94be-dad2-4ccb-b7e5-23a9205c2c18\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"0b076208-72d7-48f1-9ca4-11f3a94c6734\",\"type\":\"BasicTicker\"},{\"attributes\":{\"plot\":{\"id\":\"3695ef45-073b-4f94-b9fe-68f5dabf9f1b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"43f9863b-6960-4b09-89c6-ba457ea38588\",\"type\":\"PanTool\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"def936d4-9190-4c83-a49f-f7f32f86b64d\",\"type\":\"PanTool\"},{\"id\":\"3ffe99b8-cc2b-48c6-acc2-ef666fed6ddd\",\"type\":\"WheelZoomTool\"},{\"id\":\"39bed4b5-4d8c-4240-a290-a8ddcd5157d1\",\"type\":\"BoxZoomTool\"},{\"id\":\"11af4a25-cfad-4974-a0c2-b9e267dc163e\",\"type\":\"SaveTool\"},{\"id\":\"836b4564-d270-4565-94e2-28b90b2f352d\",\"type\":\"ResetTool\"},{\"id\":\"872890e8-7e05-4ccb-b26c-e19994c8042f\",\"type\":\"HelpTool\"}]},\"id\":\"c35d1216-a07f-4516-b3b0-cd6278076251\",\"type\":\"Toolbar\"},{\"attributes\":{\"plot\":{\"id\":\"dfe7076c-0398-4c47-ab2f-75e601064856\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"a039aa80-2a66-40bd-b3e1-dc3cfec93890\",\"type\":\"HelpTool\"},{\"attributes\":{\"callback\":null},\"id\":\"2165306b-98ce-4112-a5f6-9be48559a1c8\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"bac8d8cf-6a05-4b30-9fa8-ebfe4ee539bb\",\"type\":\"ToolEvents\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"b411248d-f689-4837-b026-0d29e3010a3b\",\"type\":\"Circle\"},{\"attributes\":{\"axis_label\":\"amplitude\",\"formatter\":{\"id\":\"ca0fe629-de55-4a66-bdf5-0d6b147576d7\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"d619b33c-ebe3-4a07-8ee5-d494c0a2218d\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"4fbba2e8-8a70-4a74-9734-9fef28f0a63e\",\"type\":\"BasicTicker\"}},\"id\":\"48de2968-d024-42ba-a3bd-f67f017b6748\",\"type\":\"LinearAxis\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"a1159a2b-f71e-42fc-b1ee-b13da04a2899\",\"type\":\"Circle\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"d526d454-af01-4f17-b1db-1ffada56ea6b\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.1196118505565118,0.6794648046410245,-0.2844737002657559,1.7870627584100762,0.14417544523106934,0.2521659612725212,0.3202081066720338,0.0888310458277947,-0.14290116350914994,1.1262915464792675,1.2020889758350275,0.17278206275142652,1.2037256979143227,0.6351632729860156,0.17667896078565407,-0.2922279246703844,-0.5451028956419868,0.9243462823605312,1.082817349922394,0.4114385170674937,-0.07927490265952405,0.8805461791378847,0.19149988321645103,0.8557037868928923,-0.2541269045980475,-0.5082702699479015,-0.14041270933933248,2.270478586784326,0.3534591234058084,-0.748518160275011,0.27426134856514767,-2.279542793179099,-0.49278933484691617,0.6394497458051915,1.0916069624094755,-0.2308885317596188,-0.42282117971507377],\"y\":[-0.1196118505565118,0.6794648046410245,-0.2844737002657559,1.7870627584100762,0.14417544523106934,0.2521659612725212,0.3202081066720338,0.0888310458277947,-0.14290116350914994,1.1262915464792675,1.2020889758350275,0.17278206275142652,1.2037256979143227,0.6351632729860156,0.17667896078565407,-0.2922279246703844,-0.5451028956419868,0.9243462823605312,1.082817349922394,0.4114385170674937,-0.07927490265952405,0.8805461791378847,0.19149988321645103,0.8557037868928923,-0.2541269045980475,-0.5082702699479015,-0.14041270933933248,2.270478586784326,0.3534591234058084,-0.748518160275011,0.27426134856514767,-2.279542793179099,-0.49278933484691617,0.6394497458051915,1.0916069624094755,-0.2308885317596188,-0.42282117971507377]}},\"id\":\"b7cc0f8c-39b7-4e26-b4df-d09bd946572f\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.6649478704715944,-0.9350396439504449,0.497740409834053,0.2931733105704744,0.8855575560554154,-1.4610698200123278,0.7157828685854063,-0.3728661616362994,1.1814345650892815,-0.42312006236134203,-0.039815599587455196,1.282564397411362,-1.131194340177999,1.067629708906566,1.5748707870138035,1.0898258802365735,-1.4063444084308228,0.9646890666944837,0.2964156031573052,-0.09943790848659127,0.6307873865879196,1.1115080262461001,1.7752163668528467,-0.04431491757471309,-1.0641352896928378,-0.22542000532203493,0.5204431831549122,0.19820280211365246,-0.5440235199785699,-1.7562117357256524,-0.34527192891437974,-0.0625271775960441,1.3403597175590076,-0.8276729284600616,-0.7697430171157307,-0.023907272107244575,0.42917186493149356],\"y\":[-0.19773108001830575,1.094942822375068,-0.23885700767004167,0.9709868583261726,0.49160399090474854,-1.1101337749341333,0.5573681266227046,-1.0561568585133605,-0.07662062376911487,-2.840658711458262,0.28466877512132355,-0.3778877288988559,0.18443024578946285,-0.13408543778818846,2.38204107103276,2.419841609040222,0.26008785612709506,0.003677117591075754,0.5554326425466423,-0.4859885070208167,-0.3441116702541836,-0.6358410981425435,1.6894860812113148,1.8355995261930105,1.4883777348835,2.332159719113291,0.6653173783648078,-0.5082052562672649,1.3249610609402955,-1.787238054271912,-0.49625477688171465,-1.6429563351257739,-1.1830694297455835,0.9725292719747896,0.639325376393516,0.47487874500984767,-1.7964140592239564]}},\"id\":\"c79c4b2f-5443-4369-a8ec-d92420d07de0\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"label\":{\"value\":\"A\"},\"renderers\":[{\"id\":\"ccd2d0f4-1ca2-4a26-ad43-6e3b4361add6\",\"type\":\"GlyphRenderer\"}]},\"id\":\"111d9691-78a4-4000-a73b-ba9afb3a4719\",\"type\":\"LegendItem\"},{\"attributes\":{\"plot\":{\"id\":\"e9f85ec8-f967-4387-be57-4fb66f06516c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"c1c41b97-a9d0-46a3-b7cf-7cb46adcfdef\",\"type\":\"PanTool\"},{\"attributes\":{\"data_source\":{\"id\":\"4bff3deb-27ae-41af-8568-aaff6589c25a\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"fdb27dd4-7ecc-4b65-a15f-bbd49254a7d1\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"ae907b5a-d92b-4e42-84e6-5aedbb7794c1\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"611741da-c7d9-4a7d-8ea0-542e2da95626\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"9e5bc3a0-6c46-4f30-b9c5-5b7982cfecb4\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"d540a6ba-f5b9-4fe7-bb90-9bf77aed85e1\",\"type\":\"Circle\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.5945160241092728,0.7811017365998931,-0.31962505843365874,-0.4942471575987246,0.3349391857946997,1.7225516850075475,-1.9731231096960362,-0.01767658927203139,0.16101695184496928,-0.8244660745923054,-0.5178668188428318,-1.2248971034591989,-0.5881401820989027,-0.5372604117386145,0.19143139048499394,0.7432552352207858,0.8632439453323602,-0.49371317751852417,-0.4175928455974618,2.3237649196748467,0.14590285265765693,-0.35501754876254366,-0.8394230907976706,0.07893941793251685,0.5796302326320795,-1.8022219963335209,-1.0099217846061237,-0.030524796781486997,0.02477843642929915,-0.9413421827485386,0.027731825062648784,-0.04665885921155053,0.10817236498215872,-0.48811587024576364,-0.17261673689927515,-0.06991012205170889],\"y\":[-0.5522374356751574,-0.4143645498944408,-0.41317315387808895,-0.19246398927288327,-1.0318010859655495,-0.38827277638119967,2.1990478385612606,-1.5874454163797436,-0.3441952049287384,-0.12161254367428234,0.03320495210193038,0.6834603974927128,0.12492547961801098,0.6731970386399261,-0.9958418533864718,0.3611788792015832,1.475243693430828,1.9165950734864714,-0.1337544718131653,-0.3992013335659354,-1.21857970108057,0.6285992363664762,-0.5969708962444663,-0.7085662496845496,0.6104893127397838,0.19773965119867123,-1.0154200187715117,0.98571967405196,-0.3413130899038527,-0.2062293174217435,-0.19160009048126952,-1.6548263483513936,1.0050418172348423,1.1390008258196742,-0.6141464838105846,1.3781966533265964]}},\"id\":\"06fddc0e-66e8-4f0a-989e-c2b9a7983ec6\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"ac645c4d-2b97-4941-a8e5-714f79bc5e9b\",\"type\":\"Title\"},{\"attributes\":{\"plot\":{\"id\":\"3815763e-da44-490f-83d4-5d0241c4ffdd\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"0ae90b45-df37-433b-bb5b-dc6257466129\",\"type\":\"BasicTicker\"}},\"id\":\"42aadb1c-e83f-4a16-bf05-cc1d7d6d89be\",\"type\":\"Grid\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"68231a80-0650-492b-a369-fa99656887ca\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"92bd7a5d-cd9a-493b-bef9-bdd6714af4b4\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"data_source\":{\"id\":\"b0649f3e-ee26-48c6-b844-c0838ff448d5\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"5c37ae5d-50e7-4038-808e-5d56d01263dc\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"a9f2a2cc-b5be-4871-ad6f-e3f413fb6efe\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"b11eab56-a6dc-42e9-b57d-3527f9b819fd\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"2b7adb6f-6f4c-4c67-a32f-04d11980ead0\",\"type\":\"ToolEvents\"},{\"attributes\":{\"callback\":null},\"id\":\"95050729-3f41-479b-b48b-ba5d78ca072b\",\"type\":\"DataRange1d\"},{\"attributes\":{\"plot\":{\"id\":\"2d22d847-2fb2-447a-b0b3-239c03d11c95\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"f7acca58-78f2-4dde-ba61-3c4441f36c66\",\"type\":\"BasicTicker\"}},\"id\":\"904c7a4a-0cb1-4108-817c-87c5ab5e1a01\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"b715b80d-9788-48bd-b919-512051e16b68\",\"type\":\"ToolEvents\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2b8cbe\"},\"line_color\":{\"value\":\"#2b8cbe\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"6462be4a-6cc8-4247-b2d9-b0a5721fe7fa\",\"type\":\"Circle\"},{\"attributes\":{\"items\":[{\"id\":\"111d9691-78a4-4000-a73b-ba9afb3a4719\",\"type\":\"LegendItem\"},{\"id\":\"f3416424-5c69-4721-ac25-35bbaf92f65d\",\"type\":\"LegendItem\"},{\"id\":\"0fa09fd1-9659-465a-b059-ac25b04e8d88\",\"type\":\"LegendItem\"}],\"location\":\"bottom_right\",\"plot\":{\"id\":\"2d765317-f2e1-46df-98e4-dbb230a1a404\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"7311040c-dc4f-4d22-aa3d-46f0d3a30abf\",\"type\":\"Legend\"},{\"attributes\":{\"overlay\":{\"id\":\"e8078932-1ea0-4392-9b95-367f5ca15865\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"f72a938e-39f8-41c7-bb5d-3bbb2e674e9b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"39bed4b5-4d8c-4240-a290-a8ddcd5157d1\",\"type\":\"BoxZoomTool\"},{\"attributes\":{},\"id\":\"efe55bb0-7c94-479f-863c-ebec36c0ded1\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"f26605d6-89b5-48e9-b43b-3fffc2378790\",\"type\":\"BasicTicker\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"8ed519d0-1dfc-4151-aa0e-89f7811f1c54\",\"type\":\"Circle\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ece7f2\"},\"line_color\":{\"value\":\"#ece7f2\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"6e6c5b54-0787-4f50-b225-fd7e2d901897\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"4f36cb14-adb4-44f7-9866-ba3190224b34\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"1c0ffb16-1ebb-4720-acb6-884c93cd9f39\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"b19b8fac-8738-440f-aa2a-5e25dffd0eac\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"ef21e867-e2bc-4664-a47d-32cc944d7672\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"e6e30fb7-d9fd-4d01-a52d-bcc3b165c142\",\"type\":\"BasicTicker\"},{\"attributes\":{\"data_source\":{\"id\":\"ac5adae2-4116-4fef-9d0b-64af4b96dd42\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"ebdb7986-fe34-4fc7-ac4a-c9215d803154\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"98753a89-6b3e-4d12-a7e7-515bfb197784\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"2c1dfc71-13e4-40a2-ad39-1e1871924688\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"plot\":{\"id\":\"efae455e-828a-4d2f-b199-87002fc56e7d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"919cdad5-38fb-419a-8b47-e946441c8335\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"e8078932-1ea0-4392-9b95-367f5ca15865\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"fill_color\":{\"value\":\"#ece7f2\"},\"line_color\":{\"value\":\"#ece7f2\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"7dc6c795-fa3f-4c43-ae61-4b370f188fd5\",\"type\":\"Circle\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.6705637855474027,1.34840184005745,0.40595488390585965,0.16084836409867231,-0.48684382423071393,-0.09897681184661385,-1.1162564102628494,-1.8176746517668625,-1.2130381450035903,0.7334753532661289,-1.7143359580741186,-0.6141600941703779,0.4837896883054766,-0.7503543324864415,-0.7622203797231547,1.003268363476211,-1.2548499035077059,1.307910921211524,-0.31359434313398415,-0.02598834790902368,-0.3156402963658345,0.05663641643458916,-1.2238714074307924,-0.544049360755572,1.453890370355908,-0.16716631440306928,1.376343423023386],\"y\":[-0.526852866308911,-0.8752193214893524,-1.279437347391582,0.7159856272756318,-0.11752415012450136,0.23491964221007589,-0.48902337660002154,-0.3426098271304946,0.2469358215529219,-1.0879159519352635,-0.6428780763315476,0.52575427954955,-0.14029191361748725,-0.1504818617793574,0.01138756270726347,1.7108612240499872,0.9053328238014203,-0.8078266321767689,-1.6960345072902205,-1.161850597189768,-0.9761762324608795,-1.2924972083874928,-0.015872685464337212,-0.25295717134672013,0.04722232458304732,-0.47318007675024887,-1.0565810481732207]}},\"id\":\"c03f50a3-1a63-4e7b-a849-b3f7bdc83704\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":{\"id\":\"efae455e-828a-4d2f-b199-87002fc56e7d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"0aa84047-6103-4c3b-95f5-96aef5e670f0\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"796e0367-442d-4da7-9863-d9555285a21f\",\"type\":\"BasicTicker\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"17884d60-5e66-44cf-817e-6aef026bbc43\",\"type\":\"Title\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"a56a05c2-5855-4711-a46b-77d52ea3051a\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"plot\":{\"id\":\"dfe7076c-0398-4c47-ab2f-75e601064856\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"047d9022-0378-4723-b399-60119b9bd68c\",\"type\":\"ResetTool\"},{\"attributes\":{\"plot\":{\"id\":\"95b728b9-961d-49d3-8232-8c7380c6c07b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"7cd18751-0ed6-4c4a-a662-5c5be5518bca\",\"type\":\"HelpTool\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2b8cbe\"},\"line_color\":{\"value\":\"#2b8cbe\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"c08e5526-a183-4613-98d7-13b697ad7c0c\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"485eb5ff-48b8-4149-8d18-b0e0fe7df57b\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"2d90d7a2-b40e-4f75-bc54-0a4dc86ca06c\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"f5459a6b-8b5e-4c64-abfa-89d8cdf1f50c\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"7bed2355-da94-43b5-9be7-47ce989b639d\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"e54ef543-101b-4567-898e-a2ff281d738a\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"7f554ded-c4d4-423f-bd41-6fd5bb24894d\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"1c3b1ec6-20db-458a-a02f-6b163bcb9930\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"b56b18f0-82dc-4824-a35b-c4557474b30e\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"children\":[{\"id\":\"560bdc0a-e551-4585-a5b4-a2e7b5acfed8\",\"type\":\"ToolbarBox\"},{\"id\":\"3808a08a-cbfe-4b66-b7c7-3e30e7597c1a\",\"type\":\"Column\"}]},\"id\":\"b8129541-88d3-49ec-9dcd-2d7a47e1d086\",\"type\":\"Column\"},{\"attributes\":{\"overlay\":{\"id\":\"7458cc07-d646-4774-916b-cc97de4bb3c2\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"d619b33c-ebe3-4a07-8ee5-d494c0a2218d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"e64a23e8-872e-4211-838a-15f02cf1fd3e\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2b8cbe\"},\"line_color\":{\"value\":\"#2b8cbe\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"fde02716-75cd-4b35-bc43-03669dba6299\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"b9d4f62e-d75c-4dfa-b783-b9aad785c912\",\"type\":\"Circle\"},{\"attributes\":{\"sizing_mode\":\"scale_width\",\"toolbar_location\":\"above\",\"tools\":[{\"id\":\"c943c608-d2bd-48c3-9af5-81e04935f243\",\"type\":\"PanTool\"},{\"id\":\"9e8f293e-6096-420c-a70c-d0bc9df838e9\",\"type\":\"WheelZoomTool\"},{\"id\":\"b78a5d5a-6295-4a55-a1ee-def2e7133591\",\"type\":\"BoxZoomTool\"},{\"id\":\"5212c3ee-631d-4c7c-9cb9-c80554c5a9ab\",\"type\":\"SaveTool\"},{\"id\":\"bbcff10d-8986-41e3-949a-c79c8463e6f9\",\"type\":\"ResetTool\"},{\"id\":\"4c839421-a65d-44bd-9aaa-e5730a2d8d1a\",\"type\":\"HelpTool\"},{\"id\":\"2d29f6b9-27f3-404d-ac42-d820a0877e80\",\"type\":\"PanTool\"},{\"id\":\"b772b384-da51-4468-92ed-069c41d5652d\",\"type\":\"WheelZoomTool\"},{\"id\":\"69df9668-63e2-4fd2-9f2b-ab62c0b0c731\",\"type\":\"BoxZoomTool\"},{\"id\":\"f5092aa1-fb38-4302-aac4-61556dc5006e\",\"type\":\"SaveTool\"},{\"id\":\"fb7d42ed-b10a-4929-b6e7-f84020fef6c8\",\"type\":\"ResetTool\"},{\"id\":\"985cb468-c26f-486b-9f47-0ec6f3a0c8ff\",\"type\":\"HelpTool\"},{\"id\":\"43f9863b-6960-4b09-89c6-ba457ea38588\",\"type\":\"PanTool\"},{\"id\":\"d9df9a31-6d39-4e92-878f-0d64f058b423\",\"type\":\"WheelZoomTool\"},{\"id\":\"7e73cf80-0a59-4dcc-947f-c61055668c9b\",\"type\":\"BoxZoomTool\"},{\"id\":\"590df6b6-6a32-48e6-8d6f-cb877a5cdd92\",\"type\":\"SaveTool\"},{\"id\":\"df99a9b0-4c39-406e-b56a-2f8d84991354\",\"type\":\"ResetTool\"},{\"id\":\"f65fb1f6-0b33-4715-8b9b-6aee67224d43\",\"type\":\"HelpTool\"},{\"id\":\"3ebdce4d-4f6e-4e0d-89cb-9c132ec9aa40\",\"type\":\"PanTool\"},{\"id\":\"aa775b1c-3309-481a-bd65-4e0ee0ad42cf\",\"type\":\"WheelZoomTool\"},{\"id\":\"5d14286a-249b-4b7d-a871-2a32c9d441d0\",\"type\":\"BoxZoomTool\"},{\"id\":\"ba4a4ef3-2e63-4158-9bf9-3e553cdb02c5\",\"type\":\"SaveTool\"},{\"id\":\"faf9526b-81e1-4330-b1c2-a0c17b7e47ce\",\"type\":\"ResetTool\"},{\"id\":\"4540493e-24f1-4711-9ef9-cf032d6852f3\",\"type\":\"HelpTool\"},{\"id\":\"def936d4-9190-4c83-a49f-f7f32f86b64d\",\"type\":\"PanTool\"},{\"id\":\"3ffe99b8-cc2b-48c6-acc2-ef666fed6ddd\",\"type\":\"WheelZoomTool\"},{\"id\":\"39bed4b5-4d8c-4240-a290-a8ddcd5157d1\",\"type\":\"BoxZoomTool\"},{\"id\":\"11af4a25-cfad-4974-a0c2-b9e267dc163e\",\"type\":\"SaveTool\"},{\"id\":\"836b4564-d270-4565-94e2-28b90b2f352d\",\"type\":\"ResetTool\"},{\"id\":\"872890e8-7e05-4ccb-b26c-e19994c8042f\",\"type\":\"HelpTool\"},{\"id\":\"efa5d2bb-b7b6-4e31-a6a1-dda9ab43f2c2\",\"type\":\"PanTool\"},{\"id\":\"58cf9709-28b0-45fc-b930-3fe0043c41d3\",\"type\":\"WheelZoomTool\"},{\"id\":\"7c9cef57-4050-4e18-930f-74e96d825725\",\"type\":\"BoxZoomTool\"},{\"id\":\"341dd79c-5133-41c2-8f25-14efd77f8248\",\"type\":\"SaveTool\"},{\"id\":\"eeecaaee-5eba-485d-9a2d-07609f397686\",\"type\":\"ResetTool\"},{\"id\":\"1c2e756e-cade-4268-bf23-e0aad2a5bd3a\",\"type\":\"HelpTool\"},{\"id\":\"c0c131a7-3bbf-4366-9d1e-5c9a3b6120da\",\"type\":\"PanTool\"},{\"id\":\"919cdad5-38fb-419a-8b47-e946441c8335\",\"type\":\"WheelZoomTool\"},{\"id\":\"51194ac7-cad7-4b63-97d1-4d31326653e3\",\"type\":\"BoxZoomTool\"},{\"id\":\"b027548e-8355-4ee7-ab9c-c7123cdc18c8\",\"type\":\"SaveTool\"},{\"id\":\"0aa84047-6103-4c3b-95f5-96aef5e670f0\",\"type\":\"ResetTool\"},{\"id\":\"825adb98-e8cc-43eb-821b-640135b9ebe3\",\"type\":\"HelpTool\"},{\"id\":\"31019a9b-f67e-4677-b69c-7bce51e75805\",\"type\":\"PanTool\"},{\"id\":\"9e45c888-203c-45bd-8409-6741b4df5d29\",\"type\":\"WheelZoomTool\"},{\"id\":\"6f4d5f6d-596a-435c-849f-64a35fa2cbcb\",\"type\":\"BoxZoomTool\"},{\"id\":\"e45fbff0-113a-443f-9537-34db8e1cf1d8\",\"type\":\"SaveTool\"},{\"id\":\"7fdf6dbd-4fbf-471a-b554-0306ca59a14e\",\"type\":\"ResetTool\"},{\"id\":\"8f513dad-b92f-45bf-9e7a-2e143af43d25\",\"type\":\"HelpTool\"},{\"id\":\"e0586075-3ee8-4759-b9f9-6cff0e694cc8\",\"type\":\"PanTool\"},{\"id\":\"990098b8-cb82-4863-99e9-91f153972b2b\",\"type\":\"WheelZoomTool\"},{\"id\":\"e64a23e8-872e-4211-838a-15f02cf1fd3e\",\"type\":\"BoxZoomTool\"},{\"id\":\"cedc29ef-5150-4b67-8833-4af6a4bdb2a7\",\"type\":\"SaveTool\"},{\"id\":\"bdd2a962-1798-4d6b-bcaf-5d0e0e4f992c\",\"type\":\"ResetTool\"},{\"id\":\"0f20259e-3f03-42ff-aee4-05823ec38299\",\"type\":\"HelpTool\"},{\"id\":\"18a0a6fa-b0bc-455a-9587-3ea01b7db5f9\",\"type\":\"PanTool\"},{\"id\":\"1577ff66-29c0-4f8d-941e-17f904fbd21e\",\"type\":\"WheelZoomTool\"},{\"id\":\"4d268932-0845-48d4-97b2-8d376916bfe2\",\"type\":\"BoxZoomTool\"},{\"id\":\"9468ea3f-e20e-488d-8a5d-e067e7cf34ca\",\"type\":\"SaveTool\"},{\"id\":\"491fb1de-91ff-4a07-b8c6-6a8835f37873\",\"type\":\"ResetTool\"},{\"id\":\"42daa85d-0691-496e-87fe-636064263cc8\",\"type\":\"HelpTool\"},{\"id\":\"d5a97cfd-faa0-4e6b-b7fe-2523111015ef\",\"type\":\"PanTool\"},{\"id\":\"8f3c4d62-1c9c-4302-875a-9e484709a86e\",\"type\":\"WheelZoomTool\"},{\"id\":\"938c5b3d-efeb-4260-8591-ed36bffee1fd\",\"type\":\"BoxZoomTool\"},{\"id\":\"b5dbdac4-1556-47fc-ad3f-fb8d32ada128\",\"type\":\"SaveTool\"},{\"id\":\"b708f6fe-c7ac-46b3-8f0d-d080fb99eaf6\",\"type\":\"ResetTool\"},{\"id\":\"16bfbc2f-2679-421b-b7c1-4530cdbe39dd\",\"type\":\"HelpTool\"},{\"id\":\"945e71dc-0d10-43a7-9e85-695585340e5d\",\"type\":\"PanTool\"},{\"id\":\"892137c4-bfc7-4a81-9805-dc43171a8b17\",\"type\":\"WheelZoomTool\"},{\"id\":\"9e93adc7-04db-4311-a23f-f53103fdde85\",\"type\":\"BoxZoomTool\"},{\"id\":\"1a3686ea-d07e-4777-b8f6-fe98faae7e9d\",\"type\":\"SaveTool\"},{\"id\":\"ed88054a-d15b-4dbb-85a4-447e12f3bdc2\",\"type\":\"ResetTool\"},{\"id\":\"7cd18751-0ed6-4c4a-a662-5c5be5518bca\",\"type\":\"HelpTool\"},{\"id\":\"8ef11c8c-17ae-4822-a974-5a16c0682b5f\",\"type\":\"PanTool\"},{\"id\":\"2b190f90-dab9-4262-a118-c16257584c10\",\"type\":\"WheelZoomTool\"},{\"id\":\"249b3dbd-98e6-447f-a859-da3c9d0a1721\",\"type\":\"BoxZoomTool\"},{\"id\":\"b0d27028-005b-41f5-a024-886c93b7bc48\",\"type\":\"SaveTool\"},{\"id\":\"7c205ae8-981e-45ea-9d99-58cb06715e1d\",\"type\":\"ResetTool\"},{\"id\":\"8d9e46dc-e7f8-4e9a-82ac-dbcdd458b8e0\",\"type\":\"HelpTool\"},{\"id\":\"3766ad46-b527-4300-b752-bb7166fb8a77\",\"type\":\"PanTool\"},{\"id\":\"ac879bd1-36a7-426a-8bd3-754a963023b3\",\"type\":\"WheelZoomTool\"},{\"id\":\"284d17e8-5dfe-4912-9070-44785e649ff9\",\"type\":\"BoxZoomTool\"},{\"id\":\"f56cfa68-6828-4846-a779-c56fd9b94744\",\"type\":\"SaveTool\"},{\"id\":\"047d9022-0378-4723-b399-60119b9bd68c\",\"type\":\"ResetTool\"},{\"id\":\"a039aa80-2a66-40bd-b3e1-dc3cfec93890\",\"type\":\"HelpTool\"},{\"id\":\"c8817ca0-7040-42e8-b756-cd659bc1dd05\",\"type\":\"PanTool\"},{\"id\":\"fe4e5d15-dfb2-4056-95cf-b49486734350\",\"type\":\"WheelZoomTool\"},{\"id\":\"2ba9f5f2-8920-4f40-8b08-226086a1b4da\",\"type\":\"BoxZoomTool\"},{\"id\":\"01080a33-536f-4f14-b4e3-6ad2df0294fa\",\"type\":\"SaveTool\"},{\"id\":\"b7813605-7adb-4051-9812-87e4299aaf67\",\"type\":\"ResetTool\"},{\"id\":\"8415e3b7-08ea-4cfd-98df-c6569d3889ed\",\"type\":\"HelpTool\"},{\"id\":\"c1c41b97-a9d0-46a3-b7cf-7cb46adcfdef\",\"type\":\"PanTool\"},{\"id\":\"63b5f64a-d209-4fd7-bf6c-c24766877055\",\"type\":\"WheelZoomTool\"},{\"id\":\"a2d269b5-bf74-4001-bed9-51631236469b\",\"type\":\"BoxZoomTool\"},{\"id\":\"31491af6-0379-4f31-9886-6a39ed1f82f9\",\"type\":\"SaveTool\"},{\"id\":\"b1e78d7a-b249-4520-a748-e7f5c5441332\",\"type\":\"ResetTool\"},{\"id\":\"bc774d37-d1ea-49d9-b90a-bf157175244a\",\"type\":\"HelpTool\"}]},\"id\":\"560bdc0a-e551-4585-a5b4-a2e7b5acfed8\",\"type\":\"ToolbarBox\"},{\"attributes\":{},\"id\":\"5e453657-7ba9-46de-9238-f55d78dc5172\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"plot\":{\"id\":\"3695ef45-073b-4f94-b9fe-68f5dabf9f1b\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"78288525-9c58-4f74-addd-e6b386d7d1f4\",\"type\":\"BasicTicker\"}},\"id\":\"c86096d1-73e6-49ce-be19-35f9c66eba5f\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"53b0a529-1142-489e-bf0a-09cabae0a9cc\",\"type\":\"BasicTicker\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a6bddb\"},\"line_color\":{\"value\":\"#a6bddb\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18cb9501-bffb-4260-a183-21f3be90fbf3\",\"type\":\"Circle\"},{\"attributes\":{\"callback\":null},\"id\":\"b2924114-3916-479e-b59c-0e740bd9ddbb\",\"type\":\"DataRange1d\"},{\"attributes\":{\"callback\":null},\"id\":\"9c789320-0b5a-464d-8ff5-ef2ea7e780e6\",\"type\":\"DataRange1d\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"3ff1dc68-08de-4494-b133-18e35e767b69\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"plot\":{\"id\":\"f694d03f-39dd-4401-814f-9451acaf4ad3\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"ad5686cc-ca93-4824-86d3-1a75b1e06543\",\"type\":\"BasicTicker\"}},\"id\":\"4e16f876-f2ec-4183-8c87-71c5a1e2d181\",\"type\":\"Grid\"},{\"attributes\":{\"plot\":{\"id\":\"f72a938e-39f8-41c7-bb5d-3bbb2e674e9b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"836b4564-d270-4565-94e2-28b90b2f352d\",\"type\":\"ResetTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"703d7a79-1fa7-4281-8b51-d503a780959e\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"6de5bd19-7c3c-4c91-84c1-9b3cf5ae1963\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"d5a97cfd-faa0-4e6b-b7fe-2523111015ef\",\"type\":\"PanTool\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a6bddb\"},\"line_color\":{\"value\":\"#a6bddb\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"8aa30128-0b75-46b1-8bcb-eedf5521233b\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"7320bb22-db51-4ec0-9667-3f9a67ee581f\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"7dc6c795-fa3f-4c43-ae61-4b370f188fd5\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"9b1a06cc-6f89-4157-963d-b915bcdcee2a\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"6bf6d6ea-2731-43d0-8dbc-ae8f08f9b48f\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"52f8ccd8-dd4d-4ea0-8df8-9b177ece58a0\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"d619b33c-ebe3-4a07-8ee5-d494c0a2218d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"990098b8-cb82-4863-99e9-91f153972b2b\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"plot\":{\"id\":\"e9f85ec8-f967-4387-be57-4fb66f06516c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"31491af6-0379-4f31-9886-6a39ed1f82f9\",\"type\":\"SaveTool\"},{\"attributes\":{\"plot\":{\"id\":\"f72a938e-39f8-41c7-bb5d-3bbb2e674e9b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"def936d4-9190-4c83-a49f-f7f32f86b64d\",\"type\":\"PanTool\"},{\"attributes\":{\"callback\":null},\"id\":\"a4ff4fe6-0495-4612-9a0e-67835b5a1907\",\"type\":\"DataRange1d\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"31019a9b-f67e-4677-b69c-7bce51e75805\",\"type\":\"PanTool\"},{\"id\":\"9e45c888-203c-45bd-8409-6741b4df5d29\",\"type\":\"WheelZoomTool\"},{\"id\":\"6f4d5f6d-596a-435c-849f-64a35fa2cbcb\",\"type\":\"BoxZoomTool\"},{\"id\":\"e45fbff0-113a-443f-9537-34db8e1cf1d8\",\"type\":\"SaveTool\"},{\"id\":\"7fdf6dbd-4fbf-471a-b554-0306ca59a14e\",\"type\":\"ResetTool\"},{\"id\":\"8f513dad-b92f-45bf-9e7a-2e143af43d25\",\"type\":\"HelpTool\"}]},\"id\":\"ccd28209-b4fa-4af6-bad9-2c9f9ce89551\",\"type\":\"Toolbar\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"4d8032e6-3a7d-460f-99c7-375bea86eab0\",\"type\":\"Title\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"88eaf8ae-55d4-442d-8f1b-4237741b0daf\",\"type\":\"Title\"},{\"attributes\":{\"callback\":null},\"id\":\"5a7c597d-4470-4726-91cd-0012ee8ac051\",\"type\":\"DataRange1d\"},{\"attributes\":{\"data_source\":{\"id\":\"1e726cdb-5856-490b-bbb1-6c340022acdd\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"4919e259-33da-4112-9f97-713f92b80cd7\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"92d627e9-27d3-4b88-bbef-f88aec36e42e\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"30c5d275-b7c8-4157-926c-fc89a02652d7\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"7458cc07-d646-4774-916b-cc97de4bb3c2\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"fill_color\":{\"value\":\"#2b8cbe\"},\"line_color\":{\"value\":\"#2b8cbe\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"7190b346-6493-496a-82e6-5afc918301c6\",\"type\":\"Circle\"},{\"attributes\":{\"overlay\":{\"id\":\"16fba15c-c2ff-463a-9a9f-72a296e10a84\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"3815763e-da44-490f-83d4-5d0241c4ffdd\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"249b3dbd-98e6-447f-a859-da3c9d0a1721\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"c18d8703-cb8a-434b-a7c0-19789432b558\",\"type\":\"Circle\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"3695ef45-073b-4f94-b9fe-68f5dabf9f1b\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"05ff7600-157c-467e-a9d5-24bb3eb15da8\",\"type\":\"BasicTicker\"}},\"id\":\"12ce9414-c10e-4f09-9bf7-5383551bf101\",\"type\":\"Grid\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"ae907b5a-d92b-4e42-84e6-5aedbb7794c1\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"cd2e2941-4def-47fa-be28-e21fd2a65dfa\",\"type\":\"ToolEvents\"},{\"attributes\":{\"plot\":{\"id\":\"3695ef45-073b-4f94-b9fe-68f5dabf9f1b\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"d9df9a31-6d39-4e92-878f-0d64f058b423\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.5945160241092728,0.7811017365998931,-0.31962505843365874,-0.4942471575987246,0.3349391857946997,1.7225516850075475,-1.9731231096960362,-0.01767658927203139,0.16101695184496928,-0.8244660745923054,-0.5178668188428318,-1.2248971034591989,-0.5881401820989027,-0.5372604117386145,0.19143139048499394,0.7432552352207858,0.8632439453323602,-0.49371317751852417,-0.4175928455974618,2.3237649196748467,0.14590285265765693,-0.35501754876254366,-0.8394230907976706,0.07893941793251685,0.5796302326320795,-1.8022219963335209,-1.0099217846061237,-0.030524796781486997,0.02477843642929915,-0.9413421827485386,0.027731825062648784,-0.04665885921155053,0.10817236498215872,-0.48811587024576364,-0.17261673689927515,-0.06991012205170889],\"y\":[0.20594558276654182,-1.2554153684442084,-0.40164399063513095,0.09242509330252871,0.04123040698371918,-0.36641316136048224,-0.5119122558223772,0.311078555330146,-1.0634773780511901,0.14591650394501732,-0.37511240915105787,-0.027075985684064212,0.2588754016697983,0.4085202894746412,-0.298238250691532,-0.42239192281382937,-1.6536594461467802,-0.5656770333551288,0.3469237798707693,-0.3347014679705152,2.3695519629533894,0.4031702397477597,-1.2884943626632155,-0.02250301309847468,-0.373263467662209,0.9505561720041189,-1.4487194734470652,0.3186695925277304,0.44596270031897417,-0.7873329055043466,1.1920971553810555,1.6726749393172706,-0.27098499754692923,0.11452441533764834,-0.8487092417742174,1.545579256814223]}},\"id\":\"26356d41-97a3-45e7-bd91-531735bfee29\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"816cd9ba-af57-4ae3-8a4f-3a072283d393\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"plot\":{\"id\":\"e9f85ec8-f967-4387-be57-4fb66f06516c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"f02de202-e6c6-4e2d-9bb8-4e6c697f21d6\",\"type\":\"BasicTicker\"}},\"id\":\"21c0ad8b-4693-4f60-a3b7-49143b97d1de\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"5d8bc3a2-ee3c-41fc-9725-fce7e10ce7ba\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"callback\":null},\"id\":\"d8ee00a7-e594-4388-8f5d-0f075d44db30\",\"type\":\"DataRange1d\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"d970d6b1-bcbe-47b1-90f8-8fea57b9e63f\",\"type\":\"Circle\"},{\"attributes\":{\"children\":[{\"id\":\"2d765317-f2e1-46df-98e4-dbb230a1a404\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"f694d03f-39dd-4401-814f-9451acaf4ad3\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"3695ef45-073b-4f94-b9fe-68f5dabf9f1b\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"3c18f690-a9e0-48d5-b127-dd49355a9a3d\",\"subtype\":\"Figure\",\"type\":\"Plot\"}]},\"id\":\"cd8230f8-3a3f-4c02-bfb1-2ba7e4bfd122\",\"type\":\"Row\"},{\"attributes\":{\"callback\":null},\"id\":\"c52d4c80-8aff-4d8e-bf16-4c81bfac048d\",\"type\":\"DataRange1d\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-2.328609613834153,0.499646780212785,1.6082952400234942,1.2458789708723745,-1.0961821690334586,1.382026941847684,-0.4538441219949615,1.4395844410802678,-0.3049243650356835,0.14523594074878604,1.4748096535386808,-0.5121485960965696,-0.8788913750369364,-1.5181389669792453,0.0007784314561065783,0.05436044213137643,-0.4473666650755062,0.3485405045366734,1.2683639830694,-1.512504175085072,0.5876892424323793,0.2643101853544203,-1.4026669476792284,-1.0934975183046596,-1.0375136010035175,0.07413307985065108,0.7831800812693355],\"y\":[-2.328609613834153,0.499646780212785,1.6082952400234942,1.2458789708723745,-1.0961821690334586,1.382026941847684,-0.4538441219949615,1.4395844410802678,-0.3049243650356835,0.14523594074878604,1.4748096535386808,-0.5121485960965696,-0.8788913750369364,-1.5181389669792453,0.0007784314561065783,0.05436044213137643,-0.4473666650755062,0.3485405045366734,1.2683639830694,-1.512504175085072,0.5876892424323793,0.2643101853544203,-1.4026669476792284,-1.0934975183046596,-1.0375136010035175,0.07413307985065108,0.7831800812693355]}},\"id\":\"11153baa-b643-4cbd-9cd0-3d3022dc0b63\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":{\"id\":\"307e4d89-741e-46ef-a598-b74b421ddf53\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"42daa85d-0691-496e-87fe-636064263cc8\",\"type\":\"HelpTool\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.1960272004109043,-1.0502538702823216,-2.104502380351223,0.9834286540359315,2.9470659888894524,0.5615078368199237,1.2126928144027498,-0.5130204474240554,0.03813700121225621,-0.22634596391902523,0.5332205390130769,1.9743017181291302,-1.4078036410854593,-0.6683425071449056,1.4054068711862893,-2.7541524947725886,0.735803981843832,0.31108810546388604,0.3317130386192693,-0.37182999791027666,0.516990279377022,1.523855858724932,0.04814645234497029,-1.1369853492327395,-1.8808281218387493,-1.010394348071007,-0.41151461458339106,0.6871989611322668,1.9213677888152485,1.1345560479863577,-0.7215113955704764,-0.4749964259240754,0.005625486011900252,1.7731427091388345,1.7056455414803895,0.3053527691764295,-0.6330181831521638],\"y\":[-0.1196118505565118,0.6794648046410245,-0.2844737002657559,1.7870627584100762,0.14417544523106934,0.2521659612725212,0.3202081066720338,0.0888310458277947,-0.14290116350914994,1.1262915464792675,1.2020889758350275,0.17278206275142652,1.2037256979143227,0.6351632729860156,0.17667896078565407,-0.2922279246703844,-0.5451028956419868,0.9243462823605312,1.082817349922394,0.4114385170674937,-0.07927490265952405,0.8805461791378847,0.19149988321645103,0.8557037868928923,-0.2541269045980475,-0.5082702699479015,-0.14041270933933248,2.270478586784326,0.3534591234058084,-0.748518160275011,0.27426134856514767,-2.279542793179099,-0.49278933484691617,0.6394497458051915,1.0916069624094755,-0.2308885317596188,-0.42282117971507377]}},\"id\":\"5af70f4b-d7ed-416d-afec-111bc8d11eaa\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"95442e75-c3b7-4991-a9f1-2ab757041162\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-1.1465991161132274,1.173886753092942,0.9935590988114428,-1.3496216322143202,1.0079128171017764,0.8525477076061976,-0.6441094550645676,0.02016322300248813,-0.4831063810542337,-0.558034896844673,0.11333028843341025,-1.1110750845138486,0.8337509199592601,-2.776301220370997,-1.026446080210315,-1.7419816935075114,0.0683535866652536,-0.9776237720465044,1.4707963019960566,-0.9153044658196463,-2.1116003606141933,0.6685951843094474,0.0658678580511474,-1.5012042171618698,0.2866567638539752,-0.2648389467472101,-0.09962142928357105],\"y\":[-1.1465991161132274,1.173886753092942,0.9935590988114428,-1.3496216322143202,1.0079128171017764,0.8525477076061976,-0.6441094550645676,0.02016322300248813,-0.4831063810542337,-0.558034896844673,0.11333028843341025,-1.1110750845138486,0.8337509199592601,-2.776301220370997,-1.026446080210315,-1.7419816935075114,0.0683535866652536,-0.9776237720465044,1.4707963019960566,-0.9153044658196463,-2.1116003606141933,0.6685951843094474,0.0658678580511474,-1.5012042171618698,0.2866567638539752,-0.2648389467472101,-0.09962142928357105]}},\"id\":\"ef971452-08e8-40bc-a127-d4159e8f7d52\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"d06a634a-df69-478c-b3c6-af2ad8a67f42\",\"type\":\"Circle\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"3766ad46-b527-4300-b752-bb7166fb8a77\",\"type\":\"PanTool\"},{\"id\":\"ac879bd1-36a7-426a-8bd3-754a963023b3\",\"type\":\"WheelZoomTool\"},{\"id\":\"284d17e8-5dfe-4912-9070-44785e649ff9\",\"type\":\"BoxZoomTool\"},{\"id\":\"f56cfa68-6828-4846-a779-c56fd9b94744\",\"type\":\"SaveTool\"},{\"id\":\"047d9022-0378-4723-b399-60119b9bd68c\",\"type\":\"ResetTool\"},{\"id\":\"a039aa80-2a66-40bd-b3e1-dc3cfec93890\",\"type\":\"HelpTool\"}]},\"id\":\"17dd55e5-dd0b-46d1-8d88-34ab0d93ef7f\",\"type\":\"Toolbar\"},{\"attributes\":{\"axis_label\":\"median\",\"formatter\":{\"id\":\"96d1b0b8-14b3-4b72-b3e6-f02a695b2d45\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"f694d03f-39dd-4401-814f-9451acaf4ad3\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"0b076208-72d7-48f1-9ca4-11f3a94c6734\",\"type\":\"BasicTicker\"}},\"id\":\"effda1c4-7efd-480a-8d99-4146b62abbd2\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"9487c0e2-ff7f-4e00-91d5-1a34e8fdd752\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"plot\":{\"id\":\"307e4d89-741e-46ef-a598-b74b421ddf53\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"18a0a6fa-b0bc-455a-9587-3ea01b7db5f9\",\"type\":\"PanTool\"},{\"attributes\":{\"plot\":null,\"text\":null},\"id\":\"c1a08845-b44a-4369-a8b5-277a5ce41059\",\"type\":\"Title\"},{\"attributes\":{\"overlay\":{\"id\":\"0c23288b-3541-4f7f-8006-410e449562fc\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"a20abdd6-ebb2-41fb-a6af-1ed37fa3aa1c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"2ba9f5f2-8920-4f40-8b08-226086a1b4da\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.6705637855474027,1.34840184005745,0.40595488390585965,0.16084836409867231,-0.48684382423071393,-0.09897681184661385,-1.1162564102628494,-1.8176746517668625,-1.2130381450035903,0.7334753532661289,-1.7143359580741186,-0.6141600941703779,0.4837896883054766,-0.7503543324864415,-0.7622203797231547,1.003268363476211,-1.2548499035077059,1.307910921211524,-0.31359434313398415,-0.02598834790902368,-0.3156402963658345,0.05663641643458916,-1.2238714074307924,-0.544049360755572,1.453890370355908,-0.16716631440306928,1.376343423023386],\"y\":[-2.328609613834153,0.499646780212785,1.6082952400234942,1.2458789708723745,-1.0961821690334586,1.382026941847684,-0.4538441219949615,1.4395844410802678,-0.3049243650356835,0.14523594074878604,1.4748096535386808,-0.5121485960965696,-0.8788913750369364,-1.5181389669792453,0.0007784314561065783,0.05436044213137643,-0.4473666650755062,0.3485405045366734,1.2683639830694,-1.512504175085072,0.5876892424323793,0.2643101853544203,-1.4026669476792284,-1.0934975183046596,-1.0375136010035175,0.07413307985065108,0.7831800812693355]}},\"id\":\"bf7c3504-29ff-49ee-842c-4d44ef54cd68\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":{\"id\":\"3815763e-da44-490f-83d4-5d0241c4ffdd\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"8d9e46dc-e7f8-4e9a-82ac-dbcdd458b8e0\",\"type\":\"HelpTool\"},{\"attributes\":{\"plot\":{\"id\":\"95b728b9-961d-49d3-8232-8c7380c6c07b\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"a803ae4f-fa77-4f5c-9c04-78b53e83ed28\",\"type\":\"BasicTicker\"}},\"id\":\"daa1b6d1-84a0-4f45-95df-ef667d5d969e\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"9e8720df-a01d-434e-8136-ccebfb4e9f03\",\"type\":\"ToolEvents\"},{\"attributes\":{\"fill_color\":{\"value\":\"#a6bddb\"},\"line_color\":{\"value\":\"#a6bddb\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"2f0c03fc-fc4b-4329-b163-1dbd6cad02ed\",\"type\":\"Circle\"},{\"attributes\":{\"children\":[{\"id\":\"3815763e-da44-490f-83d4-5d0241c4ffdd\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"dfe7076c-0398-4c47-ab2f-75e601064856\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"a20abdd6-ebb2-41fb-a6af-1ed37fa3aa1c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"e9f85ec8-f967-4387-be57-4fb66f06516c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}]},\"id\":\"da569b6e-14f5-4bff-99f2-f85fee8d1219\",\"type\":\"Row\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[-0.1960272004109043,-1.0502538702823216,-2.104502380351223,0.9834286540359315,2.9470659888894524,0.5615078368199237,1.2126928144027498,-0.5130204474240554,0.03813700121225621,-0.22634596391902523,0.5332205390130769,1.9743017181291302,-1.4078036410854593,-0.6683425071449056,1.4054068711862893,-2.7541524947725886,0.735803981843832,0.31108810546388604,0.3317130386192693,-0.37182999791027666,0.516990279377022,1.523855858724932,0.04814645234497029,-1.1369853492327395,-1.8808281218387493,-1.010394348071007,-0.41151461458339106,0.6871989611322668,1.9213677888152485,1.1345560479863577,-0.7215113955704764,-0.4749964259240754,0.005625486011900252,1.7731427091388345,1.7056455414803895,0.3053527691764295,-0.6330181831521638],\"y\":[-0.19773108001830575,1.094942822375068,-0.23885700767004167,0.9709868583261726,0.49160399090474854,-1.1101337749341333,0.5573681266227046,-1.0561568585133605,-0.07662062376911487,-2.840658711458262,0.28466877512132355,-0.3778877288988559,0.18443024578946285,-0.13408543778818846,2.38204107103276,2.419841609040222,0.26008785612709506,0.003677117591075754,0.5554326425466423,-0.4859885070208167,-0.3441116702541836,-0.6358410981425435,1.6894860812113148,1.8355995261930105,1.4883777348835,2.332159719113291,0.6653173783648078,-0.5082052562672649,1.3249610609402955,-1.787238054271912,-0.49625477688171465,-1.6429563351257739,-1.1830694297455835,0.9725292719747896,0.639325376393516,0.47487874500984767,-1.7964140592239564]}},\"id\":\"f9ebe72f-4399-4609-b6d9-5ed0dba6f6f1\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data_source\":{\"id\":\"d4234c6c-19eb-494d-931a-07c7d15daba7\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"8aa30128-0b75-46b1-8bcb-eedf5521233b\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"b9d4f62e-d75c-4dfa-b783-b9aad785c912\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"a2a99a57-6b9b-48b1-838f-65db5c9660fc\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"0c23288b-3541-4f7f-8006-410e449562fc\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"plot\":{\"id\":\"dfe7076c-0398-4c47-ab2f-75e601064856\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"ac879bd1-36a7-426a-8bd3-754a963023b3\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"data_source\":{\"id\":\"3fe2121b-be3e-46d2-af7a-813ceafa0bb3\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"c217ef5b-c94a-4095-8434-dda3e601e0cc\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"dd1f4182-21d6-4824-b47e-7c9a9ac1caa5\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"bb699c46-fa7b-4a34-a52e-7f0b1e659292\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"9ec888f4-b180-429c-89c8-a89d968214bf\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"de262ed5-6308-4b16-9fb2-f34a774f39a7\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"a803ae4f-fa77-4f5c-9c04-78b53e83ed28\",\"type\":\"BasicTicker\"},{\"attributes\":{\"axis_label\":\"maximum\",\"formatter\":{\"id\":\"beaff516-26fb-4c3c-84ac-fa7287bc01d5\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"d619b33c-ebe3-4a07-8ee5-d494c0a2218d\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"60901ad3-6d36-45c1-9aa5-f1a903ede8b5\",\"type\":\"BasicTicker\"}},\"id\":\"121a7be4-e492-4ff6-92ec-0de7b3fd324e\",\"type\":\"LinearAxis\"},{\"attributes\":{\"callback\":null},\"id\":\"b31d0b87-d9b0-48c5-ac86-721c3ac5bec7\",\"type\":\"DataRange1d\"}],\"root_ids\":[\"b8129541-88d3-49ec-9dcd-2d7a47e1d086\"]},\"title\":\"Bokeh Application\",\"version\":\"0.12.3\"}};\n", | |
" var render_items = [{\"docid\":\"f60af008-a11a-4908-9eff-853f8e023384\",\"elementid\":\"050a046b-fa1c-4f30-8e88-c651a0e7a06d\",\"modelid\":\"b8129541-88d3-49ec-9dcd-2d7a47e1d086\"}];\n", | |
" \n", | |
" Bokeh.embed.embed_items(docs_json, render_items);\n", | |
" });\n", | |
" },\n", | |
" function(Bokeh) {\n", | |
" }\n", | |
" ];\n", | |
" \n", | |
" function run_inline_js() {\n", | |
" \n", | |
" if ((window.Bokeh !== undefined) || (force === \"1\")) {\n", | |
" for (var i = 0; i < inline_js.length; i++) {\n", | |
" inline_js[i](window.Bokeh);\n", | |
" }if (force === \"1\") {\n", | |
" display_loaded();\n", | |
" }} else if (Date.now() < window._bokeh_timeout) {\n", | |
" setTimeout(run_inline_js, 100);\n", | |
" } else if (!window._bokeh_failed_load) {\n", | |
" console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", | |
" window._bokeh_failed_load = true;\n", | |
" } else if (!force) {\n", | |
" var cell = $(\"#050a046b-fa1c-4f30-8e88-c651a0e7a06d\").parents('.cell').data().cell;\n", | |
" cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", | |
" }\n", | |
" \n", | |
" }\n", | |
" \n", | |
" if (window._bokeh_is_loading === 0) {\n", | |
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", | |
" run_inline_js();\n", | |
" } else {\n", | |
" load_libs(js_urls, function() {\n", | |
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n", | |
" run_inline_js();\n", | |
" });\n", | |
" }\n", | |
" }(this));\n", | |
"</script>" | |
], | |
"text/plain": [ | |
"<IPython.core.display.HTML object>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"from IPython.display import HTML, display\n", | |
"display(HTML(div))\n", | |
"#output_notebook()\n", | |
"#show(plot)" | |
] | |
} | |
], | |
"metadata": { | |
"kernelspec": { | |
"display_name": "Python 3", | |
"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.5.2" | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment